Interface AppsSendRequestParams

interface AppsSendRequestParams {
    key?: string;
    name?: string;
    separate?: number | boolean;
    text?: string;
    type?: "request" | "invite";
    user_id: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

key?: string

special string key to be sent with the request

name?: string
separate?: number | boolean
text?: string

request text

type?: "request" | "invite"

request type. Values: 'invite' - if the request is sent to a user who does not have the app installed,, 'request' - if a user has already installed the app

user_id: number

id of the user to send a request

Generated using TypeDoc