Skip to content

UserEndpointKey

Bases: OCIType

Key to uniquely identify a user endpoint.

Attributes:

user_id (str):

line_port (str):
Source code in src/mercury_ocip/commands/commands.py
@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"})