com.alipay.api.response.AlipayMobilePublicInfoQueryResponse Java Examples

The following examples show how to use com.alipay.api.response.AlipayMobilePublicInfoQueryResponse. 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: AlipayMobilePublicInfoQueryRequest.java    From alipay-sdk-java-all with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicInfoQueryResponse> getResponseClass() {
	return AlipayMobilePublicInfoQueryResponse.class;
}
 
Example #2
Source File: AlipayMobilePublicInfoQueryRequest.java    From alipay-sdk with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicInfoQueryResponse> getResponseClass() {
	return AlipayMobilePublicInfoQueryResponse.class;
}
 
Example #3
Source File: AlipayMobilePublicInfoQueryRequest.java    From pay with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicInfoQueryResponse> getResponseClass() {
	return AlipayMobilePublicInfoQueryResponse.class;
}
 
Example #4
Source File: JwServiceWindowAPI.java    From jeewx-api with Apache License 2.0 2 votes vote down vote up
/**
 * 服务窗基础信息查询方法
 * 
 * @param appAuthToken
 * @return
 * @throws AlipayApiException
 */
public static AlipayMobilePublicInfoQueryResponse infoQuery(String appAuthToken,AlipayConfig config) throws AlipayApiException {
	AlipayMobilePublicInfoQueryRequest request = new AlipayMobilePublicInfoQueryRequest();
	request.putOtherTextParam("app_auth_token", appAuthToken);
	return AlipayClientFactory.getAlipayClientInstance(config).execute(request);
}