asanaclient 0.1.1

Rust SDK for the Asana API
Documentation
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
//! Request body types for Asana API write operations.

use serde::Serialize;
use std::collections::HashMap;

// ============================================================================
// Task Operations
// ============================================================================

/// Request body for creating a task.
#[derive(Debug, Clone, Serialize)]
pub struct CreateTaskRequest {
    /// The task data.
    pub data: CreateTaskData,
}

/// Data for creating a task.
#[derive(Debug, Clone, Default, Serialize)]
pub struct CreateTaskData {
    /// The name of the task.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The workspace to create the task in (required if no projects specified).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub workspace: Option<String>,
    /// The projects to add the task to.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub projects: Option<Vec<String>>,
    /// The assignee of the task.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignee: Option<String>,
    /// The due date (YYYY-MM-DD format).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub due_on: Option<String>,
    /// The start date (YYYY-MM-DD format).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub start_on: Option<String>,
    /// Plain text notes/description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notes: Option<String>,
    /// HTML notes/description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub html_notes: Option<String>,
    /// Whether the task is completed.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub completed: Option<bool>,
    /// Custom field values (field GID -> value).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_fields: Option<HashMap<String, serde_json::Value>>,
}

impl CreateTaskData {
    /// Create a new empty CreateTaskData.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set the task name.
    pub fn name(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }

    /// Set the workspace.
    pub fn workspace(mut self, workspace: impl Into<String>) -> Self {
        self.workspace = Some(workspace.into());
        self
    }

    /// Set the projects.
    pub fn projects(mut self, projects: Vec<String>) -> Self {
        self.projects = Some(projects);
        self
    }

    /// Set the assignee.
    pub fn assignee(mut self, assignee: impl Into<String>) -> Self {
        self.assignee = Some(assignee.into());
        self
    }

    /// Set the due date (YYYY-MM-DD format).
    pub fn due_on(mut self, due_on: impl Into<String>) -> Self {
        self.due_on = Some(due_on.into());
        self
    }

    /// Set the start date (YYYY-MM-DD format).
    pub fn start_on(mut self, start_on: impl Into<String>) -> Self {
        self.start_on = Some(start_on.into());
        self
    }

    /// Set the plain text notes.
    pub fn notes(mut self, notes: impl Into<String>) -> Self {
        self.notes = Some(notes.into());
        self
    }

    /// Set the HTML notes.
    pub fn html_notes(mut self, html_notes: impl Into<String>) -> Self {
        self.html_notes = Some(html_notes.into());
        self
    }

    /// Set the completed status.
    pub fn completed(mut self, completed: bool) -> Self {
        self.completed = Some(completed);
        self
    }

    /// Set custom field values.
    pub fn custom_fields(mut self, custom_fields: HashMap<String, serde_json::Value>) -> Self {
        self.custom_fields = Some(custom_fields);
        self
    }
}

/// Request body for updating a task.
#[derive(Debug, Clone, Serialize)]
pub struct UpdateTaskRequest {
    /// The task data.
    pub data: UpdateTaskData,
}

/// Data for updating a task.
#[derive(Debug, Clone, Default, Serialize)]
pub struct UpdateTaskData {
    /// The name of the task.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The assignee of the task.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignee: Option<String>,
    /// The due date (YYYY-MM-DD format).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub due_on: Option<String>,
    /// The start date (YYYY-MM-DD format).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub start_on: Option<String>,
    /// Plain text notes/description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notes: Option<String>,
    /// HTML notes/description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub html_notes: Option<String>,
    /// Whether the task is completed.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub completed: Option<bool>,
    /// Custom field values (field GID -> value).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_fields: Option<HashMap<String, serde_json::Value>>,
}

impl UpdateTaskData {
    /// Create a new empty UpdateTaskData.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set the task name.
    pub fn name(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }

    /// Set the assignee.
    pub fn assignee(mut self, assignee: impl Into<String>) -> Self {
        self.assignee = Some(assignee.into());
        self
    }

    /// Set the due date (YYYY-MM-DD format).
    pub fn due_on(mut self, due_on: impl Into<String>) -> Self {
        self.due_on = Some(due_on.into());
        self
    }

    /// Set the start date (YYYY-MM-DD format).
    pub fn start_on(mut self, start_on: impl Into<String>) -> Self {
        self.start_on = Some(start_on.into());
        self
    }

    /// Set the plain text notes.
    pub fn notes(mut self, notes: impl Into<String>) -> Self {
        self.notes = Some(notes.into());
        self
    }

    /// Set the HTML notes.
    pub fn html_notes(mut self, html_notes: impl Into<String>) -> Self {
        self.html_notes = Some(html_notes.into());
        self
    }

    /// Set the completed status.
    pub fn completed(mut self, completed: bool) -> Self {
        self.completed = Some(completed);
        self
    }

    /// Set custom field values.
    pub fn custom_fields(mut self, custom_fields: HashMap<String, serde_json::Value>) -> Self {
        self.custom_fields = Some(custom_fields);
        self
    }
}

/// Request body for adding a task to a project.
#[derive(Debug, Clone, Serialize)]
pub struct AddProjectRequest {
    /// The data.
    pub data: AddProjectData,
}

/// Data for adding a task to a project.
#[derive(Debug, Clone, Serialize)]
pub struct AddProjectData {
    /// The project GID to add the task to.
    pub project: String,
    /// The section to add the task to.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub section: Option<String>,
    /// Insert the task before this task.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub insert_before: Option<String>,
    /// Insert the task after this task.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub insert_after: Option<String>,
}

/// Request body for removing a task from a project.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveProjectRequest {
    /// The data.
    pub data: RemoveProjectData,
}

/// Data for removing a task from a project.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveProjectData {
    /// The project GID to remove the task from.
    pub project: String,
}

/// Request body for adding a tag to a task.
#[derive(Debug, Clone, Serialize)]
pub struct AddTagRequest {
    /// The data.
    pub data: AddTagData,
}

/// Data for adding a tag to a task.
#[derive(Debug, Clone, Serialize)]
pub struct AddTagData {
    /// The tag GID to add.
    pub tag: String,
}

/// Request body for removing a tag from a task.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveTagRequest {
    /// The data.
    pub data: RemoveTagData,
}

/// Data for removing a tag from a task.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveTagData {
    /// The tag GID to remove.
    pub tag: String,
}

/// Request body for setting a task's parent.
#[derive(Debug, Clone, Serialize)]
pub struct SetParentRequest {
    /// The data.
    pub data: SetParentData,
}

/// Data for setting a task's parent.
#[derive(Debug, Clone, Serialize)]
pub struct SetParentData {
    /// The parent task GID, or null to remove the parent.
    pub parent: Option<String>,
    /// Insert before this task in the parent's subtasks.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub insert_before: Option<String>,
    /// Insert after this task in the parent's subtasks.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub insert_after: Option<String>,
}

/// Request body for adding dependencies to a task.
#[derive(Debug, Clone, Serialize)]
pub struct AddDependenciesRequest {
    /// The data.
    pub data: AddDependenciesData,
}

/// Data for adding dependencies to a task.
#[derive(Debug, Clone, Serialize)]
pub struct AddDependenciesData {
    /// The GIDs of tasks to add as dependencies.
    pub dependencies: Vec<String>,
}

/// Request body for removing dependencies from a task.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveDependenciesRequest {
    /// The data.
    pub data: RemoveDependenciesData,
}

/// Data for removing dependencies from a task.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveDependenciesData {
    /// The GIDs of tasks to remove as dependencies.
    pub dependencies: Vec<String>,
}

/// Request body for adding dependents to a task.
#[derive(Debug, Clone, Serialize)]
pub struct AddDependentsRequest {
    /// The data.
    pub data: AddDependentsData,
}

/// Data for adding dependents to a task.
#[derive(Debug, Clone, Serialize)]
pub struct AddDependentsData {
    /// The GIDs of tasks to add as dependents.
    pub dependents: Vec<String>,
}

/// Request body for removing dependents from a task.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveDependentsRequest {
    /// The data.
    pub data: RemoveDependentsData,
}

/// Data for removing dependents from a task.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveDependentsData {
    /// The GIDs of tasks to remove as dependents.
    pub dependents: Vec<String>,
}

/// Request body for adding followers to a task.
#[derive(Debug, Clone, Serialize)]
pub struct AddFollowersRequest {
    /// The data.
    pub data: AddFollowersData,
}

