com.alipay.api.response.AlipayMobilePublicInfoModifyResponse Java Examples
The following examples show how to use
com.alipay.api.response.AlipayMobilePublicInfoModifyResponse.
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: JwServiceWindowAPI.java From jeewx-api with Apache License 2.0 | 5 votes |
/** * 服务窗基础信息修改方法 * * @param appAuthToken * @param serviceWindowsContent * @return * @throws AlipayApiException */ public static AlipayMobilePublicInfoModifyResponse queryAdvertise(String appAuthToken, ServiceWindowsContent serviceWindowsContent,AlipayConfig config) throws AlipayApiException { AlipayMobilePublicInfoModifyRequest request = new AlipayMobilePublicInfoModifyRequest(); request.putOtherTextParam("app_auth_token", appAuthToken); request.setAppName(serviceWindowsContent.getAppName()); request.setLogoUrl(serviceWindowsContent.getLogoUrl()); request.setPublicGreeting(serviceWindowsContent.getPublicGreeting()); request.setLicenseUrl(serviceWindowsContent.getLicenseUrl()); request.setShopPic1(serviceWindowsContent.getShopPic1()); request.setShopPic2(serviceWindowsContent.getShopPic2()); request.setShopPic3(serviceWindowsContent.getShopPic3()); return AlipayClientFactory.getAlipayClientInstance(config).execute(request); }
Example #2
Source File: AlipayMobilePublicInfoModifyRequest.java From alipay-sdk-java-all with Apache License 2.0 | 4 votes |
public Class<AlipayMobilePublicInfoModifyResponse> getResponseClass() { return AlipayMobilePublicInfoModifyResponse.class; }
Example #3
Source File: AlipayMobilePublicInfoModifyRequest.java From alipay-sdk with Apache License 2.0 | 4 votes |
public Class<AlipayMobilePublicInfoModifyResponse> getResponseClass() { return AlipayMobilePublicInfoModifyResponse.class; }
Example #4
Source File: AlipayMobilePublicInfoModifyRequest.java From pay with Apache License 2.0 | 4 votes |
public Class<AlipayMobilePublicInfoModifyResponse> getResponseClass() { return AlipayMobilePublicInfoModifyResponse.class; }