/** * 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 WalletsBreakdownResult */ export interface WalletsBreakdownResult { /** * Display name of the wallet provider * @type {string} * @memberof WalletsBreakdownResult */ walletNameDisplay: string; /** * Number of wallets for this provider * @type {number} * @memberof WalletsBreakdownResult */ nWallets: number; } export declare function WalletsBreakdownResultFromJSON(json: any): WalletsBreakdownResult; export declare function WalletsBreakdownResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletsBreakdownResult; export declare function WalletsBreakdownResultToJSON(value?: WalletsBreakdownResult | null): any;