本文整理汇总了Java中com.alipay.api.response.AlipayTradeFastpayRefundQueryResponse.getBody方法的典型用法代码示例。如果您正苦于以下问题:Java AlipayTradeFastpayRefundQueryResponse.getBody方法的具体用法?Java AlipayTradeFastpayRefundQueryResponse.getBody怎么用?Java AlipayTradeFastpayRefundQueryResponse.getBody使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.alipay.api.response.AlipayTradeFastpayRefundQueryResponse
的用法示例。
在下文中一共展示了AlipayTradeFastpayRefundQueryResponse.getBody方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: tradeRefundQuery
import com.alipay.api.response.AlipayTradeFastpayRefundQueryResponse; //导入方法依赖的package包/类
/**
* 退款查询
* https://doc.open.alipay.com/docs/api.htm?spm=a219a.7629065.0.0.KQeTSa&apiId=1049&docType=4
* @param model
* @return {String}
* @throws {AlipayApiException}
*/
public static String tradeRefundQuery(AlipayTradeFastpayRefundQueryModel model) throws AlipayApiException{
AlipayTradeFastpayRefundQueryResponse response = tradeRefundQueryToResponse(model);
return response.getBody();
}
示例2: tradeRefundQuery
import com.alipay.api.response.AlipayTradeFastpayRefundQueryResponse; //导入方法依赖的package包/类
/**
* 退款查询
*
* @param model
* @return
* @throws AlipayApiException
*/
public static String tradeRefundQuery(AlipayTradeFastpayRefundQueryModel model) throws AlipayApiException {
AlipayTradeFastpayRefundQueryResponse response = tradeRefundQueryToResponse(model);
return response.getBody();
}
示例3: tradeRefundQuery
import com.alipay.api.response.AlipayTradeFastpayRefundQueryResponse; //导入方法依赖的package包/类
/**
* 退款查询
* https://doc.open.alipay.com/docs/api.htm?spm=a219a.7629065.0.0.KQeTSa&apiId=1049&docType=4
*
* @param model
* @return
* @throws AlipayApiException
*/
public static String tradeRefundQuery(AlipayTradeFastpayRefundQueryModel model) throws AlipayApiException {
AlipayTradeFastpayRefundQueryResponse response = tradeRefundQueryToResponse(model);
return response.getBody();
}