/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 RecallWebhookRequest */ export interface RecallWebhookRequest { /** * Recall lifecycle event type (e.g. bot.done, bot.in_call_recording, bot.fatal). * @type {string} * @memberof RecallWebhookRequest */ event?: string; /** * * @type {object} * @memberof RecallWebhookRequest */ data?: object; } /** * Check if a given object implements the RecallWebhookRequest interface. */ export declare function instanceOfRecallWebhookRequest(value: object): value is RecallWebhookRequest; export declare function RecallWebhookRequestFromJSON(json: any): RecallWebhookRequest; export declare function RecallWebhookRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecallWebhookRequest; export declare function RecallWebhookRequestToJSON(json: any): RecallWebhookRequest; export declare function RecallWebhookRequestToJSONTyped(value?: RecallWebhookRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RecallWebhookRequest.d.ts.map