com.aliyun.dingtalkstorage_1_0.models.GetRecycleBinResponseBody 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.dingtalkstorage_1_0.models;
import com.aliyun.tea.*;
public class GetRecycleBinResponseBody extends TeaModel {
@NameInMap("recycleBin")
public GetRecycleBinResponseBodyRecycleBin recycleBin;
public static GetRecycleBinResponseBody build(java.util.Map map) throws Exception {
GetRecycleBinResponseBody self = new GetRecycleBinResponseBody();
return TeaModel.build(map, self);
}
public GetRecycleBinResponseBody setRecycleBin(GetRecycleBinResponseBodyRecycleBin recycleBin) {
this.recycleBin = recycleBin;
return this;
}
public GetRecycleBinResponseBodyRecycleBin getRecycleBin() {
return this.recycleBin;
}
public static class GetRecycleBinResponseBodyRecycleBin extends TeaModel {
/**
* example:
* recyclebin_id
*/
@NameInMap("id")
public String id;
/**
* example:
* SPACE
*/
@NameInMap("scope")
public String scope;
/**
* example:
* scope_id
*/
@NameInMap("scopeId")
public String scopeId;
public static GetRecycleBinResponseBodyRecycleBin build(java.util.Map map) throws Exception {
GetRecycleBinResponseBodyRecycleBin self = new GetRecycleBinResponseBodyRecycleBin();
return TeaModel.build(map, self);
}
public GetRecycleBinResponseBodyRecycleBin setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetRecycleBinResponseBodyRecycleBin setScope(String scope) {
this.scope = scope;
return this;
}
public String getScope() {
return this.scope;
}
public GetRecycleBinResponseBodyRecycleBin setScopeId(String scopeId) {
this.scopeId = scopeId;
return this;
}
public String getScopeId() {
return this.scopeId;
}
}
}