com.aliyun.pds20220301.models.CommonFileItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class CommonFileItem extends TeaModel {
@NameInMap("drive_id")
public String driveId;
@NameInMap("file_id")
public String fileId;
@NameInMap("revision_id")
public String revisionId;
public static CommonFileItem build(java.util.Map map) throws Exception {
CommonFileItem self = new CommonFileItem();
return TeaModel.build(map, self);
}
public CommonFileItem setDriveId(String driveId) {
this.driveId = driveId;
return this;
}
public String getDriveId() {
return this.driveId;
}
public CommonFileItem setFileId(String fileId) {
this.fileId = fileId;
return this;
}
public String getFileId() {
return this.fileId;
}
public CommonFileItem setRevisionId(String revisionId) {
this.revisionId = revisionId;
return this;
}
public String getRevisionId() {
return this.revisionId;
}
}