ResellerGetRequest22V2
Bases: OCIRequest
Get the profile for a reseller. The response is either ResellerGetResponse22V2 or ErrorResponse.
Attributes:
reseller_id (Optional[str]):
reseller_external_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ResellerGetRequest22V2.
Attributes:
reseller_name (Optional[str]):
reseller_id (str):
reseller_external_id (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ResellerGetRequest22V2
client = Client()
command = ResellerGetRequest22V2(
reseller_id=...,
reseller_external_id=...,
)
response = client.command(command)
print(response)