GroupPreAlertingAnnouncementGetRequest20
Bases: OCIRequest
Get the group’s PreAlertingservice settings. The response is either a GroupPreAlertingAnnouncementGetResponse20 or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to a GroupPreAlertingAnnouncementGetResponse20.
Attributes:
announcement_interruption (str):
interruption_digit_sequence (Optional[str]):
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/commands/commands.py
128142 128143 128144 128145 128146 128147 128148 128149 128150 128151 128152 128153 128154 128155 128156 128157 128158 128159 128160 128161 128162 128163 128164 128165 128166 128167 128168 128169 128170 128171 128172 128173 128174 128175 128176 128177 128178 128179 128180 128181 128182 128183 128184 128185 128186 128187 128188 128189 128190 128191 128192 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupPreAlertingAnnouncementGetRequest20
client = Client()
command = GroupPreAlertingAnnouncementGetRequest20(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)