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

com.aliyun.dingtalkcalendar_1_0.models.GetSignInListResponseBody 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 GetSignInListResponseBody extends TeaModel {
    // 翻页token
    @NameInMap("nextToken")
    public String nextToken;

    // 签到信息
    @NameInMap("users")
    public java.util.List users;

    public static GetSignInListResponseBody build(java.util.Map map) throws Exception {
        GetSignInListResponseBody self = new GetSignInListResponseBody();
        return TeaModel.build(map, self);
    }

    public GetSignInListResponseBody setNextToken(String nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public String getNextToken() {
        return this.nextToken;
    }

    public GetSignInListResponseBody setUsers(java.util.List users) {
        this.users = users;
        return this;
    }
    public java.util.List getUsers() {
        return this.users;
    }

    public static class GetSignInListResponseBodyUsers extends TeaModel {
        // 签到时间
        @NameInMap("checkInTime")
        public Long checkInTime;

        // 用户名
        @NameInMap("displayName")
        public String displayName;

        @NameInMap("userId")
        public String userId;

        public static GetSignInListResponseBodyUsers build(java.util.Map map) throws Exception {
            GetSignInListResponseBodyUsers self = new GetSignInListResponseBodyUsers();
            return TeaModel.build(map, self);
        }

        public GetSignInListResponseBodyUsers setCheckInTime(Long checkInTime) {
            this.checkInTime = checkInTime;
            return this;
        }
        public Long getCheckInTime() {
            return this.checkInTime;
        }

        public GetSignInListResponseBodyUsers setDisplayName(String displayName) {
            this.displayName = displayName;
            return this;
        }
        public String getDisplayName() {
            return this.displayName;
        }

        public GetSignInListResponseBodyUsers setUserId(String userId) {
            this.userId = userId;
            return this;
        }
        public String getUserId() {
            return this.userId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy