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

com.aliyun.dingtalkcrm_1_0.models.QueryOfficialAccountUserBasicInfoResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class QueryOfficialAccountUserBasicInfoResponseBody extends TeaModel {
    // Id of the request
    @NameInMap("requestId")
    public String requestId;

    // 响应结果
    @NameInMap("result")
    public QueryOfficialAccountUserBasicInfoResponseBodyResult result;

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

    public QueryOfficialAccountUserBasicInfoResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public QueryOfficialAccountUserBasicInfoResponseBody setResult(QueryOfficialAccountUserBasicInfoResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public QueryOfficialAccountUserBasicInfoResponseBodyResult getResult() {
        return this.result;
    }

    public static class QueryOfficialAccountUserBasicInfoResponseBodyResult extends TeaModel {
        // 关注状态
        @NameInMap("status")
        public String status;

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

        public QueryOfficialAccountUserBasicInfoResponseBodyResult setStatus(String status) {
            this.status = status;
            return this;
        }
        public String getStatus() {
            return this.status;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy