Bases: OCIType
Redirected call selection. When " redirectedCall " is set to true, all call logs with redirected call are returned. When it set to false, all call logs without redirected call are returned. The redirected call can be defined by including a subset of Service Invocation Disposition here. If none included, any call has a ServiceInvocationDisposition value defined in ServiceInvocationDisposition21sp1 is considered as a redirected call.
Attributes:
redirected_call (bool):
redirect_type (Optional[List[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
| @dataclass(kw_only=True)
class EnhancedCallLogsRedirectedCallSelection23(OCIType):
"""Redirected call selection.
When \" redirectedCall \" is set to true, all call logs with redirected call are returned. When it
set to false, all call logs without redirected call are returned.
The redirected call can be defined by including a subset of Service Invocation Disposition here.
If none included, any call has a ServiceInvocationDisposition value defined in ServiceInvocationDisposition21sp1
is considered as a redirected call.
Attributes:
redirected_call (bool):
redirect_type (Optional[List[str]]):
"""
redirected_call: bool = field(metadata={"alias": "redirectedCall"})
redirect_type: Optional[List[str]] = field(
default=None, metadata={"alias": "redirectType"}
)
|