import type { MerchantOrderInfoResponse, Refund, Result } from './base'; /** * Response message for {@link LinkPayAPI.retrieveRefund} API */ export declare class RetrieveRefundResponse { /** Result object */ result: Result; /** The LinkPay order information which be refunded. Returned when the original LinkPay order is exist. */ merchantOrderInfo?: MerchantOrderInfoResponse; /** The information of refund transaction.Returned when the original refund transaction is exist. */ refund?: Refund; } export default RetrieveRefundResponse;