com.alipay.api.domain.AlipayOpenPublicMatchuserLabelCreateModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 匹配用户标签添加接口
*
* @author auto create
* @since 1.0, 2017-07-03 21:12:51
*/
public class AlipayOpenPublicMatchuserLabelCreateModel extends AlipayObject {
private static final long serialVersionUID = 5199167382686982968L;
/**
* 标签id,调用创建标签接口会返回label_id
*/
@ApiField("label_id")
private String labelId;
/**
* 标签值,由开发者自主指定,标签值类型要满足创建标签接口中data_type参数的限定。
*/
@ApiField("label_value")
private String labelValue;
/**
* 支付宝用户匹配器列表,最多传入10条
*/
@ApiListField("matchers")
@ApiField("matcher")
private List matchers;
public String getLabelId() {
return this.labelId;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
}
public String getLabelValue() {
return this.labelValue;
}
public void setLabelValue(String labelValue) {
this.labelValue = labelValue;
}
public List getMatchers() {
return this.matchers;
}
public void setMatchers(List matchers) {
this.matchers = matchers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy