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

com.aliyun.dingtalkorg_culture_1_0.models.QueryOrgHonorsResponseBody 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.dingtalkorg_culture_1_0.models;

import com.aliyun.tea.*;

public class QueryOrgHonorsResponseBody extends TeaModel {
    @NameInMap("result")
    public QueryOrgHonorsResponseBodyResult result;

    @NameInMap("success")
    public Boolean success;

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

    public QueryOrgHonorsResponseBody setResult(QueryOrgHonorsResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public QueryOrgHonorsResponseBodyResult getResult() {
        return this.result;
    }

    public QueryOrgHonorsResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

    public static class QueryOrgHonorsResponseBodyResultOpenHonors extends TeaModel {
        // 荣誉含义
        @NameInMap("honorDesc")
        public String honorDesc;

        // 荣誉id
        @NameInMap("honorId")
        public Long honorId;

        // 荣誉图片url
        @NameInMap("honorImgUrl")
        public String honorImgUrl;

        // 荣誉名字
        @NameInMap("honorName")
        public String honorName;

        // 荣誉附赠的挂件图url
        @NameInMap("honorPendantImgUrl")
        public String honorPendantImgUrl;

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

        public QueryOrgHonorsResponseBodyResultOpenHonors setHonorDesc(String honorDesc) {
            this.honorDesc = honorDesc;
            return this;
        }
        public String getHonorDesc() {
            return this.honorDesc;
        }

        public QueryOrgHonorsResponseBodyResultOpenHonors setHonorId(Long honorId) {
            this.honorId = honorId;
            return this;
        }
        public Long getHonorId() {
            return this.honorId;
        }

        public QueryOrgHonorsResponseBodyResultOpenHonors setHonorImgUrl(String honorImgUrl) {
            this.honorImgUrl = honorImgUrl;
            return this;
        }
        public String getHonorImgUrl() {
            return this.honorImgUrl;
        }

        public QueryOrgHonorsResponseBodyResultOpenHonors setHonorName(String honorName) {
            this.honorName = honorName;
            return this;
        }
        public String getHonorName() {
            return this.honorName;
        }

        public QueryOrgHonorsResponseBodyResultOpenHonors setHonorPendantImgUrl(String honorPendantImgUrl) {
            this.honorPendantImgUrl = honorPendantImgUrl;
            return this;
        }
        public String getHonorPendantImgUrl() {
            return this.honorPendantImgUrl;
        }

    }

    public static class QueryOrgHonorsResponseBodyResult extends TeaModel {
        // 下次获取数据的游标
        @NameInMap("nextToken")
        public String nextToken;

        @NameInMap("openHonors")
        public java.util.List openHonors;

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

        public QueryOrgHonorsResponseBodyResult setNextToken(String nextToken) {
            this.nextToken = nextToken;
            return this;
        }
        public String getNextToken() {
            return this.nextToken;
        }

        public QueryOrgHonorsResponseBodyResult setOpenHonors(java.util.List openHonors) {
            this.openHonors = openHonors;
            return this;
        }
        public java.util.List getOpenHonors() {
            return this.openHonors;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy