Skip to content

AccessDeviceMultipleIdentityEndpointKey

Bases: OCIType

Access device end point in the context of a modify or delete command. The endpoint is identified by its linePort (public Identity) and possibly a private Identity. The following elements are only used in XS data mode and ignored in AS data mode: privateIdentity

Attributes:

access_device (AccessDevice):

line_port (str):

private_identity (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class AccessDeviceMultipleIdentityEndpointKey(OCIType):
    """Access device end point in the context of a modify or delete command.
        The endpoint is identified by its linePort (public Identity) and possibly a private Identity.
        The following elements are only used in XS data mode and ignored in AS data mode:
          privateIdentity

    Attributes:

        access_device (AccessDevice):

        line_port (str):

        private_identity (Optional[str]):

    """

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

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

    private_identity: Optional[str] = field(
        default=None, metadata={"alias": "privateIdentity"}
    )