UserFlexibleSeatingGuestGetRequest22
Bases: OCIRequest
Request the user level data associated with flexible seating guest. The response is either a UserFlexibleSeatingGuestGetResponse22 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserFlexibleSeatingGuestGetRequest22.
Attributes:
is_active (bool):
enable_association_limit (bool):
association_limit_hours (int):
unlock_phone_pin_code (Optional[str]):
access_device_endpoint (Optional[AccessDeviceMultipleContactEndpointRead22]):
host_user_id (Optional[str]):
host_last_name (Optional[str]):
host_first_name (Optional[str]):
host_association_date_time (Optional[str]):
host_enforces_association_limit (Optional[bool]):
host_association_limit_hours (Optional[int]):
Source code in src/mercury_ocip_fast/commands/commands.py
154249 154250 154251 154252 154253 154254 154255 154256 154257 154258 154259 154260 154261 154262 154263 154264 154265 154266 154267 154268 154269 154270 154271 154272 154273 154274 154275 154276 154277 154278 154279 154280 154281 154282 154283 154284 154285 154286 154287 154288 154289 154290 154291 154292 154293 154294 154295 154296 154297 154298 154299 154300 154301 154302 154303 154304 154305 154306 154307 154308 154309 154310 154311 154312 154313 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserFlexibleSeatingGuestGetRequest22
client = Client()
command = UserFlexibleSeatingGuestGetRequest22(
user_id=...,
)
response = client.command(command)
print(response)