![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkcalendar_1_0.models.GetSignOutListResponseBody 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.dingtalkcalendar_1_0.models;
import com.aliyun.tea.*;
public class GetSignOutListResponseBody extends TeaModel {
@NameInMap("nextToken")
public String nextToken;
@NameInMap("users")
public java.util.List users;
public static GetSignOutListResponseBody build(java.util.Map map) throws Exception {
GetSignOutListResponseBody self = new GetSignOutListResponseBody();
return TeaModel.build(map, self);
}
public GetSignOutListResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetSignOutListResponseBody setUsers(java.util.List users) {
this.users = users;
return this;
}
public java.util.List getUsers() {
return this.users;
}
public static class GetSignOutListResponseBodyUsers extends TeaModel {
@NameInMap("checkOutTime")
public Long checkOutTime;
@NameInMap("displayName")
public String displayName;
@NameInMap("userId")
public String userId;
public static GetSignOutListResponseBodyUsers build(java.util.Map map) throws Exception {
GetSignOutListResponseBodyUsers self = new GetSignOutListResponseBodyUsers();
return TeaModel.build(map, self);
}
public GetSignOutListResponseBodyUsers setCheckOutTime(Long checkOutTime) {
this.checkOutTime = checkOutTime;
return this;
}
public Long getCheckOutTime() {
return this.checkOutTime;
}
public GetSignOutListResponseBodyUsers setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public GetSignOutListResponseBodyUsers setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy