asana 0.1.1

asana bindings for rust
Documentation
# TaskBase

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**gid** | Option<**String**> | Globally unique identifier of the resource, as a string. | [optional][readonly]
**resource_type** | Option<**String**> | The base type of this resource. | [optional][readonly]
**name** | Option<**String**> | Name of the task. This is generally a short sentence fragment that fits on a line in the UI for maximum readability. However, it can be longer. | [optional]
**approval_status** | Option<**String**> | *Conditional* Reflects the approval status of this task. This field is kept in sync with `completed`, meaning `pending` translates to false while `approved`, `rejected`, and `changes_requested` translate to true. If you set completed to true, this field will be set to `approved`. | [optional]
**completed** | Option<**bool**> | True if the task is currently marked complete, false if not. | [optional]
**completed_at** | Option<**String**> | The time at which this task was completed, or null if the task is incomplete. | [optional][readonly]
**completed_by** | Option<[**crate::models::UserCompact**]UserCompact.md> |  | [optional]
**created_at** | Option<**String**> | The time at which this resource was created. | [optional][readonly]
**dependencies** | Option<[**Vec<crate::models::AsanaResource>**]AsanaResource.md> | [Opt In]/docs/input-output-options. Array of resources referencing tasks that this task depends on. The objects contain only the gid of the dependency. | [optional][readonly]
**dependents** | Option<[**Vec<crate::models::AsanaResource>**]AsanaResource.md> | [Opt In]/docs/input-output-options. Array of resources referencing tasks that depend on this task. The objects contain only the ID of the dependent. | [optional][readonly]
**due_at** | Option<[**String**]string.md> | The UTC date and time on which this task is due, or null if the task has no due time. This takes an ISO 8601 date string in UTC and should not be used together with `due_on`. | [optional]
**due_on** | Option<[**String**]string.md> | The localized date on which this task is due, or null if the task has no due date.  This takes a date with `YYYY-MM-DD` format and should not be used together with due_at. | [optional]
**external** | Option<[**crate::models::TaskBaseAllOfExternal**]TaskBase_allOf_external.md> |  | [optional]
**html_notes** | Option<**String**> | [Opt In]/docs/input-output-options. The notes of the text with formatting as HTML. | [optional]
**hearted** | Option<**bool**> | *Deprecated - please use liked instead* True if the task is hearted by the authorized user, false if not. | [optional][readonly]
**hearts** | Option<[**Vec<crate::models::Like>**]Like.md> | *Deprecated - please use likes instead* Array of likes for users who have hearted this task. | [optional][readonly]
**is_rendered_as_separator** | Option<**bool**> | [Opt In]/docs/input-output-options. In some contexts tasks can be rendered as a visual separator; for instance, subtasks can appear similar to [sections]/docs/asana-sections without being true `section` objects. If a `task` object is rendered this way in any context it will have the property `is_rendered_as_separator` set to `true`. | [optional][readonly]
**liked** | Option<**bool**> | True if the task is liked by the authorized user, false if not. | [optional]
**likes** | Option<[**Vec<crate::models::Like>**]Like.md> | Array of likes for users who have liked this task. | [optional][readonly]
**memberships** | Option<[**Vec<crate::models::TaskBaseAllOfMemberships>**]TaskBase_allOf_memberships.md> | *Create-only*. Array of projects this task is associated with and the section it is in. At task creation time, this array can be used to add the task to specific sections. After task creation, these associations can be modified using the `addProject` and `removeProject` endpoints. Note that over time, more types of memberships may be added to this property. | [optional][readonly]
**modified_at** | Option<**String**> | The time at which this task was last modified.  *Note: This does not currently reflect any changes in associations such as projects or comments that may have been added or removed from the task.* | [optional][readonly]
**notes** | Option<**String**> | More detailed, free-form textual information associated with the task. | [optional]
**num_hearts** | Option<**i32**> | *Deprecated - please use likes instead* The number of users who have hearted this task. | [optional][readonly]
**num_likes** | Option<**i32**> | The number of users who have liked this task. | [optional][readonly]
**num_subtasks** | Option<**i32**> | [Opt In]/docs/input-output-options. The number of subtasks on this task.  | [optional][readonly]
**resource_subtype** | Option<**String**> | The subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning. The resource_subtype `milestone` represent a single moment in time. This means tasks with this subtype cannot have a start_date. | [optional]
**start_on** | Option<[**String**]string.md> | The day on which work begins for the task , or null if the task has no start date. This takes a date with `YYYY-MM-DD` format. *Note: `due_on` or `due_at` must be present in the request when setting or unsetting the `start_on` parameter.* | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)