GroupFlexibleSeatingHostGuestAssociationGetRequest
Bases: OCIRequest
Request the flexible seating host guest association details. The response is either a GroupFlexibleSeatingHostGuestAssociationGetResponse or an ErrorResponse. accessLevel is always set to Group for a Service Provider
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupFlexibleSeatingHostGuestAssociationGetRequest.
Attributes:
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
126131 126132 126133 126134 126135 126136 126137 126138 126139 126140 126141 126142 126143 126144 126145 126146 126147 126148 126149 126150 126151 126152 126153 126154 126155 126156 126157 126158 126159 126160 126161 126162 126163 126164 126165 126166 126167 126168 126169 126170 126171 126172 126173 126174 126175 126176 126177 126178 126179 126180 126181 126182 126183 126184 126185 126186 126187 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupFlexibleSeatingHostGuestAssociationGetRequest
client = Client()
command = GroupFlexibleSeatingHostGuestAssociationGetRequest(
service_user_id=...,
)
response = client.command(command)
print(response)