com.antgroup.antchain.openapi.demo.models.ShangHaiTest 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 ShangHaiTest extends TeaModel {
// string
@NameInMap("param_1")
public String param1;
// number
@NameInMap("param_2")
public Long param2;
public static ShangHaiTest build(java.util.Map map) throws Exception {
ShangHaiTest self = new ShangHaiTest();
return TeaModel.build(map, self);
}
public ShangHaiTest setParam1(String param1) {
this.param1 = param1;
return this;
}
public String getParam1() {
return this.param1;
}
public ShangHaiTest setParam2(Long param2) {
this.param2 = param2;
return this;
}
public Long getParam2() {
return this.param2;
}
}