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

com.aliyun.dingtalkproject_1_0.models.GetProjectStatusListResponseBody Maven / Gradle / Ivy

The 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 GetProjectStatusListResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

    public static GetProjectStatusListResponseBody build(java.util.Map map) throws Exception {
        GetProjectStatusListResponseBody self = new GetProjectStatusListResponseBody();
        return TeaModel.build(map, self);
    }

    public GetProjectStatusListResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class GetProjectStatusListResponseBodyResult extends TeaModel {
        /**
         * example:
         * 

进度正常,详细说明

*/ @NameInMap("content") public String content; /** * example: *

2022-07-04T03:29:34.770Z

*/ @NameInMap("created") public String created; /** * example: *

0715153011xxxxxx

*/ @NameInMap("creatorId") public String creatorId; /** * example: *

normal

*/ @NameInMap("degree") public String degree; /** * example: *

进度正常

*/ @NameInMap("name") public String name; /** * example: *

62c25e3b376ecxxxxxxx

*/ @NameInMap("projectId") public String projectId; public static GetProjectStatusListResponseBodyResult build(java.util.Map map) throws Exception { GetProjectStatusListResponseBodyResult self = new GetProjectStatusListResponseBodyResult(); return TeaModel.build(map, self); } public GetProjectStatusListResponseBodyResult setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } public GetProjectStatusListResponseBodyResult setCreated(String created) { this.created = created; return this; } public String getCreated() { return this.created; } public GetProjectStatusListResponseBodyResult setCreatorId(String creatorId) { this.creatorId = creatorId; return this; } public String getCreatorId() { return this.creatorId; } public GetProjectStatusListResponseBodyResult setDegree(String degree) { this.degree = degree; return this; } public String getDegree() { return this.degree; } public GetProjectStatusListResponseBodyResult setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetProjectStatusListResponseBodyResult setProjectId(String projectId) { this.projectId = projectId; return this; } public String getProjectId() { return this.projectId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy