/** * 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 UpdateWebhookResponse */ export interface UpdateWebhookResponse { /** * * @type {Webhook} * @memberof UpdateWebhookResponse */ webhook?: Webhook; } /** * Check if a given object implements the UpdateWebhookResponse interface. */ export declare function instanceOfUpdateWebhookResponse(value: object): value is UpdateWebhookResponse; export declare function UpdateWebhookResponseFromJSON(json: any): UpdateWebhookResponse; export declare function UpdateWebhookResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateWebhookResponse; export declare function UpdateWebhookResponseToJSON(json: any): UpdateWebhookResponse; export declare function UpdateWebhookResponseToJSONTyped(value?: UpdateWebhookResponse | null, ignoreDiscriminator?: boolean): any;