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
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
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)