UNPKG

@apideck/node

Version:
53 lines (52 loc) 1.46 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'; /** * * @export * @interface ResolveWebhookResponse */ export interface ResolveWebhookResponse { /** * HTTP Response Status Code * @type {number} * @memberof ResolveWebhookResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof ResolveWebhookResponse */ status: string; /** * UUID of the request received * @type {string} * @memberof ResolveWebhookResponse */ request_id?: string; /** * ISO Datetime webhook event was received * @type {string} * @memberof ResolveWebhookResponse */ timestamp?: string; /** * * @type {Raw} * @memberof ResolveWebhookResponse */ _raw?: Raw | null; } export declare function ResolveWebhookResponseFromJSON(json: any): ResolveWebhookResponse; export declare function ResolveWebhookResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveWebhookResponse; export declare function ResolveWebhookResponseToJSON(value?: ResolveWebhookResponse | null): any;