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

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

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, 2024-05-20 11:31:56
 */
public class AlipayCloudCloudbaseResourcepackageRenewConsultModel extends AlipayObject {

	private static final long serialVersionUID = 1816581537766331318L;

	/**
	 * 小程序id
	 */
	@ApiField("biz_app_id")
	private String bizAppId;

	/**
	 * 环境id
	 */
	@ApiField("biz_env_id")
	private String bizEnvId;

	/**
	 * 优惠券code列表
	 */
	@ApiListField("coupon_codes")
	@ApiField("string")
	private List couponCodes;

	/**
	 * 续费周期数(月)
	 */
	@ApiField("renew_month")
	private Long renewMonth;

	public String getBizAppId() {
		return this.bizAppId;
	}
	public void setBizAppId(String bizAppId) {
		this.bizAppId = bizAppId;
	}

	public String getBizEnvId() {
		return this.bizEnvId;
	}
	public void setBizEnvId(String bizEnvId) {
		this.bizEnvId = bizEnvId;
	}

	public List getCouponCodes() {
		return this.couponCodes;
	}
	public void setCouponCodes(List couponCodes) {
		this.couponCodes = couponCodes;
	}

	public Long getRenewMonth() {
		return this.renewMonth;
	}
	public void setRenewMonth(Long renewMonth) {
		this.renewMonth = renewMonth;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy