/** * 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. */ import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { WebhookResourceSchema } from './WebhookResourceSchema'; /** * * @export * @interface WebhookSchema */ export interface WebhookSchema { /** * * @type {WebhookResourceSchema} * @memberof WebhookSchema */ data?: WebhookResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof WebhookSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof WebhookSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the WebhookSchema interface. */ export declare function instanceOfWebhookSchema(value: object): value is WebhookSchema; export declare function WebhookSchemaFromJSON(json: any): WebhookSchema; export declare function WebhookSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookSchema; export declare function WebhookSchemaToJSON(json: any): WebhookSchema; export declare function WebhookSchemaToJSONTyped(value?: WebhookSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WebhookSchema.d.ts.map