com.alipay.api.response.AlipayMobilePublicLabelAddResponse Java Examples

The following examples show how to use com.alipay.api.response.AlipayMobilePublicLabelAddResponse. 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: AlipayMobilePublicLabelAddRequest.java    From alipay-sdk-java-all with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicLabelAddResponse> getResponseClass() {
	return AlipayMobilePublicLabelAddResponse.class;
}
 
Example #2
Source File: AlipayMobilePublicLabelAddRequest.java    From alipay-sdk with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicLabelAddResponse> getResponseClass() {
	return AlipayMobilePublicLabelAddResponse.class;
}
 
Example #3
Source File: AlipayMobilePublicLabelAddRequest.java    From pay with Apache License 2.0 4 votes vote down vote up
public Class<AlipayMobilePublicLabelAddResponse> getResponseClass() {
	return AlipayMobilePublicLabelAddResponse.class;
}
 
Example #4
Source File: JwLableAPI.java    From jeewx-api with Apache License 2.0 3 votes vote down vote up
/**
 * 创建标签
 * 
 * @param appAuthToken
 * @param name
 *            标签名不能重复
 * @return
 * @throws AlipayApiException
 */
public static AlipayMobilePublicLabelAddResponse lableadd(String appAuthToken, String name,AlipayConfig config) throws AlipayApiException {
	AlipayMobilePublicLabelAddRequest request = new AlipayMobilePublicLabelAddRequest();
	request.putOtherTextParam("app_auth_token", appAuthToken);
	JSONObject json = new JSONObject();
	json.put("name", name);
	request.setBizContent(json.toJSONString());
	return AlipayClientFactory.getAlipayClientInstance(config).execute(request);
}