UserCallMeNowGetRequest
Bases: OCIRequest
Get the user's call me now service setting. The response is either a UserCallMeNowGetResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserCallMeNowGetRequest. The criteria table's column headings are: "Is Active", "Criteria Name", "Time Schedule", "Call To", "Reject Call" and "Holiday Schedule".
Attributes:
is_active (bool):
answer_confirmation (str):
criteria_table (OCITable):
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 UserCallMeNowGetRequest
client = Client()
command = UserCallMeNowGetRequest(
user_id=...,
)
response = client.command(command)
print(response)