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

com.alipay.api.domain.ChannelPutPlanCrowdDTO 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, 2022-09-05 11:22:59
 */
public class ChannelPutPlanCrowdDTO extends AlipayObject {

	private static final long serialVersionUID = 4637455629835224113L;

	/**
	 * 外部人群码
	 */
	@ApiField("ext_crowd_key")
	private String extCrowdKey;

	/**
	 * 人群 id
	 */
	@ApiField("id")
	private String id;

	/**
	 * 人群名称
	 */
	@ApiField("name")
	private String name;

	public String getExtCrowdKey() {
		return this.extCrowdKey;
	}
	public void setExtCrowdKey(String extCrowdKey) {
		this.extCrowdKey = extCrowdKey;
	}

	public String getId() {
		return this.id;
	}
	public void setId(String id) {
		this.id = id;
	}

	public String getName() {
		return this.name;
	}
	public void setName(String name) {
		this.name = name;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy