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

com.alipay.api.domain.PromoxCrowdMatchModel Maven / Gradle / Ivy

package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 智慧人群客群匹配接口返回结果
 *
 * @author auto create
 * @since 1.0, 2018-07-16 17:26:10
 */
public class PromoxCrowdMatchModel extends AlipayObject {

	private static final long serialVersionUID = 8635771879646553697L;

	/**
	 * 客群码
	 */
	@ApiField("crowd_code")
	private String crowdCode;

	/**
	 * 是否匹配
	 */
	@ApiField("is_match")
	private Boolean isMatch;

	public String getCrowdCode() {
		return this.crowdCode;
	}
	public void setCrowdCode(String crowdCode) {
		this.crowdCode = crowdCode;
	}

	public Boolean getIsMatch() {
		return this.isMatch;
	}
	public void setIsMatch(Boolean isMatch) {
		this.isMatch = isMatch;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy