/** * 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 { Coin } from './Coin'; /** * * @export * @interface CoinResponse */ export interface CoinResponse { /** * * @type {Coin} * @memberof CoinResponse */ data?: Coin; } /** * Check if a given object implements the CoinResponse interface. */ export declare function instanceOfCoinResponse(value: object): value is CoinResponse; export declare function CoinResponseFromJSON(json: any): CoinResponse; export declare function CoinResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoinResponse; export declare function CoinResponseToJSON(value?: CoinResponse | null): any;