Interface AccountChangePasswordParams

interface AccountChangePasswordParams {
    change_password_hash?: string;
    new_password: string;
    old_password?: string;
    restore_sid?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

change_password_hash?: string

Hash received after a successful OAuth authorization with a code got by SMS. (If the password is changed right after the access was restored)

new_password: string

New password that will be set as a current

old_password?: string

Current user password.

restore_sid?: string

Session id received after the [vk.com/dev/auth.restore|auth.restore] method is executed. (If the password is changed right after the access was restored)

Generated using TypeDoc