/** * 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. */ /** * Aggregate wallet counts for all-time and the selected date range * @export * @interface AnalyticsToplineResponseWallets */ export interface AnalyticsToplineResponseWallets { /** * Total number of wallets all-time * @type {number} * @memberof AnalyticsToplineResponseWallets */ allTime: number; /** * Number of wallets in the selected date range * @type {number} * @memberof AnalyticsToplineResponseWallets */ inRange: number; } export declare function AnalyticsToplineResponseWalletsFromJSON(json: any): AnalyticsToplineResponseWallets; export declare function AnalyticsToplineResponseWalletsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsToplineResponseWallets; export declare function AnalyticsToplineResponseWalletsToJSON(value?: AnalyticsToplineResponseWallets | null): any;