/// Data for adding followers to a task.
#[derive(Debug, Clone, Serialize)]
pub struct AddFollowersData {
    /// The GIDs of users to add as followers.
    pub followers: Vec<String>,
}

/// Request body for removing followers from a task.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveFollowersRequest {
    /// The data.
    pub data: RemoveFollowersData,
}

/// Data for removing followers from a task.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveFollowersData {
    /// The GIDs of users to remove as followers.
    pub followers: Vec<String>,
}

// ============================================================================
// Project Operations
// ============================================================================

/// Request body for creating a project.
#[derive(Debug, Clone, Serialize)]
pub struct CreateProjectRequest {
    /// The project data.
    pub data: CreateProjectData,
}

/// Data for creating a project.
#[derive(Debug, Clone, Default, Serialize)]
pub struct CreateProjectData {
    /// The name of the project.
    pub name: String,
    /// The workspace to create the project in.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub workspace: Option<String>,
    /// The team to create the project in.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub team: Option<String>,
    /// The color of the project.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub color: Option<String>,
    /// Plain text notes/description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notes: Option<String>,
    /// HTML notes/description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub html_notes: Option<String>,
    /// The due date (YYYY-MM-DD format).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub due_on: Option<String>,
    /// The start date (YYYY-MM-DD format).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub start_on: Option<String>,
    /// The default view (list, board, calendar, timeline).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub default_view: Option<String>,
    /// Privacy setting (public_to_workspace or private_to_team).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub privacy_setting: Option<String>,
}

impl CreateProjectData {
    /// Create a new CreateProjectData with a name.
    pub fn new(name: impl Into<String>) -> Self {
        Self {
            name: name.into(),
            ..Default::default()
        }
    }

    /// Set the workspace.
    pub fn workspace(mut self, workspace: impl Into<String>) -> Self {
        self.workspace = Some(workspace.into());
        self
    }

    /// Set the team.
    pub fn team(mut self, team: impl Into<String>) -> Self {
        self.team = Some(team.into());
        self
    }

    /// Set the color.
    pub fn color(mut self, color: impl Into<String>) -> Self {
        self.color = Some(color.into());
        self
    }

    /// Set the plain text notes.
    pub fn notes(mut self, notes: impl Into<String>) -> Self {
        self.notes = Some(notes.into());
        self
    }

    /// Set the HTML notes.
    pub fn html_notes(mut self, html_notes: impl Into<String>) -> Self {
        self.html_notes = Some(html_notes.into());
        self
    }

    /// Set the due date (YYYY-MM-DD format).
    pub fn due_on(mut self, due_on: impl Into<String>) -> Self {
        self.due_on = Some(due_on.into());
        self
    }

    /// Set the start date (YYYY-MM-DD format).
    pub fn start_on(mut self, start_on: impl Into<String>) -> Self {
        self.start_on = Some(start_on.into());
        self
    }

    /// Set the default view.
    pub fn default_view(mut self, default_view: impl Into<String>) -> Self {
        self.default_view = Some(default_view.into());
        self
    }

    /// Set the privacy setting.
    pub fn privacy_setting(mut self, privacy_setting: impl Into<String>) -> Self {
        self.privacy_setting = Some(privacy_setting.into());
        self
    }
}

/// Request body for updating a project.
#[derive(Debug, Clone, Serialize)]
pub struct UpdateProjectRequest {
    /// The project data.
    pub data: UpdateProjectData,
}

/// Data for updating a project.
#[derive(Debug, Clone, Default, Serialize)]
pub struct UpdateProjectData {
    /// The name of the project.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The color of the project.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub color: Option<String>,
    /// Plain text notes/description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notes: Option<String>,
    /// HTML notes/description.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub html_notes: Option<String>,
    /// The due date (YYYY-MM-DD format).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub due_on: Option<String>,
    /// The start date (YYYY-MM-DD format).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub start_on: Option<String>,
    /// Whether the project is archived.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub archived: Option<bool>,
    /// Privacy setting (public_to_workspace or private_to_team).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub privacy_setting: Option<String>,
    /// Custom field values (field GID -> value).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_fields: Option<HashMap<String, serde_json::Value>>,
}

