/** * 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 SwapEvmApprovalData */ export interface SwapEvmApprovalData { /** * ERC-20 contract to approve * @type {string} * @memberof SwapEvmApprovalData */ tokenAddress: string; /** * Contract that needs the allowance (e.g. LiFi Diamond) * @type {string} * @memberof SwapEvmApprovalData */ spenderAddress: string; /** * Amount to approve in token's smallest unit * @type {string} * @memberof SwapEvmApprovalData */ amount: string; } export declare function SwapEvmApprovalDataFromJSON(json: any): SwapEvmApprovalData; export declare function SwapEvmApprovalDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SwapEvmApprovalData; export declare function SwapEvmApprovalDataToJSON(value?: SwapEvmApprovalData | null): any;