com.antgroup.antchain.openapi.rms.models.FolderPaths Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class FolderPaths extends TeaModel {
// paths
@NameInMap("paths")
@Validation(required = true)
public java.util.List paths;
public static FolderPaths build(java.util.Map map) throws Exception {
FolderPaths self = new FolderPaths();
return TeaModel.build(map, self);
}
public FolderPaths setPaths(java.util.List paths) {
this.paths = paths;
return this;
}
public java.util.List getPaths() {
return this.paths;
}
}