SystemThirdPartyIMPGetRequest19
Bases: OCIRequest
Get the system Third-Party IMP service attributes. The response is either SystemThirdPartyIMPGetResponse19 or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemThirdPartyIMPGetRequest19. The response contains the system Third-Party IMP service attributes.
Attributes:
service_net_address (Optional[str]):
service_port (Optional[int]):
bosh_url (Optional[str]):
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 SystemThirdPartyIMPGetRequest19
client = Client()
command = SystemThirdPartyIMPGetRequest19()
response = client.command(command)
print(response)