GroupCustomRingbackGroupGetRequest20
Bases: OCIRequest
Get the group's custom ring back service settings. The response is either a GroupCustomRingbackGroupGetResponse20 or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCustomRingbackGroupGetRequest20.
Attributes:
is_active (bool):
audio_selection (str):
audio_file (Optional[AnnouncementFileKey]):
audio_file_url (Optional[str]):
video_selection (str):
video_file (Optional[AnnouncementFileKey]):
video_file_url (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
124744 124745 124746 124747 124748 124749 124750 124751 124752 124753 124754 124755 124756 124757 124758 124759 124760 124761 124762 124763 124764 124765 124766 124767 124768 124769 124770 124771 124772 124773 124774 124775 124776 124777 124778 124779 124780 124781 124782 124783 124784 124785 124786 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupCustomRingbackGroupGetRequest20
client = Client()
command = GroupCustomRingbackGroupGetRequest20(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)