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

com.alipay.api.domain.DiscountInfoData 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.39.218.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, 2021-01-05 13:56:01
 */
public class DiscountInfoData extends AlipayObject {

	private static final long serialVersionUID = 6139284551465663582L;

	/**
	 * 优惠金额
	 */
	@ApiField("discount_amount")
	private String discountAmount;

	/**
	 * 优惠名称
	 */
	@ApiField("discount_name")
	private String discountName;

	/**
	 * 优惠跳转链接地址
	 */
	@ApiField("discount_page_link")
	private String discountPageLink;

	/**
	 * 优惠数量
	 */
	@ApiField("discount_quantity")
	private Long discountQuantity;

	/**
	 * 外部优惠id
	 */
	@ApiField("external_discount_id")
	private String externalDiscountId;

	public String getDiscountAmount() {
		return this.discountAmount;
	}
	public void setDiscountAmount(String discountAmount) {
		this.discountAmount = discountAmount;
	}

	public String getDiscountName() {
		return this.discountName;
	}
	public void setDiscountName(String discountName) {
		this.discountName = discountName;
	}

	public String getDiscountPageLink() {
		return this.discountPageLink;
	}
	public void setDiscountPageLink(String discountPageLink) {
		this.discountPageLink = discountPageLink;
	}

	public Long getDiscountQuantity() {
		return this.discountQuantity;
	}
	public void setDiscountQuantity(Long discountQuantity) {
		this.discountQuantity = discountQuantity;
	}

	public String getExternalDiscountId() {
		return this.externalDiscountId;
	}
	public void setExternalDiscountId(String externalDiscountId) {
		this.externalDiscountId = externalDiscountId;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy