com.aliyun.dingtalkwatt_1_0.models.SendPopupRequest 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 SendPopupRequest 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 SendPopupRequest build(java.util.Map map) throws Exception {
SendPopupRequest self = new SendPopupRequest();
return TeaModel.build(map, self);
}
public SendPopupRequest setContent(java.util.Map content) {
this.content = content;
return this;
}
public java.util.Map getContent() {
return this.content;
}
public SendPopupRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public SendPopupRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public SendPopupRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}