@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
27 lines (25 loc) • 928 B
text/typescript
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export type ShowLoadingAnimationRequest = {
/**
* User ID of the target user for whom the loading animation is to be displayed.
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#display-a-loading-indicator-request-body">chatId Documentation</a>
*/
chatId: string /**/;
/**
* The number of seconds to display the loading indicator. It must be a multiple of 5. The maximum value is 60 seconds.
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#display-a-loading-indicator-request-body">loadingSeconds Documentation</a>
*/
loadingSeconds?: number /**/;
};