/** * 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. */ /** * * @export * @interface RefundMoneyInInput */ export interface RefundMoneyInInput { /** * Refund Amount. If empty, the total amount of the payment will be refunded. * @type {number} * @memberof RefundMoneyInInput */ amountToRefund?: number; /** * Comment Regarding the Refund * Please explain why you refunded * @type {string} * @memberof RefundMoneyInInput */ comment?: string; } /** * Check if a given object implements the RefundMoneyInInput interface. */ export declare function instanceOfRefundMoneyInInput(value: object): boolean; export declare function RefundMoneyInInputFromJSON(json: any): RefundMoneyInInput; export declare function RefundMoneyInInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundMoneyInInput; export declare function RefundMoneyInInputToJSON(value?: RefundMoneyInInput | null): any;