com.bimface.sdk.bean.request.CreateFolderRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bimface-java-sdk Show documentation
Show all versions of bimface-java-sdk Show documentation
Bimface provide the required call java sdk.
The newest version!
package com.bimface.sdk.bean.request;
import io.swagger.annotations.ApiModelProperty;
public class CreateFolderRequest {
@ApiModelProperty(value = "父目录文件ID,parentId和parentPath,必须二选一填入")
private String parentId;
@ApiModelProperty(value = "父目录文件路径,parentId和parentPath,必须二选一填入")
private String parentPath;
@ApiModelProperty(value = "文件夹名称")
private String name;
public String getParentId() {
return parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
public String getParentPath() {
return parentPath;
}
public void setParentPath(String parentPath) {
this.parentPath = parentPath;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "CreateFolderRequest{" +
"parentId='" + parentId + '\'' +
", parentPath='" + parentPath + '\'' +
", name='" + name + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy