GroupFlexibleSeatingHostGetInstanceRequest22
Bases: OCIRequest
Request to get all the information of a flexible seating host instance. The response is either GroupFlexibleSeatingHostGetInstanceResponse22 or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupFlexibleSeatingHostGetInstanceRequest22. Contains the service profile and access device information.
Attributes:
service_instance_profile (ServiceInstanceReadProfile19sp1):
default_alias (str):
access_device_endpoint (Optional[AccessDeviceMultipleContactEndpointRead22]):
network_class_of_service (Optional[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 GroupFlexibleSeatingHostGetInstanceRequest22
client = Client()
command = GroupFlexibleSeatingHostGetInstanceRequest22(
service_user_id=...,
)
response = client.command(command)
print(response)