UNPKG

@apideck/node

Version:
46 lines (45 loc) 1.32 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. */ /** * * @export * @interface ExecuteWebhookResponse */ export interface ExecuteWebhookResponse { /** * HTTP Response Status Code * @type {number} * @memberof ExecuteWebhookResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof ExecuteWebhookResponse */ status: string; /** * UUID of the request received * @type {string} * @memberof ExecuteWebhookResponse */ request_id?: string; /** * ISO Datetime webhook event was received * @type {string} * @memberof ExecuteWebhookResponse */ timestamp?: string; } export declare function ExecuteWebhookResponseFromJSON(json: any): ExecuteWebhookResponse; export declare function ExecuteWebhookResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteWebhookResponse; export declare function ExecuteWebhookResponseToJSON(value?: ExecuteWebhookResponse | null): any;