SystemCallCenterEnhancedReportingReportTemplateModifyRequest
Bases: OCIRequest
Request to modify a system level call center report template. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
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
75923 75924 75925 75926 75927 75928 75929 75930 75931 75932 75933 75934 75935 75936 75937 75938 75939 75940 75941 75942 75943 75944 75945 75946 75947 75948 75949 75950 75951 75952 75953 75954 75955 75956 75957 75958 75959 75960 75961 75962 75963 75964 75965 75966 75967 75968 75969 75970 75971 75972 75973 75974 75975 75976 75977 75978 75979 75980 75981 75982 75983 | |
Responses
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemCallCenterEnhancedReportingReportTemplateModifyRequest
client = Client()
command = SystemCallCenterEnhancedReportingReportTemplateModifyRequest(
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("SystemCallCenterEnhancedReportingReportTemplateModifyRequest",
name=...,
new_name=...,
description=...,
xslt_template=...,
scope=...,
is_enabled=...,
is_realtime_report=...,
filter_number=...,
filter_value=...,
)
print(response)