/** * 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. */ /** * Estimated gas cost for executing a flow's source transaction. * @export * @interface FlowGasEstimate */ export interface FlowGasEstimate { /** * Estimated gas cost in USD * @type {string} * @memberof FlowGasEstimate */ usdValue?: string; /** * Estimated gas cost in the source chain's native token * @type {string} * @memberof FlowGasEstimate */ nativeValue?: string; /** * Symbol of the native token (e.g. "ETH", "SOL") * @type {string} * @memberof FlowGasEstimate */ nativeSymbol?: string; } export declare function FlowGasEstimateFromJSON(json: any): FlowGasEstimate; export declare function FlowGasEstimateFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowGasEstimate; export declare function FlowGasEstimateToJSON(value?: FlowGasEstimate | null): any;