/** * 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. */ /** * * @export */ export declare const WebhookLogStatus: { readonly Pending: "pending"; readonly Success: "success"; readonly Retrying: "retrying"; readonly Failed: "failed"; }; export type WebhookLogStatus = typeof WebhookLogStatus[keyof typeof WebhookLogStatus]; export declare function instanceOfWebhookLogStatus(value: any): boolean; export declare function WebhookLogStatusFromJSON(json: any): WebhookLogStatus; export declare function WebhookLogStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookLogStatus; export declare function WebhookLogStatusToJSON(value?: WebhookLogStatus | null): any; export declare function WebhookLogStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): WebhookLogStatus;