/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const WebhookMethod: { readonly Post: "POST"; readonly Put: "PUT"; readonly Get: "GET"; readonly Delete: "DELETE"; readonly Patch: "PATCH"; }; export type WebhookMethod = typeof WebhookMethod[keyof typeof WebhookMethod]; export declare function instanceOfWebhookMethod(value: any): boolean; export declare function WebhookMethodFromJSON(json: any): WebhookMethod; export declare function WebhookMethodFromJSONTyped(json: any, _ignoreDiscriminator: boolean): WebhookMethod; export declare function WebhookMethodToJSON(value?: WebhookMethod | null): any;