com.alipay.api.response.AlipayOpenPublicMatchuserLabelDeleteResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.ErrorMatcher;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.public.matchuser.label.delete response.
*
* @author auto create
* @since 1.0, 2017-06-01 11:25:22
*/
public class AlipayOpenPublicMatchuserLabelDeleteResponse extends AlipayResponse {
private static final long serialVersionUID = 4619725353694874275L;
/**
* 用户打标失败数量
*/
@ApiField("error_count")
private Long errorCount;
/**
* 出错的匹配器列表
*/
@ApiListField("error_matchers")
@ApiField("error_matcher")
private List errorMatchers;
public void setErrorCount(Long errorCount) {
this.errorCount = errorCount;
}
public Long getErrorCount( ) {
return this.errorCount;
}
public void setErrorMatchers(List errorMatchers) {
this.errorMatchers = errorMatchers;
}
public List getErrorMatchers( ) {
return this.errorMatchers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy