ResellerAdminGetRequest22V2
Bases: OCIRequest
Get a reseller administrators profile. The response is either a ResellerAdminGetResponse22V2 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ResellerAdminGetRequest22V2. The response contains the reseller administrators profile information.
Attributes:
reseller_id (str):
first_name (Optional[str]):
last_name (Optional[str]):
language (str):
account_disabled (bool):
last_authenticated_date (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 ResellerAdminGetRequest22V2
client = Client()
command = ResellerAdminGetRequest22V2(
user_id=...,
)
response = client.command(command)
print(response)