com.aliyun.dingtalkproject_1_0.models.CreateProjectByTemplateResponseBody 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 CreateProjectByTemplateResponseBody extends TeaModel {
@NameInMap("result")
public CreateProjectByTemplateResponseBodyResult result;
public static CreateProjectByTemplateResponseBody build(java.util.Map map) throws Exception {
CreateProjectByTemplateResponseBody self = new CreateProjectByTemplateResponseBody();
return TeaModel.build(map, self);
}
public CreateProjectByTemplateResponseBody setResult(CreateProjectByTemplateResponseBodyResult result) {
this.result = result;
return this;
}
public CreateProjectByTemplateResponseBodyResult getResult() {
return this.result;
}
public static class CreateProjectByTemplateResponseBodyResult extends TeaModel {
/**
* example:
* 2022-08-01T09:50:31.275Z
*/
@NameInMap("created")
public String created;
/**
* example:
* 62e7a1e721d20b5aexxx
*/
@NameInMap("id")
public String id;
/**
* example:
*
*/
@NameInMap("logo")
public String logo;
/**
* example:
* 项目1
*/
@NameInMap("name")
public String name;
public static CreateProjectByTemplateResponseBodyResult build(java.util.Map map) throws Exception {
CreateProjectByTemplateResponseBodyResult self = new CreateProjectByTemplateResponseBodyResult();
return TeaModel.build(map, self);
}
public CreateProjectByTemplateResponseBodyResult setCreated(String created) {
this.created = created;
return this;
}
public String getCreated() {
return this.created;
}
public CreateProjectByTemplateResponseBodyResult setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public CreateProjectByTemplateResponseBodyResult setLogo(String logo) {
this.logo = logo;
return this;
}
public String getLogo() {
return this.logo;
}
public CreateProjectByTemplateResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
}