com.alipay.api.response.AlipayMobilePublicMessageLabelSendResponse Java Examples

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