
com.aliyun.dingtalktodo_1_0.models.GetTodoTaskResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalktodo_1_0.models;
import com.aliyun.tea.*;
public class GetTodoTaskResponseBody extends TeaModel {
@NameInMap("bizTag")
public String bizTag;
@NameInMap("cardTypeId")
public String cardTypeId;
@NameInMap("createdTime")
public Long createdTime;
@NameInMap("creatorId")
public String creatorId;
@NameInMap("description")
public String description;
@NameInMap("detailUrl")
public GetTodoTaskResponseBodyDetailUrl detailUrl;
@NameInMap("done")
public Boolean done;
@NameInMap("dueTime")
public Long dueTime;
@NameInMap("executorIds")
public java.util.List executorIds;
@NameInMap("finishTime")
public Long finishTime;
@NameInMap("id")
public String id;
@NameInMap("isOnlyShowExecutor")
public Boolean isOnlyShowExecutor;
@NameInMap("modifiedTime")
public Long modifiedTime;
@NameInMap("modifierId")
public String modifierId;
@NameInMap("participantIds")
public java.util.List participantIds;
@NameInMap("priority")
public Integer priority;
@NameInMap("requestId")
public String requestId;
@NameInMap("source")
public String source;
@NameInMap("sourceId")
public String sourceId;
@NameInMap("startTime")
public Long startTime;
@NameInMap("subject")
public String subject;
@NameInMap("tenantId")
public String tenantId;
@NameInMap("tenantType")
public String tenantType;
public static GetTodoTaskResponseBody build(java.util.Map map) throws Exception {
GetTodoTaskResponseBody self = new GetTodoTaskResponseBody();
return TeaModel.build(map, self);
}
public GetTodoTaskResponseBody setBizTag(String bizTag) {
this.bizTag = bizTag;
return this;
}
public String getBizTag() {
return this.bizTag;
}
public GetTodoTaskResponseBody setCardTypeId(String cardTypeId) {
this.cardTypeId = cardTypeId;
return this;
}
public String getCardTypeId() {
return this.cardTypeId;
}
public GetTodoTaskResponseBody setCreatedTime(Long createdTime) {
this.createdTime = createdTime;
return this;
}
public Long getCreatedTime() {
return this.createdTime;
}
public GetTodoTaskResponseBody setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public GetTodoTaskResponseBody setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public GetTodoTaskResponseBody setDetailUrl(GetTodoTaskResponseBodyDetailUrl detailUrl) {
this.detailUrl = detailUrl;
return this;
}
public GetTodoTaskResponseBodyDetailUrl getDetailUrl() {
return this.detailUrl;
}
public GetTodoTaskResponseBody setDone(Boolean done) {
this.done = done;
return this;
}
public Boolean getDone() {
return this.done;
}
public GetTodoTaskResponseBody setDueTime(Long dueTime) {
this.dueTime = dueTime;
return this;
}
public Long getDueTime() {
return this.dueTime;
}
public GetTodoTaskResponseBody setExecutorIds(java.util.List executorIds) {
this.executorIds = executorIds;
return this;
}
public java.util.List getExecutorIds() {
return this.executorIds;
}
public GetTodoTaskResponseBody setFinishTime(Long finishTime) {
this.finishTime = finishTime;
return this;
}
public Long getFinishTime() {
return this.finishTime;
}
public GetTodoTaskResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetTodoTaskResponseBody setIsOnlyShowExecutor(Boolean isOnlyShowExecutor) {
this.isOnlyShowExecutor = isOnlyShowExecutor;
return this;
}
public Boolean getIsOnlyShowExecutor() {
return this.isOnlyShowExecutor;
}
public GetTodoTaskResponseBody setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public GetTodoTaskResponseBody setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public GetTodoTaskResponseBody setParticipantIds(java.util.List participantIds) {
this.participantIds = participantIds;
return this;
}
public java.util.List getParticipantIds() {
return this.participantIds;
}
public GetTodoTaskResponseBody setPriority(Integer priority) {
this.priority = priority;
return this;
}
public Integer getPriority() {
return this.priority;
}
public GetTodoTaskResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetTodoTaskResponseBody setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public GetTodoTaskResponseBody setSourceId(String sourceId) {
this.sourceId = sourceId;
return this;
}
public String getSourceId() {
return this.sourceId;
}
public GetTodoTaskResponseBody setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public GetTodoTaskResponseBody setSubject(String subject) {
this.subject = subject;
return this;
}
public String getSubject() {
return this.subject;
}
public GetTodoTaskResponseBody setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return this.tenantId;
}
public GetTodoTaskResponseBody setTenantType(String tenantType) {
this.tenantType = tenantType;
return this;
}
public String getTenantType() {
return this.tenantType;
}
public static class GetTodoTaskResponseBodyDetailUrl extends TeaModel {
@NameInMap("appUrl")
public String appUrl;
@NameInMap("pcUrl")
public String pcUrl;
public static GetTodoTaskResponseBodyDetailUrl build(java.util.Map map) throws Exception {
GetTodoTaskResponseBodyDetailUrl self = new GetTodoTaskResponseBodyDetailUrl();
return TeaModel.build(map, self);
}
public GetTodoTaskResponseBodyDetailUrl setAppUrl(String appUrl) {
this.appUrl = appUrl;
return this;
}
public String getAppUrl() {
return this.appUrl;
}
public GetTodoTaskResponseBodyDetailUrl setPcUrl(String pcUrl) {
this.pcUrl = pcUrl;
return this;
}
public String getPcUrl() {
return this.pcUrl;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy