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

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

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkattendance_1_0.models;

import com.aliyun.tea.*;

public class GetATManageScopeResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

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

    public GetATManageScopeResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class GetATManageScopeResponseBodyResult extends TeaModel {
        /**
         * 

This parameter is required.

* * example: *

false

*/ @NameInMap("hasMore") public Boolean hasMore; /** *

This parameter is required.

* * example: *

partial

*/ @NameInMap("manageScope") public String manageScope; @NameInMap("userIds") public java.util.List userIds; public static GetATManageScopeResponseBodyResult build(java.util.Map map) throws Exception { GetATManageScopeResponseBodyResult self = new GetATManageScopeResponseBodyResult(); return TeaModel.build(map, self); } public GetATManageScopeResponseBodyResult setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public GetATManageScopeResponseBodyResult setManageScope(String manageScope) { this.manageScope = manageScope; return this; } public String getManageScope() { return this.manageScope; } public GetATManageScopeResponseBodyResult setUserIds(java.util.List userIds) { this.userIds = userIds; return this; } public java.util.List getUserIds() { return this.userIds; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy