google_api_tasks v0.4.0 GoogleApi.Tasks.V1.Model.Task View Source
Attributes
completed
(type:DateTime.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. The default if False.due
(type:DateTime.t
, default:nil
) - Due date of the task (as a RFC 3339 timestamp). Optional.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:tasks#task
) - Type of the resource. This is always "tasks#task".links
(type:list(GoogleApi.Tasks.V1.Model.TaskLinks.t)
, default:nil
) - Collection of links. This collection is read-only.notes
(type:String.t
, default:nil
) - Notes describing the task. Optional.parent
(type:String.t
, default:nil
) - Parent task identifier. This field is omitted if it is a top-level task. This field is read-only. Use the "move" method to move the task under a different parent or to the top level.position
(type:String.t
, default:nil
) - 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). This field is read-only. Use the "move" method to move the task to another position.selfLink
(type:String.t
, default:nil
) - 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.updated
(type:DateTime.t
, default:nil
) - Last modification time of the task (as a RFC 3339 timestamp).
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %GoogleApi.Tasks.V1.Model.Task{
completed: DateTime.t(),
deleted: boolean(),
due: DateTime.t(),
etag: String.t(),
hidden: boolean(),
id: String.t(),
kind: String.t(),
links: [GoogleApi.Tasks.V1.Model.TaskLinks.t()],
notes: String.t(),
parent: String.t(),
position: String.t(),
selfLink: String.t(),
status: String.t(),
title: String.t(),
updated: DateTime.t()
}
t() :: %GoogleApi.Tasks.V1.Model.Task{ completed: DateTime.t(), deleted: boolean(), due: DateTime.t(), etag: String.t(), hidden: boolean(), id: String.t(), kind: String.t(), links: [GoogleApi.Tasks.V1.Model.TaskLinks.t()], notes: String.t(), parent: String.t(), position: String.t(), selfLink: String.t(), status: String.t(), title: String.t(), updated: DateTime.t() }
Link to this section Functions
Link to this function
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.