/** * 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 GetWebhookResponse */ export interface GetWebhookResponse { /** * * @type {Webhook} * @memberof GetWebhookResponse */ webhook?: Webhook; } /** * Check if a given object implements the GetWebhookResponse interface. */ export declare function instanceOfGetWebhookResponse(value: object): value is GetWebhookResponse; export declare function GetWebhookResponseFromJSON(json: any): GetWebhookResponse; export declare function GetWebhookResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetWebhookResponse; export declare function GetWebhookResponseToJSON(json: any): GetWebhookResponse; export declare function GetWebhookResponseToJSONTyped(value?: GetWebhookResponse | null, ignoreDiscriminator?: boolean): any;