/** * 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 { UserCoinWithAccounts } from './UserCoinWithAccounts'; /** * * @export * @interface UserCoinResponse */ export interface UserCoinResponse { /** * * @type {UserCoinWithAccounts} * @memberof UserCoinResponse */ data?: UserCoinWithAccounts; } /** * Check if a given object implements the UserCoinResponse interface. */ export declare function instanceOfUserCoinResponse(value: object): value is UserCoinResponse; export declare function UserCoinResponseFromJSON(json: any): UserCoinResponse; export declare function UserCoinResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserCoinResponse; export declare function UserCoinResponseToJSON(value?: UserCoinResponse | null): any;