com.aliyun.dingtalkstorage_1_0.models.GetRecycleItemResponseBody 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 GetRecycleItemResponseBody extends TeaModel {
@NameInMap("item")
public GetRecycleItemResponseBodyItem item;
public static GetRecycleItemResponseBody build(java.util.Map map) throws Exception {
GetRecycleItemResponseBody self = new GetRecycleItemResponseBody();
return TeaModel.build(map, self);
}
public GetRecycleItemResponseBody setItem(GetRecycleItemResponseBodyItem item) {
this.item = item;
return this;
}
public GetRecycleItemResponseBodyItem getItem() {
return this.item;
}
public static class GetRecycleItemResponseBodyItem extends TeaModel {
/**
* example:
* dentry_id
*/
@NameInMap("dentryId")
public String dentryId;
/**
* example:
* recycle_item_id
*/
@NameInMap("id")
public String id;
/**
* example:
* operator_id
*/
@NameInMap("operatorId")
public String operatorId;
/**
* example:
* 2022-01-01T10:00:00Z
*/
@NameInMap("operatorTime")
public String operatorTime;
/**
* example:
* dentry_name
*/
@NameInMap("originalName")
public String originalName;
/**
* example:
* dentry_path
*/
@NameInMap("originalPath")
public String originalPath;
/**
* example:
* 512
*/
@NameInMap("size")
public Long size;
/**
* example:
* space_id
*/
@NameInMap("spaceId")
public String spaceId;
/**
* example:
* file
*/
@NameInMap("type")
public String type;
public static GetRecycleItemResponseBodyItem build(java.util.Map map) throws Exception {
GetRecycleItemResponseBodyItem self = new GetRecycleItemResponseBodyItem();
return TeaModel.build(map, self);
}
public GetRecycleItemResponseBodyItem setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public GetRecycleItemResponseBodyItem setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetRecycleItemResponseBodyItem setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public GetRecycleItemResponseBodyItem setOperatorTime(String operatorTime) {
this.operatorTime = operatorTime;
return this;
}
public String getOperatorTime() {
return this.operatorTime;
}
public GetRecycleItemResponseBodyItem setOriginalName(String originalName) {
this.originalName = originalName;
return this;
}
public String getOriginalName() {
return this.originalName;
}
public GetRecycleItemResponseBodyItem setOriginalPath(String originalPath) {
this.originalPath = originalPath;
return this;
}
public String getOriginalPath() {
return this.originalPath;
}
public GetRecycleItemResponseBodyItem setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public GetRecycleItemResponseBodyItem setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public GetRecycleItemResponseBodyItem setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}