Interface IVKPayPayToUser

Payment in favor of the user with a given amount

interface IVKPayPayToUser {
    action: "pay-to-user";
    amount: number;
    description?: string;
    user_id: number;
}

Properties

action: "pay-to-user"
amount: number

Payment amount in rubles. The minimum value is 1

description?: string

Payment description

user_id: number

User ID to which the payment will be transferred

Generated using TypeDoc