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

com.antgroup.antchain.openapi.ato.models.StaticDataModuleDetail Maven / Gradle / Ivy

There is a newer version: 1.10.16
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;

import com.aliyun.tea.*;

public class StaticDataModuleDetail extends TeaModel {
    // 描述
    @NameInMap("property_text")
    @Validation(required = true)
    public String propertyText;

    // 商户类型
    @NameInMap("property_value")
    @Validation(required = true)
    public String propertyValue;

    // 叶子结点,目前存的一级类目下的二级类目
    @NameInMap("children_detail_list")
    public String childrenDetailList;

    // 是否有叶子结点
    @NameInMap("has_children")
    public Boolean hasChildren;

    public static StaticDataModuleDetail build(java.util.Map map) throws Exception {
        StaticDataModuleDetail self = new StaticDataModuleDetail();
        return TeaModel.build(map, self);
    }

    public StaticDataModuleDetail setPropertyText(String propertyText) {
        this.propertyText = propertyText;
        return this;
    }
    public String getPropertyText() {
        return this.propertyText;
    }

    public StaticDataModuleDetail setPropertyValue(String propertyValue) {
        this.propertyValue = propertyValue;
        return this;
    }
    public String getPropertyValue() {
        return this.propertyValue;
    }

    public StaticDataModuleDetail setChildrenDetailList(String childrenDetailList) {
        this.childrenDetailList = childrenDetailList;
        return this;
    }
    public String getChildrenDetailList() {
        return this.childrenDetailList;
    }

    public StaticDataModuleDetail setHasChildren(Boolean hasChildren) {
        this.hasChildren = hasChildren;
        return this;
    }
    public Boolean getHasChildren() {
        return this.hasChildren;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy