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

com.aliyun.dingtalkbizfinance_1_0.models.GetProjectResponseBody 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.dingtalkbizfinance_1_0.models;

import com.aliyun.tea.*;

public class GetProjectResponseBody extends TeaModel {
    @NameInMap("accountantBookIdList")
    public java.util.List accountantBookIdList;

    @NameInMap("code")
    public String code;

    /**
     * 

This parameter is required.

* * example: *

1631526550994

*/ @NameInMap("createTime") public Long createTime; /** *

This parameter is required.

* * example: *

aaa

*/ @NameInMap("creator") public String creator; /** *

This parameter is required.

* * example: *

和外部合作

*/ @NameInMap("description") public String description; @NameInMap("name") public String name; /** *

This parameter is required.

* * example: *

PROJ-XXX

*/ @NameInMap("projectCode") public String projectCode; /** *

This parameter is required.

* * example: *

外包项目

*/ @NameInMap("projectName") public String projectName; /** *

This parameter is required.

* * example: *

valid

*/ @NameInMap("status") public String status; @NameInMap("userDefineCode") public String userDefineCode; public static GetProjectResponseBody build(java.util.Map map) throws Exception { GetProjectResponseBody self = new GetProjectResponseBody(); return TeaModel.build(map, self); } public GetProjectResponseBody setAccountantBookIdList(java.util.List accountantBookIdList) { this.accountantBookIdList = accountantBookIdList; return this; } public java.util.List getAccountantBookIdList() { return this.accountantBookIdList; } public GetProjectResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public GetProjectResponseBody setCreateTime(Long createTime) { this.createTime = createTime; return this; } public Long getCreateTime() { return this.createTime; } public GetProjectResponseBody setCreator(String creator) { this.creator = creator; return this; } public String getCreator() { return this.creator; } public GetProjectResponseBody setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public GetProjectResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetProjectResponseBody setProjectCode(String projectCode) { this.projectCode = projectCode; return this; } public String getProjectCode() { return this.projectCode; } public GetProjectResponseBody setProjectName(String projectName) { this.projectName = projectName; return this; } public String getProjectName() { return this.projectName; } public GetProjectResponseBody setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetProjectResponseBody setUserDefineCode(String userDefineCode) { this.userDefineCode = userDefineCode; return this; } public String getUserDefineCode() { return this.userDefineCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy