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

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

package com.alipay.api.domain;

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

/**
 * 拼团规则
 *
 * @author auto create
 * @since 1.0, 2023-11-13 16:35:58
 */
public class GrouponRule extends AlipayObject {

	private static final long serialVersionUID = 6254719423898777765L;

	/**
	 * 拼团成团人数
	 */
	@ApiField("group_size")
	private String groupSize;

	/**
	 * 拼团价格,单位元
	 */
	@ApiField("groupon_price")
	private String grouponPrice;

	public String getGroupSize() {
		return this.groupSize;
	}
	public void setGroupSize(String groupSize) {
		this.groupSize = groupSize;
	}

	public String getGrouponPrice() {
		return this.grouponPrice;
	}
	public void setGrouponPrice(String grouponPrice) {
		this.grouponPrice = grouponPrice;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy