UserVideoAddOnGetRequest22
Bases: OCIRequest
Get the user's Video Add-On service setting. The response is either a UserVideoAddOnGetResponse22 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserVideoAddOnGetRequest22.
Attributes:
is_active (bool):
max_originating_call_delay_seconds (int):
access_device_endpoint (Optional[AccessDeviceEndpointWithPortNumberRead22]):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserVideoAddOnGetRequest22
client = Client()
command = UserVideoAddOnGetRequest22(
user_id=...,
)
response = client.command(command)
print(response)