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

com.antgroup.antchain.openapi.demo.models.Host Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
// 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