Skip to content

AccessDeviceEndpointKey

Bases: OCIType

Access device end point in the context of a modify or delete command.

Attributes:

access_device (AccessDevice):

line_port (str):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class AccessDeviceEndpointKey(OCIType):
    """Access device end point in the context of a modify or delete command.

    Attributes:

        access_device (AccessDevice):

        line_port (str):

    """

    access_device: AccessDevice = field(metadata={"alias": "accessDevice"})

    line_port: str = field(metadata={"alias": "linePort"})