harvest-api 5.0.0

Harvest client, generated from the OpenAPI spec.
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
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
use serde::{Serialize, Deserialize};
#[derive(Debug, Serialize, Deserialize)]
pub struct BillableRates {
    pub previous_page: Option<i64>,
    pub total_entries: i64,
    pub billable_rates: Vec<BillableRate>,
    pub per_page: i64,
    pub page: i64,
    pub total_pages: i64,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
}
impl std::fmt::Display for BillableRates {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct PaginationLinks {
    ///Last page
    pub last: String,
    ///First page
    pub first: String,
    ///Previous page
    pub previous: Option<String>,
    ///Next page
    pub next: Option<String>,
}
impl std::fmt::Display for PaginationLinks {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct User {
    ///The URL to the user’s avatar image.
    pub avatar_url: Option<String>,
    ///Access role(s) that determine the user’s permissions in Harvest. Possible values: administrator, manager or member. Users with the manager role can additionally be granted one or more of these roles: project_creator, billable_rates_manager, managed_projects_invoice_drafter, managed_projects_invoice_manager, client_and_task_manager, time_and_expenses_manager, estimates_manager.
    pub access_roles: Option<Vec<String>>,
    ///The last name of the user.
    pub last_name: Option<String>,
    ///The user’s timezone.
    pub timezone: Option<String>,
    ///The email address of the user.
    pub email: Option<String>,
    ///The cost rate to use for this user when calculating a project’s costs vs billable amount.
    pub cost_rate: Option<f64>,
    ///Unique ID for the user.
    pub id: Option<i64>,
    ///Date and time the user was created.
    pub created_at: Option<String>,
    ///The first name of the user.
    pub first_name: Option<String>,
    ///Date and time the user was last updated.
    pub updated_at: Option<String>,
    ///The number of hours per week this person is available to work in seconds, in half hour increments. For example, if a person’s capacity is 35 hours, the API will return 126000 seconds.
    pub weekly_capacity: Option<i64>,
    ///Descriptive names of the business roles assigned to this person. They can be used for filtering reports, and have no effect in their permissions in Harvest.
    pub roles: Option<Vec<String>>,
    ///Whether the user should be automatically added to future projects.
    pub has_access_to_all_future_projects: Option<bool>,
    ///The user’s telephone number.
    pub telephone: Option<String>,
    ///Whether the user is a contractor or an employee.
    pub is_contractor: Option<bool>,
    ///Whether the user is active or archived.
    pub is_active: Option<bool>,
    ///The billable rate to use for this user when they are added to a project.
    pub default_hourly_rate: Option<f64>,
}
impl std::fmt::Display for User {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TaskAssignments {
    pub page: i64,
    pub total_entries: i64,
    pub links: PaginationLinks,
    pub per_page: i64,
    pub total_pages: i64,
    pub task_assignments: Vec<TaskAssignment>,
    pub next_page: Option<i64>,
    pub previous_page: Option<i64>,
}
impl std::fmt::Display for TaskAssignments {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct UninvoicedReportResults {
    pub results: Vec<UninvoicedReportResult>,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
    pub total_pages: i64,
    pub previous_page: Option<i64>,
    pub per_page: i64,
    pub total_entries: i64,
    pub page: i64,
}
impl std::fmt::Display for UninvoicedReportResults {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct EstimateMessage {
    ///Email of the user that created the message.
    pub sent_by_email: Option<String>,
    ///Date and time the message was last updated.
    pub updated_at: Option<String>,
    ///Array of estimate message recipients.
    pub recipients: Option<Vec<EstimateMessageRecipient>>,
    ///The type of estimate event that occurred with the message: send, accept, decline, re-open, view, or invoice.
    pub event_type: Option<String>,
    ///Name of the user that the message was sent from.
    pub sent_from: Option<String>,
    ///Unique ID for the message.
    pub id: Option<i64>,
    ///The message subject.
    pub subject: Option<String>,
    ///Whether to email a copy of the message to the current user.
    pub send_me_a_copy: Option<bool>,
    ///Email of the user that message was sent from.
    pub sent_from_email: Option<String>,
    ///Name of the user that created the message.
    pub sent_by: Option<String>,
    ///The message body.
    pub body: Option<String>,
    ///Date and time the message was created.
    pub created_at: Option<String>,
}
impl std::fmt::Display for EstimateMessage {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InvoiceLineItem {
    ///An object containing the associated project’s id, name, and code.
    pub project: Option<serde_json::Value>,
    ///Unique ID for the line item.
    pub id: Option<i64>,
    ///The individual price per unit.
    pub unit_price: Option<f64>,
    ///Whether the invoice’s tax2 percentage applies to this line item.
    pub taxed2: Option<bool>,
    ///The name of an invoice item category.
    pub kind: Option<String>,
    ///Text description of the line item.
    pub description: Option<String>,
    ///The line item subtotal (quantity * unit_price).
    pub amount: Option<f64>,
    ///The unit quantity of the item.
    pub quantity: Option<f64>,
    ///Whether the invoice’s tax percentage applies to this line item.
    pub taxed: Option<bool>,
}
impl std::fmt::Display for InvoiceLineItem {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct Client {
    ///The physical address for the client.
    pub address: Option<String>,
    ///Date and time the client was created.
    pub created_at: Option<String>,
    ///A textual description of the client.
    pub name: Option<String>,
    ///Used to build a URL to your client’s invoice dashboard:https://{ACCOUNT_SUBDOMAIN}.harvestapp.com/client/statements/{STATEMENT_KEY}
    pub statement_key: Option<String>,
    ///Date and time the client was last updated.
    pub updated_at: Option<String>,
    ///Whether the client is active or archived.
    pub is_active: Option<bool>,
    ///The currency code associated with this client.
    pub currency: Option<String>,
    ///Unique ID for the client.
    pub id: Option<i64>,
}
impl std::fmt::Display for Client {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct InvoiceMessageSubjectAndBody {
    pub subject: String,
    pub invoice_id: i64,
    pub body: String,
    pub reminder: bool,
    pub thank_you: bool,
}
impl std::fmt::Display for InvoiceMessageSubjectAndBody {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TaskAssignment {
    ///An object containing the id and name of the associated task.
    pub task: Option<serde_json::Value>,
    ///Whether the task assignment is active or archived.
    pub is_active: Option<bool>,
    ///Budget used when the project’s budget_by is task or task_fees.
    pub budget: Option<f64>,
    ///Whether the task assignment is billable or not. For example: if set to true, all time tracked on this project for the associated task will be marked as billable.
    pub billable: Option<bool>,
    ///Rate used when the project’s bill_by is Tasks.
    pub hourly_rate: Option<f64>,
    ///Date and time the task assignment was last updated.
    pub updated_at: Option<String>,
    ///Unique ID for the task assignment.
    pub id: Option<i64>,
    ///An object containing the id, name, and code of the associated project.
    pub project: Option<serde_json::Value>,
    ///Date and time the task assignment was created.
    pub created_at: Option<String>,
}
impl std::fmt::Display for TaskAssignment {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Tasks {
    pub page: i64,
    pub total_pages: i64,
    pub previous_page: Option<i64>,
    pub links: PaginationLinks,
    pub next_page: Option<i64>,
    pub per_page: i64,
    pub total_entries: i64,
    pub tasks: Vec<Task>,
}
impl std::fmt::Display for Tasks {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Contacts {
    pub page: i64,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
    pub per_page: i64,
    pub total_entries: i64,
    pub previous_page: Option<i64>,
    pub contacts: Vec<Contact>,
    pub total_pages: i64,
}
impl std::fmt::Display for Contacts {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct EstimateMessageRecipient {
    ///Email of the message recipient.
    pub email: Option<String>,
    ///Name of the message recipient.
    pub name: Option<String>,
}
impl std::fmt::Display for EstimateMessageRecipient {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Clients {
    pub previous_page: Option<i64>,
    pub page: i64,
    pub total_pages: i64,
    pub links: PaginationLinks,
    pub clients: Vec<Client>,
    pub next_page: Option<i64>,
    pub total_entries: i64,
    pub per_page: i64,
}
impl std::fmt::Display for Clients {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EstimateItemCategories {
    pub previous_page: Option<i64>,
    pub total_entries: i64,
    pub total_pages: i64,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
    pub per_page: i64,
    pub estimate_item_categories: Vec<EstimateItemCategory>,
    pub page: i64,
}
impl std::fmt::Display for EstimateItemCategories {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InvoicePayments {
    pub links: PaginationLinks,
    pub total_entries: i64,
    pub per_page: i64,
    pub previous_page: Option<i64>,
    pub page: i64,
    pub total_pages: i64,
    pub invoice_payments: Vec<InvoicePayment>,
    pub next_page: Option<i64>,
}
impl std::fmt::Display for InvoicePayments {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Estimates {
    pub total_pages: i64,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
    pub estimates: Vec<Estimate>,
    pub per_page: i64,
    pub total_entries: i64,
    pub page: i64,
    pub previous_page: Option<i64>,
}
impl std::fmt::Display for Estimates {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Expenses {
    pub per_page: i64,
    pub total_entries: i64,
    pub previous_page: Option<i64>,
    pub page: i64,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
    pub total_pages: i64,
    pub expenses: Vec<Expense>,
}
impl std::fmt::Display for Expenses {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TimeEntries {
    pub total_pages: i64,
    pub total_entries: i64,
    pub per_page: i64,
    pub previous_page: Option<i64>,
    pub time_entries: Vec<TimeEntry>,
    pub next_page: Option<i64>,
    pub page: i64,
    pub links: PaginationLinks,
}
impl std::fmt::Display for TimeEntries {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ExpenseReportsResults {
    pub page: i64,
    pub total_pages: i64,
    pub previous_page: Option<i64>,
    pub results: Vec<ExpenseReportsResult>,
    pub links: PaginationLinks,
    pub next_page: Option<i64>,
    pub total_entries: i64,
    pub per_page: i64,
}
impl std::fmt::Display for ExpenseReportsResults {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct UserAssignment {
    ///Date and time the user assignment was created.
    pub created_at: Option<String>,
    ///Determines which billable rate(s) will be used on the project for this user when bill_by is People. When true, the project will use the user’s default billable rates. When false, the project will use the custom rate defined on this user assignment.
    pub use_default_rates: Option<bool>,
    ///Date and time the user assignment was last updated.
    pub updated_at: Option<String>,
    ///Unique ID for the user assignment.
    pub id: Option<i64>,
    ///An object containing the id and name of the associated user.
    pub user: Option<serde_json::Value>,
    ///Whether the user assignment is active or archived.
    pub is_active: Option<bool>,
    ///Determines if the user has Project Manager permissions for the project.
    pub is_project_manager: Option<bool>,
    ///An object containing the id, name, and code of the associated project.
    pub project: Option<serde_json::Value>,
    ///Custom rate used when the project’s bill_by is People and use_default_rates is false.
    pub hourly_rate: Option<f64>,
    ///Budget used when the project’s budget_by is person.
    pub budget: Option<f64>,
}
impl std::fmt::Display for UserAssignment {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct BillableRate {
    ///The date the billable rate is no longer effective. This date is calculated by Harvest.
    pub end_date: Option<String>,
    ///Date and time the billable rate was last updated.
    pub updated_at: Option<String>,
    ///Date and time the billable rate was created.
    pub created_at: Option<String>,
    ///Unique ID for the billable rate.
    pub id: Option<i64>,
    ///The date the billable rate is effective.
    pub start_date: Option<String>,
    ///The amount of the billable rate.
    pub amount: Option<f64>,
}
impl std::fmt::Display for BillableRate {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Projects {
    pub page: i64,
    pub total_pages: i64,
    pub next_page: Option<i64>,
    pub projects: Vec<Project>,
    pub per_page: i64,
    pub total_entries: i64,
    pub previous_page: Option<i64>,
    pub links: PaginationLinks,
}
impl std::fmt::Display for Projects {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Teammates {
    pub per_page: i64,
    pub page: i64,
    pub teammates: Vec<Teammate>,
    pub total_pages: i64,
    pub links: PaginationLinks,
    pub next_page: Option<i64>,
    pub previous_page: Option<i64>,
    pub total_entries: i64,
}
impl std::fmt::Display for Teammates {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Roles {
    pub roles: Vec<Role>,
    pub previous_page: Option<i64>,
    pub page: i64,
    pub total_pages: i64,
    pub total_entries: i64,
    pub next_page: Option<i64>,
    pub per_page: i64,
    pub links: PaginationLinks,
}
impl std::fmt::Display for Roles {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Companies {
    pub per_page: i64,
    pub total_pages: i64,
    pub links: PaginationLinks,
    pub next_page: Option<i64>,
    pub page: i64,
    pub companies: Vec<Company>,
    pub total_entries: i64,
    pub previous_page: Option<i64>,
}
impl std::fmt::Display for Companies {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct Role {
    ///The name of the role.
    pub name: Option<String>,
    ///The IDs of the users assigned to this role.
    pub user_ids: Option<Vec<i64>>,
    ///Date and time the role was created.
    pub created_at: Option<String>,
    ///Date and time the role was last updated.
    pub updated_at: Option<String>,
    ///Unique ID for the role.
    pub id: Option<i64>,
}
impl std::fmt::Display for Role {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InvoiceMessageRecipients {
    pub total_pages: i64,
    pub next_page: Option<i64>,
    pub previous_page: Option<i64>,
    pub page: i64,
    pub invoice_message_recipients: Vec<InvoiceMessageRecipient>,
    pub total_entries: i64,
    pub links: PaginationLinks,
    pub per_page: i64,
}
impl std::fmt::Display for InvoiceMessageRecipients {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Invoices {
    pub invoices: Vec<Invoice>,
    pub total_entries: i64,
    pub page: i64,
    pub per_page: i64,
    pub links: PaginationLinks,
    pub next_page: Option<i64>,
    pub previous_page: Option<i64>,
    pub total_pages: i64,
}
impl std::fmt::Display for Invoices {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct ExpenseCategory {
    ///Date and time the expense category was last updated.
    pub updated_at: Option<String>,
    ///The name of the expense category.
    pub name: Option<String>,
    ///The unit price of the expense category.
    pub unit_price: Option<f64>,
    ///Date and time the expense category was created.
    pub created_at: Option<String>,
    ///Unique ID for the expense category.
    pub id: Option<i64>,
    ///The unit name of the expense category.
    pub unit_name: Option<String>,
    ///Whether the expense category is active or archived.
    pub is_active: Option<bool>,
}
impl std::fmt::Display for ExpenseCategory {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct InvoiceMessageRecipient {
    ///Name of the message recipient.
    pub name: Option<String>,
    ///Email of the message recipient.
    pub email: Option<String>,
}
impl std::fmt::Display for InvoiceMessageRecipient {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TimeReportsResults {
    pub total_entries: i64,
    pub page: i64,
    pub next_page: Option<i64>,
    pub per_page: i64,
    pub links: PaginationLinks,
    pub previous_page: Option<i64>,
    pub results: Vec<TimeReportsResult>,
    pub total_pages: i64,
}
impl std::fmt::Display for TimeReportsResults {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct Company {
    ///Symbol used when formatting decimals.
    pub decimal_symbol: Option<String>,
    ///The Harvest URL for the company.
    pub base_uri: Option<String>,
    ///The type of plan the company is on. Examples: trial, free, or simple-v4
    pub plan_type: Option<String>,
    ///Whether the expense module is enabled.
    pub expense_feature: Option<bool>,
    ///Whether the company is active or archived.
    pub is_active: Option<bool>,
    ///The format used to display time in Harvest. Returns either decimal or hours_minutes.
    pub time_format: Option<String>,
    ///The color scheme being used in the Harvest web client.
    pub color_scheme: Option<String>,
    ///The weekly capacity in seconds.
    pub weekly_capacity: Option<i64>,
    ///The name of the company.
    pub name: Option<String>,
    ///The weekday used as the start of the week. Returns one of: Saturday, Sunday, or Monday.
    pub week_start_day: Option<String>,
    ///Separator used when formatting numbers.
    pub thousands_separator: Option<String>,
    ///Whether the invoice module is enabled.
    pub invoice_feature: Option<bool>,
    ///Whether the estimate module is enabled.
    pub estimate_feature: Option<bool>,
    ///Used to represent whether the company is using a 12-hour or 24-hour clock. Returns either 12h or 24h.
    pub clock: Option<String>,
    ///Whether time is tracked via duration or start and end times.
    pub wants_timestamp_timers: Option<bool>,
    ///The Harvest domain for the company.
    pub full_domain: Option<String>,
    ///How to display the currency code when formatting currency. Returns one of: iso_code_none, iso_code_before, or iso_code_after.
    pub currency_code_display: Option<String>,
    ///How to display the currency symbol when formatting currency. Returns one of: symbol_none, symbol_before, or symbol_after.
    pub currency_symbol_display: Option<String>,
    ///Whether the approval module is enabled.
    pub approval_feature: Option<bool>,
    ///The format used to display date in Harvest. Returns one of: %m/%d/%Y, %d/%m/%Y, %Y-%m-%d, %d.%m.%Y,.%Y.%m.%d or %Y/%m/%d.
    pub date_format: Option<String>,
}
impl std::fmt::Display for Company {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Contact {
    ///The last name of the contact.
    pub last_name: Option<String>,
    ///The title of the contact.
    pub title: Option<String>,
    ///The contact’s office phone number.
    pub phone_office: Option<String>,
    ///The contact’s mobile phone number.
    pub phone_mobile: Option<String>,
    ///An object containing the contact’s client id and name.
    pub client: Option<serde_json::Value>,
    ///Date and time the contact was last updated.
    pub updated_at: Option<String>,
    ///The first name of the contact.
    pub first_name: Option<String>,
    ///The contact’s fax number.
    pub fax: Option<String>,
    ///Date and time the contact was created.
    pub created_at: Option<String>,
    ///The contact’s email address.
    pub email: Option<String>,
    ///Unique ID for the contact.
    pub id: Option<i64>,
}
impl std::fmt::Display for Contact {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct ProjectBudgetReportResult {
    ///The total hours or money spent against the project’s budget. If Time Rounding is turned on, the hours will be rounded according to your settings. If the project is budgeted by money, this value will only be visible to Administrators and Project Managers with the View billable rates and amounts permission.
    pub budget_spent: Option<f64>,
    ///The ID of the client associated with this project.
    pub client_id: Option<i64>,
    ///The method by which the project is budgeted. Options: project (Hours Per Project), project_cost (Total Project Fees), task (Hours Per Task), task_fees (Fees Per Task), person (Hours Per Person), none (No Budget).
    pub budget_by: Option<String>,
    ///The budget in hours or money for the project when budgeting by time. If the project is budgeted by money, this value will only be visible to Administrators and Project Managers with the View billable rates and amounts permission.
    pub budget: Option<f64>,
    ///The name of the project.
    pub project_name: Option<String>,
    ///Whether the budget is reset every month.
    pub budget_is_monthly: Option<bool>,
    ///The total hours or money remaining in the project’s budget. If Time Rounding is turned on, the hours will be rounded according to your settings. If the project is budgeted by money, this value will only be visible to Administrators and Project Managers with the View billable rates and amounts permission.
    pub budget_remaining: Option<f64>,
    ///Whether the project is active or archived.
    pub is_active: Option<bool>,
    ///The name of the client associated with this project.
    pub client_name: Option<String>,
    ///The ID of the project.
    pub project_id: Option<i64>,
}
impl std::fmt::Display for ProjectBudgetReportResult {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EstimateMessages {
    pub next_page: Option<i64>,
    pub previous_page: Option<i64>,
    pub page: i64,
    pub per_page: i64,
    pub links: PaginationLinks,
    pub estimate_messages: Vec<EstimateMessage>,
    pub total_entries: i64,
    pub total_pages: i64,
}
impl std::fmt::Display for EstimateMessages {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct Error {
    pub message: Option<String>,
    pub code: Option<i64>,
}
impl std::fmt::Display for Error {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InvoiceMessages {
    pub total_pages: i64,
    pub per_page: i64,
    pub page: i64,
    pub links: PaginationLinks,
    pub next_page: Option<i64>,
    pub previous_page: Option<i64>,
    pub invoice_messages: Vec<InvoiceMessage>,
    pub total_entries: i64,
}
impl std::fmt::Display for InvoiceMessages {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct UserAssignments {
    pub page: i64,
    pub links: PaginationLinks,
    pub per_page: i64,
    pub total_entries: i64,
    pub previous_page: Option<i64>,
    pub next_page: Option<i64>,
    pub user_assignments: Vec<UserAssignment>,
    pub total_pages: i64,
}
impl std::fmt::Display for UserAssignments {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct EstimateLineItem {
    ///The unit quantity of the item.
    pub quantity: Option<f64>,
    ///Whether the estimate’s tax2 percentage applies to this line item.
    pub taxed2: Option<bool>,
    ///Unique ID for the line item.
    pub id: Option<i64>,
    ///The individual price per unit.
    pub unit_price: Option<f64>,
    ///The name of an estimate item category.
    pub kind: Option<String>,
    ///Text description of the line item.
    pub description: Option<String>,
    ///The line item subtotal (quantity * unit_price).
    pub amount: Option<f64>,
    ///Whether the estimate’s tax percentage applies to this line item.
    pub taxed: Option<bool>,
}
impl std::fmt::Display for EstimateLineItem {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Teammate {
    ///The first name of the teammate
    pub first_name: Option<String>,
    ///Unique ID for the teammate
    pub id: Option<serde_json::Value>,
    ///The last name of the teammate
    pub last_name: Option<String>,
    ///The email of the teammate
    pub email: Option<String>,
}
impl std::fmt::Display for Teammate {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ProjectAssignment {
    ///Date and time the project assignment was last updated.
    pub updated_at: Option<String>,
    ///Determines if the user has Project Manager permissions for the project.
    pub is_project_manager: Option<bool>,
    ///Determines which billable rate(s) will be used on the project for this user when bill_by is People. When true, the project will use the user’s default billable rates. When false, the project will use the custom rate defined on this user assignment.
    pub use_default_rates: Option<bool>,
    ///Budget used when the project’s budget_by is person.
    pub budget: Option<f64>,
    ///Date and time the project assignment was created.
    pub created_at: Option<String>,
    ///An object containing the assigned project id, name, and code.
    pub project: Option<serde_json::Value>,
    ///An object containing the project’s client id and name.
    pub client: Option<serde_json::Value>,
    ///Array of task assignment objects associated with the project.
    pub task_assignments: Option<Vec<TaskAssignment>>,
    ///Custom rate used when the project’s bill_by is People and use_default_rates is false.
    pub hourly_rate: Option<f64>,
    ///Unique ID for the project assignment.
    pub id: Option<i64>,
    ///Whether the project assignment is active or archived.
    pub is_active: Option<bool>,
}
impl std::fmt::Display for ProjectAssignment {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct TeammatesPatchResponse {
    pub teammates: Vec<Teammate>,
}
impl std::fmt::Display for TeammatesPatchResponse {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct InvoiceItemCategory {
    ///Unique ID for the invoice item category.
    pub id: Option<i64>,
    ///Whether this invoice item category is used for billable hours when generating an invoice.
    pub use_as_service: Option<bool>,
    ///Date and time the invoice item category was created.
    pub created_at: Option<String>,
    ///The name of the invoice item category.
    pub name: Option<String>,
    ///Whether this invoice item category is used for expenses when generating an invoice.
    pub use_as_expense: Option<bool>,
    ///Date and time the invoice item category was last updated.
    pub updated_at: Option<String>,
}
impl std::fmt::Display for InvoiceItemCategory {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Project {
    ///The method by which the project is budgeted.
    pub budget_by: Option<String>,
    ///Whether the project is billable or not.
    pub is_billable: Option<bool>,
    ///Option to have the budget reset every month.
    pub budget_is_monthly: Option<bool>,
    ///Date the project was started.
    pub starts_on: Option<String>,
    ///Date and time the project was created.
    pub created_at: Option<String>,
    ///Whether the project is a fixed-fee project or not.
    pub is_fixed_fee: Option<bool>,
    ///Whether Project Managers should be notified when the project goes over budget.
    pub notify_when_over_budget: Option<bool>,
    ///The method by which the project is invoiced.
    pub bill_by: Option<String>,
    ///Percentage value used to trigger over budget email alerts.
    pub over_budget_notification_percentage: Option<f64>,
    ///The amount you plan to invoice for the project. Only used by fixed-fee projects.
    pub fee: Option<f64>,
    ///Option for budget of Total Project Fees projects to include tracked expenses.
    pub cost_budget_include_expenses: Option<bool>,
    ///The monetary budget for the project when budgeting by money.
    pub cost_budget: Option<f64>,
    ///Option to show project budget to all employees. Does not apply to Total Project Fee projects.
    pub show_budget_to_all: Option<bool>,
    ///Project notes.
    pub notes: Option<String>,
    ///Whether the project is active or archived.
    pub is_active: Option<bool>,
    ///An object containing the project’s client id, name, and currency.
    pub client: Option<serde_json::Value>,
    ///Rate for projects billed by Project Hourly Rate.
    pub hourly_rate: Option<f64>,
    ///The budget in hours for the project when budgeting by time.
    pub budget: Option<f64>,
    ///Date the project will end.
    pub ends_on: Option<String>,
    ///Date and time the project was last updated.
    pub updated_at: Option<String>,
    ///Unique ID for the project.
    pub id: Option<i64>,
    ///Date of last over budget notification. If none have been sent, this will be null.
    pub over_budget_notification_date: Option<String>,
    ///Unique name for the project.
    pub name: Option<String>,
    ///The code associated with the project.
    pub code: Option<String>,
}
impl std::fmt::Display for Project {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EstimateMessageRecipients {
    pub page: i64,
    pub links: PaginationLinks,
    pub estimate_message_recipients: Vec<EstimateMessageRecipient>,
    pub total_pages: i64,
    pub per_page: i64,
    pub total_entries: i64,
    pub previous_page: Option<i64>,
    pub next_page: Option<i64>,
}
impl std::fmt::Display for EstimateMessageRecipients {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InvoicePayment {
    ///The email of the person who recorded the payment.
    pub recorded_by_email: Option<String>,
    ///The payment gateway id and name used to process the payment.
    pub payment_gateway: Option<serde_json::Value>,
    ///Date and time the payment was made.
    pub paid_at: Option<String>,
    ///Date and time the payment was recorded.
    pub created_at: Option<String>,
    ///Date the payment was made.
    pub paid_date: Option<String>,
    ///The name of the person who recorded the payment.
    pub recorded_by: Option<String>,
    ///Date and time the payment was last updated.
    pub updated_at: Option<String>,
    ///Unique ID for the payment.
    pub id: Option<i64>,
    ///Any notes associated with the payment.
    pub notes: Option<String>,
    ///The amount of the payment.
    pub amount: Option<f64>,
    ///Either the card authorization or PayPal transaction ID.
    pub transaction_id: Option<String>,
}
impl std::fmt::Display for InvoicePayment {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct InvoiceMessage {
    ///Whether this is a thank you message.
    pub thank_you: Option<bool>,
    ///Date and time the message was created.
    pub created_at: Option<String>,
    ///Email of the user that message was sent from.
    pub sent_from_email: Option<String>,
    ///Unique ID for the message.
    pub id: Option<i64>,
    ///Whether to email a copy of the message to the current user.
    pub send_me_a_copy: Option<bool>,
    ///The type of invoice event that occurred with the message: send, close, draft, re-open, or view.
    pub event_type: Option<String>,
    ///Whether to include a link to the client invoice in the message body. Not used when thank_you is true.
    pub include_link_to_client_invoice: Option<bool>,
    ///Email of the user that created the message.
    pub sent_by_email: Option<String>,
    ///Name of the user that the message was sent from.
    pub sent_from: Option<String>,
    ///Array of invoice message recipients.
    pub recipients: Option<Vec<InvoiceMessageRecipient>>,
    ///The message subject.
    pub subject: Option<String>,
    ///Whether this is a reminder message.
    pub reminder: Option<bool>,
    ///The message body.
    pub body: Option<String>,
    ///Whether to attach the invoice PDF to the message email.
    pub attach_pdf: Option<bool>,
    ///The date the reminder email will be sent.
    pub send_reminder_on: Option<String>,
    ///Name of the user that created the message.
    pub sent_by: Option<String>,
    ///Date and time the message was last updated.
    pub updated_at: Option<String>,
}
impl std::fmt::Display for InvoiceMessage {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TimeEntry {
    ///An object containing the id and name of the associated task.
    pub task: Option<serde_json::Value>,
    pub task_assignment: Option<TaskAssignment>,
    pub user_assignment: Option<UserAssignment>,
    ///Notes attached to the time entry.
    pub notes: Option<String>,
    ///An object containing the id and name of the associated user.
    pub user: Option<serde_json::Value>,
    ///An object containing the id, group_id, account_id, permalink, service, and service_icon_url of the associated external reference.
    pub external_reference: Option<serde_json::Value>,
    ///Number of (decimal time) hours tracked in this time entry.
    pub hours: Option<f64>,
    ///An object containing the id and name of the associated client.
    pub client: Option<serde_json::Value>,
    ///The billable rate for the time entry.
    pub billable_rate: Option<f64>,
    ///Date and time the time entry was last updated. Use the ISO 8601 Format.
    pub updated_at: Option<String>,
    ///Whether or not the time entry counts towards the project budget.
    pub budgeted: Option<bool>,
    ///Why the time entry has been locked.
    pub locked_reason: Option<String>,
    ///Date and time the time entry was created. Use the ISO 8601 Format.
    pub created_at: Option<String>,
    ///Unique ID for the time entry.
    pub id: Option<i64>,
    ///Whether or not the time entry has been marked as invoiced.
    pub is_billed: Option<bool>,
    ///Time the time entry was started (if tracking by start/end times).
    pub started_time: Option<String>,
    ///Time the time entry was ended (if tracking by start/end times).
    pub ended_time: Option<String>,
    ///Whether or not the time entry is billable.
    pub billable: Option<bool>,
    ///Number of (decimal time) hours already tracked in this time entry, before the timer was last started.
    pub hours_without_timer: Option<f64>,
    ///Whether or not the time entry has been approved via Timesheet Approval.
    pub is_closed: Option<bool>,
    ///Date and time the timer was started (if tracking by duration). Use the ISO 8601 Format.
    pub timer_started_at: Option<String>,
    ///Whether or not the time entry is currently running.
    pub is_running: Option<bool>,
    ///Number of (decimal time) hours tracked in this time entry used in summary reports and invoices. This value is rounded according to the Time Rounding setting in your Preferences.
    pub rounded_hours: Option<f64>,
    ///Whether or not the time entry has been locked.
    pub is_locked: Option<bool>,
    ///Date of the time entry.
    pub spent_date: Option<String>,
    ///Once the time entry has been invoiced, this field will include the associated invoice’s id and number.
    pub invoice: Option<serde_json::Value>,
    ///The cost rate for the time entry.
    pub cost_rate: Option<f64>,
    ///An object containing the id and name of the associated project.
    pub project: Option<serde_json::Value>,
}
impl std::fmt::Display for TimeEntry {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct CostRate {
    ///Date and time the cost rate was created.
    pub created_at: Option<String>,
    ///Date and time the cost rate was last updated.
    pub updated_at: Option<String>,
    ///The date the cost rate is effective.
    pub start_date: Option<String>,
    ///Unique ID for the cost rate.
    pub id: Option<i64>,
    ///The date the cost rate is no longer effective. This date is calculated by Harvest.
    pub end_date: Option<String>,
    ///The amount of the cost rate.
    pub amount: Option<f64>,
}
impl std::fmt::Display for CostRate {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ExpenseCategories {
    pub page: i64,
    pub next_page: Option<i64>,
    pub total_entries: i64,
    pub total_pages: i64,
    pub per_page: i64,
    pub previous_page: Option<i64>,
    pub links: PaginationLinks,
    pub expense_categories: Vec<ExpenseCategory>,
}
impl std::fmt::Display for ExpenseCategories {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CostRates {
    pub per_page: i64,
    pub total_pages: i64,
    pub previous_page: Option<i64>,
    pub total_entries: i64,
    pub links: PaginationLinks,
    pub page: i64,
    pub next_page: Option<i64>,
    pub cost_rates: Vec<CostRate>,
}
impl std::fmt::Display for CostRates {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InvoiceItemCategories {
    pub total_entries: i64,
    pub previous_page: Option<i64>,
    pub per_page: i64,
    pub page: i64,
    pub invoice_item_categories: Vec<InvoiceItemCategory>,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
    pub total_pages: i64,
}
impl std::fmt::Display for InvoiceItemCategories {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Estimate {
    ///Any additional notes included on the estimate.
    pub notes: Option<String>,
    ///If no value is set, the number will be automatically generated.
    pub number: Option<String>,
    ///An object containing estimate’s client id and name.
    pub client: Option<serde_json::Value>,
    ///The currency code associated with this estimate.
    pub currency: Option<String>,
    ///The purchase order number.
    pub purchase_order: Option<String>,
    ///The estimate subject.
    pub subject: Option<String>,
    ///The current state of the estimate: draft, sent, accepted, or declined.
    pub state: Option<String>,
    ///Date and time the estimate was sent.
    pub sent_at: Option<String>,
    ///Used to build a URL to the public web invoice for your client:https://{ACCOUNT_SUBDOMAIN}.harvestapp.com/client/estimates/abc123456
    pub client_key: Option<String>,
    ///An object containing the id and name of the person that created the estimate.
    pub creator: Option<serde_json::Value>,
    ///This percentage is applied to the subtotal, including line items and discounts.
    pub tax2: Option<f64>,
    ///The amount calculated from tax2.
    pub tax2_amount: Option<f64>,
    ///This percentage is subtracted from the subtotal.
    pub discount: Option<f64>,
    ///The amount calcuated from discount.
    pub discount_amount: Option<f64>,
    ///Date and time the estimate was accepted.
    pub accepted_at: Option<String>,
    ///Date and time the estimate was last updated.
    pub updated_at: Option<String>,
    ///Date and time the estimate was created.
    pub created_at: Option<String>,
    ///Unique ID for the estimate.
    pub id: Option<i64>,
    ///The first amount of tax included, calculated from tax. If no tax is defined, this value will be null.
    pub tax_amount: Option<f64>,
    ///Date the estimate was issued.
    pub issue_date: Option<String>,
    ///Date and time the estimate was declined.
    pub declined_at: Option<String>,
    ///The total amount for the estimate, including any discounts and taxes.
    pub amount: Option<f64>,
    ///Array of estimate line items.
    pub line_items: Option<Vec<EstimateLineItem>>,
    ///This percentage is applied to the subtotal, including line items and discounts.
    pub tax: Option<f64>,
}
impl std::fmt::Display for Estimate {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InvoiceLineItems {
    pub per_page: i64,
    pub total_entries: i64,
    pub links: PaginationLinks,
    pub invoice_line_items: Vec<InvoiceLineItem>,
    pub page: i64,
    pub total_pages: i64,
    pub next_page: Option<i64>,
    pub previous_page: Option<i64>,
}
impl std::fmt::Display for InvoiceLineItems {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EstimateLineItems {
    pub estimate_line_items: Vec<EstimateLineItem>,
    pub per_page: i64,
    pub next_page: Option<i64>,
    pub total_pages: i64,
    pub previous_page: Option<i64>,
    pub page: i64,
    pub total_entries: i64,
    pub links: PaginationLinks,
}
impl std::fmt::Display for EstimateLineItems {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ProjectBudgetReportResults {
    pub total_pages: i64,
    pub results: Vec<ProjectBudgetReportResult>,
    pub next_page: Option<i64>,
    pub per_page: i64,
    pub total_entries: i64,
    pub previous_page: Option<i64>,
    pub page: i64,
    pub links: PaginationLinks,
}
impl std::fmt::Display for ProjectBudgetReportResults {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct EstimateItemCategory {
    ///Unique ID for the estimate item category.
    pub id: Option<i64>,
    ///Date and time the estimate item category was created.
    pub created_at: Option<String>,
    ///Date and time the estimate item category was last updated.
    pub updated_at: Option<String>,
    ///The name of the estimate item category.
    pub name: Option<String>,
}
impl std::fmt::Display for EstimateItemCategory {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct Task {
    ///Whether this task should be automatically added to future projects.
    pub is_default: Option<bool>,
    ///Used in determining whether default tasks should be marked billable when creating a new project.
    pub billable_by_default: Option<bool>,
    ///The hourly rate to use for this task when it is added to a project.
    pub default_hourly_rate: Option<f64>,
    ///Whether this task is active or archived.
    pub is_active: Option<bool>,
    ///Date and time the task was created.
    pub created_at: Option<String>,
    ///Date and time the task was last updated.
    pub updated_at: Option<String>,
    ///The name of the task.
    pub name: Option<String>,
    ///Unique ID for the task.
    pub id: Option<i64>,
}
impl std::fmt::Display for Task {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct ExpenseReportsResult {
    ///The name of the client associated with the reported expenses. Only returned in the Client and Project reports.
    pub client_name: Option<String>,
    ///The name of the user associated with the reported expenses. Only returned in the Team report.
    pub user_name: Option<String>,
    ///The currency code associated with the expenses for this result.
    pub currency: Option<String>,
    ///The totaled cost for billable expenses for the given timeframe, subject (client, project, expense category, or user), and currency.
    pub billable_amount: Option<f64>,
    ///The ID of the expense category associated with the reported expenses. Only returned in the Expense Category report.
    pub expense_category_id: Option<i64>,
    ///The ID of the project associated with the reported expenses. Only returned in the Client and Project reports.
    pub project_id: Option<i64>,
    ///The contractor status of the user associated with the reported expenses. Only returned in the Team report.
    pub is_contractor: Option<bool>,
    ///The name of the project associated with the reported expenses. Only returned in the Client and Project reports.
    pub project_name: Option<String>,
    ///The name of the expense category associated with the reported expenses. Only returned in the Expense Category report.
    pub expense_category_name: Option<String>,
    ///The ID of the user associated with the reported expenses. Only returned in the Team report.
    pub user_id: Option<i64>,
    ///The ID of the client associated with the reported expenses. Only returned in the Client and Project reports.
    pub client_id: Option<i64>,
    ///The totaled cost for all expenses for the given timeframe, subject (client, project, expense category, or user), and currency.
    pub total_amount: Option<f64>,
}
impl std::fmt::Display for ExpenseReportsResult {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct TimeReportsResult {
    ///The ID of the client associated with the reported hours. Only returned in the Client and Project reports.
    pub client_id: Option<i64>,
    ///The ID of the task associated with the reported hours. Only returned in the Task report.
    pub task_id: Option<i64>,
    ///The ID of the user associated with the reported hours. Only returned in the Team report.
    pub user_id: Option<i64>,
    ///The name of the task associated with the reported hours. Only returned in the Task report.
    pub task_name: Option<String>,
    ///The name of the user associated with the reported hours. Only returned in the Team report.
    pub user_name: Option<String>,
    ///The totaled billable hours for the given timeframe, subject (client, project, task, or user), and currency. If Time Rounding is turned on, the hours will be rounded according to your settings.
    pub billable_hours: Option<f64>,
    ///The totaled billable amount for the billable hours above. Only visible to Administrators and Project Managers with the View billable rates and amounts permission.
    pub billable_amount: Option<f64>,
    ///The name of the project associated with the reported hours. Only returned in the Client and Project reports.
    pub project_name: Option<String>,
    ///The ID of the project associated with the reported hours. Only returned in the Client and Project reports.
    pub project_id: Option<i64>,
    ///The name of the client associated with the reported hours. Only returned in the Client and Project reports.
    pub client_name: Option<String>,
    ///The contractor status of the user associated with the reported hours. Only returned in the Team report.
    pub is_contractor: Option<bool>,
    ///The currency code associated with the tracked hours for this result. Only visible to Administrators and Project Managers with the View billable rates and amounts permission.
    pub currency: Option<String>,
    ///The totaled hours for the given timeframe, subject (client, project, task, or user), and currency. If Time Rounding is turned on, the hours will be rounded according to your settings.
    pub total_hours: Option<f64>,
}
impl std::fmt::Display for TimeReportsResult {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ProjectAssignments {
    pub project_assignments: Vec<ProjectAssignment>,
    pub total_pages: i64,
    pub per_page: i64,
    pub page: i64,
    pub total_entries: i64,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
    pub previous_page: Option<i64>,
}
impl std::fmt::Display for ProjectAssignments {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Users {
    pub total_entries: i64,
    pub next_page: Option<i64>,
    pub links: PaginationLinks,
    pub per_page: i64,
    pub previous_page: Option<i64>,
    pub page: i64,
    pub total_pages: i64,
    pub users: Vec<User>,
}
impl std::fmt::Display for Users {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Invoice {
    ///If no value is set, the number will be automatically generated.
    pub number: Option<String>,
    ///Date the invoice was issued.
    pub issue_date: Option<String>,
    ///Date the invoice is due.
    pub due_date: Option<String>,
    ///The invoice subject.
    pub subject: Option<String>,
    ///Date and time the invoice was closed.
    pub closed_at: Option<String>,
    ///Start of the period during which time entries were added to this invoice.
    pub period_start: Option<String>,
    ///The timeframe in which the invoice should be paid. Options: upon receipt, net 15, net 30, net 45, net 60, or custom.
    pub payment_term: Option<String>,
    ///Date and time the invoice was paid.
    pub paid_at: Option<String>,
    ///The total amount for the invoice, including any discounts and taxes.
    pub amount: Option<f64>,
    ///Any additional notes included on the invoice.
    pub notes: Option<String>,
    ///This percentage is applied to the subtotal, including line items and discounts.
    pub tax2: Option<f64>,
    ///The total amount due at this time for this invoice.
    pub due_amount: Option<f64>,
    ///The amount calcuated from discount.
    pub discount_amount: Option<f64>,
    ///The currency code associated with this invoice.
    pub currency: Option<String>,
    ///Date the invoice was paid.
    pub paid_date: Option<String>,
    ///Used to build a URL to the public web invoice for your client:https://{ACCOUNT_SUBDOMAIN}.harvestapp.com/client/invoices/{CLIENT_KEY}
    pub client_key: Option<String>,
    ///Unique ID of the associated recurring invoice.
    pub recurring_invoice_id: Option<i64>,
    ///An object containing the associated estimate’s id.
    pub estimate: Option<serde_json::Value>,
    ///Date and time the invoice was sent.
    pub sent_at: Option<String>,
    ///This percentage is subtracted from the subtotal.
    pub discount: Option<f64>,
    ///End of the period during which time entries were added to this invoice.
    pub period_end: Option<String>,
    ///This percentage is applied to the subtotal, including line items and discounts.
    pub tax: Option<f64>,
    ///An object containing invoice’s client id and name.
    pub client: Option<serde_json::Value>,
    ///The purchase order number.
    pub purchase_order: Option<String>,
    ///Array of invoice line items.
    pub line_items: Option<Vec<InvoiceLineItem>>,
    ///Unique ID for the invoice.
    pub id: Option<i64>,
    ///The current state of the invoice: draft, open, paid, or closed.
    pub state: Option<String>,
    ///An object containing the id and name of the person that created the invoice.
    pub creator: Option<serde_json::Value>,
    ///The amount calculated from tax2.
    pub tax2_amount: Option<f64>,
    ///An object containing the associated retainer’s id.
    pub retainer: Option<serde_json::Value>,
    ///Date and time the invoice was created.
    pub created_at: Option<String>,
    ///The first amount of tax included, calculated from tax. If no tax is defined, this value will be null.
    pub tax_amount: Option<f64>,
    ///Date and time the invoice was last updated.
    pub updated_at: Option<String>,
}
impl std::fmt::Display for Invoice {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Expense {
    pub user_assignment: Option<UserAssignment>,
    ///The quantity of units used to calculate the total_cost of the expense.
    pub units: Option<i64>,
    ///An explanation of why the expense has been locked.
    pub locked_reason: Option<String>,
    ///Unique ID for the expense.
    pub id: Option<i64>,
    ///An object containing the expense’s receipt URL and file name.
    pub receipt: Option<serde_json::Value>,
    ///Date and time the expense was created.
    pub created_at: Option<String>,
    ///Whether the expense is billable or not.
    pub billable: Option<bool>,
    ///Whether the expense has been approved or closed for some other reason.
    pub is_closed: Option<bool>,
    ///An object containing the expense’s expense category id, name, unit_price, and unit_name.
    pub expense_category: Option<serde_json::Value>,
    ///Once the expense has been invoiced, this field will include the associated invoice’s id and number.
    pub invoice: Option<serde_json::Value>,
    ///The total amount of the expense.
    pub total_cost: Option<f64>,
    ///Date and time the expense was last updated.
    pub updated_at: Option<String>,
    ///An object containing the id and name of the user that recorded the expense.
    pub user: Option<serde_json::Value>,
    ///Date the expense occurred.
    pub spent_date: Option<String>,
    ///Textual notes used to describe the expense.
    pub notes: Option<String>,
    ///An object containing the expense’s project id, name, and code.
    pub project: Option<serde_json::Value>,
    ///Whether the expense has been been invoiced, approved, or the project or person related to the expense is archived.
    pub is_locked: Option<bool>,
    ///An object containing the expense’s client id, name, and currency.
    pub client: Option<serde_json::Value>,
    ///Whether or not the expense has been marked as invoiced.
    pub is_billed: Option<bool>,
}
impl std::fmt::Display for Expense {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct UninvoicedReportResult {
    ///The total amount for billable expenses for the timeframe and project that have not been invoiced.
    pub uninvoiced_expenses: Option<f64>,
    ///The ID of the client associated with the reported hours and expenses.
    pub client_id: Option<i64>,
    ///The name of the client associated with the reported hours and expenses.
    pub client_name: Option<String>,
    ///The name of the project associated with the reported hours and expenses.
    pub project_name: Option<String>,
    ///The total hours for the given timeframe and project. If Time Rounding is turned on, the hours will be rounded according to your settings.
    pub total_hours: Option<f64>,
    ///The currency code associated with the tracked hours for this result.
    pub currency: Option<String>,
    ///The ID of the project associated with the reported hours and expenses.
    pub project_id: Option<i64>,
    ///The total amount (time and expenses) for the timeframe and project that have not been invoiced.
    pub uninvoiced_amount: Option<f64>,
    ///The total hours for the given timeframe and project that have not been invoiced. If Time Rounding is turned on, the hours will be rounded according to your settings.
    pub uninvoiced_hours: Option<f64>,
}
impl std::fmt::Display for UninvoicedReportResult {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}