![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkexclusive_1_0.models.GetUserRealPeopleStateResponseBody 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GetUserRealPeopleStateResponseBody extends TeaModel {
@NameInMap("data")
public java.util.List data;
public static GetUserRealPeopleStateResponseBody build(java.util.Map map) throws Exception {
GetUserRealPeopleStateResponseBody self = new GetUserRealPeopleStateResponseBody();
return TeaModel.build(map, self);
}
public GetUserRealPeopleStateResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public static class GetUserRealPeopleStateResponseBodyData extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("state")
public Integer state;
/**
* example:
* userId
*/
@NameInMap("userId")
public String userId;
public static GetUserRealPeopleStateResponseBodyData build(java.util.Map map) throws Exception {
GetUserRealPeopleStateResponseBodyData self = new GetUserRealPeopleStateResponseBodyData();
return TeaModel.build(map, self);
}
public GetUserRealPeopleStateResponseBodyData setState(Integer state) {
this.state = state;
return this;
}
public Integer getState() {
return this.state;
}
public GetUserRealPeopleStateResponseBodyData setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy