/** * 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 ExtractWebhookLogDetail */ export interface ExtractWebhookLogDetail { /** * * @type {string} * @memberof ExtractWebhookLogDetail */ 'id': string; /** * * @type {string} * @memberof ExtractWebhookLogDetail */ 'traceId': string; /** * * @type {number} * @memberof ExtractWebhookLogDetail */ 'attemptNumber': number; /** * * @type {WebhookLogStatus} * @memberof ExtractWebhookLogDetail */ 'status': WebhookLogStatus; /** * * @type {number} * @memberof ExtractWebhookLogDetail */ 'statusCode': number | null; /** * * @type {string} * @memberof ExtractWebhookLogDetail */ 'errorMessage': string | null; /** * * @type {Date} * @memberof ExtractWebhookLogDetail */ 'firedAt': Date | null; /** * * @type {Date} * @memberof ExtractWebhookLogDetail */ 'createdAt': Date; /** * * @type {{ [key: string]: any | null; }} * @memberof ExtractWebhookLogDetail */ 'requestPayload': { [key: string]: any | null; } | null; /** * * @type {string} * @memberof ExtractWebhookLogDetail */ 'responseBody': string | null; } /** * Check if a given object implements the ExtractWebhookLogDetail interface. */ export declare function instanceOfExtractWebhookLogDetail(value: object): value is ExtractWebhookLogDetail; export declare function ExtractWebhookLogDetailFromJSON(json: any): ExtractWebhookLogDetail; export declare function ExtractWebhookLogDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExtractWebhookLogDetail; export declare function ExtractWebhookLogDetailToJSON(json: any): ExtractWebhookLogDetail; export declare function ExtractWebhookLogDetailToJSONTyped(value?: ExtractWebhookLogDetail | null, ignoreDiscriminator?: boolean): any;