UserEndpointKeyBases: OCITypeKey to uniquely identify a user endpoint.Attributes:user_id (str): line_port (str): Source code in src/mercury_ocip/commands/commands.py 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872@dataclass(kw_only=True) class UserEndpointKey(OCIType): """Key to uniquely identify a user endpoint. Attributes: user_id (str): line_port (str): """ user_id: str = field(metadata={"alias": "userId"}) line_port: str = field(metadata={"alias": "linePort"})