impl UpdateProjectData {
    /// Create a new empty UpdateProjectData.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set the project name.
    pub fn name(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }

    /// Set the color.
    pub fn color(mut self, color: impl Into<String>) -> Self {
        self.color = Some(color.into());
        self
    }

    /// Set the plain text notes.
    pub fn notes(mut self, notes: impl Into<String>) -> Self {
        self.notes = Some(notes.into());
        self
    }

    /// Set the HTML notes.
    pub fn html_notes(mut self, html_notes: impl Into<String>) -> Self {
        self.html_notes = Some(html_notes.into());
        self
    }

    /// Set the due date (YYYY-MM-DD format).
    pub fn due_on(mut self, due_on: impl Into<String>) -> Self {
        self.due_on = Some(due_on.into());
        self
    }

    /// Set the start date (YYYY-MM-DD format).
    pub fn start_on(mut self, start_on: impl Into<String>) -> Self {
        self.start_on = Some(start_on.into());
        self
    }

    /// Set the archived status.
    pub fn archived(mut self, archived: bool) -> Self {
        self.archived = Some(archived);
        self
    }

    /// Set the privacy setting.
    pub fn privacy_setting(mut self, privacy_setting: impl Into<String>) -> Self {
        self.privacy_setting = Some(privacy_setting.into());
        self
    }

    /// Set custom field values.
    pub fn custom_fields(mut self, custom_fields: HashMap<String, serde_json::Value>) -> Self {
        self.custom_fields = Some(custom_fields);
        self
    }
}

/// Request body for instantiating a project from a template.
#[derive(Debug, Clone, Serialize)]
pub struct InstantiateProjectRequest {
    /// The data.
    pub data: InstantiateProjectData,
}

/// Data for instantiating a project from a template.
#[derive(Debug, Clone, Default, Serialize)]
pub struct InstantiateProjectData {
    /// The name of the new project.
    pub name: String,
    /// The team to create the project in.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub team: Option<String>,
    /// Whether to make the project public.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub public: Option<bool>,
    /// Date variables for the template.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub requested_dates: Option<Vec<DateVariable>>,
    /// Role assignments for the template.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub requested_roles: Option<Vec<RoleAssignment>>,
}

/// A date variable for template instantiation.
#[derive(Debug, Clone, Serialize)]
pub struct DateVariable {
    /// The GID of the date variable.
    pub gid: String,
    /// The value (YYYY-MM-DD format).
    pub value: String,
}

/// A role assignment for template instantiation.
#[derive(Debug, Clone, Serialize)]
pub struct RoleAssignment {
    /// The GID of the role.
    pub gid: String,
    /// The GID of the user to assign to the role.
    pub value: String,
}

/// Request body for adding members to a project.
#[derive(Debug, Clone, Serialize)]
pub struct AddMembersRequest {
    /// The data.
    pub data: AddMembersData,
}

/// Data for adding members.
#[derive(Debug, Clone, Serialize)]
pub struct AddMembersData {
    /// The GIDs of users to add as members.
    pub members: Vec<String>,
}

/// Request body for removing members from a project.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveMembersRequest {
    /// The data.
    pub data: RemoveMembersData,
}

/// Data for removing members.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveMembersData {
    /// The GIDs of users to remove as members.
    pub members: Vec<String>,
}

// ============================================================================
// Portfolio Operations
// ============================================================================

/// Request body for creating a portfolio.
#[derive(Debug, Clone, Serialize)]
pub struct CreatePortfolioRequest {
    /// The portfolio data.
    pub data: CreatePortfolioData,
}

/// Data for creating a portfolio.
#[derive(Debug, Clone, Default, Serialize)]
pub struct CreatePortfolioData {
    /// The name of the portfolio.
    pub name: String,
    /// The workspace to create the portfolio in.
    pub workspace: String,
    /// The color of the portfolio.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub color: Option<String>,
    /// Whether the portfolio is public.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub public: Option<bool>,
}

impl CreatePortfolioData {
    /// Create a new CreatePortfolioData with name and workspace.
    pub fn new(name: impl Into<String>, workspace: impl Into<String>) -> Self {
        Self {
            name: name.into(),
            workspace: workspace.into(),
            ..Default::default()
        }
    }

