com.aliyun.dingtalkdoc_2_0.models.GetTotalNumberOfSpacesResponseBody 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.dingtalkdoc_2_0.models;
import com.aliyun.tea.*;
public class GetTotalNumberOfSpacesResponseBody extends TeaModel {
@NameInMap("spacesCount")
public String spacesCount;
public static GetTotalNumberOfSpacesResponseBody build(java.util.Map map) throws Exception {
GetTotalNumberOfSpacesResponseBody self = new GetTotalNumberOfSpacesResponseBody();
return TeaModel.build(map, self);
}
public GetTotalNumberOfSpacesResponseBody setSpacesCount(String spacesCount) {
this.spacesCount = spacesCount;
return this;
}
public String getSpacesCount() {
return this.spacesCount;
}
}