/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { RefundMoneyInInput, RefundMoneyInOutput } from '../models'; export interface RefundsRefundPutRequest { transactionid: number; authorization: string; pSUIPAddress: string; parameters: RefundMoneyInInput; pSUAcceptLanguage?: string; pSUUserAgent?: string; } /** * */ export declare class RefundsApi extends runtime.BaseAPI { /** * The general rules are: Regarding Card Payments: Regarding Sofort: refund is only available for 3 months after the initial payment
Regarding iDEAL: refund is only available for 99 days after the initial payment
* Refund a Money-In */ refundsRefundPutRaw(requestParameters: RefundsRefundPutRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * The general rules are: Regarding Card Payments: Regarding Sofort: refund is only available for 3 months after the initial payment
Regarding iDEAL: refund is only available for 99 days after the initial payment
* Refund a Money-In */ refundsRefundPut(requestParameters: RefundsRefundPutRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }