GroupVoiceMessagingGroupGetRequest
Bases: OCIRequest
Requests the group's Voice Messaging settings. The response is either GroupVoiceMessagingGroupGetResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupVoiceMessagingGroupGetRequest. Contains the group's voice messaging settings.
Attributes:
use_mail_server_setting (str):
warn_caller_before_recording_voice_message (bool):
allow_users_configuring_advanced_settings (bool):
allow_compose_or_forward_message_to_entire_group (bool):
mail_server_net_address (Optional[str]):
mail_server_protocol (str):
real_delete_for_imap (bool):
max_mailbox_length_minutes (int):
does_message_age (bool):
hold_period_days (int):
Source code in src/mercury_ocip_fast/commands/commands.py
130655 130656 130657 130658 130659 130660 130661 130662 130663 130664 130665 130666 130667 130668 130669 130670 130671 130672 130673 130674 130675 130676 130677 130678 130679 130680 130681 130682 130683 130684 130685 130686 130687 130688 130689 130690 130691 130692 130693 130694 130695 130696 130697 130698 130699 130700 130701 130702 130703 130704 130705 130706 130707 130708 130709 130710 130711 130712 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupVoiceMessagingGroupGetRequest
client = Client()
command = GroupVoiceMessagingGroupGetRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)