com.aliyun.dingtalkproject_1_0.models.CreateTaskObjectLinkResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}
}