from __future__ import annotations
from dataclasses import dataclass, field
from .group_of_entities_ref_structure import GroupOfEntitiesRefStructure
from .name_of_class_price_group_ref_structure_type import NameOfClassPriceGroupRefStructureType

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


@dataclass(slots=True, kw_only=True)
class PriceGroupRefStructure(GroupOfEntitiesRefStructure):
    name_of_ref_class: NameOfClassPriceGroupRefStructureType = field(
        default=NameOfClassPriceGroupRefStructureType.PRICE_GROUP,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )