com.aliyun.dingtalkworkflow_1_0.models.GetSpaceWithDownloadAuthResponseBody 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.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class GetSpaceWithDownloadAuthResponseBody extends TeaModel {
@NameInMap("result")
public GetSpaceWithDownloadAuthResponseBodyResult result;
/**
* example:
* true
*/
@NameInMap("success")
public Boolean success;
public static GetSpaceWithDownloadAuthResponseBody build(java.util.Map map) throws Exception {
GetSpaceWithDownloadAuthResponseBody self = new GetSpaceWithDownloadAuthResponseBody();
return TeaModel.build(map, self);
}
public GetSpaceWithDownloadAuthResponseBody setResult(GetSpaceWithDownloadAuthResponseBodyResult result) {
this.result = result;
return this;
}
public GetSpaceWithDownloadAuthResponseBodyResult getResult() {
return this.result;
}
public GetSpaceWithDownloadAuthResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class GetSpaceWithDownloadAuthResponseBodyResult extends TeaModel {
/**
* example:
* 3996960664
*/
@NameInMap("spaceId")
public Long spaceId;
public static GetSpaceWithDownloadAuthResponseBodyResult build(java.util.Map map) throws Exception {
GetSpaceWithDownloadAuthResponseBodyResult self = new GetSpaceWithDownloadAuthResponseBodyResult();
return TeaModel.build(map, self);
}
public GetSpaceWithDownloadAuthResponseBodyResult setSpaceId(Long spaceId) {
this.spaceId = spaceId;
return this;
}
public Long getSpaceId() {
return this.spaceId;
}
}
}