com.antgroup.antchain.openapi.demo.models.NestModel Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class NestModel extends TeaModel {
// aaaa
@NameInMap("a")
@Validation(required = true)
public String a;
public static NestModel build(java.util.Map map) throws Exception {
NestModel self = new NestModel();
return TeaModel.build(map, self);
}
public NestModel setA(String a) {
this.a = a;
return this;
}
public String getA() {
return this.a;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy