/** * 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. */ /** * * @export * @interface PriceData */ export interface PriceData { /** * Current USD price of the native token * @type {number} * @memberof PriceData */ nativeTokenUsdPrice?: number; } export declare function PriceDataFromJSON(json: any): PriceData; export declare function PriceDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): PriceData; export declare function PriceDataToJSON(value?: PriceData | null): any;