generated from speakeasy-sdks/template-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiles.gen
executable file
·1181 lines (1181 loc) · 61.1 KB
/
files.gen
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
src/wingspan/sdkconfiguration.py
src/wingspan/one_thousand_and_ninety_nine.py
src/wingspan/additionaldata.py
src/wingspan/additionalsettings.py
src/wingspan/applink.py
src/wingspan/approvedpayables.py
src/wingspan/bankstatements.py
src/wingspan/bulkcalculation1099batch.py
src/wingspan/bulkcalculation1099batchitem.py
src/wingspan/bulkcalculation1099batchitems.py
src/wingspan/bulkcalculation1099batches.py
src/wingspan/bulkclientbatch.py
src/wingspan/bulkclientbatchitem.py
src/wingspan/bulkclientbatchitems.py
src/wingspan/bulkclientbatches.py
src/wingspan/bulkcollaboratorbatch.py
src/wingspan/bulkcollaboratorbatchitem.py
src/wingspan/bulkcollaboratorbatchitems.py
src/wingspan/bulkcollaboratorbatches.py
src/wingspan/bulkinvoicebatch.py
src/wingspan/bulkinvoicebatchitem.py
src/wingspan/bulkinvoicebatchitems.py
src/wingspan/bulkinvoicebatches.py
src/wingspan/bulkpayablebatch.py
src/wingspan/bulkpayablebatchitem.py
src/wingspan/bulkpayablebatchitems.py
src/wingspan/bulkpayablebatchsummary.py
src/wingspan/bulkpayablebatches.py
src/wingspan/card.py
src/wingspan/cards.py
src/wingspan/clientcollaboratorv2.py
src/wingspan/clientcollaboratorsv2.py
src/wingspan/clientdeduction.py
src/wingspan/clientdeductionid.py
src/wingspan/clientdeductions.py
src/wingspan/clientinvoice.py
src/wingspan/clientinvoicefees.py
src/wingspan/clientinvoicetemplate.py
src/wingspan/clientinvoicetemplates.py
src/wingspan/clientinvoices.py
src/wingspan/codetotoken.py
src/wingspan/collaborator.py
src/wingspan/collaboratordeduction.py
src/wingspan/collaboratordeductions.py
src/wingspan/collaboratorevents.py
src/wingspan/collaboratorgroup.py
src/wingspan/collaboratorgroupeligibilityrequirement.py
src/wingspan/collaboratorgroups.py
src/wingspan/collaboratortogroup.py
src/wingspan/collaboratorv2.py
src/wingspan/collaborators.py
src/wingspan/collaboratorsdetailsv2.py
src/wingspan/collaboratorsv2.py
src/wingspan/createdinvoicesbyclient.py
src/wingspan/eligibilityrequirement.py
src/wingspan/eligibilityrequirements.py
src/wingspan/form1099.py
src/wingspan/formw9.py
src/wingspan/instantpayout.py
src/wingspan/institution.py
src/wingspan/invoice.py
src/wingspan/invoiceasclient.py
src/wingspan/invoicepayableonmember.py
src/wingspan/invoicetemplate.py
src/wingspan/invoicetemplates.py
src/wingspan/lineitemsaginggroup.py
src/wingspan/mcc.py
src/wingspan/memberclient.py
src/wingspan/memberclients.py
src/wingspan/memberinvoice.py
src/wingspan/memberinvoices.py
src/wingspan/papayableonclientyable.py
src/wingspan/payclientinvoice.py
src/wingspan/payableonclient.py
src/wingspan/payables.py
src/wingspan/payablesaginggroup.py
src/wingspan/payablespayroll.py
src/wingspan/paymenteligibilityrequirement.py
src/wingspan/paymenteligibilityrequirements.py
src/wingspan/payoutdebitcard.py
src/wingspan/payoutdebitcards.py
src/wingspan/payoutsettings.py
src/wingspan/payroll.py
src/wingspan/payrollsettings.py
src/wingspan/servicestatus.py
src/wingspan/statement.py
src/wingspan/verification.py
src/wingspan/sdk.py
pylintrc
setup.py
src/wingspan/__init__.py
src/wingspan/models/__init__.py
src/wingspan/models/errors/sdkerror.py
src/wingspan/utils/__init__.py
src/wingspan/utils/retries.py
src/wingspan/utils/utils.py
src/wingspan/models/operations/calculate1099.py
src/wingspan/models/operations/mark1099.py
src/wingspan/models/operations/remail1099.py
src/wingspan/models/operations/createadditionaldata.py
src/wingspan/models/operations/deleteadditionaldata.py
src/wingspan/models/operations/getadditionaldata.py
src/wingspan/models/operations/listadditionalsettings.py
src/wingspan/models/operations/updateadditionalsettings.py
src/wingspan/models/operations/getapplink.py
src/wingspan/models/operations/listapprovedpayables.py
src/wingspan/models/operations/listbankstatements.py
src/wingspan/models/operations/createbulkcalculation1099batch.py
src/wingspan/models/operations/getbulkcalculation1099batch.py
src/wingspan/models/operations/updatebulkcalculation1099batch.py
src/wingspan/models/operations/createbulkcalculation1099batchitem.py
src/wingspan/models/operations/getbulkcalculation1099batchitem.py
src/wingspan/models/operations/updatebulkcalculation1099batchitem.py
src/wingspan/models/operations/listbulkcalculation1099batchitems.py
src/wingspan/models/operations/listbulkcalculation1099batches.py
src/wingspan/models/operations/createbulkclientbatch.py
src/wingspan/models/operations/getbulkclientbatch.py
src/wingspan/models/operations/updatebulkclientbatch.py
src/wingspan/models/operations/createbulkclientbatchitem.py
src/wingspan/models/operations/getbulkclientbatchitem.py
src/wingspan/models/operations/updatebulkclientbatchitem.py
src/wingspan/models/operations/listbulkclientbatchitems.py
src/wingspan/models/operations/listbulkclientbatches.py
src/wingspan/models/operations/createbulkcollaboratorbatch.py
src/wingspan/models/operations/getbulkcollaboratorbatch.py
src/wingspan/models/operations/updatebulkcollaboratorbatch.py
src/wingspan/models/operations/createbulkcollaboratorbatchitem.py
src/wingspan/models/operations/getbulkcollaboratorbatchitem.py
src/wingspan/models/operations/updatebulkcollaboratorbatchitem.py
src/wingspan/models/operations/listbulkcollaboratorbatchitems.py
src/wingspan/models/operations/listbulkcollaboratorbatches.py
src/wingspan/models/operations/createbulkinvoicebatch.py
src/wingspan/models/operations/getbulkinvoicebatch.py
src/wingspan/models/operations/updatebulkinvoicebatch.py
src/wingspan/models/operations/createbulkinvoicebatchitem.py
src/wingspan/models/operations/getbulkinvoicebatchitem.py
src/wingspan/models/operations/updatebulkinvoicebatchitem.py
src/wingspan/models/operations/listbulkinvoicebatchitems.py
src/wingspan/models/operations/listbulkinvoicebatches.py
src/wingspan/models/operations/createbulkpayablebatch.py
src/wingspan/models/operations/deletebulkpayablebatch.py
src/wingspan/models/operations/getbulkpayablebatch.py
src/wingspan/models/operations/updatebulkpayablebatch.py
src/wingspan/models/operations/createbulkpayablebatchitem.py
src/wingspan/models/operations/getbulkpayablebatchitem.py
src/wingspan/models/operations/updatebulkpayablebatchitem.py
src/wingspan/models/operations/listbulkpayablebatchitems.py
src/wingspan/models/operations/getbulkpayablebatchsummary.py
src/wingspan/models/operations/listbulkpayablebatches.py
src/wingspan/models/operations/createcard.py
src/wingspan/models/operations/deletecard.py
src/wingspan/models/operations/getcard.py
src/wingspan/models/operations/updatecard.py
src/wingspan/models/operations/listcards.py
src/wingspan/models/operations/getclientcollaboratorv2.py
src/wingspan/models/operations/listclientcollaboratorsv2.py
src/wingspan/models/operations/createclientdeduction.py
src/wingspan/models/operations/deleteclientdeductionid.py
src/wingspan/models/operations/getclientdeductionid.py
src/wingspan/models/operations/updateclientdeductionid.py
src/wingspan/models/operations/listclientdeductions.py
src/wingspan/models/operations/getclientinvoice.py
src/wingspan/models/operations/updateclientinvoice.py
src/wingspan/models/operations/createclientinvoicefees.py
src/wingspan/models/operations/listclientinvoicefees.py
src/wingspan/models/operations/createclientinvoicetemplate.py
src/wingspan/models/operations/getclientinvoicetemplate.py
src/wingspan/models/operations/updateclientinvoicetemplate.py
src/wingspan/models/operations/listclientinvoicetemplates.py
src/wingspan/models/operations/listclientinvoices.py
src/wingspan/models/operations/exchangecodetotoken.py
src/wingspan/models/operations/createcollaborator.py
src/wingspan/models/operations/deletecollaborator.py
src/wingspan/models/operations/getcollaborator.py
src/wingspan/models/operations/updatecollaborator.py
src/wingspan/models/operations/createcollaboratordeduction.py
src/wingspan/models/operations/deletecollaboratordeduction.py
src/wingspan/models/operations/getcollaboratordeduction.py
src/wingspan/models/operations/updatecollaboratordeduction.py
src/wingspan/models/operations/listcollaboratordeductions.py
src/wingspan/models/operations/getcollaboratorevents.py
src/wingspan/models/operations/createcollaboratorgroup.py
src/wingspan/models/operations/getcollaboratorgroup.py
src/wingspan/models/operations/updatecollaboratorgroup.py
src/wingspan/models/operations/deletecollaboratorgroupeligibilityrequirement.py
src/wingspan/models/operations/replacecollaboratorgroupeligibilityrequirement.py
src/wingspan/models/operations/listcollaboratorgroups.py
src/wingspan/models/operations/addcollaboratortogroup.py
src/wingspan/models/operations/removecollaboratortogroup.py
src/wingspan/models/operations/getcollaboratorv2.py
src/wingspan/models/operations/listcollaborators.py
src/wingspan/models/operations/getcollaboratorsdetailsv2.py
src/wingspan/models/operations/listcollaboratorsv2.py
src/wingspan/models/operations/listcreatedinvoicesbyclient.py
src/wingspan/models/operations/createeligibilityrequirement.py
src/wingspan/models/operations/deleteeligibilityrequirement.py
src/wingspan/models/operations/geteligibilityrequirement.py
src/wingspan/models/operations/updateeligibilityrequirement.py
src/wingspan/models/operations/listeligibilityrequirements.py
src/wingspan/models/operations/downloadform1099.py
src/wingspan/models/operations/downloadformw9.py
src/wingspan/models/operations/createinstantpayout.py
src/wingspan/models/operations/deleteinstantpayout.py
src/wingspan/models/operations/fetchinstantpayout.py
src/wingspan/models/operations/getinstitution.py
src/wingspan/models/operations/generateinvoice.py
src/wingspan/models/operations/sendinvoice.py
src/wingspan/models/operations/createinvoiceasclient.py
src/wingspan/models/operations/getinvoicepayableonmember.py
src/wingspan/models/operations/createinvoicetemplate.py
src/wingspan/models/operations/deleteinvoicetemplate.py
src/wingspan/models/operations/getinvoicetemplate.py
src/wingspan/models/operations/updateinvoicetemplate.py
src/wingspan/models/operations/listinvoicetemplates.py
src/wingspan/models/operations/getlineitemsaginggroup.py
src/wingspan/models/operations/listmcc.py
src/wingspan/models/operations/creatememberclient.py
src/wingspan/models/operations/deletememberclient.py
src/wingspan/models/operations/getmemberclient.py
src/wingspan/models/operations/updatememberclient.py
src/wingspan/models/operations/listmemberclients.py
src/wingspan/models/operations/creatememberinvoice.py
src/wingspan/models/operations/deletememberinvoice.py
src/wingspan/models/operations/getmemberinvoice.py
src/wingspan/models/operations/updatememberinvoice.py
src/wingspan/models/operations/listmemberinvoices.py
src/wingspan/models/operations/deletepayableonclient.py
src/wingspan/models/operations/postpayclientinvoice.py
src/wingspan/models/operations/createpayableonclient.py
src/wingspan/models/operations/updatepayableonclient.py
src/wingspan/models/operations/getpayables.py
src/wingspan/models/operations/getpayablesaginggroup.py
src/wingspan/models/operations/listpayablespayroll.py
src/wingspan/models/operations/createpaymenteligibilityrequirement.py
src/wingspan/models/operations/deletepaymenteligibilityrequirement.py
src/wingspan/models/operations/getpaymenteligibilityrequirement.py
src/wingspan/models/operations/updatepaymenteligibilityrequirement.py
src/wingspan/models/operations/listpaymenteligibilityrequirements.py
src/wingspan/models/operations/createpayoutdebitcard.py
src/wingspan/models/operations/deletepayoutdebitcard.py
src/wingspan/models/operations/getpayoutdebitcard.py
src/wingspan/models/operations/listpayoutdebitcards.py
src/wingspan/models/operations/getpayoutsettings.py
src/wingspan/models/operations/updatepayoutsettings.py
src/wingspan/models/operations/executepayroll.py
src/wingspan/models/operations/getpayrollsettings.py
src/wingspan/models/operations/updatepayrollsettings.py
src/wingspan/models/operations/getservicestatus.py
src/wingspan/models/operations/downloadstatement.py
src/wingspan/models/operations/getstatement.py
src/wingspan/models/operations/sendverification.py
src/wingspan/models/operations/__init__.py
src/wingspan/models/shared/calculate1099response.py
src/wingspan/models/shared/memberclient.py
src/wingspan/models/shared/userroles.py
src/wingspan/models/shared/memberdata.py
src/wingspan/models/shared/redactedmember.py
src/wingspan/models/shared/redacteduser.py
src/wingspan/models/shared/f6f2bd1a2fc7bad4e0d8f22345fc5f6699d096b7797b93575869c544a4fc5cef.py
src/wingspan/models/shared/seven_thousand_nine_hundred_and_ninety_sixa6815c717c0e93865680b5cd47dec90314e97e4e7282bed7fc2f367bc051.py
src/wingspan/models/shared/twenty_threed776fc12e56286a20f36065e4f942c43a28218a62eb2f211116c130deb74eb.py
src/wingspan/models/shared/company.py
src/wingspan/models/shared/companylinks.py
src/wingspan/models/shared/companyperson.py
src/wingspan/models/shared/address.py
src/wingspan/models/shared/memberclientwireaccount.py
src/wingspan/models/shared/fifty_foura6b24a57d15569713a0fc2cbf4d7b60e5b00c0035643d120b72001060ebd30.py
src/wingspan/models/shared/twelved9f9a45dd678e21e49e960084c87d9e541aadd0c26b6e676a00139e89b6915.py
src/wingspan/models/shared/ba1d4c38921e9c7af45d17223c51562cb69a815c6bf72f6cf959d800ee59afdb.py
src/wingspan/models/shared/threed33fba3f009de957b3be92fba006d6383af7e39f823cc1fd213506f6205100f.py
src/wingspan/models/shared/d86c1fba5267ac3d9ce2954a6e46b70e471c0f91a44abbe94565ae50e6e9e863.py
src/wingspan/models/shared/memberclientformw9info.py
src/wingspan/models/shared/b9789f45f8c8070ff38a64d80c2e4a8732ddaf329e46546474400d26f84c0f1c.py
src/wingspan/models/shared/memberclientform1099balances.py
src/wingspan/models/shared/form1099events.py
src/wingspan/models/shared/eighta9c6cb49482a98cdd603ff09858cdc3e5ef6ad9807c876c4161d925a96694a5.py
src/wingspan/models/shared/form1099correction.py
src/wingspan/models/shared/externalids.py
src/wingspan/models/shared/externalidsquickbooksdata.py
src/wingspan/models/shared/externalidsbulkimport.py
src/wingspan/models/shared/memberclientrequirementresponse.py
src/wingspan/models/shared/documentresponse.py
src/wingspan/models/shared/documentfiles.py
src/wingspan/models/shared/documentevents.py
src/wingspan/models/shared/clientdata.py
src/wingspan/models/shared/calculate1099request.py
src/wingspan/models/shared/mark1099asundeliveredresponse.py
src/wingspan/models/shared/mark1099asundeliveredrequest.py
src/wingspan/models/shared/remail1099response.py
src/wingspan/models/shared/remail1099request.py
src/wingspan/models/shared/sevenb49dbbd81f36ab6d7b4f07c5e2e53f40e36eb7b83d1488f379e993b830eec56.py
src/wingspan/models/shared/additionaldata.py
src/wingspan/models/shared/additionaldataupdaterequest.py
src/wingspan/models/shared/bankingapplicationform.py
src/wingspan/models/shared/payableschema.py
src/wingspan/models/shared/invoicenotificationpreferences.py
src/wingspan/models/shared/scheduledate.py
src/wingspan/models/shared/invoicemetadata.py
src/wingspan/models/shared/memberoptions.py
src/wingspan/models/shared/invoicelineitem.py
src/wingspan/models/shared/invoiceintegrations.py
src/wingspan/models/shared/sixa889960fef25bc170d22a40a86ac4d6889f536685dd9369ec52d3df36732601.py
src/wingspan/models/shared/facb8048736dba546c4c76242d9f8c7111011a7a7483528f37d80226698a1f2b.py
src/wingspan/models/shared/latefeeconfig.py
src/wingspan/models/shared/frequency.py
src/wingspan/models/shared/bankaccount.py
src/wingspan/models/shared/sixb94b58d661f3eabc1444a7a43ac4b99580f0d050123b7bf38184e2f0d7bd66e.py
src/wingspan/models/shared/sixb786d9a2229f84822749ed0e086e50a931cc189f3b1bfff2c851fae29b07879.py
src/wingspan/models/shared/invoiceevents.py
src/wingspan/models/shared/feehandlingconfig.py
src/wingspan/models/shared/clientoptions.py
src/wingspan/models/shared/fees.py
src/wingspan/models/shared/fee.py
src/wingspan/models/shared/invoiceattachments.py
src/wingspan/models/shared/invoiceattachmentfile.py
src/wingspan/models/shared/bankstatement.py
src/wingspan/models/shared/bulkcalculation1099batch.py
src/wingspan/models/shared/seven_hundred_and_fifty_sevenf4961b94334fd41cedc27262be7b14583377703cda6490b996969bd4e66c2.py
src/wingspan/models/shared/bulkbatchcreate.py
src/wingspan/models/shared/bulkbatchupdate.py
src/wingspan/models/shared/bulkcalculation1099item.py
src/wingspan/models/shared/eight_hundred_and_sixty_five_thousand_nine_hundred_and_sixty_ninebc2d9a3cb12c3263d4f941da6e1c7783024804b469db4a6eab9bc12f14.py
src/wingspan/models/shared/bulkcalculation1099itemcreate.py
src/wingspan/models/shared/bulkpayableitem.py
src/wingspan/models/shared/a7a1067d6f9d1831e4782756623a7bf61cb630a037de1ac86f003bc5c4cb7c14.py
src/wingspan/models/shared/bulkcalculation1099itemupdate.py
src/wingspan/models/shared/bulkclientbatch.py
src/wingspan/models/shared/bulkclientitem.py
src/wingspan/models/shared/four_thousand_and_ninety_onec2911630f24a45153ca60a204edf3efba15902cef686d412c191e0c18cac.py
src/wingspan/models/shared/d750b2d9403b5bcbdb3c96c89f1cc713df563d587f16e5f39f5ab546c08a20a0.py
src/wingspan/models/shared/sixty_four_million_eight_hundred_and_forty_six_thousand_one_hundred_and_thirty_sixa354aa510825c1f23c3a978f4c816d8d4184311e7294a570f73727dc.py
src/wingspan/models/shared/bulkclientitemcreate.py
src/wingspan/models/shared/bulkclientitemupdate.py
src/wingspan/models/shared/bulkcollaboratorbatch.py
src/wingspan/models/shared/bulkcollaboratoritem.py
src/wingspan/models/shared/eightcf19a7bc90727398c2780566a4070199559f4723ec14c01c448dc0356efffa1.py
src/wingspan/models/shared/bulkcollaboratoritemcreate.py
src/wingspan/models/shared/bulkcollaboratoritemupdate.py
src/wingspan/models/shared/bulkinvoicebatch.py
src/wingspan/models/shared/bulkinvoicebatchcreate.py
src/wingspan/models/shared/bulkinvoicebatchupdate.py
src/wingspan/models/shared/bulkinvoiceitem.py
src/wingspan/models/shared/c1b9877fd1d35a4292006c3c09941c1c5c21bbe2e0e87488661804eebf2a3e4a.py
src/wingspan/models/shared/bulkinvoiceitemcreate.py
src/wingspan/models/shared/bulkinvoiceitemupdate.py
src/wingspan/models/shared/bulkpayablebatch.py
src/wingspan/models/shared/bulkpayablebatchcreate.py
src/wingspan/models/shared/bulkpayablebatchupdate.py
src/wingspan/models/shared/bulkpayableitemcreate.py
src/wingspan/models/shared/bulkpayableitemupdate.py
src/wingspan/models/shared/bulkpayableimportsummary.py
src/wingspan/models/shared/card.py
src/wingspan/models/shared/c43d8e931fa2aa65f8160dad6cddeff3ae5f333e9b96d96dc85708e786c6a875.py
src/wingspan/models/shared/cardcreaterequest.py
src/wingspan/models/shared/carddetails.py
src/wingspan/models/shared/cardupdaterequest.py
src/wingspan/models/shared/collaboratorv2.py
src/wingspan/models/shared/collaboratorevents.py
src/wingspan/models/shared/ninecd48bf78a297540b0ec6f45365beb8d6ce0ee88e6d244115ad226e6701011a3.py
src/wingspan/models/shared/collaboratorv2formw9info.py
src/wingspan/models/shared/collaboration.py
src/wingspan/models/shared/twenty_sixe8ea23ccb1e007e7d6560175c7e75c768dac34727b7fe1d834ca24b8221ef4.py
src/wingspan/models/shared/sixa65bb5a9fe6d1135b7182baff68e9bc6612ee2c1ab942926fe2804c58663cf4.py
src/wingspan/models/shared/deductionresponse.py
src/wingspan/models/shared/postpaymentdeductiondisbursement.py
src/wingspan/models/shared/deductionapplication.py
src/wingspan/models/shared/deductioncreaterequest.py
src/wingspan/models/shared/deductionupdaterequest.py
src/wingspan/models/shared/clientinvoice.py
src/wingspan/models/shared/processingfees.py
src/wingspan/models/shared/paymentinfo.py
src/wingspan/models/shared/clientinvoiceupdaterequest.py
src/wingspan/models/shared/testinvoicecreate.py
src/wingspan/models/shared/invoicefeecalculation.py
src/wingspan/models/shared/clientinvoicetemplate.py
src/wingspan/models/shared/clientinvoicetemplatecreaterequest.py
src/wingspan/models/shared/clientinvoicedatacreaterequest.py
src/wingspan/models/shared/invoicelineitemscreaterequest.py
src/wingspan/models/shared/three_billion_one_hundred_and_ninety_million_six_hundred_and_eighty_five_thousand_eight_hundred_and_thirty_twoa4970525ea5b0803efff0b36a0202062e1fd8a0bc187acbe156461.py
src/wingspan/models/shared/sixad3f4f624fb518510130e879729b00ed8c237d1cebc5477abf34ac340a6424d.py
src/wingspan/models/shared/clientinvoicetemplateupdaterequest.py
src/wingspan/models/shared/cardtokenresponse.py
src/wingspan/models/shared/cardtokenrequest.py
src/wingspan/models/shared/collaboratorschema.py
src/wingspan/models/shared/collaboratorcreaterequest.py
src/wingspan/models/shared/collaboratorupdaterequest.py
src/wingspan/models/shared/ninetyf96495b02c2509fff131505484d46479a91b7d23ed2b0f438ca117d0bccad7.py
src/wingspan/models/shared/collaboratorform1099balancesupdaterequest.py
src/wingspan/models/shared/ce853dbef33b2b91880690c84bc5314340c1301fd7b3503dd6ce79c844e2a481.py
src/wingspan/models/shared/collaboratorgroupresponse.py
src/wingspan/models/shared/eligibilityrequirement.py
src/wingspan/models/shared/collaboratorgroupcreaterequest.py
src/wingspan/models/shared/collaboratorgrouprequirement.py
src/wingspan/models/shared/collaboratorgroupupdaterequest.py
src/wingspan/models/shared/collaboratorgrouprequirementupdate.py
src/wingspan/models/shared/collaboratorsreportresponse.py
src/wingspan/models/shared/sixty_sixad6f986038e3285c36e0faa5c61b52a02882d1460acb116b601a30abfb6c1d.py
src/wingspan/models/shared/eligibilityrequirementcreaterequest.py
src/wingspan/models/shared/eligibilityrequirementupdaterequest.py
src/wingspan/models/shared/download1099response.py
src/wingspan/models/shared/downloadw9response.py
src/wingspan/models/shared/instantpayoutresponse.py
src/wingspan/models/shared/fundstransferaccount.py
src/wingspan/models/shared/eight_thousand_two_hundred_and_twelveee55b9e13fc32935c9417826f64b3550a203b665a04aacb02c4cac363c1f.py
src/wingspan/models/shared/thirty_fivee19f440b766b63a803909f93debbd6971f4c581457e6e66b0b7313eed6ccbc.py
src/wingspan/models/shared/instantpayoutrequest.py
src/wingspan/models/shared/institutionresponse.py
src/wingspan/models/shared/invoicepdfgenerationresponse.py
src/wingspan/models/shared/invoice.py
src/wingspan/models/shared/invoicewithholdings.py
src/wingspan/models/shared/fourteenabbd45a54a2847207e8ddfaeb5d4bc82ffb855d63772d79e0c5fe04e9b9b01.py
src/wingspan/models/shared/invoicepayoutdestination.py
src/wingspan/models/shared/invoiceapplieddeductions.py
src/wingspan/models/shared/invoicecollaborator.py
src/wingspan/models/shared/invoiceamountdetails.py
src/wingspan/models/shared/clientinvoicecreaterequest.py
src/wingspan/models/shared/invoicetemplate.py
src/wingspan/models/shared/invoicetemplatecreaterequest.py
src/wingspan/models/shared/invoicedatacreaterequest.py
src/wingspan/models/shared/invoicecollaboratorcreaterequest.py
src/wingspan/models/shared/thirty_sixb041d426951ffff76360faf03ef8ae938bed9739e6ad9f51acb982782296a2.py
src/wingspan/models/shared/invoicetemplateupdaterequest.py
src/wingspan/models/shared/scheduledateupdate.py
src/wingspan/models/shared/invoiceupdaterequest.py
src/wingspan/models/shared/latefeeconfigupdate.py
src/wingspan/models/shared/frequencyupdate.py
src/wingspan/models/shared/invoicecollaboratorupdaterequest.py
src/wingspan/models/shared/lineitemsagingreportresponse.py
src/wingspan/models/shared/lineitemsagingreportlineitem.py
src/wingspan/models/shared/mccresponse.py
src/wingspan/models/shared/memberclientschema.py
src/wingspan/models/shared/memberclientcreaterequest.py
src/wingspan/models/shared/memberclientupdaterequest.py
src/wingspan/models/shared/invoicecreaterequest.py
src/wingspan/models/shared/payrequest.py
src/wingspan/models/shared/payablecreaterequest.py
src/wingspan/models/shared/payableupdaterequest.py
src/wingspan/models/shared/payablessummary.py
src/wingspan/models/shared/payableagingreportresponse.py
src/wingspan/models/shared/payrollreportresponse.py
src/wingspan/models/shared/forty_twof004011439ceedfeb392c84d36ad40443a5a0446d1efa02369c56e930a1c07.py
src/wingspan/models/shared/payrollreportinvoice.py
src/wingspan/models/shared/payrollreportlineitem.py
src/wingspan/models/shared/paymenteligibility.py
src/wingspan/models/shared/paymenteligibilityupdaterequest.py
src/wingspan/models/shared/checkbookcard.py
src/wingspan/models/shared/checkbookcardcreate.py
src/wingspan/models/shared/payoutsettingsresponse.py
src/wingspan/models/shared/payoutdestinationresponse.py
src/wingspan/models/shared/payoutsettingsupdate.py
src/wingspan/models/shared/payoutdestinationupdate.py
src/wingspan/models/shared/payrollsettings.py
src/wingspan/models/shared/fundingsource.py
src/wingspan/models/shared/calculationsettings1099.py
src/wingspan/models/shared/payrollsettingsupdate.py
src/wingspan/models/shared/ping.py
src/wingspan/models/shared/cardcoderesponse.py
src/wingspan/models/shared/cardcoderequest.py
src/wingspan/models/shared/__init__.py
src/wingspan/models/errors/__init__.py
USAGE.md
docs/models/operations/calculate1099response.md
docs/models/operations/mark1099response.md
docs/models/operations/remail1099response.md
docs/models/operations/createadditionaldataresponse.md
docs/models/operations/deleteadditionaldatarequest.md
docs/models/operations/deleteadditionaldataresponse.md
docs/models/operations/getadditionaldatarequest.md
docs/models/operations/getadditionaldataresponse.md
docs/models/operations/listadditionalsettingsresponse.md
docs/models/operations/updateadditionalsettingsrequest.md
docs/models/operations/updateadditionalsettingsresponse.md
docs/models/operations/getapplinkrequest.md
docs/models/operations/getapplinkresponse.md
docs/models/operations/listapprovedpayablesresponse.md
docs/models/operations/listbankstatementsresponse.md
docs/models/operations/createbulkcalculation1099batchresponse.md
docs/models/operations/getbulkcalculation1099batchrequest.md
docs/models/operations/getbulkcalculation1099batchresponse.md
docs/models/operations/updatebulkcalculation1099batchrequest.md
docs/models/operations/updatebulkcalculation1099batchresponse.md
docs/models/operations/createbulkcalculation1099batchitemrequest.md
docs/models/operations/createbulkcalculation1099batchitemresponse.md
docs/models/operations/getbulkcalculation1099batchitemrequest.md
docs/models/operations/getbulkcalculation1099batchitemresponse.md
docs/models/operations/updatebulkcalculation1099batchitemrequest.md
docs/models/operations/updatebulkcalculation1099batchitemresponse.md
docs/models/operations/listbulkcalculation1099batchitemsrequest.md
docs/models/operations/listbulkcalculation1099batchitemsresponse.md
docs/models/operations/listbulkcalculation1099batchesresponse.md
docs/models/operations/createbulkclientbatchresponse.md
docs/models/operations/getbulkclientbatchrequest.md
docs/models/operations/getbulkclientbatchresponse.md
docs/models/operations/updatebulkclientbatchrequest.md
docs/models/operations/updatebulkclientbatchresponse.md
docs/models/operations/createbulkclientbatchitemrequest.md
docs/models/operations/createbulkclientbatchitemresponse.md
docs/models/operations/getbulkclientbatchitemrequest.md
docs/models/operations/getbulkclientbatchitemresponse.md
docs/models/operations/updatebulkclientbatchitemrequest.md
docs/models/operations/updatebulkclientbatchitemresponse.md
docs/models/operations/listbulkclientbatchitemsrequest.md
docs/models/operations/listbulkclientbatchitemsresponse.md
docs/models/operations/listbulkclientbatchesresponse.md
docs/models/operations/createbulkcollaboratorbatchresponse.md
docs/models/operations/getbulkcollaboratorbatchrequest.md
docs/models/operations/getbulkcollaboratorbatchresponse.md
docs/models/operations/updatebulkcollaboratorbatchrequest.md
docs/models/operations/updatebulkcollaboratorbatchresponse.md
docs/models/operations/createbulkcollaboratorbatchitemrequest.md
docs/models/operations/createbulkcollaboratorbatchitemresponse.md
docs/models/operations/getbulkcollaboratorbatchitemrequest.md
docs/models/operations/getbulkcollaboratorbatchitemresponse.md
docs/models/operations/updatebulkcollaboratorbatchitemrequest.md
docs/models/operations/updatebulkcollaboratorbatchitemresponse.md
docs/models/operations/listbulkcollaboratorbatchitemsrequest.md
docs/models/operations/listbulkcollaboratorbatchitemsresponse.md
docs/models/operations/listbulkcollaboratorbatchesresponse.md
docs/models/operations/createbulkinvoicebatchresponse.md
docs/models/operations/getbulkinvoicebatchrequest.md
docs/models/operations/getbulkinvoicebatchresponse.md
docs/models/operations/updatebulkinvoicebatchrequest.md
docs/models/operations/updatebulkinvoicebatchresponse.md
docs/models/operations/createbulkinvoicebatchitemrequest.md
docs/models/operations/createbulkinvoicebatchitemresponse.md
docs/models/operations/getbulkinvoicebatchitemrequest.md
docs/models/operations/getbulkinvoicebatchitemresponse.md
docs/models/operations/updatebulkinvoicebatchitemrequest.md
docs/models/operations/updatebulkinvoicebatchitemresponse.md
docs/models/operations/listbulkinvoicebatchitemsrequest.md
docs/models/operations/listbulkinvoicebatchitemsresponse.md
docs/models/operations/listbulkinvoicebatchesresponse.md
docs/models/operations/createbulkpayablebatchresponse.md
docs/models/operations/deletebulkpayablebatchrequest.md
docs/models/operations/deletebulkpayablebatchresponse.md
docs/models/operations/getbulkpayablebatchrequest.md
docs/models/operations/getbulkpayablebatchresponse.md
docs/models/operations/updatebulkpayablebatchrequest.md
docs/models/operations/updatebulkpayablebatchresponse.md
docs/models/operations/createbulkpayablebatchitemrequest.md
docs/models/operations/createbulkpayablebatchitemresponse.md
docs/models/operations/getbulkpayablebatchitemrequest.md
docs/models/operations/getbulkpayablebatchitemresponse.md
docs/models/operations/updatebulkpayablebatchitemrequest.md
docs/models/operations/updatebulkpayablebatchitemresponse.md
docs/models/operations/listbulkpayablebatchitemsrequest.md
docs/models/operations/listbulkpayablebatchitemsresponse.md
docs/models/operations/getbulkpayablebatchsummaryrequest.md
docs/models/operations/getbulkpayablebatchsummaryresponse.md
docs/models/operations/listbulkpayablebatchesresponse.md
docs/models/operations/createcardresponse.md
docs/models/operations/deletecardrequest.md
docs/models/operations/deletecardresponse.md
docs/models/operations/getcardrequest.md
docs/models/operations/getcardresponse.md
docs/models/operations/updatecardrequest.md
docs/models/operations/updatecardresponse.md
docs/models/operations/listcardsresponse.md
docs/models/operations/getclientcollaboratorv2request.md
docs/models/operations/getclientcollaboratorv2response.md
docs/models/operations/listclientcollaboratorsv2response.md
docs/models/operations/createclientdeductionresponse.md
docs/models/operations/deleteclientdeductionidrequest.md
docs/models/operations/deleteclientdeductionidresponse.md
docs/models/operations/getclientdeductionidrequest.md
docs/models/operations/getclientdeductionidresponse.md
docs/models/operations/updateclientdeductionidrequest.md
docs/models/operations/updateclientdeductionidresponse.md
docs/models/operations/listclientdeductionsresponse.md
docs/models/operations/getclientinvoicerequest.md
docs/models/operations/getclientinvoiceresponse.md
docs/models/operations/updateclientinvoicerequest.md
docs/models/operations/updateclientinvoiceresponse.md
docs/models/operations/createclientinvoicefeesresponse.md
docs/models/operations/listclientinvoicefeesrequest.md
docs/models/operations/listclientinvoicefeesresponse.md
docs/models/operations/createclientinvoicetemplateresponse.md
docs/models/operations/getclientinvoicetemplaterequest.md
docs/models/operations/getclientinvoicetemplateresponse.md
docs/models/operations/updateclientinvoicetemplaterequest.md
docs/models/operations/updateclientinvoicetemplateresponse.md
docs/models/operations/listclientinvoicetemplatesresponse.md
docs/models/operations/listclientinvoicesresponse.md
docs/models/operations/exchangecodetotokenrequest.md
docs/models/operations/exchangecodetotokenresponse.md
docs/models/operations/createcollaboratorresponse.md
docs/models/operations/deletecollaboratorrequest.md
docs/models/operations/deletecollaboratorresponse.md
docs/models/operations/getcollaboratorrequest.md
docs/models/operations/getcollaboratorresponse.md
docs/models/operations/updatecollaboratorrequest.md
docs/models/operations/updatecollaboratorresponse.md
docs/models/operations/createcollaboratordeductionresponse.md
docs/models/operations/deletecollaboratordeductionrequest.md
docs/models/operations/deletecollaboratordeductionresponse.md
docs/models/operations/getcollaboratordeductionrequest.md
docs/models/operations/getcollaboratordeductionresponse.md
docs/models/operations/updatecollaboratordeductionrequest.md
docs/models/operations/updatecollaboratordeductionresponse.md
docs/models/operations/listcollaboratordeductionsresponse.md
docs/models/operations/getcollaboratoreventsrequest.md
docs/models/operations/getcollaboratoreventsresponse.md
docs/models/operations/createcollaboratorgroupresponse.md
docs/models/operations/getcollaboratorgrouprequest.md
docs/models/operations/getcollaboratorgroupresponse.md
docs/models/operations/updatecollaboratorgrouprequest.md
docs/models/operations/updatecollaboratorgroupresponse.md
docs/models/operations/deletecollaboratorgroupeligibilityrequirementrequest.md
docs/models/operations/deletecollaboratorgroupeligibilityrequirementresponse.md
docs/models/operations/replacecollaboratorgroupeligibilityrequirementrequest.md
docs/models/operations/replacecollaboratorgroupeligibilityrequirementresponse.md
docs/models/operations/listcollaboratorgroupsresponse.md
docs/models/operations/addcollaboratortogrouprequest.md
docs/models/operations/addcollaboratortogroupresponse.md
docs/models/operations/removecollaboratortogrouprequest.md
docs/models/operations/removecollaboratortogroupresponse.md
docs/models/operations/getcollaboratorv2request.md
docs/models/operations/getcollaboratorv2response.md
docs/models/operations/listcollaboratorsresponse.md
docs/models/operations/getcollaboratorsdetailsv2response.md
docs/models/operations/listcollaboratorsv2response.md
docs/models/operations/listcreatedinvoicesbyclientresponse.md
docs/models/operations/createeligibilityrequirementresponse.md
docs/models/operations/deleteeligibilityrequirementrequest.md
docs/models/operations/deleteeligibilityrequirementresponse.md
docs/models/operations/geteligibilityrequirementrequest.md
docs/models/operations/geteligibilityrequirementresponse.md
docs/models/operations/updateeligibilityrequirementrequest.md
docs/models/operations/updateeligibilityrequirementresponse.md
docs/models/operations/listeligibilityrequirementsresponse.md
docs/models/operations/downloadform1099request.md
docs/models/operations/downloadform1099response.md
docs/models/operations/downloadformw9request.md
docs/models/operations/downloadformw9response.md
docs/models/operations/createinstantpayoutresponse.md
docs/models/operations/deleteinstantpayoutresponse.md
docs/models/operations/fetchinstantpayoutresponse.md
docs/models/operations/getinstitutionrequest.md
docs/models/operations/getinstitutionresponse.md
docs/models/operations/generateinvoicerequest.md
docs/models/operations/generateinvoiceresponse.md
docs/models/operations/sendinvoicerequest.md
docs/models/operations/sendinvoiceresponse.md
docs/models/operations/createinvoiceasclientresponse.md
docs/models/operations/getinvoicepayableonmemberrequest.md
docs/models/operations/getinvoicepayableonmemberresponse.md
docs/models/operations/createinvoicetemplateresponse.md
docs/models/operations/deleteinvoicetemplaterequest.md
docs/models/operations/deleteinvoicetemplateresponse.md
docs/models/operations/getinvoicetemplaterequest.md
docs/models/operations/getinvoicetemplateresponse.md
docs/models/operations/updateinvoicetemplaterequest.md
docs/models/operations/updateinvoicetemplateresponse.md
docs/models/operations/listinvoicetemplatesresponse.md
docs/models/operations/getlineitemsaginggroupresponse.md
docs/models/operations/listmccresponse.md
docs/models/operations/creatememberclientresponse.md
docs/models/operations/deletememberclientrequest.md
docs/models/operations/deletememberclientresponse.md
docs/models/operations/getmemberclientrequest.md
docs/models/operations/getmemberclientresponse.md
docs/models/operations/updatememberclientrequest.md
docs/models/operations/updatememberclientresponse.md
docs/models/operations/listmemberclientsresponse.md
docs/models/operations/creatememberinvoiceresponse.md
docs/models/operations/deletememberinvoicerequest.md
docs/models/operations/deletememberinvoiceresponse.md
docs/models/operations/getmemberinvoicerequest.md
docs/models/operations/getmemberinvoiceresponse.md
docs/models/operations/updatememberinvoicerequest.md
docs/models/operations/updatememberinvoiceresponse.md
docs/models/operations/listmemberinvoicesresponse.md
docs/models/operations/deletepayableonclientrequest.md
docs/models/operations/deletepayableonclientresponse.md
docs/models/operations/postpayclientinvoicerequest.md
docs/models/operations/postpayclientinvoiceresponse.md
docs/models/operations/createpayableonclientresponse.md
docs/models/operations/updatepayableonclientrequest.md
docs/models/operations/updatepayableonclientresponse.md
docs/models/operations/getpayablesresponse.md
docs/models/operations/getpayablesaginggroupresponse.md
docs/models/operations/listpayablespayrollrequest.md
docs/models/operations/listpayablespayrollresponse.md
docs/models/operations/createpaymenteligibilityrequirementresponse.md
docs/models/operations/deletepaymenteligibilityrequirementrequest.md
docs/models/operations/deletepaymenteligibilityrequirementresponse.md
docs/models/operations/getpaymenteligibilityrequirementrequest.md
docs/models/operations/getpaymenteligibilityrequirementresponse.md
docs/models/operations/updatepaymenteligibilityrequirementrequest.md
docs/models/operations/updatepaymenteligibilityrequirementresponse.md
docs/models/operations/listpaymenteligibilityrequirementsresponse.md
docs/models/operations/createpayoutdebitcardrequest.md
docs/models/operations/createpayoutdebitcardresponse.md
docs/models/operations/deletepayoutdebitcardrequest.md
docs/models/operations/deletepayoutdebitcardresponse.md
docs/models/operations/getpayoutdebitcardrequest.md
docs/models/operations/getpayoutdebitcardresponse.md
docs/models/operations/listpayoutdebitcardsrequest.md
docs/models/operations/listpayoutdebitcardsresponse.md
docs/models/operations/getpayoutsettingsrequest.md
docs/models/operations/getpayoutsettingsresponse.md
docs/models/operations/updatepayoutsettingsrequest.md
docs/models/operations/updatepayoutsettingsresponse.md
docs/models/operations/executepayrollresponse.md
docs/models/operations/getpayrollsettingsrequest.md
docs/models/operations/getpayrollsettingsresponse.md
docs/models/operations/updatepayrollsettingsrequest.md
docs/models/operations/updatepayrollsettingsresponse.md
docs/models/operations/getservicestatusresponse.md
docs/models/operations/downloadstatementrequest.md
docs/models/operations/downloadstatementresponse.md
docs/models/operations/getstatementrequest.md
docs/models/operations/getstatementresponse.md
docs/models/operations/sendverificationrequest.md
docs/models/operations/sendverificationresponse.md
docs/models/shared/calculate1099response.md
docs/models/shared/statusmemberclient.md
docs/models/shared/taxstatusmemberclient.md
docs/models/shared/memberclient.md
docs/models/shared/userroles.md
docs/models/shared/autopayrequirementmemberdata.md
docs/models/shared/sharetaxdocumentmemberdata.md
docs/models/shared/memberdata.md
docs/models/shared/redactedmember.md
docs/models/shared/redacteduser.md
docs/models/shared/f6f2bd1a2fc7bad4e0d8f22345fc5f6699d096b7797b93575869c544a4fc5cef.md
docs/models/shared/seventhousandninehundredandninetysixa6815c717c0e93865680b5cd47dec90314e97e4e7282bed7fc2f367bc051.md
docs/models/shared/twentythreed776fc12e56286a20f36065e4f942c43a28218a62eb2f211116c130deb74eb.md
docs/models/shared/structurecompany.md
docs/models/shared/company.md
docs/models/shared/companylinks.md
docs/models/shared/companyperson.md
docs/models/shared/address.md
docs/models/shared/memberclientwireaccount.md
docs/models/shared/fiftyfoura6b24a57d15569713a0fc2cbf4d7b60e5b00c0035643d120b72001060ebd30.md
docs/models/shared/twelved9f9a45dd678e21e49e960084c87d9e541aadd0c26b6e676a00139e89b6915.md
docs/models/shared/ba1d4c38921e9c7af45d17223c51562cb69a815c6bf72f6cf959d800ee59afdb.md
docs/models/shared/threed33fba3f009de957b3be92fba006d6383af7e39f823cc1fd213506f6205100f.md
docs/models/shared/d86c1fba5267ac3d9ce2954a6e46b70e471c0f91a44abbe94565ae50e6e9e863.md
docs/models/shared/companystructurememberclientformw9info.md
docs/models/shared/memberclientformw9info.md
docs/models/shared/b9789f45f8c8070ff38a64d80c2e4a8732ddaf329e46546474400d26f84c0f1c.md
docs/models/shared/deliverymethodmemberclientform1099balances.md
docs/models/shared/exclusionreasonmemberclientform1099balances.md
docs/models/shared/statusmemberclientform1099balances.md
docs/models/shared/memberclientform1099balancestaxform.md
docs/models/shared/typememberclientform1099balances.md
docs/models/shared/memberclientform1099balances.md
docs/models/shared/form1099events.md
docs/models/shared/status8a9c6cb49482a98cdd603ff09858cdc3e5ef6ad9807c876c4161d925a96694a5.md
docs/models/shared/eighta9c6cb49482a98cdd603ff09858cdc3e5ef6ad9807c876c4161d925a96694a5.md
docs/models/shared/form1099correctionaddress.md
docs/models/shared/companystructureform1099correction.md
docs/models/shared/form1099correction.md
docs/models/shared/externalids.md
docs/models/shared/externalidsquickbooksdata.md
docs/models/shared/externalidsbulkimport.md
docs/models/shared/memberclientrequirementresponserequirementtype.md
docs/models/shared/statusmemberclientrequirementresponse.md
docs/models/shared/memberclientrequirementresponse.md
docs/models/shared/statusdocumentresponse.md
docs/models/shared/documentresponse.md
docs/models/shared/documentfiles.md
docs/models/shared/documentevents.md
docs/models/shared/autopaystrategyclientdata.md
docs/models/shared/verificationstratgyclientdata.md
docs/models/shared/clientdata.md
docs/models/shared/calculate1099request.md
docs/models/shared/mark1099asundeliveredresponse.md
docs/models/shared/mark1099asundeliveredrequest.md
docs/models/shared/remail1099response.md
docs/models/shared/remail1099request.md
docs/models/shared/sevenb49dbbd81f36ab6d7b4f07c5e2e53f40e36eb7b83d1488f379e993b830eec56.md
docs/models/shared/additionaldatatype.md
docs/models/shared/additionaldata.md
docs/models/shared/typeadditionaldataupdaterequest.md
docs/models/shared/additionaldataupdaterequest.md
docs/models/shared/bankingapplicationform.md
docs/models/shared/payableschemaacceptedpaymentmethods.md
docs/models/shared/currencypayableschema.md
docs/models/shared/statuspayableschema.md
docs/models/shared/payableschema.md
docs/models/shared/invoicenotificationpreferences.md
docs/models/shared/statusscheduledate.md
docs/models/shared/scheduledate.md
docs/models/shared/invoicemetadata.md
docs/models/shared/payoutpreferencesmemberoptions.md
docs/models/shared/workflowstatusmemberoptions.md
docs/models/shared/workflowsubstatusmemberoptions.md
docs/models/shared/memberoptions.md
docs/models/shared/invoicelineitem.md
docs/models/shared/invoiceintegrations.md
docs/models/shared/sixa889960fef25bc170d22a40a86ac4d6889f536685dd9369ec52d3df36732601.md
docs/models/shared/facb8048736dba546c4c76242d9f8c7111011a7a7483528f37d80226698a1f2b.md
docs/models/shared/latefeeconfig.md
docs/models/shared/intervalfrequency.md
docs/models/shared/frequency.md
docs/models/shared/bankaccount.md
docs/models/shared/sixb94b58d661f3eabc1444a7a43ac4b99580f0d050123b7bf38184e2f0d7bd66e.md
docs/models/shared/sixb786d9a2229f84822749ed0e086e50a931cc189f3b1bfff2c851fae29b07879.md
docs/models/shared/invoiceevents.md
docs/models/shared/feehandlingconfig.md
docs/models/shared/workflowstatusclientoptions.md
docs/models/shared/workflowsubstatusclientoptions.md
docs/models/shared/clientoptions.md
docs/models/shared/fees.md
docs/models/shared/fee.md
docs/models/shared/invoiceattachments.md
docs/models/shared/invoiceattachmentfile.md
docs/models/shared/bankstatement.md
docs/models/shared/statusbulkcalculation1099batch.md
docs/models/shared/bulkcalculation1099batch.md
docs/models/shared/sevenhundredandfiftysevenf4961b94334fd41cedc27262be7b14583377703cda6490b996969bd4e66c2.md
docs/models/shared/bulkbatchcreate.md
docs/models/shared/statusbulkbatchupdate.md
docs/models/shared/bulkbatchupdate.md
docs/models/shared/calculationtypebulkcalculation1099item.md
docs/models/shared/statusbulkcalculation1099item.md
docs/models/shared/bulkcalculation1099item.md
docs/models/shared/eighthundredandsixtyfivethousandninehundredandsixtyninebc2d9a3cb12c3263d4f941da6e1c7783024804b469db4a6eab9bc12f14.md
docs/models/shared/calculationtypebulkcalculation1099itemcreate.md
docs/models/shared/bulkcalculation1099itemcreate.md
docs/models/shared/payablestatusbulkpayableitem.md
docs/models/shared/statusbulkpayableitem.md
docs/models/shared/bulkpayableitemworkflowsubstatus.md
docs/models/shared/bulkpayableitem.md
docs/models/shared/a7a1067d6f9d1831e4782756623a7bf61cb630a037de1ac86f003bc5c4cb7c14.md
docs/models/shared/calculationtypebulkcalculation1099itemupdate.md
docs/models/shared/bulkcalculation1099itemupdate.md
docs/models/shared/statusbulkclientbatch.md
docs/models/shared/bulkclientbatch.md
docs/models/shared/clientstatusbulkclientitem.md
docs/models/shared/statusbulkclientitem.md
docs/models/shared/bulkclientitem.md
docs/models/shared/fourthousandandninetyonec2911630f24a45153ca60a204edf3efba15902cef686d412c191e0c18cac.md
docs/models/shared/d750b2d9403b5bcbdb3c96c89f1cc713df563d587f16e5f39f5ab546c08a20a0.md
docs/models/shared/sixtyfourmillioneighthundredandfortysixthousandonehundredandthirtysixa354aa510825c1f23c3a978f4c816d8d4184311e7294a570f73727dc.md
docs/models/shared/clientstatusbulkclientitemcreate.md
docs/models/shared/bulkclientitemcreate.md
docs/models/shared/clientstatusbulkclientitemupdate.md
docs/models/shared/bulkclientitemupdate.md
docs/models/shared/statusbulkcollaboratorbatch.md
docs/models/shared/bulkcollaboratorbatch.md
docs/models/shared/collaboratorstatusbulkcollaboratoritem.md
docs/models/shared/statusbulkcollaboratoritem.md
docs/models/shared/bulkcollaboratoritem.md
docs/models/shared/eightcf19a7bc90727398c2780566a4070199559f4723ec14c01c448dc0356efffa1.md
docs/models/shared/collaboratorstatusbulkcollaboratoritemcreate.md
docs/models/shared/bulkcollaboratoritemcreate.md
docs/models/shared/collaboratorstatusbulkcollaboratoritemupdate.md
docs/models/shared/bulkcollaboratoritemupdate.md
docs/models/shared/bulkinvoicebatchprocessingstrategy.md
docs/models/shared/statusbulkinvoicebatch.md
docs/models/shared/bulkinvoicebatch.md
docs/models/shared/bulkinvoicebatchcreateprocessingstrategy.md
docs/models/shared/bulkinvoicebatchcreate.md
docs/models/shared/statusbulkinvoicebatchupdate.md
docs/models/shared/bulkinvoicebatchupdate.md
docs/models/shared/bulkinvoiceitemacceptedpaymentmethods.md
docs/models/shared/invoicestatusbulkinvoiceitem.md
docs/models/shared/statusbulkinvoiceitem.md
docs/models/shared/bulkinvoiceitem.md
docs/models/shared/c1b9877fd1d35a4292006c3c09941c1c5c21bbe2e0e87488661804eebf2a3e4a.md
docs/models/shared/bulkinvoiceitemcreateacceptedpaymentmethods.md
docs/models/shared/invoicestatusbulkinvoiceitemcreate.md
docs/models/shared/bulkinvoiceitemcreate.md
docs/models/shared/bulkinvoiceitemupdateacceptedpaymentmethods.md
docs/models/shared/invoicestatusbulkinvoiceitemupdate.md
docs/models/shared/bulkinvoiceitemupdate.md
docs/models/shared/bulkpayablebatchprocessingstrategy.md
docs/models/shared/statusbulkpayablebatch.md
docs/models/shared/bulkpayablebatch.md
docs/models/shared/bulkpayablebatchcreateprocessingstrategy.md
docs/models/shared/bulkpayablebatchcreate.md
docs/models/shared/statusbulkpayablebatchupdate.md
docs/models/shared/bulkpayablebatchupdate.md
docs/models/shared/payablestatusbulkpayableitemcreate.md
docs/models/shared/workflowsubstatusbulkpayableitemcreate.md
docs/models/shared/bulkpayableitemcreate.md
docs/models/shared/payablestatusbulkpayableitemupdate.md
docs/models/shared/bulkpayableitemupdateworkflowsubstatus.md
docs/models/shared/bulkpayableitemupdate.md
docs/models/shared/bulkpayableimportsummary.md
docs/models/shared/statuscard.md
docs/models/shared/typecard.md
docs/models/shared/card.md
docs/models/shared/c43d8e931fa2aa65f8160dad6cddeff3ae5f333e9b96d96dc85708e786c6a875.md
docs/models/shared/cardcreaterequest.md
docs/models/shared/statuscarddetails.md
docs/models/shared/typecarddetails.md
docs/models/shared/carddetails.md
docs/models/shared/propertiescardupdaterequest.md
docs/models/shared/cardupdaterequest.md
docs/models/shared/statuscollaboratorv2.md
docs/models/shared/taxstatuscollaboratorv2.md
docs/models/shared/collaboratorv2.md
docs/models/shared/collaboratorevents.md
docs/models/shared/ninecd48bf78a297540b0ec6f45365beb8d6ce0ee88e6d244115ad226e6701011a3.md
docs/models/shared/companystructurecollaboratorv2formw9info.md
docs/models/shared/collaboratorv2formw9info.md
docs/models/shared/statuscollaboration.md
docs/models/shared/collaboration.md
docs/models/shared/twentysixe8ea23ccb1e007e7d6560175c7e75c768dac34727b7fe1d834ca24b8221ef4.md
docs/models/shared/sixa65bb5a9fe6d1135b7182baff68e9bc6612ee2c1ab942926fe2804c58663cf4.md
docs/models/shared/currencydeductionresponse.md
docs/models/shared/deductionresponsestatus.md
docs/models/shared/typedeductionresponse.md
docs/models/shared/deductionresponse.md
docs/models/shared/postpaymentdeductiondisbursement.md
docs/models/shared/deductionapplication.md
docs/models/shared/deductioncreaterequestcurrency.md
docs/models/shared/typedeductioncreaterequest.md
docs/models/shared/deductioncreaterequest.md
docs/models/shared/currencydeductionupdaterequest.md
docs/models/shared/typedeductionupdaterequest.md
docs/models/shared/deductionupdaterequest.md
docs/models/shared/clientinvoiceacceptedpaymentmethods.md
docs/models/shared/clientinvoicecurrency.md
docs/models/shared/statusclientinvoice.md
docs/models/shared/clientinvoice.md
docs/models/shared/processingfees.md
docs/models/shared/meanstypepaymentinfo.md
docs/models/shared/paymentinfo.md
docs/models/shared/statusclientinvoiceupdaterequest.md
docs/models/shared/clientinvoiceupdaterequest.md
docs/models/shared/testinvoicecreate.md
docs/models/shared/invoicefeecalculation.md
docs/models/shared/statusclientinvoicetemplate.md
docs/models/shared/clientinvoicetemplate.md
docs/models/shared/statusclientinvoicetemplatecreaterequest.md
docs/models/shared/clientinvoicetemplatecreaterequest.md
docs/models/shared/currencyclientinvoicedatacreaterequest.md
docs/models/shared/clientinvoicedatacreaterequest.md
docs/models/shared/invoicelineitemscreaterequest.md
docs/models/shared/threebilliononehundredandninetymillionsixhundredandeightyfivethousandeighthundredandthirtytwoa4970525ea5b0803efff0b36a0202062e1fd8a0bc187acbe156461.md
docs/models/shared/sixad3f4f624fb518510130e879729b00ed8c237d1cebc5477abf34ac340a6424d.md
docs/models/shared/clientinvoicetemplateupdaterequest.md
docs/models/shared/cardtokenresponse.md
docs/models/shared/cardtokenrequest.md
docs/models/shared/statuscollaboratorschema.md
docs/models/shared/taxstatuscollaboratorschema.md
docs/models/shared/collaboratorschema.md
docs/models/shared/statuscollaboratorcreaterequest.md
docs/models/shared/collaboratorcreaterequest.md
docs/models/shared/collaboratorupdaterequestformw9data.md
docs/models/shared/statuscollaboratorupdaterequest.md
docs/models/shared/collaboratorupdaterequest.md
docs/models/shared/ninetyf96495b02c2509fff131505484d46479a91b7d23ed2b0f438ca117d0bccad7.md
docs/models/shared/deliverymethodcollaboratorform1099balancesupdaterequest.md
docs/models/shared/collaboratorform1099balancesupdaterequestevents.md
docs/models/shared/statuscollaboratorform1099balancesupdaterequest.md
docs/models/shared/collaboratorform1099balancesupdaterequest.md
docs/models/shared/ce853dbef33b2b91880690c84bc5314340c1301fd7b3503dd6ce79c844e2a481address.md
docs/models/shared/companystructurece853dbef33b2b91880690c84bc5314340c1301fd7b3503dd6ce79c844e2a481.md
docs/models/shared/ce853dbef33b2b91880690c84bc5314340c1301fd7b3503dd6ce79c844e2a481.md
docs/models/shared/collaboratorgroupresponse.md
docs/models/shared/eligibilityrequirementrequirementtype.md
docs/models/shared/eligibilityrequirement.md
docs/models/shared/collaboratorgroupcreaterequest.md
docs/models/shared/collaboratorgrouprequirement.md
docs/models/shared/collaboratorgroupupdaterequest.md
docs/models/shared/collaboratorgrouprequirementupdate.md
docs/models/shared/collaboratorsreportresponselabels.md
docs/models/shared/statuscollaboratorsreportresponse.md
docs/models/shared/taxstatuscollaboratorsreportresponse.md
docs/models/shared/collaboratorsreportresponse.md
docs/models/shared/sixtysixad6f986038e3285c36e0faa5c61b52a02882d1460acb116b601a30abfb6c1d.md
docs/models/shared/eligibilityrequirementcreaterequestrequirementtype.md
docs/models/shared/eligibilityrequirementcreaterequest.md
docs/models/shared/eligibilityrequirementupdaterequestrequirementtype.md
docs/models/shared/eligibilityrequirementupdaterequest.md
docs/models/shared/download1099response.md
docs/models/shared/downloadw9response.md
docs/models/shared/instantpayoutresponse.md
docs/models/shared/currencyfundstransferaccount.md
docs/models/shared/typefundstransferaccount.md
docs/models/shared/fundstransferaccount.md
docs/models/shared/eightthousandtwohundredandtwelveee55b9e13fc32935c9417826f64b3550a203b665a04aacb02c4cac363c1f.md
docs/models/shared/provider35e19f440b766b63a803909f93debbd6971f4c581457e6e66b0b7313eed6ccbc.md
docs/models/shared/thirtyfivee19f440b766b63a803909f93debbd6971f4c581457e6e66b0b7313eed6ccbc.md
docs/models/shared/instantpayoutrequest.md
docs/models/shared/institutionresponse.md
docs/models/shared/invoicepdfgenerationresponse.md
docs/models/shared/invoiceacceptedpaymentmethods.md
docs/models/shared/currencyinvoice.md
docs/models/shared/statusinvoice.md
docs/models/shared/invoice.md
docs/models/shared/invoicewithholdings.md
docs/models/shared/fourteenabbd45a54a2847207e8ddfaeb5d4bc82ffb855d63772d79e0c5fe04e9b9b01.md
docs/models/shared/destinationtypeinvoicepayoutdestination.md
docs/models/shared/payoutmethodinvoicepayoutdestination.md
docs/models/shared/invoicepayoutdestination.md
docs/models/shared/invoiceapplieddeductions.md
docs/models/shared/currencyinvoicecollaborator.md
docs/models/shared/invoicecollaborator.md
docs/models/shared/invoiceamountdetails.md
docs/models/shared/currencyclientinvoicecreaterequest.md
docs/models/shared/clientinvoicecreaterequest.md
docs/models/shared/statusinvoicetemplate.md
docs/models/shared/invoicetemplate.md