interface CustomerSetAuthenticationModeAction {
    action: "setAuthenticationMode";
    authMode: string;
    password?: string;
}

Properties

action: "setAuthenticationMode"
authMode: string

Value to set. Changing a Customer's authMode from Password to ExternalAuth deletes the Customer's password.

password?: string

Required when authMode is Password.

Generated using TypeDoc