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

com.aliyun.dingtalkproject_1_0.models.GetProjectGroupRequest 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.dingtalkproject_1_0.models;

import com.aliyun.tea.*;

public class GetProjectGroupRequest extends TeaModel {
    /**
     * example:
     * 

10

*/ @NameInMap("pageSize") public Integer pageSize; /** * example: *

01525006000512579xxx

*/ @NameInMap("viewerId") public String viewerId; public static GetProjectGroupRequest build(java.util.Map map) throws Exception { GetProjectGroupRequest self = new GetProjectGroupRequest(); return TeaModel.build(map, self); } public GetProjectGroupRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public GetProjectGroupRequest setViewerId(String viewerId) { this.viewerId = viewerId; return this; } public String getViewerId() { return this.viewerId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy