GroupFlexibleSeatingAccessDeviceGetListRequest
Bases: OCIRequest
Requests the list of access devices available for assignment to a flexible seating host or guest. The list includes devices created at the system, service provider, and group levels that support device management. The response is either GroupFlexibleSeatingAccessDeviceGetListResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupFlexibleSeatingAccessDeviceGetListRequest
Attributes:
available_access_device (Optional[List[object]]):
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 GroupFlexibleSeatingAccessDeviceGetListRequest
client = Client()
command = GroupFlexibleSeatingAccessDeviceGetListRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)