/** * 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 FundingExternalWalletsMinAmount */ export interface FundingExternalWalletsMinAmount { /** * * @type {string} * @memberof FundingExternalWalletsMinAmount */ amount?: string; /** * * @type {string} * @memberof FundingExternalWalletsMinAmount */ currency?: string; } export declare function FundingExternalWalletsMinAmountFromJSON(json: any): FundingExternalWalletsMinAmount; export declare function FundingExternalWalletsMinAmountFromJSONTyped(json: any, ignoreDiscriminator: boolean): FundingExternalWalletsMinAmount; export declare function FundingExternalWalletsMinAmountToJSON(value?: FundingExternalWalletsMinAmount | null): any;