/** * 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 PaymentSource: { readonly Checkout: "checkout"; readonly ExpressCheckout: "express_checkout"; readonly AdminPortal: "admin_portal"; readonly PaymentLink: "payment_link"; }; export type PaymentSource = typeof PaymentSource[keyof typeof PaymentSource]; export declare function instanceOfPaymentSource(value: any): boolean; export declare function PaymentSourceFromJSON(json: any): PaymentSource; export declare function PaymentSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentSource; export declare function PaymentSourceToJSON(value?: PaymentSource | null): any; export declare function PaymentSourceToJSONTyped(value: any, ignoreDiscriminator: boolean): PaymentSource;