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

com.antgroup.antchain.openapi.riskplus.models.DubheFileInfo Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;

import com.aliyun.tea.*;

public class DubheFileInfo extends TeaModel {
    // 文件访问路径
    @NameInMap("file_path")
    @Validation(required = true)
    public String filePath;

    public static DubheFileInfo build(java.util.Map map) throws Exception {
        DubheFileInfo self = new DubheFileInfo();
        return TeaModel.build(map, self);
    }

    public DubheFileInfo setFilePath(String filePath) {
        this.filePath = filePath;
        return this;
    }
    public String getFilePath() {
        return this.filePath;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy