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

com.aliyun.dingtalkattendance_1_0.models.GetMachineUserResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkattendance_1_0.models;

import com.aliyun.tea.*;

public class GetMachineUserResponseBody extends TeaModel {
    @NameInMap("result")
    public GetMachineUserResponseBodyResult result;

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

    public GetMachineUserResponseBody setResult(GetMachineUserResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public GetMachineUserResponseBodyResult getResult() {
        return this.result;
    }

    public static class GetMachineUserResponseBodyResultUserList extends TeaModel {
        @NameInMap("hasFace")
        public Boolean hasFace;

        @NameInMap("name")
        public String name;

        @NameInMap("userId")
        public String userId;

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

        public GetMachineUserResponseBodyResultUserList setHasFace(Boolean hasFace) {
            this.hasFace = hasFace;
            return this;
        }
        public Boolean getHasFace() {
            return this.hasFace;
        }

        public GetMachineUserResponseBodyResultUserList setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

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

    }

    public static class GetMachineUserResponseBodyResult extends TeaModel {
        @NameInMap("hasMore")
        public Boolean hasMore;

        @NameInMap("nextToken")
        public String nextToken;

        @NameInMap("userList")
        public java.util.List userList;

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

        public GetMachineUserResponseBodyResult setHasMore(Boolean hasMore) {
            this.hasMore = hasMore;
            return this;
        }
        public Boolean getHasMore() {
            return this.hasMore;
        }

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

        public GetMachineUserResponseBodyResult setUserList(java.util.List userList) {
            this.userList = userList;
            return this;
        }
        public java.util.List getUserList() {
            return this.userList;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy