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

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

There is a newer version: 1.1.1
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 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy