UNPKG

@apideck/node

Version:
62 lines (61 loc) 1.71 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 { Links } from './Links'; import { Meta } from './Meta'; import { Raw } from './Raw'; import { WebhookEventLog } from './WebhookEventLog'; /** * * @export * @interface GetWebhookEventLogsResponse */ export interface GetWebhookEventLogsResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetWebhookEventLogsResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetWebhookEventLogsResponse */ status: string; /** * * @type {Array<WebhookEventLog>} * @memberof GetWebhookEventLogsResponse */ data: Array<WebhookEventLog>; /** * * @type {Meta} * @memberof GetWebhookEventLogsResponse */ meta?: Meta; /** * * @type {Links} * @memberof GetWebhookEventLogsResponse */ links?: Links; /** * * @type {Raw} * @memberof GetWebhookEventLogsResponse */ _raw?: Raw | null; } export declare function GetWebhookEventLogsResponseFromJSON(json: any): GetWebhookEventLogsResponse; export declare function GetWebhookEventLogsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetWebhookEventLogsResponse; export declare function GetWebhookEventLogsResponseToJSON(value?: GetWebhookEventLogsResponse | null): any;