
com.aliyun.dingtalkproject_1_0.models.SearchProjectTemplateResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class SearchProjectTemplateResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static SearchProjectTemplateResponseBody build(java.util.Map map) throws Exception {
SearchProjectTemplateResponseBody self = new SearchProjectTemplateResponseBody();
return TeaModel.build(map, self);
}
public SearchProjectTemplateResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class SearchProjectTemplateResponseBodyResult extends TeaModel {
/**
* example:
* 2022-06-13T07:36:50.318Z
*/
@NameInMap("created")
public String created;
/**
* example:
* 我是描述内容
*/
@NameInMap("description")
public String description;
/**
* example:
* 62e0a88c0axxxx
*/
@NameInMap("id")
public String id;
/**
* example:
* false
*/
@NameInMap("isDeleted")
public Boolean isDeleted;
/**
* example:
* false
*/
@NameInMap("isDemo")
public Boolean isDemo;
/**
* example:
*
*/
@NameInMap("logo")
public String logo;
/**
* 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 SearchProjectTemplateResponseBodyResult build(java.util.Map map) throws Exception {
SearchProjectTemplateResponseBodyResult self = new SearchProjectTemplateResponseBodyResult();
return TeaModel.build(map, self);
}
public SearchProjectTemplateResponseBodyResult setCreated(String created) {
this.created = created;
return this;
}
public String getCreated() {
return this.created;
}
public SearchProjectTemplateResponseBodyResult setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public SearchProjectTemplateResponseBodyResult setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public SearchProjectTemplateResponseBodyResult setIsDeleted(Boolean isDeleted) {
this.isDeleted = isDeleted;
return this;
}
public Boolean getIsDeleted() {
return this.isDeleted;
}
public SearchProjectTemplateResponseBodyResult setIsDemo(Boolean isDemo) {
this.isDemo = isDemo;
return this;
}
public Boolean getIsDemo() {
return this.isDemo;
}
public SearchProjectTemplateResponseBodyResult setLogo(String logo) {
this.logo = logo;
return this;
}
public String getLogo() {
return this.logo;
}
public SearchProjectTemplateResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public SearchProjectTemplateResponseBodyResult setUpdated(String updated) {
this.updated = updated;
return this;
}
public String getUpdated() {
return this.updated;
}
public SearchProjectTemplateResponseBodyResult setVisible(String visible) {
this.visible = visible;
return this;
}
public String getVisible() {
return this.visible;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy