Skip to content

TrunkGroupDeviceMultipleContactEndpointAdd22

Bases: OCIType

Trunk group device endpoint used in the context of modify that can have multiple contacts.

Attributes:

name (str):

line_port (str):

contact (Optional[List[SIPContactInfo]]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class TrunkGroupDeviceMultipleContactEndpointAdd22(OCIType):
    """Trunk group device endpoint used in the context of modify that can have multiple contacts.

    Attributes:

        name (str):

        line_port (str):

        contact (Optional[List[SIPContactInfo]]):

    """

    name: str = field(metadata={"alias": "name"})

    line_port: str = field(metadata={"alias": "linePort"})

    contact: Optional[List[SIPContactInfo]] = field(
        default=None, metadata={"alias": "contact"}
    )