com.antgroup.antchain.openapi.demo.models.TestAPIObject 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 TestAPIObject extends TeaModel {
// test
@NameInMap("id")
@Validation(required = true)
public Long id;
public static TestAPIObject build(java.util.Map map) throws Exception {
TestAPIObject self = new TestAPIObject();
return TeaModel.build(map, self);
}
public TestAPIObject setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
}