com.alipay.api.domain.AlipayDataDataserviceBillDownloadurlQueryModel Java Examples
The following examples show how to use
com.alipay.api.domain.AlipayDataDataserviceBillDownloadurlQueryModel.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AlipayServiceImpl.java From fast-family-master with Apache License 2.0 | 5 votes |
@Override public AlipayDataDataserviceBillDownloadurlQueryResponse downBill( AlipayDataDataserviceBillDownloadurlQueryModel model) throws AlipayApiException { AlipayDataDataserviceBillDownloadurlQueryRequest request = new AlipayDataDataserviceBillDownloadurlQueryRequest(); request.setBizModel(model); return alipayClient.execute(request); }
Example #2
Source File: PayDownloadQueryParamChain.java From alipay with Apache License 2.0 | 4 votes |
public PayDownloadQueryParamChain(AlipayClient alipayClient, AlipayDataDataserviceBillDownloadurlQueryModel alipayDataDataserviceBillDownloadurlQueryModel) { this.alipayClient = alipayClient; this.alipayDataDataserviceBillDownloadurlQueryModel = alipayDataDataserviceBillDownloadurlQueryModel; }
Example #3
Source File: PayDownloadQueryChain.java From alipay with Apache License 2.0 | 4 votes |
public PayDownloadQueryChain(AlipayClient alipayClient, AlipayDataDataserviceBillDownloadurlQueryModel alipayDataDataserviceBillDownloadurlQueryModel) { this.alipayClient = alipayClient; this.alipayDataDataserviceBillDownloadurlQueryModel = alipayDataDataserviceBillDownloadurlQueryModel; }
Example #4
Source File: AlipayService.java From fast-family-master with Apache License 2.0 | 2 votes |
/** * 下载账单 * * @param model * @return * @throws AlipayApiException */ AlipayDataDataserviceBillDownloadurlQueryResponse downBill(AlipayDataDataserviceBillDownloadurlQueryModel model) throws AlipayApiException;