@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
49 lines (44 loc) • 1.38 kB
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.
*/
import { Action } from "./action.js";
import { ActionBase } from "./models.js";
export type DatetimePickerAction = ActionBase & {
type: "datetimepicker";
/**
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">data Documentation</a>
*/
data?: string /**/;
/**
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">mode Documentation</a>
*/
mode?: DatetimePickerAction.ModeEnum /**/;
/**
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">initial Documentation</a>
*/
initial?: string /**/;
/**
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">max Documentation</a>
*/
max?: string /**/;
/**
*
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">min Documentation</a>
*/
min?: string /**/;
};
export namespace DatetimePickerAction {
export type ModeEnum = "date" | "time" | "datetime";
}