/** * 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 { FlowGasEstimate } from './FlowGasEstimate'; /** * Fee breakdown for a flow's quote. * @export * @interface FlowFeeBreakdown */ export interface FlowFeeBreakdown { /** * Total fees for the flow in USD * @type {string} * @memberof FlowFeeBreakdown */ totalFeeUsd?: string; /** * * @type {FlowGasEstimate} * @memberof FlowFeeBreakdown */ gasEstimate?: FlowGasEstimate; } export declare function FlowFeeBreakdownFromJSON(json: any): FlowFeeBreakdown; export declare function FlowFeeBreakdownFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowFeeBreakdown; export declare function FlowFeeBreakdownToJSON(value?: FlowFeeBreakdown | null): any;