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

com.aliyun.dingtalkcalendar_1_0.models.GetSignOutListResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // 翻页token
    @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 - 2024 Weber Informatics LLC | Privacy Policy