@meeting-baas/sdk
Version:
Official SDK for Meeting BaaS API - https://meetingbaas.com
49 lines (48 loc) • 881 B
TypeScript
/**
* Meeting BaaS API
* Meeting BaaS API
*
* The version of the OpenAPI document: 1.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
* @interface GetAllBotsQuery
*/
export interface GetAllBotsQuery {
/**
*
* @type {string}
* @memberof GetAllBotsQuery
*/
'bot_id'?: string | null;
/**
*
* @type {string}
* @memberof GetAllBotsQuery
*/
'end_date'?: string | null;
/**
*
* @type {number}
* @memberof GetAllBotsQuery
*/
'limit': number;
/**
*
* @type {number}
* @memberof GetAllBotsQuery
*/
'offset': number;
/**
*
* @type {string}
* @memberof GetAllBotsQuery
*/
'start_date'?: string | null;
}