/** * 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 UpdateWebhookRequestBodyData */ export interface UpdateWebhookRequestBodyData { /** * * @type {UpdateWebhookRequestBodyDataTypeEnum} * @memberof UpdateWebhookRequestBodyData */ type: UpdateWebhookRequestBodyDataTypeEnum; /** * * @type {string} * @memberof UpdateWebhookRequestBodyData */ id: string; /** * * @type {WebhookAttributesSchema} * @memberof UpdateWebhookRequestBodyData */ attributes: WebhookAttributesSchema; } /** * @export */ export declare const UpdateWebhookRequestBodyDataTypeEnum: { readonly Webhooks: "webhooks"; }; export type UpdateWebhookRequestBodyDataTypeEnum = typeof UpdateWebhookRequestBodyDataTypeEnum[keyof typeof UpdateWebhookRequestBodyDataTypeEnum]; /** * Check if a given object implements the UpdateWebhookRequestBodyData interface. */ export declare function instanceOfUpdateWebhookRequestBodyData(value: object): value is UpdateWebhookRequestBodyData; export declare function UpdateWebhookRequestBodyDataFromJSON(json: any): UpdateWebhookRequestBodyData; export declare function UpdateWebhookRequestBodyDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateWebhookRequestBodyData; export declare function UpdateWebhookRequestBodyDataToJSON(json: any): UpdateWebhookRequestBodyData; export declare function UpdateWebhookRequestBodyDataToJSONTyped(value?: UpdateWebhookRequestBodyData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateWebhookRequestBodyData.d.ts.map