Type alias LoginArg

LoginArg: {
    formParams: {
        client_id?: string;
        email?: string;
        grant_type: string;
        mfa_code?: string;
        password?: string;
        phone_number?: string;
        refresh_token?: string;
        scope?: string;
        username?: string;
    };
}

Type declaration

  • formParams: {
        client_id?: string;
        email?: string;
        grant_type: string;
        mfa_code?: string;
        password?: string;
        phone_number?: string;
        refresh_token?: string;
        scope?: string;
        username?: string;
    }
    • Optional client_id?: string

      Client ID

    • Optional email?: string

      Email

    • grant_type: string

      Grant type

    • Optional mfa_code?: string

      Software MFA code

    • Optional password?: string

      Password

    • Optional phone_number?: string

      Phone number

    • Optional refresh_token?: string

      Refresh token

    • Optional scope?: string

      Scope

    • Optional username?: string

      Username