/** * 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. */ import { WalletDetail } from './WalletDetail'; /** * * @export * @interface WalletsResponse */ export interface WalletsResponse { /** * List of detailed wallet objects matching the query * @type {Array} * @memberof WalletsResponse */ wallets: Array; /** * Total number of wallets matching the filter * @type {number} * @memberof WalletsResponse */ count: number; /** * Maximum number of wallets returned * @type {number} * @memberof WalletsResponse */ limit?: number; /** * Number of wallets skipped * @type {number} * @memberof WalletsResponse */ offset?: number; } export declare function WalletsResponseFromJSON(json: any): WalletsResponse; export declare function WalletsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletsResponse; export declare function WalletsResponseToJSON(value?: WalletsResponse | null): any;