1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Asana
*
* This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/developer-docs/master/defs/asana_oas.yaml).
*
* The version of the OpenAPI document: 1.0
*
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct TaskRequestAllOf {
/// Gid of a user.
#[serde(rename = "assignee", skip_serializing_if = "Option::is_none")]
pub assignee: Option<String>,
/// An object where each key is a Custom Field gid and each value is an enum gid, string, or number.
#[serde(rename = "custom_fields", skip_serializing_if = "Option::is_none")]
pub custom_fields: Option<::std::collections::HashMap<String, String>>,
/// *Create-Only* An array of strings identifying users. These can either be the string \"me\", an email, or the gid of a user. In order to change followers on an existing task use `addFollowers` and `removeFollowers`.
#[serde(rename = "followers", skip_serializing_if = "Option::is_none")]
pub followers: Option<Vec<String>>,
/// Gid of a task.
#[serde(rename = "parent", skip_serializing_if = "Option::is_none")]
pub parent: Option<String>,
/// *Create-Only* Array of project gids. In order to change projects on an existing task use `addProject` and `removeProject`.
#[serde(rename = "projects", skip_serializing_if = "Option::is_none")]
pub projects: Option<Vec<String>>,
/// *Create-Only* Array of tag gids. In order to change tags on an existing task use `addTag` and `removeTag`.
#[serde(rename = "tags", skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<String>>,
/// Gid of a workspace.
#[serde(rename = "workspace", skip_serializing_if = "Option::is_none")]
pub workspace: Option<String>,
}
impl TaskRequestAllOf {
pub fn new() -> TaskRequestAllOf {
TaskRequestAllOf {
assignee: None,
custom_fields: None,
followers: None,
parent: None,
projects: None,
tags: None,
workspace: None,
}
}
}