All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.demo.models.GroupAClass Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy