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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
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, 2018-01-22 19:53:03
 */
public class InteligentMerchantPromo extends AlipayObject {

	private static final long serialVersionUID = 5654832871825217681L;

	/**
	 * 商户自运营活动,当promo_type='GENERAL_MERCHANT',该对象不能为空,其他类型无效
	 */
	@ApiField("general_promo")
	private InteligentGeneralMerchantPromo generalPromo;

	/**
	 * 子活动营销类型;枚举值:(GENERAL_MERCHANT:商户自运营活动)
	 */
	@ApiField("promo_type")
	private String promoType;

	public InteligentGeneralMerchantPromo getGeneralPromo() {
		return this.generalPromo;
	}
	public void setGeneralPromo(InteligentGeneralMerchantPromo generalPromo) {
		this.generalPromo = generalPromo;
	}

	public String getPromoType() {
		return this.promoType;
	}
	public void setPromoType(String promoType) {
		this.promoType = promoType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy