/** * Audius API * * The version of the OpenAPI document: 1.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 type { DashboardWalletUser } from './DashboardWalletUser'; /** * * @export * @interface DashboardWalletUsersResponse */ export interface DashboardWalletUsersResponse { /** * * @type {Array} * @memberof DashboardWalletUsersResponse */ data?: Array; } /** * Check if a given object implements the DashboardWalletUsersResponse interface. */ export declare function instanceOfDashboardWalletUsersResponse(value: object): value is DashboardWalletUsersResponse; export declare function DashboardWalletUsersResponseFromJSON(json: any): DashboardWalletUsersResponse; export declare function DashboardWalletUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardWalletUsersResponse; export declare function DashboardWalletUsersResponseToJSON(value?: DashboardWalletUsersResponse | null): any;