/** * 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 * @enum {string} */ export declare enum CheckoutModeEnum { Payment = "payment", Deposit = "deposit" } export declare function CheckoutModeEnumFromJSON(json: any): CheckoutModeEnum; export declare function CheckoutModeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckoutModeEnum; export declare function CheckoutModeEnumToJSON(value?: CheckoutModeEnum | null): any;