Skip to content

SimultaneousRingReplacementNumberList

Bases: OCIType

A list of Simultaneous Ring numbers that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.

Attributes:

simultaneous_ring_number (List[SimultaneousRingNumber]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SimultaneousRingReplacementNumberList(OCIType):
    """A list of Simultaneous Ring numbers that replaces a previously configured list.
        By convention, an element of this type may be set nill to clear the list.

    Attributes:

        simultaneous_ring_number (List[SimultaneousRingNumber]):

    """

    simultaneous_ring_number: List[SimultaneousRingNumber] = field(
        metadata={"alias": "simultaneousRingNumber"}
    )