Skip to content

ReplacementCommunicationBarringAlternateCallIndicatorList

Bases: OCIType

A list of Communication Barring Alternate Call Indicator that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.

Attributes:

alternate_call_indicator (List[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class ReplacementCommunicationBarringAlternateCallIndicatorList(OCIType):
    """A list of Communication Barring Alternate Call Indicator that replaces
        a previously configured list. By convention, an element of this type
        may be set nill to clear the list.

    Attributes:

        alternate_call_indicator (List[str]):

    """

    alternate_call_indicator: List[str] = field(
        metadata={"alias": "alternateCallIndicator"}
    )