UNPKG

@meeting-baas/sdk

Version:

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

32 lines (31 loc) 704 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. */ import type { DeleteStatus } from './delete-status'; /** * * @export * @interface DeleteResponse */ export interface DeleteResponse { /** * Whether the request was processed successfully * @type {boolean} * @memberof DeleteResponse */ 'ok': boolean; /** * The detailed status of the deletion operation * @type {DeleteStatus} * @memberof DeleteResponse */ 'status': DeleteStatus; }