UNPKG

@meeting-baas/sdk

Version:

Official SDK for Meeting BaaS API - https://meetingbaas.com

31 lines (30 loc) 850 B
/** * 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 ResyncAllCalendarsResponse */ export interface ResyncAllCalendarsResponse { /** * List of calendar UUIDs that failed to resync, with detailed error messages explaining the failure reason * @type {Array<Array<any>>} * @memberof ResyncAllCalendarsResponse */ 'errors': Array<Array<any>>; /** * List of calendar UUIDs that were successfully resynced with their calendar provider (Google, Microsoft) * @type {Array<string>} * @memberof ResyncAllCalendarsResponse */ 'syncedCalendars': Array<string>; }