com.aliyun.dingtalkdrive_1_0.models.AddSpaceRequest 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 AddSpaceRequest extends TeaModel {
// 空间名称
@NameInMap("name")
public String name;
// 用户id
@NameInMap("unionId")
public String unionId;
public static AddSpaceRequest build(java.util.Map map) throws Exception {
AddSpaceRequest self = new AddSpaceRequest();
return TeaModel.build(map, self);
}
public AddSpaceRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public AddSpaceRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}