Bases: OCIType
Access device end point identity in the context of a reorder command. The following elements are only used in XS data mode and ignored in AS data mode: privateIdentity
Attributes:
line_port (str):
private_identity (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class AccessDeviceReorderEndpointIdentity(OCIType):
"""Access device end point identity in the context of a reorder command.
The following elements are only used in XS data mode and ignored in AS data mode:
privateIdentity
Attributes:
line_port (str):
private_identity (Optional[str]):
"""
line_port: str = field(metadata={"alias": "linePort"})
private_identity: Optional[str] = field(
default=None, metadata={"alias": "privateIdentity"}
)
|