/** * My API * API documentation for my Laravel app * * 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 PaymentStatus: { readonly Success: "success"; readonly Failure: "failure"; }; export type PaymentStatus = typeof PaymentStatus[keyof typeof PaymentStatus]; export declare function instanceOfPaymentStatus(value: any): boolean; export declare function PaymentStatusFromJSON(json: any): PaymentStatus; export declare function PaymentStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentStatus; export declare function PaymentStatusToJSON(value?: PaymentStatus | null): any; export declare function PaymentStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): PaymentStatus;