All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.rms.models.FolderPaths Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy