com.alipay.api.domain.AlipayCloudCloudbaseCouponsOpenQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 开通资源包询券
*
* @author auto create
* @since 1.0, 2024-05-22 17:26:50
*/
public class AlipayCloudCloudbaseCouponsOpenQueryModel extends AlipayObject {
private static final long serialVersionUID = 2168534745232586454L;
/**
* 应用ID
*/
@ApiField("biz_app_id")
private String bizAppId;
/**
* 购买时长(月)
*/
@ApiField("purchase_month")
private Long purchaseMonth;
/**
* 资源包规格编码
- public_cloudd_cd_cn_free_bag
- public_cloudd_cd_cn_base_bag
- public_cloudd_cd_cn_standard_bag
- public_cloudd_cd_cn_pro_bag
- public_cloudd_cd_cn_ent_bag
- public_cloudd_cd_cn_flagship_bag
*/
@ApiField("spec_code")
private String specCode;
public String getBizAppId() {
return this.bizAppId;
}
public void setBizAppId(String bizAppId) {
this.bizAppId = bizAppId;
}
public Long getPurchaseMonth() {
return this.purchaseMonth;
}
public void setPurchaseMonth(Long purchaseMonth) {
this.purchaseMonth = purchaseMonth;
}
public String getSpecCode() {
return this.specCode;
}
public void setSpecCode(String specCode) {
this.specCode = specCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy