com.aliyun.dingtalkmicro_app_1_0.models.AddMemberToAppRoleRequest 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.dingtalkmicro_app_1_0.models;
import com.aliyun.tea.*;
public class AddMemberToAppRoleRequest extends TeaModel {
@NameInMap("deptIdList")
public java.util.List deptIdList;
/**
* This parameter is required.
*/
@NameInMap("opUserId")
public String opUserId;
/**
* This parameter is required.
*/
@NameInMap("scopeVersion")
public Long scopeVersion;
@NameInMap("userIdList")
public java.util.List userIdList;
public static AddMemberToAppRoleRequest build(java.util.Map map) throws Exception {
AddMemberToAppRoleRequest self = new AddMemberToAppRoleRequest();
return TeaModel.build(map, self);
}
public AddMemberToAppRoleRequest setDeptIdList(java.util.List deptIdList) {
this.deptIdList = deptIdList;
return this;
}
public java.util.List getDeptIdList() {
return this.deptIdList;
}
public AddMemberToAppRoleRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
public AddMemberToAppRoleRequest setScopeVersion(Long scopeVersion) {
this.scopeVersion = scopeVersion;
return this;
}
public Long getScopeVersion() {
return this.scopeVersion;
}
public AddMemberToAppRoleRequest setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}