com.aliyun.dingtalkdrive_1_0.models.ManagementListSpacesRequest 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.dingtalkdrive_1_0.models;
import com.aliyun.tea.*;
public class ManagementListSpacesRequest extends TeaModel {
// 空间id列表
@NameInMap("spaceIds")
public java.util.List spaceIds;
// 用户id
@NameInMap("unionId")
public String unionId;
public static ManagementListSpacesRequest build(java.util.Map map) throws Exception {
ManagementListSpacesRequest self = new ManagementListSpacesRequest();
return TeaModel.build(map, self);
}
public ManagementListSpacesRequest setSpaceIds(java.util.List spaceIds) {
this.spaceIds = spaceIds;
return this;
}
public java.util.List getSpaceIds() {
return this.spaceIds;
}
public ManagementListSpacesRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}