/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.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 { AleoCuratedTokenPrice } from './AleoCuratedTokenPrice'; /** * * @export * @interface AleoCuratedPricesResponseResult */ export interface AleoCuratedPricesResponseResult { /** * Curated token list for the requested network. Every curated * entry is returned regardless of whether the caller holds the * token; the widget renders the full surface and joins by * `(address, isNative)`. * @type {Array} * @memberof AleoCuratedPricesResponseResult */ prices: Array; } export declare function AleoCuratedPricesResponseResultFromJSON(json: any): AleoCuratedPricesResponseResult; export declare function AleoCuratedPricesResponseResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): AleoCuratedPricesResponseResult; export declare function AleoCuratedPricesResponseResultToJSON(value?: AleoCuratedPricesResponseResult | null): any;