GroupFlexibleSeatingHostAddInstanceRequest22
Bases: OCIRequest
Add a flexible seating host instance to a group. The domain is required in the serviceUserId. The response is either SuccessResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
service_user_id (str):
service_instance_profile (ServiceInstanceAddProfileFlexibleSeatingHost):
access_device_endpoint (Optional[AccessDeviceMultipleContactEndpointAdd22]):
network_class_of_service (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupFlexibleSeatingHostAddInstanceRequest22
client = Client()
command = GroupFlexibleSeatingHostAddInstanceRequest22(
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
access_device_endpoint=...,
network_class_of_service=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupFlexibleSeatingHostAddInstanceRequest22",
service_provider_id=...,
group_id=...,
service_user_id=...,
service_instance_profile=...,
access_device_endpoint=...,
network_class_of_service=...,
)
print(response)