InteractionRoutes

Signature

export interface InteractionRoutes

Properties

1

Methods

0

No methods.

Properties

interactions: (id: string) => (token: string) => {    callback: {        post(args: RestArguments<RESTPostAPIInteractionCallbackJSONBody, OmitInsert<RESTPostAPIInteractionCallbackQuery, 'with_response', {            with_response: true;        }>>): Promise<RESTPostAPIInteractionCallbackResult>;        post(args: RestArguments<RESTPostAPIInteractionCallbackJSONBody, OmitInsert<RESTPostAPIInteractionCallbackQuery, 'with_response', {            with_response: false;        }>>): Promise<undefined>;        post(args: RestArguments<RESTPostAPIInteractionCallbackJSONBody, RESTPostAPIInteractionCallbackQuery>): Promise<RESTPostAPIInteractionCallbackResult | undefined>;    };};