from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_customer_account_status_ref_structure_type import NameOfClassCustomerAccountStatusRefStructureType
from .type_of_value_ref_structure import TypeOfValueRefStructure

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


@dataclass(slots=True, kw_only=True)
class CustomerAccountStatusRefStructure(TypeOfValueRefStructure):
    name_of_ref_class: NameOfClassCustomerAccountStatusRefStructureType = field(
        default=NameOfClassCustomerAccountStatusRefStructureType.CUSTOMER_ACCOUNT_STATUS,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )