/** * 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 DepositAmountsConfigInput */ export interface DepositAmountsConfigInput { /** * Minimum deposit amount allowed * @type {string} * @memberof DepositAmountsConfigInput */ minimum?: string; /** * List of preset deposit amount options shown to the user * @type {Array} * @memberof DepositAmountsConfigInput */ presets?: Array; } export declare function DepositAmountsConfigInputFromJSON(json: any): DepositAmountsConfigInput; export declare function DepositAmountsConfigInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): DepositAmountsConfigInput; export declare function DepositAmountsConfigInputToJSON(value?: DepositAmountsConfigInput | null): any;