Bases: OCIType
A list of Service Provider Communication Barring Hierarchical Originating Rules that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.
Attributes:
rule (List[ServiceProviderCommunicationBarringHierarchicalOriginatingRule]):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ServiceProviderReplacementCommunicationBarringHierarchicalOriginatingRuleList(
OCIType
):
"""A list of Service Provider Communication Barring Hierarchical Originating Rules that replaces a previously configured list. By convention, an element of this type
may be set nill to clear the list.
Attributes:
rule (List[ServiceProviderCommunicationBarringHierarchicalOriginatingRule]):
"""
rule: List[ServiceProviderCommunicationBarringHierarchicalOriginatingRule] = field(
metadata={"alias": "rule"}
)
|