UserFlexibleSeatingGuestModifyRequest22
Bases: OCIRequest
Modify the user level data associated with flexible seating guest. accessDeviceEndpoint can only be configured by group or a higher level administrator. The request fails if isActive is set to false and the guest is associated to a host. The request fails when enableAssociationLimit, associationLimitHours, unlockPhonePINCode are changed when the guest is associated to a host. The request fails when accessDeviceEndpoint is set in the request when the guest is associated to a host. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
user_id (str):
is_active (Optional[bool]):
enable_association_limit (Optional[bool]):
association_limit_hours (Optional[int]):
unlock_phone_pin_code (Optional[Nillable[str]]):
access_device_endpoint (Optional[Nillable[AccessDeviceMultipleContactEndpointModify22]]):
host_user_id (Optional[Nillable[str]]):
Source code in src/mercury_ocip/commands/commands.py
108177 108178 108179 108180 108181 108182 108183 108184 108185 108186 108187 108188 108189 108190 108191 108192 108193 108194 108195 108196 108197 108198 108199 108200 108201 108202 108203 108204 108205 108206 108207 108208 108209 108210 108211 108212 108213 108214 108215 108216 108217 108218 108219 108220 108221 108222 108223 108224 108225 108226 108227 108228 108229 108230 108231 108232 108233 108234 108235 108236 108237 | |
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserFlexibleSeatingGuestModifyRequest22
client = Client()
command = UserFlexibleSeatingGuestModifyRequest22(
user_id=...,
is_active=...,
enable_association_limit=...,
association_limit_hours=...,
unlock_phone_pin_code=...,
access_device_endpoint=...,
host_user_id=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("UserFlexibleSeatingGuestModifyRequest22",
user_id=...,
is_active=...,
enable_association_limit=...,
association_limit_hours=...,
unlock_phone_pin_code=...,
access_device_endpoint=...,
host_user_id=...,
)
print(response)