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

com.aliyun.dingtalkdingmi_1_0.models.GetDingMeBaseDataRequest Maven / Gradle / Ivy

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