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