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

com.alipay.api.domain.PromoApplyItemDetailInfoVO 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 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, 2023-12-27 15:53:01
 */
public class PromoApplyItemDetailInfoVO extends AlipayObject {

	private static final long serialVersionUID = 4364142366474144334L;

	/**
	 * 优惠申领金额或者数量,金额时单位:分。需要根据budget_type字段区分金额和数量
	 */
	@ApiField("apply_amount")
	private String applyAmount;

	/**
	 * 优惠申领的预算类型
	 */
	@ApiField("budget_type")
	private String budgetType;

	/**
	 * 支付宝会员等级
	 */
	@ApiField("member_level")
	private String memberLevel;

	/**
	 * 营销优惠子类型
	 */
	@ApiField("promotion_sub_type")
	private String promotionSubType;

	/**
	 * 营销优惠类型
	 */
	@ApiField("promotion_type")
	private String promotionType;

	/**
	 * 子营销申领明细,包含子营销申领消耗的名称和数量
	 */
	@ApiListField("sub_promo_infos")
	@ApiField("sub_promo_info_v_o")
	private List subPromoInfos;

	public String getApplyAmount() {
		return this.applyAmount;
	}
	public void setApplyAmount(String applyAmount) {
		this.applyAmount = applyAmount;
	}

	public String getBudgetType() {
		return this.budgetType;
	}
	public void setBudgetType(String budgetType) {
		this.budgetType = budgetType;
	}

	public String getMemberLevel() {
		return this.memberLevel;
	}
	public void setMemberLevel(String memberLevel) {
		this.memberLevel = memberLevel;
	}

	public String getPromotionSubType() {
		return this.promotionSubType;
	}
	public void setPromotionSubType(String promotionSubType) {
		this.promotionSubType = promotionSubType;
	}

	public String getPromotionType() {
		return this.promotionType;
	}
	public void setPromotionType(String promotionType) {
		this.promotionType = promotionType;
	}

	public List getSubPromoInfos() {
		return this.subPromoInfos;
	}
	public void setSubPromoInfos(List subPromoInfos) {
		this.subPromoInfos = subPromoInfos;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy