com.aliyun.dingtalkmicro_app_1_0.models.GetAppResourceUseInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkmicro_app_1_0.models;
import com.aliyun.tea.*;
public class GetAppResourceUseInfoRequest extends TeaModel {
/**
* example:
* api_count
*/
@NameInMap("benefitCode")
public String benefitCode;
/**
* example:
* 202302
*/
@NameInMap("endTime")
public String endTime;
/**
* example:
* month
*/
@NameInMap("periodType")
public String periodType;
/**
* example:
* 202301
*/
@NameInMap("startTime")
public String startTime;
public static GetAppResourceUseInfoRequest build(java.util.Map map) throws Exception {
GetAppResourceUseInfoRequest self = new GetAppResourceUseInfoRequest();
return TeaModel.build(map, self);
}
public GetAppResourceUseInfoRequest setBenefitCode(String benefitCode) {
this.benefitCode = benefitCode;
return this;
}
public String getBenefitCode() {
return this.benefitCode;
}
public GetAppResourceUseInfoRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public GetAppResourceUseInfoRequest setPeriodType(String periodType) {
this.periodType = periodType;
return this;
}
public String getPeriodType() {
return this.periodType;
}
public GetAppResourceUseInfoRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}