/** * 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 { CheckoutGasEstimate } from './CheckoutGasEstimate'; /** * * @export * @interface CheckoutFeeBreakdown */ export interface CheckoutFeeBreakdown { /** * Total fees for the transaction in USD * @type {string} * @memberof CheckoutFeeBreakdown */ totalFeeUsd?: string; /** * * @type {CheckoutGasEstimate} * @memberof CheckoutFeeBreakdown */ gasEstimate?: CheckoutGasEstimate; } export declare function CheckoutFeeBreakdownFromJSON(json: any): CheckoutFeeBreakdown; export declare function CheckoutFeeBreakdownFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckoutFeeBreakdown; export declare function CheckoutFeeBreakdownToJSON(value?: CheckoutFeeBreakdown | null): any;