Skip to content

SystemConnectedLineIdentificationPresentationGetRequest

Bases: OCIRequest

Request the system level data associated with the COLP service. The response is either a SystemConnectedLineIdentificationPresentationGetResponse or an ErrorResponse.

Attributes:

Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemConnectedLineIdentificationPresentationGetRequest(OCIRequest):
    """Request the system level data associated with the COLP service.
        The response is either a
        SystemConnectedLineIdentificationPresentationGetResponse or an
        ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to SystemConnectedLineIdentificationPresentationGetRequest.

Attributes:

enforce_user_service_assignment (bool):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SystemConnectedLineIdentificationPresentationGetResponse(OCIDataResponse):
    """Response to SystemConnectedLineIdentificationPresentationGetRequest.

    Attributes:

        enforce_user_service_assignment (bool):

    """

    enforce_user_service_assignment: bool = field(
        metadata={"alias": "enforceUserServiceAssignment"}
    )

Bases: OCIResponse

Source code in src/mercury_ocip/commands/base_command.py
class ErrorResponse(OCIResponse):
    errorCode: Optional[int] = None
    summary: str
    summaryEnglish: str
    detail: Optional[str] = None

Example Usage

from mercury_ocip.client import Client
from mercury_ocip.commands import SystemConnectedLineIdentificationPresentationGetRequest

client = Client()

command = SystemConnectedLineIdentificationPresentationGetRequest()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("SystemConnectedLineIdentificationPresentationGetRequest")

print(response)