com.aliyun.dingtalkindustry_1_0.models.DigitalStoreUpdateAuthInfoRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class DigitalStoreUpdateAuthInfoRequest extends TeaModel {
@NameInMap("updateUserList")
public java.util.List updateUserList;
public static DigitalStoreUpdateAuthInfoRequest build(java.util.Map map) throws Exception {
DigitalStoreUpdateAuthInfoRequest self = new DigitalStoreUpdateAuthInfoRequest();
return TeaModel.build(map, self);
}
public DigitalStoreUpdateAuthInfoRequest setUpdateUserList(java.util.List updateUserList) {
this.updateUserList = updateUserList;
return this;
}
public java.util.List getUpdateUserList() {
return this.updateUserList;
}
public static class DigitalStoreUpdateAuthInfoRequestUpdateUserListRoleList extends TeaModel {
/**
* example:
* 区域督导
*/
@NameInMap("roleName")
public String roleName;
/**
* example:
* 255
*/
@NameInMap("sourceRoleId")
public String sourceRoleId;
public static DigitalStoreUpdateAuthInfoRequestUpdateUserListRoleList build(java.util.Map map) throws Exception {
DigitalStoreUpdateAuthInfoRequestUpdateUserListRoleList self = new DigitalStoreUpdateAuthInfoRequestUpdateUserListRoleList();
return TeaModel.build(map, self);
}
public DigitalStoreUpdateAuthInfoRequestUpdateUserListRoleList setRoleName(String roleName) {
this.roleName = roleName;
return this;
}
public String getRoleName() {
return this.roleName;
}
public DigitalStoreUpdateAuthInfoRequestUpdateUserListRoleList setSourceRoleId(String sourceRoleId) {
this.sourceRoleId = sourceRoleId;
return this;
}
public String getSourceRoleId() {
return this.sourceRoleId;
}
}
public static class DigitalStoreUpdateAuthInfoRequestUpdateUserListUserAuthList extends TeaModel {
/**
* example:
* 8733901123
*/
@NameInMap("dingDeptId")
public String dingDeptId;
/**
* example:
* 998383831
*/
@NameInMap("sourceDeptId")
public String sourceDeptId;
public static DigitalStoreUpdateAuthInfoRequestUpdateUserListUserAuthList build(java.util.Map map) throws Exception {
DigitalStoreUpdateAuthInfoRequestUpdateUserListUserAuthList self = new DigitalStoreUpdateAuthInfoRequestUpdateUserListUserAuthList();
return TeaModel.build(map, self);
}
public DigitalStoreUpdateAuthInfoRequestUpdateUserListUserAuthList setDingDeptId(String dingDeptId) {
this.dingDeptId = dingDeptId;
return this;
}
public String getDingDeptId() {
return this.dingDeptId;
}
public DigitalStoreUpdateAuthInfoRequestUpdateUserListUserAuthList setSourceDeptId(String sourceDeptId) {
this.sourceDeptId = sourceDeptId;
return this;
}
public String getSourceDeptId() {
return this.sourceDeptId;
}
}
public static class DigitalStoreUpdateAuthInfoRequestUpdateUserList extends TeaModel {
@NameInMap("roleList")
public java.util.List roleList;
@NameInMap("userAuthList")
public java.util.List userAuthList;
/**
* example:
* 0998182231
*/
@NameInMap("userId")
public String userId;
public static DigitalStoreUpdateAuthInfoRequestUpdateUserList build(java.util.Map map) throws Exception {
DigitalStoreUpdateAuthInfoRequestUpdateUserList self = new DigitalStoreUpdateAuthInfoRequestUpdateUserList();
return TeaModel.build(map, self);
}
public DigitalStoreUpdateAuthInfoRequestUpdateUserList setRoleList(java.util.List roleList) {
this.roleList = roleList;
return this;
}
public java.util.List getRoleList() {
return this.roleList;
}
public DigitalStoreUpdateAuthInfoRequestUpdateUserList setUserAuthList(java.util.List userAuthList) {
this.userAuthList = userAuthList;
return this;
}
public java.util.List getUserAuthList() {
return this.userAuthList;
}
public DigitalStoreUpdateAuthInfoRequestUpdateUserList setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
}