    /// Set the color.
    pub fn color(mut self, color: impl Into<String>) -> Self {
        self.color = Some(color.into());
        self
    }

    /// Set the public visibility.
    pub fn public(mut self, public: bool) -> Self {
        self.public = Some(public);
        self
    }
}

/// Request body for updating a portfolio.
#[derive(Debug, Clone, Serialize)]
pub struct UpdatePortfolioRequest {
    /// The portfolio data.
    pub data: UpdatePortfolioData,
}

/// Data for updating a portfolio.
#[derive(Debug, Clone, Default, Serialize)]
pub struct UpdatePortfolioData {
    /// The name of the portfolio.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The color of the portfolio.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub color: Option<String>,
    /// Whether the portfolio is public.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub public: Option<bool>,
}

impl UpdatePortfolioData {
    /// Create a new empty UpdatePortfolioData.
    pub fn new() -> Self {
        Self::default()
    }

    /// Set the portfolio name.
    pub fn name(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }

    /// Set the color.
    pub fn color(mut self, color: impl Into<String>) -> Self {
        self.color = Some(color.into());
        self
    }

    /// Set the public visibility.
    pub fn public(mut self, public: bool) -> Self {
        self.public = Some(public);
        self
    }
}

/// Request body for adding an item to a portfolio.
#[derive(Debug, Clone, Serialize)]
pub struct AddItemRequest {
    /// The data.
    pub data: AddItemData,
}

/// Data for adding an item to a portfolio.
#[derive(Debug, Clone, Serialize)]
pub struct AddItemData {
    /// The GID of the project to add.
    pub item: String,
    /// Insert before this item.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub insert_before: Option<String>,
    /// Insert after this item.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub insert_after: Option<String>,
}

/// Request body for removing an item from a portfolio.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveItemRequest {
    /// The data.
    pub data: RemoveItemData,
}

/// Data for removing an item from a portfolio.
#[derive(Debug, Clone, Serialize)]
pub struct RemoveItemData {
    /// The GID of the item to remove.
    pub item: String,
}

// ============================================================================
// Section Operations
// ============================================================================

/// Request body for creating a section.
#[derive(Debug, Clone, Serialize)]
pub struct CreateSectionRequest {
    /// The section data.
    pub data: CreateSectionData,
}

/// Data for creating a section.
#[derive(Debug, Clone, Serialize)]
pub struct CreateSectionData {
    /// The name of the section.
    pub name: String,
    /// Insert before this section.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub insert_before: Option<String>,
    /// Insert after this section.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub insert_after: Option<String>,
}

/// Request body for updating a section.
#[derive(Debug, Clone, Serialize)]
pub struct UpdateSectionRequest {
    /// The section data.
    pub data: UpdateSectionData,
}

/// Data for updating a section.
#[derive(Debug, Clone, Default, Serialize)]
pub struct UpdateSectionData {
    /// The name of the section.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
}

// ============================================================================
// Status Update Operations
// ============================================================================

/// Request body for creating a status update.
#[derive(Debug, Clone, Serialize)]
pub struct CreateStatusUpdateRequest {
    /// The status update data.
    pub data: CreateStatusUpdateData,
}

/// Data for creating a status update.
#[derive(Debug, Clone, Default, Serialize)]
pub struct CreateStatusUpdateData {
    /// The GID of the project or portfolio.
    pub parent: String,
    /// The status type (on_track, at_risk, off_track, on_hold, complete).
    pub status_type: String,
    /// The title of the status update.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// Plain text content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    /// HTML content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub html_text: Option<String>,
}

/// Request body for updating a status update.
#[derive(Debug, Clone, Serialize)]
pub struct UpdateStatusUpdateRequest {
    /// The status update data.
    pub data: UpdateStatusUpdateData,
}

/// Data for updating a status update.
#[derive(Debug, Clone, Default, Serialize)]
pub struct UpdateStatusUpdateData {
    /// The status type (on_track, at_risk, off_track, on_hold, complete).
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status_type: Option<String>,
    /// The title of the status update.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    /// Plain text content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    /// HTML content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub html_text: Option<String>,
}

// ============================================================================
// Story/Comment Operations
// ============================================================================

/// Request body for creating a comment on a task.
#[derive(Debug, Clone, Serialize)]
pub struct CreateCommentRequest {
    /// The comment data.
    pub data: CreateCommentData,
}

