GroupGroupNightForwardingGetRequest
Bases: OCIRequest
Request to get the Group Night Forwarding group parameters. The response is either GroupGroupNightForwardingGetResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupGroupNightForwardingGetRequest.
Attributes:
night_forwarding (str):
business_hours (Optional[TimeSchedule]):
holiday_schedule (Optional[HolidaySchedule]):
forward_to_phone_number (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupGroupNightForwardingGetRequest
client = Client()
command = GroupGroupNightForwardingGetRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)