UNPKG

@apideck/node

Version:
48 lines (47 loc) 1.3 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.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 { Raw } from './Raw'; import { Webhook } from './Webhook'; /** * * @export * @interface DeleteWebhookResponse */ export interface DeleteWebhookResponse { /** * HTTP Response Status Code * @type {number} * @memberof DeleteWebhookResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof DeleteWebhookResponse */ status: string; /** * * @type {Webhook} * @memberof DeleteWebhookResponse */ data: Webhook; /** * * @type {Raw} * @memberof DeleteWebhookResponse */ _raw?: Raw | null; } export declare function DeleteWebhookResponseFromJSON(json: any): DeleteWebhookResponse; export declare function DeleteWebhookResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteWebhookResponse; export declare function DeleteWebhookResponseToJSON(value?: DeleteWebhookResponse | null): any;