/// Data for creating a comment.
#[derive(Debug, Clone, Serialize)]
pub struct CreateCommentData {
    /// Plain text content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    /// HTML content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub html_text: Option<String>,
}

/// Request body for updating a story/comment.
#[derive(Debug, Clone, Serialize)]
pub struct UpdateStoryRequest {
    /// The story data.
    pub data: UpdateStoryData,
}

/// Data for updating a story/comment.
#[derive(Debug, Clone, Serialize)]
pub struct UpdateStoryData {
    /// Plain text content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    /// HTML content.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub html_text: Option<String>,
}

// ============================================================================
// Tag Operations
// ============================================================================

/// Request body for creating a tag.
#[derive(Debug, Clone, Serialize)]
pub struct CreateTagRequest {
    /// The tag data.
    pub data: CreateTagData,
}

/// Data for creating a tag.
#[derive(Debug, Clone, Default, Serialize)]
pub struct CreateTagData {
    /// The name of the tag.
    pub name: String,
    /// The workspace to create the tag in.
    pub workspace: String,
    /// The color of the tag.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub color: Option<String>,
    /// Notes about the tag.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notes: Option<String>,
}

/// Request body for updating a tag.
#[derive(Debug, Clone, Serialize)]
pub struct UpdateTagRequest {
    /// The tag data.
    pub data: UpdateTagData,
}

/// Data for updating a tag.
#[derive(Debug, Clone, Default, Serialize)]
pub struct UpdateTagData {
    /// The name of the tag.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The color of the tag.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub color: Option<String>,
    /// Notes about the tag.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notes: Option<String>,
}

// ============================================================================
// Job Response (for async operations like template instantiation)
// ============================================================================

/// A job returned by asynchronous operations.
#[derive(Debug, Clone, serde::Deserialize, Serialize)]
pub struct Job {
    /// The unique identifier for the job.
    pub gid: String,
    /// The resource type (always "job").
    pub resource_type: String,
    /// The status of the job (queued, in_progress, succeeded, failed).
    pub status: String,
    /// The new project created (if applicable and completed).
    pub new_project: Option<JobProject>,
}

/// A compact project reference in a job.
#[derive(Debug, Clone, serde::Deserialize, Serialize)]
pub struct JobProject {
    /// The GID of the project.
    pub gid: String,
    /// The name of the project.
    pub name: Option<String>,
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_create_task_request_serialization() {
        let request = CreateTaskRequest {
            data: CreateTaskData {
                name: Some("Test Task".to_string()),
                workspace: Some("ws123".to_string()),
                ..Default::default()
            },
        };

        let json = serde_json::to_string(&request).unwrap();
        assert!(json.contains("\"name\":\"Test Task\""));
        assert!(json.contains("\"workspace\":\"ws123\""));
    }

    #[test]
    fn test_update_task_request_skips_none() {
        let request = UpdateTaskRequest {
            data: UpdateTaskData {
                name: Some("Updated".to_string()),
                ..Default::default()
            },
        };

        let json = serde_json::to_string(&request).unwrap();
        assert!(json.contains("\"name\":\"Updated\""));
        assert!(!json.contains("assignee"));
        assert!(!json.contains("due_on"));
    }

    #[test]
    fn test_add_project_request_serialization() {
        let request = AddProjectRequest {
            data: AddProjectData {
                project: "proj123".to_string(),
                section: Some("sect456".to_string()),
                insert_before: None,
                insert_after: None,
            },
        };

        let json = serde_json::to_string(&request).unwrap();
        assert!(json.contains("\"project\":\"proj123\""));
        assert!(json.contains("\"section\":\"sect456\""));
    }

    #[test]
    fn test_instantiate_project_request() {
        let request = InstantiateProjectRequest {
            data: InstantiateProjectData {
                name: "New Project".to_string(),
                team: Some("team123".to_string()),
                requested_dates: Some(vec![DateVariable {
                    gid: "date1".to_string(),
                    value: "2024-12-31".to_string(),
                }]),
                ..Default::default()
            },
        };

        let json = serde_json::to_string(&request).unwrap();
        assert!(json.contains("\"name\":\"New Project\""));
        assert!(json.contains("\"requested_dates\""));
    }
}