ResellerIntegratedIMPGetRequest22
Bases: OCIRequest
Get the Integrated IMP service attributes for the reseller. The response is either ResellerIntegratedIMPGetResponse22 or ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ResellerIntegratedIMPGetRequest22. The response contains the reseller Integrated IMP service attributes.
Attributes:
use_system_service_domain (bool):
service_domain (Optional[str]):
service_port (Optional[int]):
use_system_messaging_server (bool):
provisioning_url (Optional[str]):
provisioning_user_id (Optional[str]):
bosh_url (Optional[str]):
default_imp_id_type (str):
Source code in src/mercury_ocip/commands/commands.py
131327 131328 131329 131330 131331 131332 131333 131334 131335 131336 131337 131338 131339 131340 131341 131342 131343 131344 131345 131346 131347 131348 131349 131350 131351 131352 131353 131354 131355 131356 131357 131358 131359 131360 131361 131362 131363 131364 131365 131366 131367 131368 131369 131370 131371 131372 131373 131374 131375 131376 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ResellerIntegratedIMPGetRequest22
client = Client()
command = ResellerIntegratedIMPGetRequest22(
reseller_id=...,
)
response = client.command(command)
print(response)