/** * Dashboard API * Dashboard API documentation * * 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 * @interface CheckoutFailure */ export interface CheckoutFailure { /** * * @type {string} * @memberof CheckoutFailure */ code: string; /** * Human-readable error message describing the failure * @type {string} * @memberof CheckoutFailure */ message: string; /** * * @type {string} * @memberof CheckoutFailure */ category: string; /** * * @type {string} * @memberof CheckoutFailure */ stage: string; /** * Whether the failed operation can be retried * @type {boolean} * @memberof CheckoutFailure */ retryable: boolean; /** * Additional structured details about the failure * @type {object} * @memberof CheckoutFailure */ details?: object; } export declare function CheckoutFailureFromJSON(json: any): CheckoutFailure; export declare function CheckoutFailureFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckoutFailure; export declare function CheckoutFailureToJSON(value?: CheckoutFailure | null): any;