All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalklive_1_0.models.ModifyFeedWhiteListRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy