com.alipay.api.response.AlipayMobilePublicLabelQueryResponse Java Examples

The following examples show how to use com.alipay.api.response.AlipayMobilePublicLabelQueryResponse. 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: AlipayMobilePublicLabelQueryRequest.java    From alipay-sdk-java-all with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicLabelQueryResponse> getResponseClass() {
	return AlipayMobilePublicLabelQueryResponse.class;
}
 
Example #2
Source File: AlipayMobilePublicLabelQueryRequest.java    From alipay-sdk with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicLabelQueryResponse> getResponseClass() {
	return AlipayMobilePublicLabelQueryResponse.class;
}
 
Example #3
Source File: AlipayMobilePublicLabelQueryRequest.java    From pay with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicLabelQueryResponse> getResponseClass() {
	return AlipayMobilePublicLabelQueryResponse.class;
}
 
Example #4
Source File: JwLableAPI.java    From jeewx-api with Apache License 2.0 2 votes vote down vote up
/**
 * 查询标签
 * 
 * @param appAuthToken
 * @return
 * @throws AlipayApiException
 */
public static AlipayMobilePublicLabelQueryResponse lablequery(String appAuthToken,AlipayConfig config) throws AlipayApiException {
	AlipayMobilePublicLabelQueryRequest request = new AlipayMobilePublicLabelQueryRequest();
	request.putOtherTextParam("app_auth_token", appAuthToken);
	return AlipayClientFactory.getAlipayClientInstance(config).execute(request);
}