com.antgroup.antchain.openapi.demo.models.Identity 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 Identity extends TeaModel {
// ak
@NameInMap("ak")
@Validation(required = true)
public String ak;
public static Identity build(java.util.Map map) throws Exception {
Identity self = new Identity();
return TeaModel.build(map, self);
}
public Identity setAk(String ak) {
this.ak = ak;
return this;
}
public String getAk() {
return this.ak;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy