Skip to content

ActivatableDNRange

Bases: OCIType

Activatable directory number range. The minimum and maximum values are inclusive.

Attributes:

min_phone_number (str):

max_phone_number (str):

activate (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class ActivatableDNRange(OCIType):
    """Activatable directory number range. The minimum and maximum values are inclusive.

    Attributes:

        min_phone_number (str):

        max_phone_number (str):

        activate (Optional[bool]):

    """

    min_phone_number: str = field(metadata={"alias": "minPhoneNumber"})

    max_phone_number: str = field(metadata={"alias": "maxPhoneNumber"})

    activate: Optional[bool] = field(default=None, metadata={"alias": "activate"})