Skip to content

ResellerMeetMeConferencingGetRequest22

Bases: OCIRequest

Request the reseller level data associated with Meet-Me Conferencing functions. The response is either a ResellerMeetMeConferencingGetResponse22 or an ErrorResponse. The following data elements are only returned for System and Provisioning Administrators: maxAllocatedPorts. The following data elements are only returned for System and Provisioning Administrators and AS Mode Only: disableUnlimitedMeetMePorts, enableMaxAllocatedPorts.

Attributes:

reseller_id (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class ResellerMeetMeConferencingGetRequest22(OCIRequest):
    """Request the reseller level data associated with Meet-Me Conferencing functions.
        The response is either a ResellerMeetMeConferencingGetResponse22 or an
        ErrorResponse.
        The following data elements are only returned for System and Provisioning Administrators:
                maxAllocatedPorts.
                The following data elements are only returned for System and Provisioning Administrators and AS Mode Only:
                disableUnlimitedMeetMePorts,
                enableMaxAllocatedPorts.

    Attributes:

        reseller_id (str):

    """

    reseller_id: str = field(metadata={"alias": "resellerId"})

Responses

Bases: OCIDataResponse

Response to ResellerMeetMeConferencingGetRequest22.

Attributes:

conference_from_address (Optional[str]):

max_allocated_ports (Optional[int]):

disable_unlimited_meet_me_ports (Optional[bool]):

enable_max_allocated_ports (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class ResellerMeetMeConferencingGetResponse22(OCIDataResponse):
    """Response to ResellerMeetMeConferencingGetRequest22.

    Attributes:

        conference_from_address (Optional[str]):

        max_allocated_ports (Optional[int]):

        disable_unlimited_meet_me_ports (Optional[bool]):

        enable_max_allocated_ports (Optional[bool]):

    """

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

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

    disable_unlimited_meet_me_ports: Optional[bool] = field(
        default=None, metadata={"alias": "disableUnlimitedMeetMePorts"}
    )

    enable_max_allocated_ports: Optional[bool] = field(
        default=None, metadata={"alias": "enableMaxAllocatedPorts"}
    )

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 ResellerMeetMeConferencingGetRequest22

client = Client()

command = ResellerMeetMeConferencingGetRequest22(
    reseller_id=...,
)

response = client.command(command)

print(response)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("ResellerMeetMeConferencingGetRequest22",
    reseller_id=...,
)

print(response)