Interface IVKPayPayToGroup

Payment in favor of the group with a given amount

interface IVKPayPayToGroup {
    action: "pay-to-group";
    amount: number;
    data?: string;
    description?: string;
    group_id: number;
}

Properties

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

Payment amount in rubles. The minimum value is 1

data?: string

Arbitrary payload

description?: string

Payment description

group_id: number

Group ID to which the payment will be transferred

Generated using TypeDoc