/** * 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 { WebhookAttributesSchema } from './WebhookAttributesSchema'; /** * * @export * @interface CreateWebhookRequestBodyData */ export interface CreateWebhookRequestBodyData { /** * * @type {CreateWebhookRequestBodyDataTypeEnum} * @memberof CreateWebhookRequestBodyData */ type: CreateWebhookRequestBodyDataTypeEnum; /** * * @type {WebhookAttributesSchema} * @memberof CreateWebhookRequestBodyData */ attributes: WebhookAttributesSchema; /** * * @type {object} * @memberof CreateWebhookRequestBodyData */ relationships?: object; } /** * @export */ export declare const CreateWebhookRequestBodyDataTypeEnum: { readonly Webhooks: "webhooks"; }; export type CreateWebhookRequestBodyDataTypeEnum = typeof CreateWebhookRequestBodyDataTypeEnum[keyof typeof CreateWebhookRequestBodyDataTypeEnum]; /** * Check if a given object implements the CreateWebhookRequestBodyData interface. */ export declare function instanceOfCreateWebhookRequestBodyData(value: object): value is CreateWebhookRequestBodyData; export declare function CreateWebhookRequestBodyDataFromJSON(json: any): CreateWebhookRequestBodyData; export declare function CreateWebhookRequestBodyDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateWebhookRequestBodyData; export declare function CreateWebhookRequestBodyDataToJSON(json: any): CreateWebhookRequestBodyData; export declare function CreateWebhookRequestBodyDataToJSONTyped(value?: CreateWebhookRequestBodyData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateWebhookRequestBodyData.d.ts.map