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

com.aliyun.dingtalkexclusive_1_0.models.GetPartnerTypeByParentIdResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class GetPartnerTypeByParentIdResponseBody extends TeaModel {
    // 子标签列表
    @NameInMap("data")
    public java.util.List data;

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

    public GetPartnerTypeByParentIdResponseBody setData(java.util.List data) {
        this.data = data;
        return this;
    }
    public java.util.List getData() {
        return this.data;
    }

    public static class GetPartnerTypeByParentIdResponseBodyData extends TeaModel {
        // 子标签id
        @NameInMap("labelId")
        public String labelId;

        // 目前无意义
        @NameInMap("typeId")
        public Float typeId;

        // 子标签名
        @NameInMap("typeName")
        public String typeName;

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

        public GetPartnerTypeByParentIdResponseBodyData setLabelId(String labelId) {
            this.labelId = labelId;
            return this;
        }
        public String getLabelId() {
            return this.labelId;
        }

        public GetPartnerTypeByParentIdResponseBodyData setTypeId(Float typeId) {
            this.typeId = typeId;
            return this;
        }
        public Float getTypeId() {
            return this.typeId;
        }

        public GetPartnerTypeByParentIdResponseBodyData setTypeName(String typeName) {
            this.typeName = typeName;
            return this;
        }
        public String getTypeName() {
            return this.typeName;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy