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

com.aliyun.dingtalkmicro_app_1_0.models.GetAppResourceUseInfoRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy