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