/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { WebhookLogStatus } from './WebhookLogStatus'; /** * * @export * @interface ExtractWebhookLogSummary */ export interface ExtractWebhookLogSummary { /** * * @type {string} * @memberof ExtractWebhookLogSummary */ 'id': string; /** * * @type {string} * @memberof ExtractWebhookLogSummary */ 'traceId': string; /** * * @type {number} * @memberof ExtractWebhookLogSummary */ 'attemptNumber': number; /** * * @type {WebhookLogStatus} * @memberof ExtractWebhookLogSummary */ 'status': WebhookLogStatus; /** * * @type {number} * @memberof ExtractWebhookLogSummary */ 'statusCode': number | null; /** * * @type {string} * @memberof ExtractWebhookLogSummary */ 'errorMessage': string | null; /** * * @type {Date} * @memberof ExtractWebhookLogSummary */ 'firedAt': Date | null; /** * * @type {Date} * @memberof ExtractWebhookLogSummary */ 'createdAt': Date; } /** * Check if a given object implements the ExtractWebhookLogSummary interface. */ export declare function instanceOfExtractWebhookLogSummary(value: object): value is ExtractWebhookLogSummary; export declare function ExtractWebhookLogSummaryFromJSON(json: any): ExtractWebhookLogSummary; export declare function ExtractWebhookLogSummaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExtractWebhookLogSummary; export declare function ExtractWebhookLogSummaryToJSON(json: any): ExtractWebhookLogSummary; export declare function ExtractWebhookLogSummaryToJSONTyped(value?: ExtractWebhookLogSummary | null, ignoreDiscriminator?: boolean): any;