Skip to content

SIPContactInfo

Bases: OCIType

A SIP Contact info contains the SIP registration Contact and its associated Header path The following element is only used in AS data mode and ignored in XS data mode: pathHeader

Attributes:

sip_contact (str):

path_header (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SIPContactInfo(OCIType):
    """A SIP Contact info contains the SIP registration Contact and its associated Header path
        The following element is only used in AS data mode and ignored in XS data mode:
          pathHeader

    Attributes:

        sip_contact (str):

        path_header (Optional[str]):

    """

    sip_contact: str = field(metadata={"alias": "sipContact"})

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