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