com.aliyun.dingtalklive_1_0.models.ModifyFeedWhiteListRequest 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 ModifyFeedWhiteListRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("action")
public Long action;
@NameInMap("modifyUserList")
public java.util.List modifyUserList;
/**
* This parameter is required.
*
* example:
* 1206186351746728
*/
@NameInMap("userId")
public String userId;
public static ModifyFeedWhiteListRequest build(java.util.Map map) throws Exception {
ModifyFeedWhiteListRequest self = new ModifyFeedWhiteListRequest();
return TeaModel.build(map, self);
}
public ModifyFeedWhiteListRequest setAction(Long action) {
this.action = action;
return this;
}
public Long getAction() {
return this.action;
}
public ModifyFeedWhiteListRequest setModifyUserList(java.util.List modifyUserList) {
this.modifyUserList = modifyUserList;
return this;
}
public java.util.List getModifyUserList() {
return this.modifyUserList;
}
public ModifyFeedWhiteListRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}