Skip to content

SIPAuthenticationUserNamePassword

Bases: OCIType

User's authentication service information.

Attributes:

sip_authentication_user_name (str):

sip_authentication_password (str):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class SIPAuthenticationUserNamePassword(OCIType):
    """User's authentication service information.

    Attributes:

        sip_authentication_user_name (str):

        sip_authentication_password (str):

    """

    sip_authentication_user_name: str = field(
        metadata={"alias": "sipAuthenticationUserName"}
    )

    sip_authentication_password: str = field(
        metadata={"alias": "sipAuthenticationPassword"}
    )