ServiceProviderDeviceActivationPolicyGetRequest
Bases: OCIRequest
Request the Device Activation policy of a service provider or an enterprise. The response is either a ServiceProviderDeviceActivationPolicyGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to ServiceProviderDeviceActivationPolicyGetRequest.
Attributes:
use_service_provider_settings (bool):
allow_activation_code_request_by_user (bool):
send_activation_code_in_email (bool):
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 ServiceProviderDeviceActivationPolicyGetRequest
client = Client()
command = ServiceProviderDeviceActivationPolicyGetRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)