/** * 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 { CoinInsights } from './CoinInsights'; /** * * @export * @interface CoinInsightsResponse */ export interface CoinInsightsResponse { /** * * @type {CoinInsights} * @memberof CoinInsightsResponse */ data?: CoinInsights; } /** * Check if a given object implements the CoinInsightsResponse interface. */ export declare function instanceOfCoinInsightsResponse(value: object): value is CoinInsightsResponse; export declare function CoinInsightsResponseFromJSON(json: any): CoinInsightsResponse; export declare function CoinInsightsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoinInsightsResponse; export declare function CoinInsightsResponseToJSON(value?: CoinInsightsResponse | null): any;