com.aliyun.dingtalkwatt_1_0.models.CreateDeliveryPlanRequest 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 CreateDeliveryPlanRequest extends TeaModel {
@NameInMap("content")
public java.util.Map content;
@NameInMap("endTime")
public Long endTime;
/**
* example:
* 1028
*/
@NameInMap("resId")
public String resId;
@NameInMap("startTime")
public Long startTime;
@NameInMap("userIdList")
public java.util.List userIdList;
public static CreateDeliveryPlanRequest build(java.util.Map map) throws Exception {
CreateDeliveryPlanRequest self = new CreateDeliveryPlanRequest();
return TeaModel.build(map, self);
}
public CreateDeliveryPlanRequest setContent(java.util.Map content) {
this.content = content;
return this;
}
public java.util.Map getContent() {
return this.content;
}
public CreateDeliveryPlanRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public CreateDeliveryPlanRequest setResId(String resId) {
this.resId = resId;
return this;
}
public String getResId() {
return this.resId;
}
public CreateDeliveryPlanRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public CreateDeliveryPlanRequest setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}