![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkwatt_1_0.models.SendSearchShadeRequest 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.dingtalkwatt_1_0.models;
import com.aliyun.tea.*;
public class SendSearchShadeRequest extends TeaModel {
@NameInMap("content")
public java.util.Map content;
@NameInMap("endTime")
public Long endTime;
@NameInMap("startTime")
public Long startTime;
@NameInMap("userId")
public String userId;
public static SendSearchShadeRequest build(java.util.Map map) throws Exception {
SendSearchShadeRequest self = new SendSearchShadeRequest();
return TeaModel.build(map, self);
}
public SendSearchShadeRequest setContent(java.util.Map content) {
this.content = content;
return this;
}
public java.util.Map getContent() {
return this.content;
}
public SendSearchShadeRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public SendSearchShadeRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public SendSearchShadeRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy