GoogleApi.Tasks.V1.Model.Task (google_api_tasks v0.17.0)
View SourceAttributes
-
assignmentInfo
(type:GoogleApi.Tasks.V1.Model.AssignmentInfo.t
, default:nil
) - Output only. Context information for assigned tasks. A task can be assigned to a user, currently possible from surfaces like Docs and Chat Spaces. This field is populated for tasks assigned to the current user and identifies where the task was assigned from. This field is read-only. -
completed
(type:String.t
, default:nil
) - Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed. -
deleted
(type:boolean()
, default:nil
) - Flag indicating whether the task has been deleted. For assigned tasks this field is read-only. They can only be deleted by calling tasks.delete, in which case both the assigned task and the original task (in Docs or Chat Spaces) are deleted. To delete the assigned task only, navigate to the assignment surface and unassign the task from there. The default is False. -
due
(type:String.t
, default:nil
) - Due date of the task (as a RFC 3339 timestamp). Optional. The due date only records date information; the time portion of the timestamp is discarded when setting the due date. It isn't possible to read or write the time that a task is due via the API. -
etag
(type:String.t
, default:nil
) - ETag of the resource. -
hidden
(type:boolean()
, default:nil
) - Flag indicating whether the task is hidden. This is the case if the task had been marked completed when the task list was last cleared. The default is False. This field is read-only. -
id
(type:String.t
, default:nil
) - Task identifier. -
kind
(type:String.t
, default:nil
) - Output only. Type of the resource. This is always "tasks#task". -
links
(type:list(GoogleApi.Tasks.V1.Model.TaskLinks.t)
, default:nil
) - Output only. Collection of links. This collection is read-only. -
notes
(type:String.t
, default:nil
) - Notes describing the task. Tasks assigned from Google Docs cannot have notes. Optional. Maximum length allowed: 8192 characters. -
parent
(type:String.t
, default:nil
) - Output only. Parent task identifier. This field is omitted if it is a top-level task. Use the "move" method to move the task under a different parent or to the top level. A parent task can never be an assigned task (from Chat Spaces, Docs). This field is read-only. -
position
(type:String.t
, default:nil
) - Output only. String indicating the position of the task among its sibling tasks under the same parent task or at the top level. If this string is greater than another task's corresponding position string according to lexicographical ordering, the task is positioned after the other task under the same parent task (or at the top level). Use the "move" method to move the task to another position. -
selfLink
(type:String.t
, default:nil
) - Output only. URL pointing to this task. Used to retrieve, update, or delete this task. -
status
(type:String.t
, default:nil
) - Status of the task. This is either "needsAction" or "completed". -
title
(type:String.t
, default:nil
) - Title of the task. Maximum length allowed: 1024 characters. -
updated
(type:String.t
, default:nil
) - Output only. Last modification time of the task (as a RFC 3339 timestamp). -
webViewLink
(type:String.t
, default:nil
) - Output only. An absolute link to the task in the Google Tasks Web UI.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Tasks.V1.Model.Task{ assignmentInfo: GoogleApi.Tasks.V1.Model.AssignmentInfo.t() | nil, completed: String.t() | nil, deleted: boolean() | nil, due: String.t() | nil, etag: String.t() | nil, hidden: boolean() | nil, id: String.t() | nil, kind: String.t() | nil, links: [GoogleApi.Tasks.V1.Model.TaskLinks.t()] | nil, notes: String.t() | nil, parent: String.t() | nil, position: String.t() | nil, selfLink: String.t() | nil, status: String.t() | nil, title: String.t() | nil, updated: String.t() | nil, webViewLink: String.t() | nil }