com.aliyun.dingtalkexclusive_1_0.models.SaveWhiteAppRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class SaveWhiteAppRequest extends TeaModel {
@NameInMap("agentIdList")
@Deprecated
public java.util.List agentIdList;
/**
* This parameter is required.
*
* example:
* {"openShareControl":[123],"openClipboardPaste":[123]}
*/
@NameInMap("agentIdMap")
public String agentIdMap;
/**
* example:
* add
*/
@NameInMap("operation")
@Deprecated
public String operation;
public static SaveWhiteAppRequest build(java.util.Map map) throws Exception {
SaveWhiteAppRequest self = new SaveWhiteAppRequest();
return TeaModel.build(map, self);
}
public SaveWhiteAppRequest setAgentIdList(java.util.List agentIdList) {
this.agentIdList = agentIdList;
return this;
}
public java.util.List getAgentIdList() {
return this.agentIdList;
}
public SaveWhiteAppRequest setAgentIdMap(String agentIdMap) {
this.agentIdMap = agentIdMap;
return this;
}
public String getAgentIdMap() {
return this.agentIdMap;
}
public SaveWhiteAppRequest setOperation(String operation) {
this.operation = operation;
return this;
}
public String getOperation() {
return this.operation;
}
}