Skip to content

MWIDeliveryToMobileEndpointTemplateLine

Bases: OCIType

MWI Delivery To Mobile Endpoint template section associated with a specific tag.

Attributes:

prefix (Optional[str]):

tag (Optional[str]):

postfix (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class MWIDeliveryToMobileEndpointTemplateLine(OCIType):
    """MWI Delivery To Mobile Endpoint template section associated with a specific tag.

    Attributes:

        prefix (Optional[str]):

        tag (Optional[str]):

        postfix (Optional[str]):

    """

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

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

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