com.antgroup.antchain.openapi.ato.models.StaticData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ato Show documentation
Show all versions of openapi-ato Show documentation
Ant Chain ATO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;
import com.aliyun.tea.*;
public class StaticData extends TeaModel {
// 商户类型
@NameInMap("module_name")
@Validation(required = true)
public String moduleName;
// 静态数据详情
@NameInMap("module_detail_list")
@Validation(required = true)
public java.util.List moduleDetailList;
public static StaticData build(java.util.Map map) throws Exception {
StaticData self = new StaticData();
return TeaModel.build(map, self);
}
public StaticData setModuleName(String moduleName) {
this.moduleName = moduleName;
return this;
}
public String getModuleName() {
return this.moduleName;
}
public StaticData setModuleDetailList(java.util.List moduleDetailList) {
this.moduleDetailList = moduleDetailList;
return this;
}
public java.util.List getModuleDetailList() {
return this.moduleDetailList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy