com.aliyun.dingtalkproject_1_0.models.GetProjectGroupResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class GetProjectGroupResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static GetProjectGroupResponseBody build(java.util.Map map) throws Exception {
GetProjectGroupResponseBody self = new GetProjectGroupResponseBody();
return TeaModel.build(map, self);
}
public GetProjectGroupResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class GetProjectGroupResponseBodyResult extends TeaModel {
/**
* example:
* 2022-06-13T07:36:50.318Z
*/
@NameInMap("created")
public String created;
/**
* example:
* 6215dce28972510xxxxx
*/
@NameInMap("id")
public String id;
/**
* example:
* 分组1
*/
@NameInMap("name")
public String name;
/**
* example:
* 2022-06-13T07:36:50.318Z
*/
@NameInMap("updated")
public String updated;
/**
* example:
* organization
*/
@NameInMap("visible")
public String visible;
public static GetProjectGroupResponseBodyResult build(java.util.Map map) throws Exception {
GetProjectGroupResponseBodyResult self = new GetProjectGroupResponseBodyResult();
return TeaModel.build(map, self);
}
public GetProjectGroupResponseBodyResult setCreated(String created) {
this.created = created;
return this;
}
public String getCreated() {
return this.created;
}
public GetProjectGroupResponseBodyResult setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetProjectGroupResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetProjectGroupResponseBodyResult setUpdated(String updated) {
this.updated = updated;
return this;
}
public String getUpdated() {
return this.updated;
}
public GetProjectGroupResponseBodyResult setVisible(String visible) {
this.visible = visible;
return this;
}
public String getVisible() {
return this.visible;
}
}
}