Interface IVKApplicationButton

Basic button interface

interface IVKApplicationButton {
    action: {
        app_id: number;
        hash?: string;
        label: string;
        owner_id?: number;
        type: "open_app";
    };
}

Hierarchy (view full)

Properties

Properties

action: {
    app_id: number;
    hash?: string;
    label: string;
    owner_id?: number;
    type: "open_app";
}

Type declaration

  • app_id: number

    The identifier of the called application with type VK Apps

  • Optional hash?: string

    The hash for navigation in the application will be transmitted in the start parameters line after the # character

  • label: string

    Application label, no more than 40 characters

  • Optional owner_id?: number

    ID of the community in which the application is installed, if you want to open it in the context of the community

  • type: "open_app"

Generated using TypeDoc