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

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

There is a newer version: 1.1.18
Show newest version
package com.alipay.api.domain;

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

/**
 * 分佣推广标的商品模型
 *
 * @author auto create
 * @since 1.0, 2017-02-16 20:40:27
 */
public class PromoteItemModel extends AlipayObject {

	private static final long serialVersionUID = 2188898562317796755L;

	/**
	 * 品牌名称
	 */
	@ApiField("brand_name")
	private String brandName;

	/**
	 * 商户名称
	 */
	@ApiField("merchant_name")
	private String merchantName;

	/**
	 * 券名称
	 */
	@ApiField("voucher_name")
	private String voucherName;

	public String getBrandName() {
		return this.brandName;
	}
	public void setBrandName(String brandName) {
		this.brandName = brandName;
	}

	public String getMerchantName() {
		return this.merchantName;
	}
	public void setMerchantName(String merchantName) {
		this.merchantName = merchantName;
	}

	public String getVoucherName() {
		return this.voucherName;
	}
	public void setVoucherName(String voucherName) {
		this.voucherName = voucherName;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy