ResellerAdminGetListRequest
Bases: OCIRequest
Get a list of reseller administrators. The response is either a ResellerAdminGetListResponse or an ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ResellerAdminGetListRequest. Contains a 4 column table with column headings "Administrator ID", "Last Name", "First Name", "Language".
Attributes:
reseller_admin_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ResellerAdminGetListRequest
client = Client()
command = ResellerAdminGetListRequest(
reseller_id=...,
)
response = client.command(command)
print(response)