/** * 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. */ /** * * @export * @interface UserCoinAccount */ export interface UserCoinAccount { /** * The token account address * @type {string} * @memberof UserCoinAccount */ account: string; /** * The owner wallet of the token account * @type {string} * @memberof UserCoinAccount */ owner: string; /** * The balance of the coin in the user's account (in wei) * @type {number} * @memberof UserCoinAccount */ balance: number; /** * The balance of the coin in the user's account in USD * @type {number} * @memberof UserCoinAccount */ balanceUsd: number; /** * Whether the account is in the user's in-app wallet * @type {boolean} * @memberof UserCoinAccount */ isInAppWallet: boolean; } /** * Check if a given object implements the UserCoinAccount interface. */ export declare function instanceOfUserCoinAccount(value: object): value is UserCoinAccount; export declare function UserCoinAccountFromJSON(json: any): UserCoinAccount; export declare function UserCoinAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserCoinAccount; export declare function UserCoinAccountToJSON(value?: UserCoinAccount | null): any;