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 CreateWebhookResponse */ export interface CreateWebhookResponse { /** * HTTP Response Status Code * @type {number} * @memberof CreateWebhookResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof CreateWebhookResponse */ status: string; /** * * @type {Webhook} * @memberof CreateWebhookResponse */ data: Webhook; /** * * @type {Raw} * @memberof CreateWebhookResponse */ _raw?: Raw | null; } export declare function CreateWebhookResponseFromJSON(json: any): CreateWebhookResponse; export declare function CreateWebhookResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateWebhookResponse; export declare function CreateWebhookResponseToJSON(value?: CreateWebhookResponse | null): any;