com.aliyun.dingtalkindustry_1_0.models.QueryUserExtInfoResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class QueryUserExtInfoResponseBody extends TeaModel {
@NameInMap("content")
public java.util.List content;
public static QueryUserExtInfoResponseBody build(java.util.Map map) throws Exception {
QueryUserExtInfoResponseBody self = new QueryUserExtInfoResponseBody();
return TeaModel.build(map, self);
}
public QueryUserExtInfoResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public static class QueryUserExtInfoResponseBodyContent extends TeaModel {
/**
* This parameter is required.
*
* example:
* 2021-12-22 15:30:31
*/
@NameInMap("gmtCreate")
public String gmtCreate;
/**
* This parameter is required.
*
* example:
* 2021-12-22 15:30:31
*/
@NameInMap("gmtModified")
public String gmtModified;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("status")
public Integer status;
/**
* This parameter is required.
*
* example:
* 10320266246
*/
@NameInMap("userCode")
public String userCode;
/**
* This parameter is required.
*
* example:
* 扩展属性描述
*/
@NameInMap("userExtendDisplayName")
public String userExtendDisplayName;
/**
* This parameter is required.
*
* example:
* 扩展属性Key
*/
@NameInMap("userExtendKey")
public String userExtendKey;
/**
* This parameter is required.
*
* example:
* 扩展属性值
*/
@NameInMap("userExtendValue")
public String userExtendValue;
public static QueryUserExtInfoResponseBodyContent build(java.util.Map map) throws Exception {
QueryUserExtInfoResponseBodyContent self = new QueryUserExtInfoResponseBodyContent();
return TeaModel.build(map, self);
}
public QueryUserExtInfoResponseBodyContent setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public QueryUserExtInfoResponseBodyContent setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
public String getGmtModified() {
return this.gmtModified;
}
public QueryUserExtInfoResponseBodyContent setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public QueryUserExtInfoResponseBodyContent setUserCode(String userCode) {
this.userCode = userCode;
return this;
}
public String getUserCode() {
return this.userCode;
}
public QueryUserExtInfoResponseBodyContent setUserExtendDisplayName(String userExtendDisplayName) {
this.userExtendDisplayName = userExtendDisplayName;
return this;
}
public String getUserExtendDisplayName() {
return this.userExtendDisplayName;
}
public QueryUserExtInfoResponseBodyContent setUserExtendKey(String userExtendKey) {
this.userExtendKey = userExtendKey;
return this;
}
public String getUserExtendKey() {
return this.userExtendKey;
}
public QueryUserExtInfoResponseBodyContent setUserExtendValue(String userExtendValue) {
this.userExtendValue = userExtendValue;
return this;
}
public String getUserExtendValue() {
return this.userExtendValue;
}
}
}