Hierarchy

  • WebEndpoints
    • ChatbotEndpoints

Constructors

Properties

Constructors

Properties

messages: {
    deleteChatbotMessage: (
        _: {
            path: DeleteChatbotMessagePathParams;
            query: DeleteChatbotMessageQueryParams;
        },
    ) => Promise<BaseResponse<DeleteChatbotMessageResponse>>;
    editChatbotMessage: (
        _: {
            body: EditChatbotMessageRequestBody;
            path: EditChatbotMessagePathParams;
        },
    ) => Promise<BaseResponse<EditChatbotMessageResponse>>;
    linkUnfurls: (
        _: { body: LinkUnfurlsRequestBody; path: LinkUnfurlsPathParams },
    ) => Promise<BaseResponse<unknown>>;
    sendChatbotMessage: (
        _: { body: SendChatbotMessagesRequestBody },
    ) => Promise<BaseResponse<object>>;
}

Type declaration