SystemAccessDeviceTypeGetListRequest
Bases: OCIRequest
Requests the list of access device types. The response is either SystemAccessDeviceTypeGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemAccessDeviceTypeGetListRequest.
Attributes:
device_type (List[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 SystemAccessDeviceTypeGetListRequest
client = Client()
command = SystemAccessDeviceTypeGetListRequest()
response = client.command(command)
print(response)