com.aliyun.dingtalklive_1_0.models.EditFeedReplayRequest 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.dingtalklive_1_0.models;
import com.aliyun.tea.*;
public class EditFeedReplayRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1617356058000
*/
@NameInMap("editEndTime")
public Long editEndTime;
/**
* This parameter is required.
*
* example:
* 1617336058000
*/
@NameInMap("editStartTime")
public Long editStartTime;
/**
* This parameter is required.
*
* example:
* 1206186351746728
*/
@NameInMap("userId")
public String userId;
public static EditFeedReplayRequest build(java.util.Map map) throws Exception {
EditFeedReplayRequest self = new EditFeedReplayRequest();
return TeaModel.build(map, self);
}
public EditFeedReplayRequest setEditEndTime(Long editEndTime) {
this.editEndTime = editEndTime;
return this;
}
public Long getEditEndTime() {
return this.editEndTime;
}
public EditFeedReplayRequest setEditStartTime(Long editStartTime) {
this.editStartTime = editStartTime;
return this;
}
public Long getEditStartTime() {
return this.editStartTime;
}
public EditFeedReplayRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}