![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdingmi_1_0.models.GetDingMeBaseDataRequest 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.dingtalkdingmi_1_0.models;
import com.aliyun.tea.*;
public class GetDingMeBaseDataRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* dsfsfr434
*/
@NameInMap("appKey")
public String appKey;
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("byDay")
public Boolean byDay;
/**
* This parameter is required.
*
* example:
* 20210506
*/
@NameInMap("endDay")
public String endDay;
/**
* This parameter is required.
*
* example:
* 20210405
*/
@NameInMap("startDay")
public String startDay;
public static GetDingMeBaseDataRequest build(java.util.Map map) throws Exception {
GetDingMeBaseDataRequest self = new GetDingMeBaseDataRequest();
return TeaModel.build(map, self);
}
public GetDingMeBaseDataRequest setAppKey(String appKey) {
this.appKey = appKey;
return this;
}
public String getAppKey() {
return this.appKey;
}
public GetDingMeBaseDataRequest setByDay(Boolean byDay) {
this.byDay = byDay;
return this;
}
public Boolean getByDay() {
return this.byDay;
}
public GetDingMeBaseDataRequest setEndDay(String endDay) {
this.endDay = endDay;
return this;
}
public String getEndDay() {
return this.endDay;
}
public GetDingMeBaseDataRequest setStartDay(String startDay) {
this.startDay = startDay;
return this;
}
public String getStartDay() {
return this.startDay;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy