com.antgroup.antchain.openapi.demo.models.GroupAClass 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 GroupAClass extends TeaModel {
// -
@NameInMap("product_instance_id")
public String productInstanceId;
// 防伪码类型
@NameInMap("code_type")
@Validation(required = true)
public String codeType;
// 防伪码码值
@NameInMap("code")
@Validation(required = true)
public String code;
public static GroupAClass build(java.util.Map map) throws Exception {
GroupAClass self = new GroupAClass();
return TeaModel.build(map, self);
}
public GroupAClass setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public GroupAClass setCodeType(String codeType) {
this.codeType = codeType;
return this;
}
public String getCodeType() {
return this.codeType;
}
public GroupAClass setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
}