Skip to content

TrunkGroupDeviceMultipleContactEndpointAdd

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[str]]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class TrunkGroupDeviceMultipleContactEndpointAdd(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[str]]):

    """

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

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

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