All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.AlipayOpenPublicMatchuserLabelDeleteModel 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-06-01 11:25:22
 */
public class AlipayOpenPublicMatchuserLabelDeleteModel extends AlipayObject {

	private static final long serialVersionUID = 8495262684222525527L;

	/**
	 * 标签id
	 */
	@ApiField("label_id")
	private String labelId;

	/**
	 * 支付宝用户匹配器列表,最多传入10条
	 */
	@ApiListField("matchers")
	@ApiField("matcher")
	private List matchers;

	public String getLabelId() {
		return this.labelId;
	}
	public void setLabelId(String labelId) {
		this.labelId = labelId;
	}

	public List getMatchers() {
		return this.matchers;
	}
	public void setMatchers(List matchers) {
		this.matchers = matchers;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy