com.aliyun.dingtalkcrm_1_0.models.QueryOfficialAccountUserBasicInfoResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}
}