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

com.aliyun.dingtalkproject_1_0.models.CreateProjectCustomfieldStatusResponseBody 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 CreateProjectCustomfieldStatusResponseBody extends TeaModel {
    @NameInMap("result")
    public CreateProjectCustomfieldStatusResponseBodyResult result;

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

    public CreateProjectCustomfieldStatusResponseBody setResult(CreateProjectCustomfieldStatusResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public CreateProjectCustomfieldStatusResponseBodyResult getResult() {
        return this.result;
    }

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

63a5301e420637003f5dxxxx

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

13

*/ @NameInMap("title") public String title; public static CreateProjectCustomfieldStatusResponseBodyResultValue build(java.util.Map map) throws Exception { CreateProjectCustomfieldStatusResponseBodyResultValue self = new CreateProjectCustomfieldStatusResponseBodyResultValue(); return TeaModel.build(map, self); } public CreateProjectCustomfieldStatusResponseBodyResultValue setCustomFieldValueId(String customFieldValueId) { this.customFieldValueId = customFieldValueId; return this; } public String getCustomFieldValueId() { return this.customFieldValueId; } public CreateProjectCustomfieldStatusResponseBodyResultValue setMetaString(String metaString) { this.metaString = metaString; return this; } public String getMetaString() { return this.metaString; } public CreateProjectCustomfieldStatusResponseBodyResultValue setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } } public static class CreateProjectCustomfieldStatusResponseBodyResult extends TeaModel { /** * example: *

lookup2

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

63a5301e420637003f5dxxxx

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

项目进度

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

62a5301e420637003f5dxxxx

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

number

*/ @NameInMap("type") public String type; @NameInMap("value") public java.util.List value; public static CreateProjectCustomfieldStatusResponseBodyResult build(java.util.Map map) throws Exception { CreateProjectCustomfieldStatusResponseBodyResult self = new CreateProjectCustomfieldStatusResponseBodyResult(); return TeaModel.build(map, self); } public CreateProjectCustomfieldStatusResponseBodyResult setAdvancedCustomFieldObjectType(String advancedCustomFieldObjectType) { this.advancedCustomFieldObjectType = advancedCustomFieldObjectType; return this; } public String getAdvancedCustomFieldObjectType() { return this.advancedCustomFieldObjectType; } public CreateProjectCustomfieldStatusResponseBodyResult setCustomFieldId(String customFieldId) { this.customFieldId = customFieldId; return this; } public String getCustomFieldId() { return this.customFieldId; } public CreateProjectCustomfieldStatusResponseBodyResult setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public CreateProjectCustomfieldStatusResponseBodyResult setOriginalId(String originalId) { this.originalId = originalId; return this; } public String getOriginalId() { return this.originalId; } public CreateProjectCustomfieldStatusResponseBodyResult setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public CreateProjectCustomfieldStatusResponseBodyResult setValue(java.util.List value) { this.value = value; return this; } public java.util.List getValue() { return this.value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy