UserEndpointKeyBases: OCITypeKey to uniquely identify a user endpoint.Attributes:user_id (str): line_port (str): Source code in src/mercury_ocip_fast/commands/commands.py 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876@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"})