com.antgroup.antchain.openapi.demo.models.Host Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-demo Show documentation
Show all versions of openapi-demo Show documentation
Ant Chain DEMO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class Host extends TeaModel {
// test_2e1ae924805f
@NameInMap("system_name")
@Validation(required = true)
public String systemName;
// 地址
@NameInMap("address")
@Validation(required = true)
public String address;
public static Host build(java.util.Map map) throws Exception {
Host self = new Host();
return TeaModel.build(map, self);
}
public Host setSystemName(String systemName) {
this.systemName = systemName;
return this;
}
public String getSystemName() {
return this.systemName;
}
public Host setAddress(String address) {
this.address = address;
return this;
}
public String getAddress() {
return this.address;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy