forked from PaystackOSS/openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython_gen.log
More file actions
1381 lines (1381 loc) · 249 KB
/
Copy pathpython_gen.log
File metadata and controls
1381 lines (1381 loc) · 249 KB
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
[main] INFO o.o.codegen.DefaultGenerator - Generating with dryRun=false
[main] INFO o.o.codegen.DefaultGenerator - OpenAPI Generator: python (client)
[main] INFO o.o.codegen.DefaultGenerator - Generator 'python' is considered stable.
[main] INFO o.o.c.l.AbstractPythonCodegen - Environment variable PYTHON_POST_PROCESS_FILE not defined so the Python code may not be properly formatted. To define it, try 'export PYTHON_POST_PROCESS_FILE="/usr/local/bin/yapf -i"' (Linux/Mac)
[main] INFO o.o.c.l.AbstractPythonCodegen - NOTE: To enable file post-processing, 'enablePostProcessFile' must be set to `true` (--enable-post-process-file for CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as charge_create_request. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings charge_create_request=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings charge_create_request=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionInitialize_amount. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionInitialize_amount=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionInitialize_amount=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionInitialize_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionInitialize_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionInitialize_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionInitializeResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionInitializeResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionInitializeResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionChargeAuthorization_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionChargeAuthorization_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionChargeAuthorization_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeAuthorizationResponse_data_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeAuthorizationResponse_data_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeAuthorizationResponse_data_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeAuthorizationResponse_data_log_history_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeAuthorizationResponse_data_log_history_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeAuthorizationResponse_data_log_history_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeAuthorizationResponse_data_log. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeAuthorizationResponse_data_log=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeAuthorizationResponse_data_log=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeAuthorizationResponse_data_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeAuthorizationResponse_data_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeAuthorizationResponse_data_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeAuthorizationResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeAuthorizationResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeAuthorizationResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeAuthorizationResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeAuthorizationResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeAuthorizationResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionPartialDebit_amount. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionPartialDebit_amount=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionPartialDebit_amount=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionPartialDebitResponse_data_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionPartialDebitResponse_data_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionPartialDebitResponse_data_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionPartialDebitResponse_data_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionPartialDebitResponse_data_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionPartialDebitResponse_data_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionPartialDebitResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionPartialDebitResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionPartialDebitResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionPartialDebitResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionPartialDebitResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionPartialDebitResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerifyResponse_data_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerifyResponse_data_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerifyResponse_data_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerifyResponse_data_log_history_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerifyResponse_data_log_history_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerifyResponse_data_log_history_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerifyResponse_data_log. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerifyResponse_data_log=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerifyResponse_data_log=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerifyResponse_data_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerifyResponse_data_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerifyResponse_data_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerifyResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerifyResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerifyResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerifyResponse_data_plan_object. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerifyResponse_data_plan_object=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerifyResponse_data_plan_object=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerifyResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerifyResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerifyResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionListResponseArray_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionListResponseArray_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionListResponseArray_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionListResponseArray_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionListResponseArray_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionListResponseArray_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionListResponseArray_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionListResponseArray_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionListResponseArray_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionListResponseArray_source. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionListResponseArray_source=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionListResponseArray_source=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as Meta_perPage. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings Meta_perPage=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings Meta_perPage=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionListResponse_meta. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionListResponse_meta=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionListResponse_meta=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionFetchResponse_data_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionFetchResponse_data_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionFetchResponse_data_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionFetchResponse_data_source. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionFetchResponse_data_source=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionFetchResponse_data_source=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionTotalsResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionTotalsResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionTotalsResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransactionExportResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransactionExportResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransactionExportResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeCreate_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeCreate_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeCreate_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeSubmitPinResponse_data_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeSubmitPinResponse_data_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeSubmitPinResponse_data_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeSubmitPinResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeSubmitPinResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeSubmitPinResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ChargeSubmitPinResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ChargeSubmitPinResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ChargeSubmitPinResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as BulkChargeInitiateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings BulkChargeInitiateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings BulkChargeInitiateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as BulkChargeFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings BulkChargeFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings BulkChargeFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as BulkChargeFetchBulkBatchChargesResponseArray_customer_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings BulkChargeFetchBulkBatchChargesResponseArray_customer_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings BulkChargeFetchBulkBatchChargesResponseArray_customer_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as BulkChargeFetchBulkBatchChargesResponseArray_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings BulkChargeFetchBulkBatchChargesResponseArray_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings BulkChargeFetchBulkBatchChargesResponseArray_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as BulkChargeFetchBulkBatchChargesResponseArray_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings BulkChargeFetchBulkBatchChargesResponseArray_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings BulkChargeFetchBulkBatchChargesResponseArray_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as BulkChargeFetchBulkBatchChargesResponseArray_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings BulkChargeFetchBulkBatchChargesResponseArray_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings BulkChargeFetchBulkBatchChargesResponseArray_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubaccountCreate_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubaccountCreate_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubaccountCreate_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubaccountCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubaccountCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubaccountCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubaccountFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubaccountFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubaccountFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubaccountUpdate_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubaccountUpdate_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubaccountUpdate_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubaccountUpdateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubaccountUpdateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubaccountUpdateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SplitSubaccountsArray_subaccount. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SplitSubaccountsArray_subaccount=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SplitSubaccountsArray_subaccount=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SplitCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SplitCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SplitCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SplitFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SplitFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SplitFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TerminalGetStatusResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TerminalGetStatusResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TerminalGetStatusResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TerminalGetResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TerminalGetResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TerminalGetResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalCreate_destinations_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalCreate_destinations_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalCreate_destinations_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalCreate_custom_fields_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalCreate_custom_fields_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalCreate_custom_fields_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalCreateResponse_data_destinations_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalCreateResponse_data_destinations_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalCreateResponse_data_destinations_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalFetchResponse_data_destinations_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalFetchResponse_data_destinations_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalFetchResponse_data_destinations_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalDestinationAssign_destinations_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalDestinationAssign_destinations_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalDestinationAssign_destinations_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalDestinationAssignResponse_data_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalDestinationAssignResponse_data_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalDestinationAssignResponse_data_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VirtualTerminalAddSplitCodeResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VirtualTerminalAddSplitCodeResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VirtualTerminalAddSplitCodeResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as CustomerListResponse_meta. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings CustomerListResponse_meta=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings CustomerListResponse_meta=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as CustomerCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings CustomerCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings CustomerCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as CustomerFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings CustomerFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings CustomerFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as CustomerUpdateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings CustomerUpdateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings CustomerUpdateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as CustomerWhitelistBlacklistResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings CustomerWhitelistBlacklistResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings CustomerWhitelistBlacklistResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as CustomerFetchMandateAuthorizationsResponseData_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings CustomerFetchMandateAuthorizationsResponseData_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings CustomerFetchMandateAuthorizationsResponseData_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanListResponseArray_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanListResponseArray_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanListResponseArray_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanListResponseArray_bank. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanListResponseArray_bank=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanListResponseArray_bank=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanListResponseArray_split_config_anyOf. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanListResponseArray_split_config_anyOf=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanListResponseArray_split_config_anyOf=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanListResponseArray_split_config. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanListResponseArray_split_config=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanListResponseArray_split_config=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanCreateResponse_data_assignment. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanCreateResponse_data_assignment=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanCreateResponse_data_assignment=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanCreateResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanCreateResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanCreateResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanDeactivateResponse_data_assignment. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanDeactivateResponse_data_assignment=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanDeactivateResponse_data_assignment=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DedicatedNubanDeactivateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DedicatedNubanDeactivateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DedicatedNubanDeactivateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ApplePayDomainsResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ApplePayDomainsResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ApplePayDomainsResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as CapitecPayRequeryResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings CapitecPayRequeryResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings CapitecPayRequeryResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationInitialize_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationInitialize_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationInitialize_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationCaptureResponse_data_transaction_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationCaptureResponse_data_transaction_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationCaptureResponse_data_transaction_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationCaptureResponse_data_transaction_split_formula. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationCaptureResponse_data_transaction_split_formula=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationCaptureResponse_data_transaction_split_formula=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationCaptureResponse_data_transaction_split_shares. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationCaptureResponse_data_transaction_split_shares=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationCaptureResponse_data_transaction_split_shares=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationCaptureResponse_data_transaction_split. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationCaptureResponse_data_transaction_split=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationCaptureResponse_data_transaction_split=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationCaptureResponse_data_transaction. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationCaptureResponse_data_transaction=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationCaptureResponse_data_transaction=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationCaptureResponse_data_split. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationCaptureResponse_data_split=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationCaptureResponse_data_split=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationCaptureResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationCaptureResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationCaptureResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationReserveWithAuthCodeResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationReserveWithAuthCodeResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationReserveWithAuthCodeResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationVerifyResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationVerifyResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationVerifyResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PreAuthorizationReleaseResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PreAuthorizationReleaseResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PreAuthorizationReleaseResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PlanCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PlanCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PlanCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PlanFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PlanFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PlanFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubscriptionListResponseArray_plan. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubscriptionListResponseArray_plan=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubscriptionListResponseArray_plan=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubscriptionListResponseArray_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubscriptionListResponseArray_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubscriptionListResponseArray_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubscriptionListResponseArray_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubscriptionListResponseArray_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubscriptionListResponseArray_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubscriptionCreateResponse_data_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubscriptionCreateResponse_data_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubscriptionCreateResponse_data_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubscriptionCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubscriptionCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubscriptionCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubscriptionFetchResponse_data_plan. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubscriptionFetchResponse_data_plan=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubscriptionFetchResponse_data_plan=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubscriptionFetchResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubscriptionFetchResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubscriptionFetchResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as SubscriptionFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings SubscriptionFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings SubscriptionFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferRecipientListResponseArray_details. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferRecipientListResponseArray_details=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferRecipientListResponseArray_details=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferRecipientCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferRecipientCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferRecipientCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferRecipientBulkCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferRecipientBulkCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferRecipientBulkCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferRecipientFetchResponse_data_details. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferRecipientFetchResponse_data_details=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferRecipientFetchResponse_data_details=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferRecipientFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferRecipientFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferRecipientFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferRecipientUpdateResponse_data_details. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferRecipientUpdateResponse_data_details=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferRecipientUpdateResponse_data_details=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferRecipientUpdateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferRecipientUpdateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferRecipientUpdateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferListResponseArray_recipient_details. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferListResponseArray_recipient_details=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferListResponseArray_recipient_details=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferListResponseArray_recipient. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferListResponseArray_recipient=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferListResponseArray_recipient=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferFetchResponse_data_session. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferFetchResponse_data_session=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferFetchResponse_data_session=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferVerifyResponse_data_recipient_details. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferVerifyResponse_data_recipient_details=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferVerifyResponse_data_recipient_details=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferVerifyResponse_data_recipient. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferVerifyResponse_data_recipient=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferVerifyResponse_data_recipient=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as TransferVerifyResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings TransferVerifyResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings TransferVerifyResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestViewResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestViewResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestViewResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestViewResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestViewResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestViewResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestUpdateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestUpdateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestUpdateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestVerifyResponse_data_integration. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestVerifyResponse_data_integration=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestVerifyResponse_data_integration=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestVerifyResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestVerifyResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestVerifyResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestTotalResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestTotalResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestTotalResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestFinalizeResponse_data_discount. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestFinalizeResponse_data_discount=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestFinalizeResponse_data_discount=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PaymentRequestFinalizeResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PaymentRequestFinalizeResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PaymentRequestFinalizeResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ProductListsResponseArray_metadata. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ProductListsResponseArray_metadata=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ProductListsResponseArray_metadata=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ProductListsResponseArray_shipping_fields. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ProductListsResponseArray_shipping_fields=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ProductListsResponseArray_shipping_fields=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ProductCreateResponse_data_shipping_fields. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ProductCreateResponse_data_shipping_fields=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ProductCreateResponse_data_shipping_fields=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ProductCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ProductCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ProductCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ProductFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ProductFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ProductFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ProductUpdateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ProductUpdateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ProductUpdateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as StorefrontCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings StorefrontCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings StorefrontCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderListResponseArray_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderListResponseArray_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderListResponseArray_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderCreateResponse_data_shipping. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderCreateResponse_data_shipping=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderCreateResponse_data_shipping=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderCreateResponse_data_shipping_method. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderCreateResponse_data_shipping_method=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderCreateResponse_data_shipping_method=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderFetchResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderFetchResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderFetchResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderFetchResponse_data_line_items_inner_product. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderFetchResponse_data_line_items_inner_product=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderFetchResponse_data_line_items_inner_product=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderFetchResponse_data_line_items_inner. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderFetchResponse_data_line_items_inner=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderFetchResponse_data_line_items_inner=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderFetchProductResponse_meta. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderFetchProductResponse_meta=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderFetchProductResponse_meta=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderValidateResponse_data_integration. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderValidateResponse_data_integration=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderValidateResponse_data_integration=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderValidateResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderValidateResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderValidateResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as OrderValidateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings OrderValidateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings OrderValidateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PageCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PageCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PageCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PageFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PageFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PageFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PageUpdateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PageUpdateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PageUpdateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as PageAddProductsResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings PageAddProductsResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings PageAddProductsResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as ControlPanelFetchPaymentSessionTimeoutResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings ControlPanelFetchPaymentSessionTimeoutResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings ControlPanelFetchPaymentSessionTimeoutResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as RefundCreateResponse_data_transaction_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings RefundCreateResponse_data_transaction_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings RefundCreateResponse_data_transaction_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as RefundCreateResponse_data_transaction_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings RefundCreateResponse_data_transaction_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings RefundCreateResponse_data_transaction_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as RefundCreateResponse_data_transaction_subaccount. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings RefundCreateResponse_data_transaction_subaccount=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings RefundCreateResponse_data_transaction_subaccount=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as RefundCreateResponse_data_transaction. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings RefundCreateResponse_data_transaction=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings RefundCreateResponse_data_transaction=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as RefundCreateResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings RefundCreateResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings RefundCreateResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as RefundRetryResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings RefundRetryResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings RefundRetryResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as RefundFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings RefundFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings RefundFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeListResponseArray_transaction. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeListResponseArray_transaction=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeListResponseArray_transaction=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeListResponseArray_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeListResponseArray_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeListResponseArray_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeFetchResponse_data_transaction_authorization. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeFetchResponse_data_transaction_authorization=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeFetchResponse_data_transaction_authorization=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeFetchResponse_data_transaction. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeFetchResponse_data_transaction=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeFetchResponse_data_transaction=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeFetchResponse_data_customer. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeFetchResponse_data_customer=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeFetchResponse_data_customer=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeFetchResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeFetchResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeFetchResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeUploadURLResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeUploadURLResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeUploadURLResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeListTransactionResponse_data_transaction. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeListTransactionResponse_data_transaction=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeListTransactionResponse_data_transaction=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeListTransactionResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeListTransactionResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeListTransactionResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeResolveResponse_data_message. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeResolveResponse_data_message=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeResolveResponse_data_message=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeResolveResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeResolveResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeResolveResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as DisputeAddEvidenceResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings DisputeAddEvidenceResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings DisputeAddEvidenceResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerificationResolveAccountNumberResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerificationResolveAccountNumberResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerificationResolveAccountNumberResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerificationValidateAccountResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerificationValidateAccountResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerificationValidateAccountResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as VerificationResolveCardBINResponse_data. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings VerificationResolveCardBINResponse_data=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings VerificationResolveCardBINResponse_data=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN_bank_account_number_pattern. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN_bank_account_number_pattern=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN_bank_account_number_pattern=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN_bank. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN_bank=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN_bank=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_NGN=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_USD_bank. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_USD_bank=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_USD_bank=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_USD. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_USD=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies_USD=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency_supported_currencies=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_currency. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_currency=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_integration_feature. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_integration_feature=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_integration_feature=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships_integration_type. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships_integration_type=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships_integration_type=NewModel,ModelA=NewModelA in CLI).
[main] INFO o.o.codegen.InlineModelResolver - Inline schema created as MiscellaneousListCountriesResponseArray_relationships. To have complete control of the model name, set the `title` field or use the modelNameMapping option (e.g. --model-name-mappings MiscellaneousListCountriesResponseArray_relationships=NewModel,ModelA=NewModelA in CLI) or inlineSchemaNameMapping option (--inline-schema-name-mappings MiscellaneousListCountriesResponseArray_relationships=NewModel,ModelA=NewModelA in CLI).
[main] WARN o.o.codegen.utils.ModelUtils - Failed to get the schema name: null
[main] WARN o.o.codegen.utils.ModelUtils - Failed to get the schema name: null
[main] WARN o.o.codegen.utils.ModelUtils - Failed to get the schema name: null
[main] WARN o.o.codegen.DefaultCodegen - 'oneOf' is intended to include only the additional optional OAS extension discriminator object. For more details, see https://json-schema.org/draft/2019-09/json-schema-core.html#rfc.section.9.2.1.3 and the OAS section on 'Composition and Inheritance'.
[main] WARN o.o.codegen.utils.ModelUtils - Failed to get the schema name: null
[main] WARN o.o.codegen.utils.ModelUtils - Failed to get the schema name: null
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] WARN o.o.c.l.AbstractPythonCodegen - Codegen property is null (e.g. map/dict of undefined type). Default to typing.Any.
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/apple_pay_create_ok_model.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ApplePayCreateOkModel.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/apple_pay_domains_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ApplePayDomainsResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/apple_pay_domains_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ApplePayDomainsResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/apple_pay_param.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ApplePayParam.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/balance_check_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BalanceCheckResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/balance_check_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BalanceCheckResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/balance_fetch_ledger_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BalanceFetchLedgerResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/balance_fetch_ledger_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BalanceFetchLedgerResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bank.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/Bank.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bank_validate_request.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BankValidateRequest.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_fetch_bulk_batch_charges_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeFetchBulkBatchChargesResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_fetch_bulk_batch_charges_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeFetchBulkBatchChargesResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_fetch_bulk_batch_charges_response_array_authorization.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeFetchBulkBatchChargesResponseArrayAuthorization.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_fetch_bulk_batch_charges_response_array_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeFetchBulkBatchChargesResponseArrayCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_fetch_bulk_batch_charges_response_array_customer_metadata.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeFetchBulkBatchChargesResponseArrayCustomerMetadata.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_fetch_bulk_batch_charges_response_array_metadata.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeFetchBulkBatchChargesResponseArrayMetadata.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_initiate.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeInitiate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_initiate_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeInitiateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_initiate_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeInitiateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_pause_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargePauseResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/bulk_charge_resume_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/BulkChargeResumeResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/capitec_pay_requery_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CapitecPayRequeryResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/capitec_pay_requery_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CapitecPayRequeryResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_authorization_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeAuthorizationResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_authorization_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeAuthorizationResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_authorization_response_data_authorization.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeAuthorizationResponseDataAuthorization.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_authorization_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeAuthorizationResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_authorization_response_data_log.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeAuthorizationResponseDataLog.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_authorization_response_data_log_history_inner.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeAuthorizationResponseDataLogHistoryInner.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_authorization_response_data_metadata.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeAuthorizationResponseDataMetadata.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_check_pending_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeCheckPendingResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_create_metadata.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeCreateMetadata.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_create_request.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeCreateRequest.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_address.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitAddress.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_birthday.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitBirthday.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_birthday_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitBirthdayResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_otp.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitOTP.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_otp_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitOtpResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_phone.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitPhone.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_phone_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitPhoneResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_pin.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitPin.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_pin_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitPinResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_pin_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitPinResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_pin_response_data_authorization.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitPinResponseDataAuthorization.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/charge_submit_pin_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ChargeSubmitPinResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/control_panel_fetch_payment_session_timeout_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ControlPanelFetchPaymentSessionTimeoutResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/control_panel_fetch_payment_session_timeout_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ControlPanelFetchPaymentSessionTimeoutResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/control_panel_update_payment_session_timeout_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ControlPanelUpdatePaymentSessionTimeoutResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/currency.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/Currency.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/cursor_meta.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CursorMeta.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_authorization_initialize_account.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerAuthorizationInitializeAccount.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_authorization_initialize_address.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerAuthorizationInitializeAddress.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_authorization_initialize_request.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerAuthorizationInitializeRequest.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_authorization_initialize_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerAuthorizationInitializeResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_authorization_initialize_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerAuthorizationInitializeResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_authorization_verify_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerAuthorizationVerifyResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_authorization_verify_response_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerAuthorizationVerifyResponseCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_authorization_verify_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerAuthorizationVerifyResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_deactivate_authorization.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerDeactivateAuthorization.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_deactivate_authorization_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerDeactivateAuthorizationResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_direct_debit_activation_charge_request.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerDirectDebitActivationChargeRequest.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_direct_debit_activation_charge_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerDirectDebitActivationChargeResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_fetch_mandate_authorizations_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerFetchMandateAuthorizationsResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_fetch_mandate_authorizations_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerFetchMandateAuthorizationsResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_fetch_mandate_authorizations_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerFetchMandateAuthorizationsResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_fetch_mandate_authorizations_response_meta.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerFetchMandateAuthorizationsResponseMeta.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_initialize_direct_debit_account.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerInitializeDirectDebitAccount.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_initialize_direct_debit_address.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerInitializeDirectDebitAddress.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_initialize_direct_debit_request.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerInitializeDirectDebitRequest.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_initialize_direct_debit_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerInitializeDirectDebitResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_initialize_direct_debit_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerInitializeDirectDebitResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_list_response_meta.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerListResponseMeta.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_risk_action.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerRiskAction.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_update_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerUpdateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_validate.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerValidate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_validate_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerValidateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_whitelist_blacklist_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerWhitelistBlacklistResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/customer_whitelist_blacklist_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/CustomerWhitelistBlacklistResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_create_response_data_assignment.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanCreateResponseDataAssignment.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_create_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanCreateResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_deactivate_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanDeactivateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_deactivate_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanDeactivateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_deactivate_response_data_assignment.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanDeactivateResponseDataAssignment.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_list_response_array_bank.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanListResponseArrayBank.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_list_response_array_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanListResponseArrayCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_list_response_array_split_config.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanListResponseArraySplitConfig.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_nuban_list_response_array_split_config_any_of.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedNubanListResponseArraySplitConfigAnyOf.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_virtual_account_assign.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedVirtualAccountAssign.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_virtual_account_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedVirtualAccountCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_virtual_account_remove_split.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedVirtualAccountRemoveSplit.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dedicated_virtual_account_split.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DedicatedVirtualAccountSplit.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/direct_debit_activation_charge_request.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DirectDebitActivationChargeRequest.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/direct_debit_activation_charge_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DirectDebitActivationChargeResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_add_evidence_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeAddEvidenceResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_add_evidence_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeAddEvidenceResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_evidence.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeEvidence.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_export_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeExportResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_fetch_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeFetchResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_fetch_response_data_transaction.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeFetchResponseDataTransaction.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_fetch_response_data_transaction_authorization.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeFetchResponseDataTransactionAuthorization.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_history_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeHistoryArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_list_response_array_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeListResponseArrayCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_list_response_array_transaction.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeListResponseArrayTransaction.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_list_transaction_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeListTransactionResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_list_transaction_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeListTransactionResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_list_transaction_response_data_transaction.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeListTransactionResponseDataTransaction.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_messages_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeMessagesArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_resolve.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeResolve.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_resolve_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeResolveResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_resolve_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeResolveResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_resolve_response_data_message.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeResolveResponseDataMessage.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_upload_url_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeUploadURLResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/dispute_upload_url_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/DisputeUploadURLResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/eft.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/EFT.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/error.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/Error.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/error_meta.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ErrorMeta.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/error_records_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ErrorRecordsArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/formula_subaccounts_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/FormulaSubaccountsArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/meta.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/Meta.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/meta_per_page.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MetaPerPage.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/meta_with_volume.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MetaWithVolume.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/metadata_custom_fields_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MetadataCustomFieldsArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_banks_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListBanksResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_banks_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListBanksResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationships.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_currency.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsCurrency.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_currency_supported_currencies.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsCurrencySupportedCurrencies.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_currency_supported_currencies_ngn.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsCurrencySupportedCurrenciesNGN.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_currency_supported_currencies_ngn_bank.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsCurrencySupportedCurrenciesNGNBank.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_currency_supported_currencies_ngn_bank_account_number_pattern.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsCurrencySupportedCurrenciesNGNBankAccountNumberPattern.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_currency_supported_currencies_usd.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsCurrencySupportedCurrenciesUSD.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_currency_supported_currencies_usd_bank.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsCurrencySupportedCurrenciesUSDBank.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_integration_feature.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsIntegrationFeature.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_countries_response_array_relationships_integration_type.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListCountriesResponseArrayRelationshipsIntegrationType.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_states_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListStatesResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/miscellaneous_list_states_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MiscellaneousListStatesResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/mobile_money.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/MobileMoney.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_create_response_data_shipping.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderCreateResponseDataShipping.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_create_response_data_shipping_method.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderCreateResponseDataShippingMethod.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_fetch_product_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderFetchProductResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_fetch_product_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderFetchProductResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_fetch_product_response_meta.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderFetchProductResponseMeta.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_fetch_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderFetchResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_fetch_response_data_line_items_inner.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderFetchResponseDataLineItemsInner.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_fetch_response_data_line_items_inner_product.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderFetchResponseDataLineItemsInnerProduct.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_items.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderItems.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_list_response_array_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderListResponseArrayCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_shipping.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderShipping.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_validate_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderValidateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_validate_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderValidateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_validate_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderValidateResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/order_validate_response_data_integration.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/OrderValidateResponseDataIntegration.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_add_products_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageAddProductsResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_add_products_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageAddProductsResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_check_slug_availability_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageCheckSlugAvailabilityResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_product.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageProduct.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_products_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageProductsArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/page_update_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PageUpdateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_archive_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestArchiveResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_finalize_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestFinalizeResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_finalize_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestFinalizeResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_finalize_response_data_discount.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestFinalizeResponseDataDiscount.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_line_items_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestLineItemsArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_notifications_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestNotificationsArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_pending_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestPendingArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_send_notification_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestSendNotificationResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_successful_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestSuccessfulArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_tax_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestTaxArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_total_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestTotalArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_total_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestTotalResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_total_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestTotalResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_update_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestUpdateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_verify_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestVerifyResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_verify_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestVerifyResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_verify_response_data_integration.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestVerifyResponseDataIntegration.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_view_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestViewResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_view_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestViewResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_request_view_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentRequestViewResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/payment_session.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PaymentSession.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/plan_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PlanUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCapture.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCaptureResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCaptureResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture_response_data_split.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCaptureResponseDataSplit.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture_response_data_transaction.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCaptureResponseDataTransaction.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture_response_data_transaction_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCaptureResponseDataTransactionCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture_response_data_transaction_split.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCaptureResponseDataTransactionSplit.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture_response_data_transaction_split_formula.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCaptureResponseDataTransactionSplitFormula.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_capture_response_data_transaction_split_shares.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationCaptureResponseDataTransactionSplitShares.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_initialize.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationInitialize.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_initialize_metadata.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationInitializeMetadata.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_initialize_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationInitializeResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_release.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationRelease.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_release_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationReleaseResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_release_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationReleaseResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_reserve.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationReserve.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_reserve_with_auth_code_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationReserveWithAuthCodeResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_reserve_with_auth_code_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationReserveWithAuthCodeResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_verify_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationVerifyResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/pre_authorization_verify_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/PreAuthorizationVerifyResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_create_response_data_shipping_fields.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductCreateResponseDataShippingFields.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_delete_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductDeleteResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_lists_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductListsResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_lists_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductListsResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_lists_response_array_metadata.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductListsResponseArrayMetadata.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_lists_response_array_shipping_fields.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductListsResponseArrayShippingFields.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/product_update_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ProductUpdateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_create_response_data_transaction.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundCreateResponseDataTransaction.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_create_response_data_transaction_authorization.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundCreateResponseDataTransactionAuthorization.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_create_response_data_transaction_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundCreateResponseDataTransactionCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_create_response_data_transaction_subaccount.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundCreateResponseDataTransactionSubaccount.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_retry.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundRetry.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_retry_account_details.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundRetryAccountDetails.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_retry_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundRetryResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/refund_retry_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/RefundRetryResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/Response.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/settlement_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SettlementListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/settlement_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SettlementListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/settlement_transactions_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SettlementTransactionsResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/share_subaccounts_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/ShareSubaccountsArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_add_update_subaccount_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitAddUpdateSubaccountResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_remove_subaccount_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitRemoveSubaccountResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_subaccount_remove.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitSubaccountRemove.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_subaccounts.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitSubaccounts.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_subaccounts_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitSubaccountsArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_subaccounts_array_subaccount.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitSubaccountsArraySubaccount.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/split_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SplitUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_add_products.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontAddProducts.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_delete_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontDeleteResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/storefront_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/StorefrontUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_create_metadata.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountCreateMetadata.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_update.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountUpdate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_update_metadata.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountUpdateMetadata.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_update_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountUpdateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subaccount_update_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubaccountUpdateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_create.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionCreate.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_create_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionCreateResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_create_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionCreateResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_create_response_data_authorization.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionCreateResponseDataAuthorization.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_disable_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionDisableResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_fetch_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionFetchResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_fetch_response_data.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionFetchResponseData.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_fetch_response_data_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionFetchResponseDataCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_fetch_response_data_plan.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionFetchResponseDataPlan.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_list_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionListResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_list_response_array.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionListResponseArray.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_list_response_array_authorization.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionListResponseArrayAuthorization.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_list_response_array_customer.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionListResponseArrayCustomer.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_list_response_array_plan.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionListResponseArrayPlan.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/subscription_toggle.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/SubscriptionToggle.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/terminal_activation_toggle.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/TerminalActivationToggle.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/terminal_commission_device_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/TerminalCommissionDeviceResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/terminal_decommission_device_response.py
[main] INFO o.o.codegen.TemplateManager - Skipped /local/sdks/python/docs/TerminalDecommissionDeviceResponse.md (Skipped by modelDocs options supplied by user.)
[main] INFO o.o.codegen.TemplateManager - writing file /local/sdks/python/alexasomba_paystack/models/terminal_get_response.py