Skip to content

SystemThirdPartyEmergencyCallingGetRequest24

Bases: OCIRequest

Get the third-party emergency call service settings for the system. The response is either a SystemThirdPartyEmergencyCallingGetResponse24 or an ErrorResponse.

Attributes:

Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemThirdPartyEmergencyCallingGetRequest24(OCIRequest):
    """Get the third-party emergency call service settings for the system.
        The response is either a SystemThirdPartyEmergencyCallingGetResponse24 or an ErrorResponse.

    Attributes:

    """

Responses

Bases: OCIDataResponse

Response to the SystemThirdPartyEmergencyCallingGetRequest24. The response contains the third-party emergency call service settings for the system.

Attributes:

primary_held_server_url (Optional[str]):

secondary_held_server_url (Optional[str]):

emergency_route_net_address (Optional[str]):

emergency_route_port (Optional[int]):

emergency_route_transport (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class SystemThirdPartyEmergencyCallingGetResponse24(OCIDataResponse):
    """Response to the SystemThirdPartyEmergencyCallingGetRequest24.
        The response contains the third-party emergency call service settings for the system.

    Attributes:

        primary_held_server_url (Optional[str]):

        secondary_held_server_url (Optional[str]):

        emergency_route_net_address (Optional[str]):

        emergency_route_port (Optional[int]):

        emergency_route_transport (Optional[str]):

    """

    primary_held_server_url: Optional[str] = field(
        default=None, metadata={"alias": "primaryHELDServerURL"}
    )

    secondary_held_server_url: Optional[str] = field(
        default=None, metadata={"alias": "secondaryHELDServerURL"}
    )

    emergency_route_net_address: Optional[str] = field(
        default=None, metadata={"alias": "emergencyRouteNetAddress"}
    )

    emergency_route_port: Optional[int] = field(
        default=None, metadata={"alias": "emergencyRoutePort"}
    )

    emergency_route_transport: Optional[str] = field(
        default=None, metadata={"alias": "emergencyRouteTransport"}
    )

Bases: OCIResponse

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

Example Usage

from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemThirdPartyEmergencyCallingGetRequest24

client = Client()

command = SystemThirdPartyEmergencyCallingGetRequest24()

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip_fast.client import Client

client = Client()

response = client.raw_command("SystemThirdPartyEmergencyCallingGetRequest24")

print(response)