com.antgroup.antchain.openapi.riskplus.models.DubheFileInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// 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;
}
}