Bases: OCIType
A list of Call to Numbers that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list. For the callToNumbers, the extension element is not used and the number element is only used when the type is BroadWorks Mobility.
Attributes:
call_to_number (List[CallToNumber]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ReplacementCallToNumberList(OCIType):
"""A list of Call to Numbers that replaces a previously configured list.
By convention, an element of this type may be set nill to clear the list.
For the callToNumbers, the extension element is not used and the number element is only used when the type is BroadWorks Mobility.
Attributes:
call_to_number (List[CallToNumber]):
"""
call_to_number: List[CallToNumber] = field(metadata={"alias": "callToNumber"})
|