/** * 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 SwapQuote */ export interface SwapQuote { /** * The price impact this swap will produce * @type {number} * @memberof SwapQuote */ priceImpact: number; /** * The expected output for this swap * @type {string} * @memberof SwapQuote */ expectedUsdc: string; /** * The minimum value this swap will output * @type {string} * @memberof SwapQuote */ minimumTolerableUsdc: string; } /** * Check if a given object implements the SwapQuote interface. */ export declare function instanceOfSwapQuote(value: object): boolean; export declare function SwapQuoteFromJSON(json: any): SwapQuote; export declare function SwapQuoteFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapQuote; export declare function SwapQuoteToJSON(value?: SwapQuote | null): any;