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

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

There is a newer version: 2.1.30
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 CreateTaskObjectLinkResponseBody extends TeaModel {
    // 返回结果对象
    @NameInMap("result")
    public CreateTaskObjectLinkResponseBodyResult result;

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

    public CreateTaskObjectLinkResponseBody setResult(CreateTaskObjectLinkResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public CreateTaskObjectLinkResponseBodyResult getResult() {
        return this.result;
    }

    public static class CreateTaskObjectLinkResponseBodyResult extends TeaModel {
        // 创建时间
        @NameInMap("created")
        public String created;

        // 关联对象id
        @NameInMap("objectLinkId")
        public String objectLinkId;

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

        public CreateTaskObjectLinkResponseBodyResult setCreated(String created) {
            this.created = created;
            return this;
        }
        public String getCreated() {
            return this.created;
        }

        public CreateTaskObjectLinkResponseBodyResult setObjectLinkId(String objectLinkId) {
            this.objectLinkId = objectLinkId;
            return this;
        }
        public String getObjectLinkId() {
            return this.objectLinkId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy