UserHotelingHostGetRequest17
Bases: OCIRequest
Request the user level data associated with Hoteling Host. The response is either a UserHotelingHostGetResponse17 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserHotelingHostGetRequest17.
Attributes:
is_active (bool):
enforce_association_limit (bool):
association_limit_hours (int):
access_level (str):
guest_last_name (Optional[str]):
guest_first_name (Optional[str]):
guest_phone_number (Optional[str]):
guest_extension (Optional[str]):
guest_location_dialing_code (Optional[str]):
guest_association_date_time (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
154982 154983 154984 154985 154986 154987 154988 154989 154990 154991 154992 154993 154994 154995 154996 154997 154998 154999 155000 155001 155002 155003 155004 155005 155006 155007 155008 155009 155010 155011 155012 155013 155014 155015 155016 155017 155018 155019 155020 155021 155022 155023 155024 155025 155026 155027 155028 155029 155030 155031 155032 155033 155034 155035 155036 155037 155038 155039 155040 155041 155042 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserHotelingHostGetRequest17
client = Client()
command = UserHotelingHostGetRequest17(
user_id=...,
)
response = client.command(command)
print(response)