google_api_tasks v0.2.0 GoogleApi.Tasks.V1.Model.Task View Source

Attributes

  • completed (DateTime.t): Completion date of the task (as a RFC 3339 timestamp). This field is omitted if the task has not been completed. Defaults to: null.
  • deleted (boolean()): Flag indicating whether the task has been deleted. The default if False. Defaults to: null.
  • due (DateTime.t): Due date of the task (as a RFC 3339 timestamp). Optional. Defaults to: null.
  • etag (String.t): ETag of the resource. Defaults to: null.
  • hidden (boolean()): 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. Defaults to: null.
  • id (String.t): Task identifier. Defaults to: null.
  • kind (String.t): Type of the resource. This is always "tasks#task". Defaults to: null.
  • links ([TaskLinks]): Collection of links. This collection is read-only. Defaults to: null.
  • notes (String.t): Notes describing the task. Optional. Defaults to: null.
  • parent (String.t): 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. Defaults to: null.
  • position (String.t): 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. Defaults to: null.
  • selfLink (String.t): URL pointing to this task. Used to retrieve, update, or delete this task. Defaults to: null.
  • status (String.t): Status of the task. This is either "needsAction" or "completed". Defaults to: null.
  • title (String.t): Title of the task. Defaults to: null.
  • updated (DateTime.t): Last modification time of the task (as a RFC 3339 timestamp). Defaults to: null.

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() :: %GoogleApi.Tasks.V1.Model.Task{
  completed: DateTime.t(),
  deleted: any(),
  due: DateTime.t(),
  etag: any(),
  hidden: any(),
  id: any(),
  kind: any(),
  links: [GoogleApi.Tasks.V1.Model.TaskLinks.t()],
  notes: any(),
  parent: any(),
  position: any(),
  selfLink: any(),
  status: any(),
  title: any(),
  updated: DateTime.t()
}

Link to this section Functions

Link to this function

decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.