SystemBroadCloudGetRequest22
Bases: OCIRequest
Get the system interface attributes for Messaging Server/BroadCloud. The response is either SystemBroadCloudGetResponse22 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemBroadCloudGetRequest22. The response contains the system interface attributes for Messaging Server/BroadCloud.
Attributes:
provisioning_url (Optional[str]):
provisioning_user_id (Optional[str]):
enable_synchronization (bool):
proxy_host (Optional[str]):
proxy_port (int):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemBroadCloudGetRequest22
client = Client()
command = SystemBroadCloudGetRequest22()
response = client.command(command)
print(response)