EnterpriseCallCenterEnhancedReportingReportTemplateModifyRequest
Bases: OCIRequest
Request to modify an enterprise level call center report template. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
name (str):
new_name (Optional[str]):
description (Optional[Nillable[str]]):
xslt_template (Optional[LabeledFileResource]):
scope (Optional[str]):
is_enabled (Optional[bool]):
is_realtime_report (Optional[bool]):
filter_number (Optional[Nillable[int]]):
filter_value (Optional[Nillable[CallCenterReportDataTemplateQueryFilterValueReplacementList]]):
Source code in src/mercury_ocip_fast/commands/commands.py
27773 27774 27775 27776 27777 27778 27779 27780 27781 27782 27783 27784 27785 27786 27787 27788 27789 27790 27791 27792 27793 27794 27795 27796 27797 27798 27799 27800 27801 27802 27803 27804 27805 27806 27807 27808 27809 27810 27811 27812 27813 27814 27815 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import EnterpriseCallCenterEnhancedReportingReportTemplateModifyRequest
client = Client()
command = EnterpriseCallCenterEnhancedReportingReportTemplateModifyRequest(
service_provider_id=...,
name=...,
new_name=...,
description=...,
xslt_template=...,
scope=...,
is_enabled=...,
is_realtime_report=...,
filter_number=...,
filter_value=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip_fast.client import Client
client = Client()
response = client.raw_command("EnterpriseCallCenterEnhancedReportingReportTemplateModifyRequest",
service_provider_id=...,
name=...,
new_name=...,
description=...,
xslt_template=...,
scope=...,
is_enabled=...,
is_realtime_report=...,
filter_number=...,
filter_value=...,
)
print(response)