/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { Webhook } from './Webhook'; /** * * @export * @interface CreateWebhookResponse */ export interface CreateWebhookResponse { /** * * @type {Webhook} * @memberof CreateWebhookResponse */ webhook?: Webhook; } /** * Check if a given object implements the CreateWebhookResponse interface. */ export declare function instanceOfCreateWebhookResponse(value: object): value is CreateWebhookResponse; export declare function CreateWebhookResponseFromJSON(json: any): CreateWebhookResponse; export declare function CreateWebhookResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateWebhookResponse; export declare function CreateWebhookResponseToJSON(json: any): CreateWebhookResponse; export declare function CreateWebhookResponseToJSONTyped(value?: CreateWebhookResponse | null, ignoreDiscriminator?: boolean): any;