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.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 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 {
        /**
         * example:
         * 

2021-08-13T07:36:50.318Z

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

xxxx

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