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

com.alipay.api.domain.VoucherPackageSalesLiteInfo 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, 2022-07-13 19:58:53
 */
public class VoucherPackageSalesLiteInfo extends AlipayObject {

	private static final long serialVersionUID = 2554312276855348142L;

	/**
	 * 券包预算,单位是份数
	 */
	@ApiField("budget")
	private Long budget;

	/**
	 * 券包售卖价格,单位是元
	 */
	@ApiField("sale_price")
	private String salePrice;

	public Long getBudget() {
		return this.budget;
	}
	public void setBudget(Long budget) {
		this.budget = budget;
	}

	public String getSalePrice() {
		return this.salePrice;
	}
	public void setSalePrice(String salePrice) {
		this.salePrice = salePrice;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy