/** * 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 { User } from './User'; /** * * @export * @interface DashboardWalletUser */ export interface DashboardWalletUser { /** * * @type {string} * @memberof DashboardWalletUser */ wallet: string; /** * * @type {User} * @memberof DashboardWalletUser */ user: User; } /** * Check if a given object implements the DashboardWalletUser interface. */ export declare function instanceOfDashboardWalletUser(value: object): value is DashboardWalletUser; export declare function DashboardWalletUserFromJSON(json: any): DashboardWalletUser; export declare function DashboardWalletUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardWalletUser; export declare function DashboardWalletUserToJSON(value?: DashboardWalletUser | null): any;