com.antgroup.antchain.openapi.antdigital_demosdk.models.ResultTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-demosdk Show documentation
Show all versions of openapi-demosdk Show documentation
Ant Chain antdigital_DEMOSDK SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.antdigital_demosdk.models;
import com.aliyun.tea.*;
public class ResultTest extends TeaModel {
// 姓名
@NameInMap("name")
public String name;
public static ResultTest build(java.util.Map map) throws Exception {
ResultTest self = new ResultTest();
return TeaModel.build(map, self);
}
public ResultTest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy