com.alipay.api.domain.AlipayCloudCloudbaseResourceusageDailyQueryModel 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-11 11:49:11
*/
public class AlipayCloudCloudbaseResourceusageDailyQueryModel extends AlipayObject {
private static final long serialVersionUID = 5222279941124734787L;
/**
* 小程序id
*/
@ApiField("biz_app_id")
private String bizAppId;
/**
* 环境id
*/
@ApiField("biz_env_id")
private String bizEnvId;
/**
* 结束日期
*/
@ApiField("end_date")
private String endDate;
/**
* 计费项编码
*/
@ApiField("fee_item_code")
private String feeItemCode;
/**
* 开始日期
*/
@ApiField("start_date")
private String startDate;
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 String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getFeeItemCode() {
return this.feeItemCode;
}
public void setFeeItemCode(String feeItemCode) {
this.feeItemCode = feeItemCode;
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy