/** * Endaoment API * The official Endaoment API & SDK endpoints * * The version of the OpenAPI document: 0.0.1 * * * 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 NdaoSdkSwapQuote */ export interface NdaoSdkSwapQuote { /** * The price impact this swap will produce * @type {number} * @memberof NdaoSdkSwapQuote */ priceImpact: number; /** * The expected output for this swap * @type {string} * @memberof NdaoSdkSwapQuote */ expectedUsdc: string; /** * The minimum value this swap will output * @type {string} * @memberof NdaoSdkSwapQuote */ minimumTolerableUsdc: string; } /** * Check if a given object implements the NdaoSdkSwapQuote interface. */ export declare function instanceOfNdaoSdkSwapQuote(value: object): boolean; export declare function NdaoSdkSwapQuoteFromJSON(json: any): NdaoSdkSwapQuote; export declare function NdaoSdkSwapQuoteFromJSONTyped(json: any, ignoreDiscriminator: boolean): NdaoSdkSwapQuote; export declare function NdaoSdkSwapQuoteToJSON(value?: NdaoSdkSwapQuote | null): any;