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

Hierarchy (View Summary)

Properties

action: "setAuthenticationMode"

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

password?: string

Required when authMode is Password.