/** * 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 { AleoCuratedPricesResponseResult } from './AleoCuratedPricesResponseResult'; /** * Response wrapper for `GET /chains/aleo/prices`. Always present even * when the requested network has no curated tokens — `result.prices` * will simply be an empty array. * @export * @interface AleoCuratedPricesResponse */ export interface AleoCuratedPricesResponse { /** * * @type {AleoCuratedPricesResponseResult} * @memberof AleoCuratedPricesResponse */ result: AleoCuratedPricesResponseResult; } export declare function AleoCuratedPricesResponseFromJSON(json: any): AleoCuratedPricesResponse; export declare function AleoCuratedPricesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AleoCuratedPricesResponse; export declare function AleoCuratedPricesResponseToJSON(value?: AleoCuratedPricesResponse | null): any;