ResellerDeviceActivationPolicyGetRequest
Bases: OCIRequest
Request the Device Activation policy of a reseller. The response is either a ResellerDeviceActivationPolicyGetResponse or an ErrorResponse.
Attributes:
reseller_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ResellerDeviceActivationPolicyGetRequest.
Attributes:
use_reseller_settings (bool):
allow_activation_code_request_by_user (bool):
send_activation_code_in_email (bool):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import ResellerDeviceActivationPolicyGetRequest
client = Client()
command = ResellerDeviceActivationPolicyGetRequest(
reseller_id=...,
)
response = client.command(command)
print(response)