Java源码示例:com.alipay.api.response.AlipayMobilePublicLabelUpdateResponse
示例1
public Class<AlipayMobilePublicLabelUpdateResponse> getResponseClass() {
return AlipayMobilePublicLabelUpdateResponse.class;
}
示例2
public Class<AlipayMobilePublicLabelUpdateResponse> getResponseClass() {
return AlipayMobilePublicLabelUpdateResponse.class;
}
示例3
public Class<AlipayMobilePublicLabelUpdateResponse> getResponseClass() {
return AlipayMobilePublicLabelUpdateResponse.class;
}
示例4
/**
* 修改标签
*
* @param appAuthToken
* @param model
* @return
* @throws AlipayApiException
*/
public static AlipayMobilePublicLabelUpdateResponse lableupdate(String appAuthToken, UpDateLable model,AlipayConfig config) throws AlipayApiException {
AlipayMobilePublicLabelUpdateRequest request = new AlipayMobilePublicLabelUpdateRequest();
request.putOtherTextParam("app_auth_token", appAuthToken);
String json = JSONObject.toJSONString(model);
request.setBizContent(json);
return AlipayClientFactory.getAlipayClientInstance(config).execute(request);
}