@meeting-baas/sdk
Version:
Official SDK for Meeting BaaS API - https://meetingbaas.com
32 lines (31 loc) • 838 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.
*/
import type { Event } from './event';
/**
*
* @export
* @interface ListEventResponse
*/
export interface ListEventResponse {
/**
* Vector of calendar events matching the list criteria
* @type {Array<Event>}
* @memberof ListEventResponse
*/
'data': Array<Event>;
/**
* Optional url for fetching the next page of results if there are more results to fetch. The limit of events returned is 100. When None, there are no more results to fetch.
* @type {string}
* @memberof ListEventResponse
*/
'next'?: string | null;
}