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