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

com.aliyun.dingtalkproject_1_0.models.CreateProjectByTemplateResponseBody 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 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: *

https://www.xxx.com/xxxxx

*/ @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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy