from __future__ import annotations
from dataclasses import dataclass, field
from .fare_price_ref_structure import FarePriceRefStructure
from .name_of_class_geographical_unit_price_ref_structure_type import NameOfClassGeographicalUnitPriceRefStructureType

__NAMESPACE__ = "http://www.netex.org.uk/netex"


@dataclass(slots=True, kw_only=True)
class GeographicalUnitPriceRefStructure(FarePriceRefStructure):
    name_of_ref_class: NameOfClassGeographicalUnitPriceRefStructureType = field(
        default=NameOfClassGeographicalUnitPriceRefStructureType.GEOGRAPHICAL_UNIT_PRICE,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )