com.antgroup.antchain.openapi.demo.models.TestClass 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 TestClass extends TeaModel {
// 1
@NameInMap("test")
@Validation(required = true)
public String test;
// 2
@NameInMap("demo")
@Validation(required = true)
public String demo;
// 3
@NameInMap("demo1")
@Validation(required = true)
public String demo1;
// 22
@NameInMap("demo2")
@Validation(required = true)
public String demo2;
public static TestClass build(java.util.Map map) throws Exception {
TestClass self = new TestClass();
return TeaModel.build(map, self);
}
public TestClass setTest(String test) {
this.test = test;
return this;
}
public String getTest() {
return this.test;
}
public TestClass setDemo(String demo) {
this.demo = demo;
return this;
}
public String getDemo() {
return this.demo;
}
public TestClass setDemo1(String demo1) {
this.demo1 = demo1;
return this;
}
public String getDemo1() {
return this.demo1;
}
public TestClass setDemo2(String demo2) {
this.demo2 = demo2;
return this;
}
public String getDemo2() {
return this.demo2;
}
}