-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
969 lines (969 loc) · 83.1 KB
/
composer.json
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
{
"authors": [
{
"email": "info@vitexsoftware.cz",
"name": "Vítězslav Dvořák"
}
],
"autoload": {
"psr-4": {
"mServer\\": "src/mServer/",
"Pohoda\\": "src/Pohoda/",
"Pohoda\\Accountancy\\": "src/Pohoda/Accountancy",
"Pohoda\\Accountancy\\Accountancy\\": "src/Pohoda/Accountancy/Accountancy",
"Pohoda\\Accountancy\\AccountancyResponse\\": "src/Pohoda/Accountancy/AccountancyResponse",
"Pohoda\\Accountancy\\AccountancyResponseType\\": "src/Pohoda/Accountancy/AccountancyResponseType",
"Pohoda\\Accountancy\\AccountancyType\\": "src/Pohoda/Accountancy/AccountancyType",
"Pohoda\\Accountancy\\AccountingItemType\\": "src/Pohoda/Accountancy/AccountingItemType",
"Pohoda\\Accountancy\\AccountingType\\": "src/Pohoda/Accountancy/AccountingType",
"Pohoda\\AccountingFormOfPayment\\": "src/Pohoda/AccountingFormOfPayment",
"Pohoda\\AccountingFormOfPayment\\AccountingFormOfPayment\\": "src/Pohoda/AccountingFormOfPayment/AccountingFormOfPayment",
"Pohoda\\AccountingFormOfPayment\\AccountingFormOfPaymentHeaderType\\": "src/Pohoda/AccountingFormOfPayment/AccountingFormOfPaymentHeaderType",
"Pohoda\\AccountingFormOfPayment\\AccountingFormOfPaymentTypeRootType\\": "src/Pohoda/AccountingFormOfPayment/AccountingFormOfPaymentTypeRootType",
"Pohoda\\AccountingFormOfPayment\\AccountingPaymentResponse\\": "src/Pohoda/AccountingFormOfPayment/AccountingPaymentResponse",
"Pohoda\\AccountingFormOfPayment\\AccountingPaymentResponseType\\": "src/Pohoda/AccountingFormOfPayment/AccountingPaymentResponseType",
"Pohoda\\AccountingSalesVouchers\\": "src/Pohoda/AccountingSalesVouchers",
"Pohoda\\AccountingSalesVouchers\\AccountingDocumentType\\": "src/Pohoda/AccountingSalesVouchers/AccountingDocumentType",
"Pohoda\\AccountingSalesVouchers\\AccountingSalesVouchers\\": "src/Pohoda/AccountingSalesVouchers/AccountingSalesVouchers",
"Pohoda\\AccountingSalesVouchers\\AccountingSalesVouchersResponesType\\": "src/Pohoda/AccountingSalesVouchers/AccountingSalesVouchersResponesType",
"Pohoda\\AccountingSalesVouchers\\AccountingSalesVouchersResponse\\": "src/Pohoda/AccountingSalesVouchers/AccountingSalesVouchersResponse",
"Pohoda\\AccountingSalesVouchers\\AccountingSalesVouchersType\\": "src/Pohoda/AccountingSalesVouchers/AccountingSalesVouchersType",
"Pohoda\\AccountingSalesVouchers\\LinkedDocumentsType\\": "src/Pohoda/AccountingSalesVouchers/LinkedDocumentsType",
"Pohoda\\AccountingSalesVouchers\\LinkedDocumentType\\": "src/Pohoda/AccountingSalesVouchers/LinkedDocumentType",
"Pohoda\\AccountingSalesVouchers\\ProducedAccountingDocsType\\": "src/Pohoda/AccountingSalesVouchers/ProducedAccountingDocsType",
"Pohoda\\Accountingunit\\": "src/Pohoda/Accountingunit",
"Pohoda\\Accountingunit\\ItemAccountingUnitType\\": "src/Pohoda/Accountingunit/ItemAccountingUnitType",
"Pohoda\\Accountingunit\\ListAccountingUnit\\": "src/Pohoda/Accountingunit/ListAccountingUnit",
"Pohoda\\Accountingunit\\ListAccountingUnitRequest\\": "src/Pohoda/Accountingunit/ListAccountingUnitRequest",
"Pohoda\\Accountingunit\\ListAccountingUnitType\\": "src/Pohoda/Accountingunit/ListAccountingUnitType",
"Pohoda\\ActionPrice\\": "src/Pohoda/ActionPrice",
"Pohoda\\ActionPrice\\ActionPrice\\": "src/Pohoda/ActionPrice/ActionPrice",
"Pohoda\\ActionPrice\\ActionPriceCustomersType\\": "src/Pohoda/ActionPrice/ActionPriceCustomersType",
"Pohoda\\ActionPrice\\ActionPriceGroupsType\\": "src/Pohoda/ActionPrice/ActionPriceGroupsType",
"Pohoda\\ActionPrice\\ActionPriceHeaderType\\": "src/Pohoda/ActionPrice/ActionPriceHeaderType",
"Pohoda\\ActionPrice\\ActionPriceItemType\\": "src/Pohoda/ActionPrice/ActionPriceItemType",
"Pohoda\\ActionPrice\\ActionPriceResponse\\": "src/Pohoda/ActionPrice/ActionPriceResponse",
"Pohoda\\ActionPrice\\ActionPriceResponseType\\": "src/Pohoda/ActionPrice/ActionPriceResponseType",
"Pohoda\\ActionPrice\\ActionPriceStockItemType\\": "src/Pohoda/ActionPrice/ActionPriceStockItemType",
"Pohoda\\ActionPrice\\ActionPriceStocksType\\": "src/Pohoda/ActionPrice/ActionPriceStocksType",
"Pohoda\\ActionPrice\\ActionPriceStockType\\": "src/Pohoda/ActionPrice/ActionPriceStockType",
"Pohoda\\ActionPrice\\ActionPriceType\\": "src/Pohoda/ActionPrice/ActionPriceType",
"Pohoda\\ActionPrice\\CustomerType\\": "src/Pohoda/ActionPrice/CustomerType",
"Pohoda\\ActionPrice\\DefaultPriceStockType\\": "src/Pohoda/ActionPrice/DefaultPriceStockType",
"Pohoda\\ActionPrice\\GroupType\\": "src/Pohoda/ActionPrice/GroupType",
"Pohoda\\ActionPrice\\StockType\\": "src/Pohoda/ActionPrice/StockType",
"Pohoda\\ActionPrice\\TypeAcpCurrencyForeignType\\": "src/Pohoda/ActionPrice/TypeAcpCurrencyForeignType",
"Pohoda\\ActionPrice\\ValidityActionType\\": "src/Pohoda/ActionPrice/ValidityActionType",
"Pohoda\\Activity\\": "src/Pohoda/Activity",
"Pohoda\\Activity\\Activity\\": "src/Pohoda/Activity/Activity",
"Pohoda\\Activity\\ActivityHeaderType\\": "src/Pohoda/Activity/ActivityHeaderType",
"Pohoda\\Activity\\ActivityType\\": "src/Pohoda/Activity/ActivityType",
"Pohoda\\AddressBook\\": "src/Pohoda/AddressBook",
"Pohoda\\AddressBook\\AccountItemType\\": "src/Pohoda/AddressBook/AccountItemType",
"Pohoda\\AddressBook\\ActionTypeType\\": "src/Pohoda/AddressBook/ActionTypeType",
"Pohoda\\AddressBook\\Addressbook\\": "src/Pohoda/AddressBook/Addressbook",
"Pohoda\\AddressBook\\AddressbookAccountType\\": "src/Pohoda/AddressBook/AddressbookAccountType",
"Pohoda\\AddressBook\\AddressbookGDPRType\\": "src/Pohoda/AddressBook/AddressbookGDPRType",
"Pohoda\\AddressBook\\AddressbookHeaderType\\": "src/Pohoda/AddressBook/AddressbookHeaderType",
"Pohoda\\AddressBook\\AddressbookResponse\\": "src/Pohoda/AddressBook/AddressbookResponse",
"Pohoda\\AddressBook\\AddressbookResponseType\\": "src/Pohoda/AddressBook/AddressbookResponseType",
"Pohoda\\AddressBook\\AddressbookType\\": "src/Pohoda/AddressBook/AddressbookType",
"Pohoda\\AddressBook\\GDPRItemsType\\": "src/Pohoda/AddressBook/GDPRItemsType",
"Pohoda\\AddressBook\\GDPRItemType\\": "src/Pohoda/AddressBook/GDPRItemType",
"Pohoda\\Archive\\": "src/Pohoda/Archive",
"Pohoda\\Archive\\Archive\\": "src/Pohoda/Archive/Archive",
"Pohoda\\Archive\\ArchiveType\\": "src/Pohoda/Archive/ArchiveType",
"Pohoda\\Archive\\VariableType\\": "src/Pohoda/Archive/VariableType",
"Pohoda\\AutomaticLiquidation\\": "src/Pohoda/AutomaticLiquidation",
"Pohoda\\AutomaticLiquidationDetailsType\\": "src/Pohoda/AutomaticLiquidationDetailsType",
"Pohoda\\AutomaticLiquidationDetailType\\": "src/Pohoda/AutomaticLiquidationDetailType",
"Pohoda\\AutomaticLiquidationResponse\\": "src/Pohoda/AutomaticLiquidationResponse",
"Pohoda\\AutomaticLiquidationResponseType\\": "src/Pohoda/AutomaticLiquidationResponseType",
"Pohoda\\AutomaticLiquidationType\\": "src/Pohoda/AutomaticLiquidationType",
"Pohoda\\Balance\\": "src/Pohoda/Balance",
"Pohoda\\Balance\\Balance\\": "src/Pohoda/Balance/Balance",
"Pohoda\\Balance\\BalanceHeaderType\\": "src/Pohoda/Balance/BalanceHeaderType",
"Pohoda\\Balance\\BalanceItemType\\": "src/Pohoda/Balance/BalanceItemType",
"Pohoda\\Balance\\BalanceType\\": "src/Pohoda/Balance/BalanceType",
"Pohoda\\Balance\\ForeignCurrencyType\\": "src/Pohoda/Balance/ForeignCurrencyType",
"Pohoda\\Balance\\HomeCurrencyType\\": "src/Pohoda/Balance/HomeCurrencyType",
"Pohoda\\Bank\\": "src/Pohoda/Bank",
"Pohoda\\Bank\\Bank\\": "src/Pohoda/Bank/Bank",
"Pohoda\\Bank\\BankDetailType\\": "src/Pohoda/Bank/BankDetailType",
"Pohoda\\Bank\\BankHeaderType\\": "src/Pohoda/Bank/BankHeaderType",
"Pohoda\\Bank\\BankHeaderType\\PaymentAccountAType\\": "src/Pohoda/Bank/BankHeaderType/PaymentAccountAType",
"Pohoda\\Bank\\BankItemType\\": "src/Pohoda/Bank/BankItemType",
"Pohoda\\Bank\\BankResponse\\": "src/Pohoda/Bank/BankResponse",
"Pohoda\\Bank\\BankResponseType\\": "src/Pohoda/Bank/BankResponseType",
"Pohoda\\Bank\\BankSummaryType\\": "src/Pohoda/Bank/BankSummaryType",
"Pohoda\\Bank\\BankType\\": "src/Pohoda/Bank/BankType",
"Pohoda\\Bank\\StatementNumberType\\": "src/Pohoda/Bank/StatementNumberType",
"Pohoda\\Bank\\TypeCurrencyForeignItemType\\": "src/Pohoda/Bank/TypeCurrencyForeignItemType",
"Pohoda\\Bank\\TypeCurrencyHomeItemType\\": "src/Pohoda/Bank/TypeCurrencyHomeItemType",
"Pohoda\\BankAccount\\": "src/Pohoda/BankAccount",
"Pohoda\\BankAccount\\ActionTypeType\\": "src/Pohoda/BankAccount/ActionTypeType",
"Pohoda\\BankAccount\\BankAccount\\": "src/Pohoda/BankAccount/BankAccount",
"Pohoda\\BankAccount\\BankAccountHeaderType\\": "src/Pohoda/BankAccount/BankAccountHeaderType",
"Pohoda\\BankAccount\\BankAccountResponse\\": "src/Pohoda/BankAccount/BankAccountResponse",
"Pohoda\\BankAccount\\BankAccountResponseType\\": "src/Pohoda/BankAccount/BankAccountResponseType",
"Pohoda\\BankAccount\\BankAccountType\\": "src/Pohoda/BankAccount/BankAccountType",
"Pohoda\\BankAccount\\CurrencyBankAccountType\\": "src/Pohoda/BankAccount/CurrencyBankAccountType",
"Pohoda\\CashRegister\\": "src/Pohoda/CashRegister",
"Pohoda\\CashRegister\\ActionTypeType\\": "src/Pohoda/CashRegister/ActionTypeType",
"Pohoda\\CashRegister\\CashRegister\\": "src/Pohoda/CashRegister/CashRegister",
"Pohoda\\CashRegister\\CashRegisterHeaderType\\": "src/Pohoda/CashRegister/CashRegisterHeaderType",
"Pohoda\\CashRegister\\CashRegisterResponse\\": "src/Pohoda/CashRegister/CashRegisterResponse",
"Pohoda\\CashRegister\\CashRegisterResponseType\\": "src/Pohoda/CashRegister/CashRegisterResponseType",
"Pohoda\\CashRegister\\CashRegisterType\\": "src/Pohoda/CashRegister/CashRegisterType",
"Pohoda\\CashRegister\\CurrencyCashRegisterType\\": "src/Pohoda/CashRegister/CurrencyCashRegisterType",
"Pohoda\\Category\\": "src/Pohoda/Category",
"Pohoda\\Category\\ActionTypeType\\": "src/Pohoda/Category/ActionTypeType",
"Pohoda\\Category\\CategoryDetail\\": "src/Pohoda/Category/CategoryDetail",
"Pohoda\\Category\\CategoryDetailType\\": "src/Pohoda/Category/CategoryDetailType",
"Pohoda\\Category\\CategoryResponse\\": "src/Pohoda/Category/CategoryResponse",
"Pohoda\\Category\\CategoryResponseType\\": "src/Pohoda/Category/CategoryResponseType",
"Pohoda\\Category\\CategoryType\\": "src/Pohoda/Category/CategoryType",
"Pohoda\\Category\\InternetParamsType\\": "src/Pohoda/Category/InternetParamsType",
"Pohoda\\Category\\SubCategoriesType\\": "src/Pohoda/Category/SubCategoriesType",
"Pohoda\\Centre\\": "src/Pohoda/Centre",
"Pohoda\\Centre\\Centre\\": "src/Pohoda/Centre/Centre",
"Pohoda\\Centre\\CentreHeaderType\\": "src/Pohoda/Centre/CentreHeaderType",
"Pohoda\\Centre\\CentreType\\": "src/Pohoda/Centre/CentreType",
"Pohoda\\ClassificationVAT\\": "src/Pohoda/ClassificationVAT",
"Pohoda\\ClassificationVAT\\ClassificationVAT\\": "src/Pohoda/ClassificationVAT/ClassificationVAT",
"Pohoda\\ClassificationVAT\\ClassificationVATHeaderType\\": "src/Pohoda/ClassificationVAT/ClassificationVATHeaderType",
"Pohoda\\ClassificationVAT\\ClassificationVATResponse\\": "src/Pohoda/ClassificationVAT/ClassificationVATResponse",
"Pohoda\\ClassificationVAT\\ClassificationVATResponseType\\": "src/Pohoda/ClassificationVAT/ClassificationVATResponseType",
"Pohoda\\ClassificationVAT\\ClassificationVATType\\": "src/Pohoda/ClassificationVAT/ClassificationVATType",
"Pohoda\\Contract\\": "src/Pohoda/Contract",
"Pohoda\\Contract\\Contract\\": "src/Pohoda/Contract/Contract",
"Pohoda\\Contract\\ContractDescType\\": "src/Pohoda/Contract/ContractDescType",
"Pohoda\\Contract\\ContractResponse\\": "src/Pohoda/Contract/ContractResponse",
"Pohoda\\Contract\\ContractResponseType\\": "src/Pohoda/Contract/ContractResponseType",
"Pohoda\\Contract\\ContractType\\": "src/Pohoda/Contract/ContractType",
"Pohoda\\Contract\\StatusType\\": "src/Pohoda/Contract/StatusType",
"Pohoda\\Data\\": "src/Pohoda/Data",
"Pohoda\\Data\\DataPack\\": "src/Pohoda/Data/DataPack",
"Pohoda\\Data\\DataPackItemType\\": "src/Pohoda/Data/DataPackItemType",
"Pohoda\\Data\\DataPackType\\": "src/Pohoda/Data/DataPackType",
"Pohoda\\Data\\TransformationType\\": "src/Pohoda/Data/TransformationType",
"Pohoda\\DataPackage\\": "src/Pohoda/DataPackage",
"Pohoda\\Discount\\": "src/Pohoda/Discount",
"Pohoda\\Discount\\Discount\\": "src/Pohoda/Discount/Discount",
"Pohoda\\Discount\\DiscountResponse\\": "src/Pohoda/Discount/DiscountResponse",
"Pohoda\\Discount\\DiscountResponseType\\": "src/Pohoda/Discount/DiscountResponseType",
"Pohoda\\Discount\\DiscountsItemType\\": "src/Pohoda/Discount/DiscountsItemType",
"Pohoda\\Discount\\DiscountStockItemType\\": "src/Pohoda/Discount/DiscountStockItemType",
"Pohoda\\Discount\\DiscountsType\\": "src/Pohoda/Discount/DiscountsType",
"Pohoda\\Discount\\DiscountType\\": "src/Pohoda/Discount/DiscountType",
"Pohoda\\Discount\\PriceLevelFilterType\\": "src/Pohoda/Discount/PriceLevelFilterType",
"Pohoda\\Documentresponse\\": "src/Pohoda/Documentresponse",
"Pohoda\\Documentresponse\\DetailType\\": "src/Pohoda/Documentresponse/DetailType",
"Pohoda\\Documentresponse\\DocumentResponseType\\": "src/Pohoda/Documentresponse/DocumentResponseType",
"Pohoda\\Documentresponse\\ImportDetailsType\\": "src/Pohoda/Documentresponse/ImportDetailsType",
"Pohoda\\Documentresponse\\ItemDetailsType\\": "src/Pohoda/Documentresponse/ItemDetailsType",
"Pohoda\\Documentresponse\\ItemType\\": "src/Pohoda/Documentresponse/ItemType",
"Pohoda\\Documentresponse\\ItemType\\ProducedItemAType\\": "src/Pohoda/Documentresponse/ItemType/ProducedItemAType",
"Pohoda\\Documentresponse\\ListVersionType\\": "src/Pohoda/Documentresponse/ListVersionType",
"Pohoda\\Documentresponse\\PartsType\\": "src/Pohoda/Documentresponse/PartsType",
"Pohoda\\Documentresponse\\ProducedDetailsType\\": "src/Pohoda/Documentresponse/ProducedDetailsType",
"Pohoda\\DocumentsType\\": "src/Pohoda/DocumentsType",
"Pohoda\\DocumentType\\": "src/Pohoda/DocumentType",
"Pohoda\\Enquiry\\": "src/Pohoda/Enquiry",
"Pohoda\\Enquiry\\Enquiry\\": "src/Pohoda/Enquiry/Enquiry",
"Pohoda\\Enquiry\\EnquiryDetailType\\": "src/Pohoda/Enquiry/EnquiryDetailType",
"Pohoda\\Enquiry\\EnquiryHeaderType\\": "src/Pohoda/Enquiry/EnquiryHeaderType",
"Pohoda\\Enquiry\\EnquiryItemType\\": "src/Pohoda/Enquiry/EnquiryItemType",
"Pohoda\\Enquiry\\EnquiryResponse\\": "src/Pohoda/Enquiry/EnquiryResponse",
"Pohoda\\Enquiry\\EnquiryResponseType\\": "src/Pohoda/Enquiry/EnquiryResponseType",
"Pohoda\\Enquiry\\EnquirySummaryType\\": "src/Pohoda/Enquiry/EnquirySummaryType",
"Pohoda\\Enquiry\\EnquiryType\\": "src/Pohoda/Enquiry/EnquiryType",
"Pohoda\\Establishment\\": "src/Pohoda/Establishment",
"Pohoda\\Establishment\\Establishment\\": "src/Pohoda/Establishment/Establishment",
"Pohoda\\Establishment\\EstablishmentHeaderType\\": "src/Pohoda/Establishment/EstablishmentHeaderType",
"Pohoda\\Establishment\\EstablishmentType\\": "src/Pohoda/Establishment/EstablishmentType",
"Pohoda\\Filter\\": "src/Pohoda/Filter",
"Pohoda\\Filter\\DeleteOrderType\\": "src/Pohoda/Filter/DeleteOrderType",
"Pohoda\\Filter\\FilterAdbsType\\": "src/Pohoda/Filter/FilterAdbsType",
"Pohoda\\Filter\\FilterDocsDeleteType\\": "src/Pohoda/Filter/FilterDocsDeleteType",
"Pohoda\\Filter\\FilterDocsType\\": "src/Pohoda/Filter/FilterDocsType",
"Pohoda\\Filter\\FilterExtIdType\\": "src/Pohoda/Filter/FilterExtIdType",
"Pohoda\\Filter\\FilterGroupStockType\\": "src/Pohoda/Filter/FilterGroupStockType",
"Pohoda\\Filter\\FilterIDType\\": "src/Pohoda/Filter/FilterIDType",
"Pohoda\\Filter\\FilterIndividualPriceType\\": "src/Pohoda/Filter/FilterIndividualPriceType",
"Pohoda\\Filter\\FilterLiqType\\": "src/Pohoda/Filter/FilterLiqType",
"Pohoda\\Filter\\FilterMovementType\\": "src/Pohoda/Filter/FilterMovementType",
"Pohoda\\Filter\\FilterNumeciralSeriesType\\": "src/Pohoda/Filter/FilterNumeciralSeriesType",
"Pohoda\\Filter\\FilterRegNumberType\\": "src/Pohoda/Filter/FilterRegNumberType",
"Pohoda\\Filter\\FilterStocksType\\": "src/Pohoda/Filter/FilterStocksType",
"Pohoda\\Filter\\RecordAutomaticLiquidationType\\": "src/Pohoda/Filter/RecordAutomaticLiquidationType",
"Pohoda\\Filter\\RecordIsdocType\\": "src/Pohoda/Filter/RecordIsdocType",
"Pohoda\\Filter\\RecordLockType\\": "src/Pohoda/Filter/RecordLockType",
"Pohoda\\Filter\\RecordPrintType\\": "src/Pohoda/Filter/RecordPrintType",
"Pohoda\\Filter\\RequestAccountancyType\\": "src/Pohoda/Filter/RequestAccountancyType",
"Pohoda\\Filter\\RequestActionPriceType\\": "src/Pohoda/Filter/RequestActionPriceType",
"Pohoda\\Filter\\RequestAddressBookActionType\\": "src/Pohoda/Filter/RequestAddressBookActionType",
"Pohoda\\Filter\\RequestAddressBookType\\": "src/Pohoda/Filter/RequestAddressBookType",
"Pohoda\\Filter\\RequestBankAccountType\\": "src/Pohoda/Filter/RequestBankAccountType",
"Pohoda\\Filter\\RequestBankType\\": "src/Pohoda/Filter/RequestBankType",
"Pohoda\\Filter\\RequestCashRegisterType\\": "src/Pohoda/Filter/RequestCashRegisterType",
"Pohoda\\Filter\\RequestCategoryActionType\\": "src/Pohoda/Filter/RequestCategoryActionType",
"Pohoda\\Filter\\RequestContractType\\": "src/Pohoda/Filter/RequestContractType",
"Pohoda\\Filter\\RequestEnquiryType\\": "src/Pohoda/Filter/RequestEnquiryType",
"Pohoda\\Filter\\RequestExtIdActionType\\": "src/Pohoda/Filter/RequestExtIdActionType",
"Pohoda\\Filter\\RequestExtIdType\\": "src/Pohoda/Filter/RequestExtIdType",
"Pohoda\\Filter\\RequestGroupStocksActionType\\": "src/Pohoda/Filter/RequestGroupStocksActionType",
"Pohoda\\Filter\\RequestGroupStocksType\\": "src/Pohoda/Filter/RequestGroupStocksType",
"Pohoda\\Filter\\RequestIndividualPriceType\\": "src/Pohoda/Filter/RequestIndividualPriceType",
"Pohoda\\Filter\\RequestIntDocType\\": "src/Pohoda/Filter/RequestIntDocType",
"Pohoda\\Filter\\RequestInventoryListsType\\": "src/Pohoda/Filter/RequestInventoryListsType",
"Pohoda\\Filter\\RequestInvoiceType\\": "src/Pohoda/Filter/RequestInvoiceType",
"Pohoda\\Filter\\RequestItemType\\": "src/Pohoda/Filter/RequestItemType",
"Pohoda\\Filter\\RequestMovementType\\": "src/Pohoda/Filter/RequestMovementType",
"Pohoda\\Filter\\RequestNumericalSeriesType\\": "src/Pohoda/Filter/RequestNumericalSeriesType",
"Pohoda\\Filter\\RequestOfferType\\": "src/Pohoda/Filter/RequestOfferType",
"Pohoda\\Filter\\RequestOrderType\\": "src/Pohoda/Filter/RequestOrderType",
"Pohoda\\Filter\\RequestPaymentType\\": "src/Pohoda/Filter/RequestPaymentType",
"Pohoda\\Filter\\RequestPrevodkaType\\": "src/Pohoda/Filter/RequestPrevodkaType",
"Pohoda\\Filter\\RequestPrijemkaType\\": "src/Pohoda/Filter/RequestPrijemkaType",
"Pohoda\\Filter\\RequestProdejkaType\\": "src/Pohoda/Filter/RequestProdejkaType",
"Pohoda\\Filter\\RequestProductRequirementType\\": "src/Pohoda/Filter/RequestProductRequirementType",
"Pohoda\\Filter\\RequestRecyclingContribType\\": "src/Pohoda/Filter/RequestRecyclingContribType",
"Pohoda\\Filter\\RequestRegistrationNumberType\\": "src/Pohoda/Filter/RequestRegistrationNumberType",
"Pohoda\\Filter\\RequestRulesPairingType\\": "src/Pohoda/Filter/RequestRulesPairingType",
"Pohoda\\Filter\\RequestServiceType\\": "src/Pohoda/Filter/RequestServiceType",
"Pohoda\\Filter\\RequestStockActionType\\": "src/Pohoda/Filter/RequestStockActionType",
"Pohoda\\Filter\\RequestStockType\\": "src/Pohoda/Filter/RequestStockType",
"Pohoda\\Filter\\RequestStoreType\\": "src/Pohoda/Filter/RequestStoreType",
"Pohoda\\Filter\\RequestVoucherType\\": "src/Pohoda/Filter/RequestVoucherType",
"Pohoda\\Filter\\RequestVydejkaType\\": "src/Pohoda/Filter/RequestVydejkaType",
"Pohoda\\Filter\\RequestVyrobaType\\": "src/Pohoda/Filter/RequestVyrobaType",
"Pohoda\\Filter\\SelectedCompanysType\\": "src/Pohoda/Filter/SelectedCompanysType",
"Pohoda\\Filter\\SelectedIcoType\\": "src/Pohoda/Filter/SelectedIcoType",
"Pohoda\\Filter\\SelectedNumbersType\\": "src/Pohoda/Filter/SelectedNumbersType",
"Pohoda\\Filter\\UserFilterNameType\\": "src/Pohoda/Filter/UserFilterNameType",
"Pohoda\\ForeignCurrencyType\\": "src/Pohoda/ForeignCurrencyType",
"Pohoda\\Gdpr\\": "src/Pohoda/Gdpr",
"Pohoda\\Gdpr\\GDPR\\": "src/Pohoda/Gdpr/GDPR",
"Pohoda\\Gdpr\\GDPRHeaderType\\": "src/Pohoda/Gdpr/GDPRHeaderType",
"Pohoda\\Gdpr\\GDPRResponse\\": "src/Pohoda/Gdpr/GDPRResponse",
"Pohoda\\Gdpr\\GDPRResponseType\\": "src/Pohoda/Gdpr/GDPRResponseType",
"Pohoda\\Gdpr\\GDPRType\\": "src/Pohoda/Gdpr/GDPRType",
"Pohoda\\GroupStocks\\": "src/Pohoda/GroupStocks",
"Pohoda\\GroupStocks\\ActionTypeType\\": "src/Pohoda/GroupStocks/ActionTypeType",
"Pohoda\\GroupStocks\\GroupStocks\\": "src/Pohoda/GroupStocks/GroupStocks",
"Pohoda\\GroupStocks\\GroupStocksDetailType\\": "src/Pohoda/GroupStocks/GroupStocksDetailType",
"Pohoda\\GroupStocks\\GroupStocksHeaderType\\": "src/Pohoda/GroupStocks/GroupStocksHeaderType",
"Pohoda\\GroupStocks\\GroupStocksResponse\\": "src/Pohoda/GroupStocks/GroupStocksResponse",
"Pohoda\\GroupStocks\\GroupStocksResponseType\\": "src/Pohoda/GroupStocks/GroupStocksResponseType",
"Pohoda\\GroupStocks\\GroupStocksType\\": "src/Pohoda/GroupStocks/GroupStocksType",
"Pohoda\\GroupStocks\\VariantsItemType\\": "src/Pohoda/GroupStocks/VariantsItemType",
"Pohoda\\HomeCurrencyType\\": "src/Pohoda/HomeCurrencyType",
"Pohoda\\IndividualPrice\\": "src/Pohoda/IndividualPrice",
"Pohoda\\IndividualPrice\\AddressType\\": "src/Pohoda/IndividualPrice/AddressType",
"Pohoda\\IndividualPrice\\AllStocksType\\": "src/Pohoda/IndividualPrice/AllStocksType",
"Pohoda\\IndividualPrice\\IndividualPrice\\": "src/Pohoda/IndividualPrice/IndividualPrice",
"Pohoda\\IndividualPrice\\IndividualPriceResponse\\": "src/Pohoda/IndividualPrice/IndividualPriceResponse",
"Pohoda\\IndividualPrice\\IndividualPriceResponseType\\": "src/Pohoda/IndividualPrice/IndividualPriceResponseType",
"Pohoda\\IndividualPrice\\IndividualPriceType\\": "src/Pohoda/IndividualPrice/IndividualPriceType",
"Pohoda\\IndividualPrice\\PriceGroupItemType\\": "src/Pohoda/IndividualPrice/PriceGroupItemType",
"Pohoda\\IndividualPrice\\PriceGroupsType\\": "src/Pohoda/IndividualPrice/PriceGroupsType",
"Pohoda\\IndividualPrice\\SetPricesType\\": "src/Pohoda/IndividualPrice/SetPricesType",
"Pohoda\\IndividualPrice\\StockItemType\\": "src/Pohoda/IndividualPrice/StockItemType",
"Pohoda\\IndividualPrice\\StocksType\\": "src/Pohoda/IndividualPrice/StocksType",
"Pohoda\\IntDoc\\": "src/Pohoda/IntDoc",
"Pohoda\\IntDoc\\IntDoc\\": "src/Pohoda/IntDoc/IntDoc",
"Pohoda\\IntDoc\\IntDocDetailType\\": "src/Pohoda/IntDoc/IntDocDetailType",
"Pohoda\\IntDoc\\IntDocHeaderType\\": "src/Pohoda/IntDoc/IntDocHeaderType",
"Pohoda\\IntDoc\\IntDocItemType\\": "src/Pohoda/IntDoc/IntDocItemType",
"Pohoda\\IntDoc\\IntDocResponse\\": "src/Pohoda/IntDoc/IntDocResponse",
"Pohoda\\IntDoc\\IntDocResponseType\\": "src/Pohoda/IntDoc/IntDocResponseType",
"Pohoda\\IntDoc\\IntDocSummaryType\\": "src/Pohoda/IntDoc/IntDocSummaryType",
"Pohoda\\IntDoc\\IntDocType\\": "src/Pohoda/IntDoc/IntDocType",
"Pohoda\\IntDoc\\TaxDocumentType\\": "src/Pohoda/IntDoc/TaxDocumentType",
"Pohoda\\IntParam\\": "src/Pohoda/IntParam",
"Pohoda\\IntParam\\IntParamDetail\\": "src/Pohoda/IntParam/IntParamDetail",
"Pohoda\\IntParam\\IntParamDetailType\\": "src/Pohoda/IntParam/IntParamDetailType",
"Pohoda\\IntParam\\IntParamResponse\\": "src/Pohoda/IntParam/IntParamResponse",
"Pohoda\\IntParam\\IntParamResponseType\\": "src/Pohoda/IntParam/IntParamResponseType",
"Pohoda\\IntParam\\IntParamType\\": "src/Pohoda/IntParam/IntParamType",
"Pohoda\\IntParam\\ParameterListItemType\\": "src/Pohoda/IntParam/ParameterListItemType",
"Pohoda\\IntParam\\ParameterListType\\": "src/Pohoda/IntParam/ParameterListType",
"Pohoda\\IntParam\\ParameterSettingsType\\": "src/Pohoda/IntParam/ParameterSettingsType",
"Pohoda\\InventoryLists\\": "src/Pohoda/InventoryLists",
"Pohoda\\InventoryLists\\InventoryLists\\": "src/Pohoda/InventoryLists/InventoryLists",
"Pohoda\\InventoryLists\\InventoryListsDetailType\\": "src/Pohoda/InventoryLists/InventoryListsDetailType",
"Pohoda\\InventoryLists\\InventoryListsHeaderType\\": "src/Pohoda/InventoryLists/InventoryListsHeaderType",
"Pohoda\\InventoryLists\\InventoryListsItemType\\": "src/Pohoda/InventoryLists/InventoryListsItemType",
"Pohoda\\InventoryLists\\InventoryListsResponse\\": "src/Pohoda/InventoryLists/InventoryListsResponse",
"Pohoda\\InventoryLists\\InventoryListsResponseType\\": "src/Pohoda/InventoryLists/InventoryListsResponseType",
"Pohoda\\InventoryLists\\InventoryListsType\\": "src/Pohoda/InventoryLists/InventoryListsType",
"Pohoda\\Invoice\\": "src/Pohoda/Invoice",
"Pohoda\\Invoice\\IntrastatItemType\\": "src/Pohoda/Invoice/IntrastatItemType",
"Pohoda\\Invoice\\IntrastatType\\": "src/Pohoda/Invoice/IntrastatType",
"Pohoda\\Invoice\\Invoice\\": "src/Pohoda/Invoice/Invoice",
"Pohoda\\Invoice\\InvoiceAdvancePaymentItemType\\": "src/Pohoda/Invoice/InvoiceAdvancePaymentItemType",
"Pohoda\\Invoice\\InvoiceDetailType\\": "src/Pohoda/Invoice/InvoiceDetailType",
"Pohoda\\Invoice\\InvoiceHeaderType\\": "src/Pohoda/Invoice/InvoiceHeaderType",
"Pohoda\\Invoice\\InvoiceHeaderType\\PaymentAccountAType\\": "src/Pohoda/Invoice/InvoiceHeaderType/PaymentAccountAType",
"Pohoda\\Invoice\\InvoiceItemType\\": "src/Pohoda/Invoice/InvoiceItemType",
"Pohoda\\Invoice\\InvoiceResponse\\": "src/Pohoda/Invoice/InvoiceResponse",
"Pohoda\\Invoice\\InvoiceResponseType\\": "src/Pohoda/Invoice/InvoiceResponseType",
"Pohoda\\Invoice\\InvoiceRetentionsType\\": "src/Pohoda/Invoice/InvoiceRetentionsType",
"Pohoda\\Invoice\\InvoiceRetentionType\\": "src/Pohoda/Invoice/InvoiceRetentionType",
"Pohoda\\Invoice\\InvoiceSummaryType\\": "src/Pohoda/Invoice/InvoiceSummaryType",
"Pohoda\\Invoice\\InvoiceType\\": "src/Pohoda/Invoice/InvoiceType",
"Pohoda\\Isdoc\\": "src/Pohoda/Isdoc",
"Pohoda\\Isdoc\\AttachmentsType\\": "src/Pohoda/Isdoc/AttachmentsType",
"Pohoda\\Isdoc\\AttachmentType\\": "src/Pohoda/Isdoc/AttachmentType",
"Pohoda\\Isdoc\\Isdoc\\": "src/Pohoda/Isdoc/Isdoc",
"Pohoda\\Isdoc\\IsdocResponse\\": "src/Pohoda/Isdoc/IsdocResponse",
"Pohoda\\Isdoc\\IsdocResponseType\\": "src/Pohoda/Isdoc/IsdocResponseType",
"Pohoda\\Isdoc\\IsdocSettingsType\\": "src/Pohoda/Isdoc/IsdocSettingsType",
"Pohoda\\Isdoc\\IsdocType\\": "src/Pohoda/Isdoc/IsdocType",
"Pohoda\\Isdoc\\SecureHashAlgorithmType\\": "src/Pohoda/Isdoc/SecureHashAlgorithmType",
"Pohoda\\Isdoc\\SignatureCertificateType\\": "src/Pohoda/Isdoc/SignatureCertificateType",
"Pohoda\\LiquidationDetailType\\": "src/Pohoda/LiquidationDetailType",
"Pohoda\\LiquidationWithoutLink\\": "src/Pohoda/LiquidationWithoutLink",
"Pohoda\\LiquidationWithoutLink\\LiquidationWithoutLink\\": "src/Pohoda/LiquidationWithoutLink/LiquidationWithoutLink",
"Pohoda\\LiquidationWithoutLink\\LiquidationWithoutLinkResponse\\": "src/Pohoda/LiquidationWithoutLink/LiquidationWithoutLinkResponse",
"Pohoda\\LiquidationWithoutLink\\LiquidationWithoutLinkResponseType\\": "src/Pohoda/LiquidationWithoutLink/LiquidationWithoutLinkResponseType",
"Pohoda\\LiquidationWithoutLink\\LiquidationWithoutLinkType\\": "src/Pohoda/LiquidationWithoutLink/LiquidationWithoutLinkType",
"Pohoda\\LiquidationWithoutLink\\RecordliquidationWithoutLinkType\\": "src/Pohoda/LiquidationWithoutLink/RecordliquidationWithoutLinkType",
"Pohoda\\List\\": "src/Pohoda/List",
"Pohoda\\List\\CreateAccountingDoubleEntry\\": "src/Pohoda/List/CreateAccountingDoubleEntry",
"Pohoda\\List\\CreateAccountingDoubleEntryResponse\\": "src/Pohoda/List/CreateAccountingDoubleEntryResponse",
"Pohoda\\List\\CreateAccountingDoubleEntryResponseType\\": "src/Pohoda/List/CreateAccountingDoubleEntryResponseType",
"Pohoda\\List\\CreateAccountingDoubleEntryType\\": "src/Pohoda/List/CreateAccountingDoubleEntryType",
"Pohoda\\List\\CreateAccountingResponseType\\": "src/Pohoda/List/CreateAccountingResponseType",
"Pohoda\\List\\CreateAccountingType\\": "src/Pohoda/List/CreateAccountingType",
"Pohoda\\List\\ItemAccountingTypeDoubleEntryType\\": "src/Pohoda/List/ItemAccountingTypeDoubleEntryType",
"Pohoda\\List\\ItemAccountingTypeSingleEntryType\\": "src/Pohoda/List/ItemAccountingTypeSingleEntryType",
"Pohoda\\List\\ItemAccountType\\": "src/Pohoda/List/ItemAccountType",
"Pohoda\\List\\ItemCashType\\": "src/Pohoda/List/ItemCashType",
"Pohoda\\List\\ItemContractType\\": "src/Pohoda/List/ItemContractType",
"Pohoda\\List\\ItemNameType\\": "src/Pohoda/List/ItemNameType",
"Pohoda\\List\\ItemNumericSeriesType\\": "src/Pohoda/List/ItemNumericSeriesType",
"Pohoda\\List\\ItemSellingPriceType\\": "src/Pohoda/List/ItemSellingPriceType",
"Pohoda\\List\\ItemStorageType\\": "src/Pohoda/List/ItemStorageType",
"Pohoda\\List\\ItemType\\": "src/Pohoda/List/ItemType",
"Pohoda\\List\\ItemUserCodeType\\": "src/Pohoda/List/ItemUserCodeType",
"Pohoda\\List\\ListAccount\\": "src/Pohoda/List/ListAccount",
"Pohoda\\List\\ListAccountancy\\": "src/Pohoda/List/ListAccountancy",
"Pohoda\\List\\ListAccountancyRequest\\": "src/Pohoda/List/ListAccountancyRequest",
"Pohoda\\List\\ListAccountancyRequestType\\": "src/Pohoda/List/ListAccountancyRequestType",
"Pohoda\\List\\ListAccountancyType\\": "src/Pohoda/List/ListAccountancyType",
"Pohoda\\List\\ListAccountingDoubleEntry\\": "src/Pohoda/List/ListAccountingDoubleEntry",
"Pohoda\\List\\ListAccountingDoubleEntryRequest\\": "src/Pohoda/List/ListAccountingDoubleEntryRequest",
"Pohoda\\List\\ListAccountingDoubleEntryType\\": "src/Pohoda/List/ListAccountingDoubleEntryType",
"Pohoda\\List\\ListAccountingFormOfPayment\\": "src/Pohoda/List/ListAccountingFormOfPayment",
"Pohoda\\List\\ListAccountingFormOfPaymentRequest\\": "src/Pohoda/List/ListAccountingFormOfPaymentRequest",
"Pohoda\\List\\ListAccountingFormOfPaymentRequestType\\": "src/Pohoda/List/ListAccountingFormOfPaymentRequestType",
"Pohoda\\List\\ListAccountingFormOfPaymentType\\": "src/Pohoda/List/ListAccountingFormOfPaymentType",
"Pohoda\\List\\ListAccountingSingleEntry\\": "src/Pohoda/List/ListAccountingSingleEntry",
"Pohoda\\List\\ListAccountingSingleEntryRequest\\": "src/Pohoda/List/ListAccountingSingleEntryRequest",
"Pohoda\\List\\ListAccountingSingleEntryType\\": "src/Pohoda/List/ListAccountingSingleEntryType",
"Pohoda\\List\\ListAccountRequest\\": "src/Pohoda/List/ListAccountRequest",
"Pohoda\\List\\ListAccountType\\": "src/Pohoda/List/ListAccountType",
"Pohoda\\List\\ListActionPrice\\": "src/Pohoda/List/ListActionPrice",
"Pohoda\\List\\ListActionPriceRequest\\": "src/Pohoda/List/ListActionPriceRequest",
"Pohoda\\List\\ListActionPriceRequestType\\": "src/Pohoda/List/ListActionPriceRequestType",
"Pohoda\\List\\ListActionPriceType\\": "src/Pohoda/List/ListActionPriceType",
"Pohoda\\List\\ListActivity\\": "src/Pohoda/List/ListActivity",
"Pohoda\\List\\ListActivityRequest\\": "src/Pohoda/List/ListActivityRequest",
"Pohoda\\List\\ListActivityType\\": "src/Pohoda/List/ListActivityType",
"Pohoda\\List\\ListBalance\\": "src/Pohoda/List/ListBalance",
"Pohoda\\List\\ListBalanceRequest\\": "src/Pohoda/List/ListBalanceRequest",
"Pohoda\\List\\ListBalanceRequestType\\": "src/Pohoda/List/ListBalanceRequestType",
"Pohoda\\List\\ListBalanceType\\": "src/Pohoda/List/ListBalanceType",
"Pohoda\\List\\ListBank\\": "src/Pohoda/List/ListBank",
"Pohoda\\List\\ListBankAccount\\": "src/Pohoda/List/ListBankAccount",
"Pohoda\\List\\ListBankAccountRequest\\": "src/Pohoda/List/ListBankAccountRequest",
"Pohoda\\List\\ListBankAccountRequestType\\": "src/Pohoda/List/ListBankAccountRequestType",
"Pohoda\\List\\ListBankAccountType\\": "src/Pohoda/List/ListBankAccountType",
"Pohoda\\List\\ListBankRequest\\": "src/Pohoda/List/ListBankRequest",
"Pohoda\\List\\ListBankRequestType\\": "src/Pohoda/List/ListBankRequestType",
"Pohoda\\List\\ListBankType\\": "src/Pohoda/List/ListBankType",
"Pohoda\\List\\ListCash\\": "src/Pohoda/List/ListCash",
"Pohoda\\List\\ListCashRegister\\": "src/Pohoda/List/ListCashRegister",
"Pohoda\\List\\ListCashRegisterRequest\\": "src/Pohoda/List/ListCashRegisterRequest",
"Pohoda\\List\\ListCashRegisterRequestType\\": "src/Pohoda/List/ListCashRegisterRequestType",
"Pohoda\\List\\ListCashRegisterType\\": "src/Pohoda/List/ListCashRegisterType",
"Pohoda\\List\\ListCashRequest\\": "src/Pohoda/List/ListCashRequest",
"Pohoda\\List\\ListCashType\\": "src/Pohoda/List/ListCashType",
"Pohoda\\List\\ListCategory\\": "src/Pohoda/List/ListCategory",
"Pohoda\\List\\ListCategoryRequest\\": "src/Pohoda/List/ListCategoryRequest",
"Pohoda\\List\\ListCategoryRequestType\\": "src/Pohoda/List/ListCategoryRequestType",
"Pohoda\\List\\ListCategoryType\\": "src/Pohoda/List/ListCategoryType",
"Pohoda\\List\\ListCentre\\": "src/Pohoda/List/ListCentre",
"Pohoda\\List\\ListCentreRequest\\": "src/Pohoda/List/ListCentreRequest",
"Pohoda\\List\\ListCentreType\\": "src/Pohoda/List/ListCentreType",
"Pohoda\\List\\ListClassificationVAT\\": "src/Pohoda/List/ListClassificationVAT",
"Pohoda\\List\\ListClassificationVATRequest\\": "src/Pohoda/List/ListClassificationVATRequest",
"Pohoda\\List\\ListClassificationVATRequestType\\": "src/Pohoda/List/ListClassificationVATRequestType",
"Pohoda\\List\\ListClassificationVATType\\": "src/Pohoda/List/ListClassificationVATType",
"Pohoda\\List\\ListContract\\": "src/Pohoda/List/ListContract",
"Pohoda\\List\\ListContractType\\": "src/Pohoda/List/ListContractType",
"Pohoda\\List\\ListEnquiry\\": "src/Pohoda/List/ListEnquiry",
"Pohoda\\List\\ListEnquiryRequest\\": "src/Pohoda/List/ListEnquiryRequest",
"Pohoda\\List\\ListEnquiryRequestType\\": "src/Pohoda/List/ListEnquiryRequestType",
"Pohoda\\List\\ListEnquiryType\\": "src/Pohoda/List/ListEnquiryType",
"Pohoda\\List\\ListEstablishment\\": "src/Pohoda/List/ListEstablishment",
"Pohoda\\List\\ListEstablishmentRequest\\": "src/Pohoda/List/ListEstablishmentRequest",
"Pohoda\\List\\ListEstablishmentRequestType\\": "src/Pohoda/List/ListEstablishmentRequestType",
"Pohoda\\List\\ListEstablishmentType\\": "src/Pohoda/List/ListEstablishmentType",
"Pohoda\\List\\ListGDPR\\": "src/Pohoda/List/ListGDPR",
"Pohoda\\List\\ListGDPRRequest\\": "src/Pohoda/List/ListGDPRRequest",
"Pohoda\\List\\ListGDPRRequestType\\": "src/Pohoda/List/ListGDPRRequestType",
"Pohoda\\List\\ListGDPRType\\": "src/Pohoda/List/ListGDPRType",
"Pohoda\\List\\ListGlobalSettings\\": "src/Pohoda/List/ListGlobalSettings",
"Pohoda\\List\\ListGlobalSettingsRequest\\": "src/Pohoda/List/ListGlobalSettingsRequest",
"Pohoda\\List\\ListGlobalSettingsRequestType\\": "src/Pohoda/List/ListGlobalSettingsRequestType",
"Pohoda\\List\\ListGlobalSettingsType\\": "src/Pohoda/List/ListGlobalSettingsType",
"Pohoda\\List\\ListGroupStocks\\": "src/Pohoda/List/ListGroupStocks",
"Pohoda\\List\\ListGroupStocksRequest\\": "src/Pohoda/List/ListGroupStocksRequest",
"Pohoda\\List\\ListGroupStocksRequestType\\": "src/Pohoda/List/ListGroupStocksRequestType",
"Pohoda\\List\\ListGroupStocksType\\": "src/Pohoda/List/ListGroupStocksType",
"Pohoda\\List\\ListIndividualPrice\\": "src/Pohoda/List/ListIndividualPrice",
"Pohoda\\List\\ListIndividualPriceRequest\\": "src/Pohoda/List/ListIndividualPriceRequest",
"Pohoda\\List\\ListIndividualPriceRequestType\\": "src/Pohoda/List/ListIndividualPriceRequestType",
"Pohoda\\List\\ListIndividualPriceType\\": "src/Pohoda/List/ListIndividualPriceType",
"Pohoda\\List\\ListIntDoc\\": "src/Pohoda/List/ListIntDoc",
"Pohoda\\List\\ListIntDocRequest\\": "src/Pohoda/List/ListIntDocRequest",
"Pohoda\\List\\ListIntDocRequestType\\": "src/Pohoda/List/ListIntDocRequestType",
"Pohoda\\List\\ListIntDocType\\": "src/Pohoda/List/ListIntDocType",
"Pohoda\\List\\ListIntParam\\": "src/Pohoda/List/ListIntParam",
"Pohoda\\List\\ListIntParamRequest\\": "src/Pohoda/List/ListIntParamRequest",
"Pohoda\\List\\ListIntParamRequestType\\": "src/Pohoda/List/ListIntParamRequestType",
"Pohoda\\List\\ListIntParamType\\": "src/Pohoda/List/ListIntParamType",
"Pohoda\\List\\ListInventoryLists\\": "src/Pohoda/List/ListInventoryLists",
"Pohoda\\List\\ListInventoryListsRequest\\": "src/Pohoda/List/ListInventoryListsRequest",
"Pohoda\\List\\ListInventoryListsRequestType\\": "src/Pohoda/List/ListInventoryListsRequestType",
"Pohoda\\List\\ListInventoryListsType\\": "src/Pohoda/List/ListInventoryListsType",
"Pohoda\\List\\ListInvoice\\": "src/Pohoda/List/ListInvoice",
"Pohoda\\List\\ListInvoiceRequest\\": "src/Pohoda/List/ListInvoiceRequest",
"Pohoda\\List\\ListInvoiceRequestType\\": "src/Pohoda/List/ListInvoiceRequestType",
"Pohoda\\List\\ListInvoiceType\\": "src/Pohoda/List/ListInvoiceType",
"Pohoda\\List\\ListMovement\\": "src/Pohoda/List/ListMovement",
"Pohoda\\List\\ListMovementRequest\\": "src/Pohoda/List/ListMovementRequest",
"Pohoda\\List\\ListMovementRequestType\\": "src/Pohoda/List/ListMovementRequestType",
"Pohoda\\List\\ListMovementType\\": "src/Pohoda/List/ListMovementType",
"Pohoda\\List\\ListNumericalSeries\\": "src/Pohoda/List/ListNumericalSeries",
"Pohoda\\List\\ListNumericalSeriesRequest\\": "src/Pohoda/List/ListNumericalSeriesRequest",
"Pohoda\\List\\ListNumericalSeriesRequestType\\": "src/Pohoda/List/ListNumericalSeriesRequestType",
"Pohoda\\List\\ListNumericalSeriesType\\": "src/Pohoda/List/ListNumericalSeriesType",
"Pohoda\\List\\ListNumericSeries\\": "src/Pohoda/List/ListNumericSeries",
"Pohoda\\List\\ListNumericSeriesRequest\\": "src/Pohoda/List/ListNumericSeriesRequest",
"Pohoda\\List\\ListNumericSeriesType\\": "src/Pohoda/List/ListNumericSeriesType",
"Pohoda\\List\\ListOffer\\": "src/Pohoda/List/ListOffer",
"Pohoda\\List\\ListOfferRequest\\": "src/Pohoda/List/ListOfferRequest",
"Pohoda\\List\\ListOfferRequestType\\": "src/Pohoda/List/ListOfferRequestType",
"Pohoda\\List\\ListOfferType\\": "src/Pohoda/List/ListOfferType",
"Pohoda\\List\\ListOrder\\": "src/Pohoda/List/ListOrder",
"Pohoda\\List\\ListOrderRequest\\": "src/Pohoda/List/ListOrderRequest",
"Pohoda\\List\\ListOrderRequestType\\": "src/Pohoda/List/ListOrderRequestType",
"Pohoda\\List\\ListOrderType\\": "src/Pohoda/List/ListOrderType",
"Pohoda\\List\\ListParameter\\": "src/Pohoda/List/ListParameter",
"Pohoda\\List\\ListParameterRequest\\": "src/Pohoda/List/ListParameterRequest",
"Pohoda\\List\\ListParameterRequestType\\": "src/Pohoda/List/ListParameterRequestType",
"Pohoda\\List\\ListParameterType\\": "src/Pohoda/List/ListParameterType",
"Pohoda\\List\\ListPayment\\": "src/Pohoda/List/ListPayment",
"Pohoda\\List\\ListPaymentRequest\\": "src/Pohoda/List/ListPaymentRequest",
"Pohoda\\List\\ListPaymentRequestType\\": "src/Pohoda/List/ListPaymentRequestType",
"Pohoda\\List\\ListPaymentType\\": "src/Pohoda/List/ListPaymentType",
"Pohoda\\List\\ListPrevodka\\": "src/Pohoda/List/ListPrevodka",
"Pohoda\\List\\ListPrevodkaRequest\\": "src/Pohoda/List/ListPrevodkaRequest",
"Pohoda\\List\\ListPrevodkaRequestType\\": "src/Pohoda/List/ListPrevodkaRequestType",
"Pohoda\\List\\ListPrevodkaType\\": "src/Pohoda/List/ListPrevodkaType",
"Pohoda\\List\\ListPrijemka\\": "src/Pohoda/List/ListPrijemka",
"Pohoda\\List\\ListPrijemkaRequest\\": "src/Pohoda/List/ListPrijemkaRequest",
"Pohoda\\List\\ListPrijemkaRequestType\\": "src/Pohoda/List/ListPrijemkaRequestType",
"Pohoda\\List\\ListPrijemkaType\\": "src/Pohoda/List/ListPrijemkaType",
"Pohoda\\List\\ListProdejka\\": "src/Pohoda/List/ListProdejka",
"Pohoda\\List\\ListProdejkaRequest\\": "src/Pohoda/List/ListProdejkaRequest",
"Pohoda\\List\\ListProdejkaRequestType\\": "src/Pohoda/List/ListProdejkaRequestType",
"Pohoda\\List\\ListProdejkaType\\": "src/Pohoda/List/ListProdejkaType",
"Pohoda\\List\\ListProductRequirement\\": "src/Pohoda/List/ListProductRequirement",
"Pohoda\\List\\ListProductRequirementRequest\\": "src/Pohoda/List/ListProductRequirementRequest",
"Pohoda\\List\\ListProductRequirementRequestType\\": "src/Pohoda/List/ListProductRequirementRequestType",
"Pohoda\\List\\ListProductRequirementType\\": "src/Pohoda/List/ListProductRequirementType",
"Pohoda\\List\\ListRecyclingContrib\\": "src/Pohoda/List/ListRecyclingContrib",
"Pohoda\\List\\ListRecyclingContribRequest\\": "src/Pohoda/List/ListRecyclingContribRequest",
"Pohoda\\List\\ListRecyclingContribRequestType\\": "src/Pohoda/List/ListRecyclingContribRequestType",
"Pohoda\\List\\ListRecyclingContribType\\": "src/Pohoda/List/ListRecyclingContribType",
"Pohoda\\List\\ListRegistrationNumber\\": "src/Pohoda/List/ListRegistrationNumber",
"Pohoda\\List\\ListRegistrationNumberRequest\\": "src/Pohoda/List/ListRegistrationNumberRequest",
"Pohoda\\List\\ListRegistrationNumberRequestType\\": "src/Pohoda/List/ListRegistrationNumberRequestType",
"Pohoda\\List\\ListRegistrationNumberType\\": "src/Pohoda/List/ListRegistrationNumberType",
"Pohoda\\List\\ListRequestAgendasType\\": "src/Pohoda/List/ListRequestAgendasType",
"Pohoda\\List\\ListRequestAgendasType\\AgendasAType\\": "src/Pohoda/List/ListRequestAgendasType/AgendasAType",
"Pohoda\\List\\ListRequestStoresType\\": "src/Pohoda/List/ListRequestStoresType",
"Pohoda\\List\\ListRequestStoresType\\StoresAType\\": "src/Pohoda/List/ListRequestStoresType/StoresAType",
"Pohoda\\List\\ListRequestType\\": "src/Pohoda/List/ListRequestType",
"Pohoda\\List\\ListRulesPairing\\": "src/Pohoda/List/ListRulesPairing",
"Pohoda\\List\\ListRulesPairingRequest\\": "src/Pohoda/List/ListRulesPairingRequest",
"Pohoda\\List\\ListRulesPairingRequestType\\": "src/Pohoda/List/ListRulesPairingRequestType",
"Pohoda\\List\\ListRulesPairingType\\": "src/Pohoda/List/ListRulesPairingType",
"Pohoda\\List\\ListSellingPrice\\": "src/Pohoda/List/ListSellingPrice",
"Pohoda\\List\\ListSellingPriceRequest\\": "src/Pohoda/List/ListSellingPriceRequest",
"Pohoda\\List\\ListSellingPriceType\\": "src/Pohoda/List/ListSellingPriceType",
"Pohoda\\List\\ListService\\": "src/Pohoda/List/ListService",
"Pohoda\\List\\ListServiceRequest\\": "src/Pohoda/List/ListServiceRequest",
"Pohoda\\List\\ListServiceRequestType\\": "src/Pohoda/List/ListServiceRequestType",
"Pohoda\\List\\ListServiceType\\": "src/Pohoda/List/ListServiceType",
"Pohoda\\List\\ListStorage\\": "src/Pohoda/List/ListStorage",
"Pohoda\\List\\ListStorageRequest\\": "src/Pohoda/List/ListStorageRequest",
"Pohoda\\List\\ListStorageType\\": "src/Pohoda/List/ListStorageType",
"Pohoda\\List\\ListStore\\": "src/Pohoda/List/ListStore",
"Pohoda\\List\\ListStoreRequest\\": "src/Pohoda/List/ListStoreRequest",
"Pohoda\\List\\ListStoreRequestType\\": "src/Pohoda/List/ListStoreRequestType",
"Pohoda\\List\\ListStoreType\\": "src/Pohoda/List/ListStoreType",
"Pohoda\\List\\ListSupplier\\": "src/Pohoda/List/ListSupplier",
"Pohoda\\List\\ListSupplierRequest\\": "src/Pohoda/List/ListSupplierRequest",
"Pohoda\\List\\ListSupplierRequestType\\": "src/Pohoda/List/ListSupplierRequestType",
"Pohoda\\List\\ListSupplierType\\": "src/Pohoda/List/ListSupplierType",
"Pohoda\\List\\ListUserCode\\": "src/Pohoda/List/ListUserCode",
"Pohoda\\List\\ListUserCodePack\\": "src/Pohoda/List/ListUserCodePack",
"Pohoda\\List\\ListUserCodePackType\\": "src/Pohoda/List/ListUserCodePackType",
"Pohoda\\List\\ListUserCodeRequest\\": "src/Pohoda/List/ListUserCodeRequest",
"Pohoda\\List\\ListUserCodeRequestType\\": "src/Pohoda/List/ListUserCodeRequestType",
"Pohoda\\List\\ListUserCodeResponse\\": "src/Pohoda/List/ListUserCodeResponse",
"Pohoda\\List\\ListUserCodeResponseType\\": "src/Pohoda/List/ListUserCodeResponseType",
"Pohoda\\List\\ListUserCodeType\\": "src/Pohoda/List/ListUserCodeType",
"Pohoda\\List\\ListVersionTypeTaxType\\": "src/Pohoda/List/ListVersionTypeTaxType",
"Pohoda\\List\\ListVoucher\\": "src/Pohoda/List/ListVoucher",
"Pohoda\\List\\ListVoucherRequest\\": "src/Pohoda/List/ListVoucherRequest",
"Pohoda\\List\\ListVoucherRequestType\\": "src/Pohoda/List/ListVoucherRequestType",
"Pohoda\\List\\ListVoucherType\\": "src/Pohoda/List/ListVoucherType",
"Pohoda\\List\\ListVydejka\\": "src/Pohoda/List/ListVydejka",
"Pohoda\\List\\ListVydejkaRequest\\": "src/Pohoda/List/ListVydejkaRequest",
"Pohoda\\List\\ListVydejkaRequestType\\": "src/Pohoda/List/ListVydejkaRequestType",
"Pohoda\\List\\ListVydejkaType\\": "src/Pohoda/List/ListVydejkaType",
"Pohoda\\List\\ListVyroba\\": "src/Pohoda/List/ListVyroba",
"Pohoda\\List\\ListVyrobaRequest\\": "src/Pohoda/List/ListVyrobaRequest",
"Pohoda\\List\\ListVyrobaRequestType\\": "src/Pohoda/List/ListVyrobaRequestType",
"Pohoda\\List\\ListVyrobaType\\": "src/Pohoda/List/ListVyrobaType",
"Pohoda\\List\\RequestAccountingFormOfPaymentType\\": "src/Pohoda/List/RequestAccountingFormOfPaymentType",
"Pohoda\\List\\RequestBalanceType\\": "src/Pohoda/List/RequestBalanceType",
"Pohoda\\List\\RequestCategoryType\\": "src/Pohoda/List/RequestCategoryType",
"Pohoda\\List\\RequestClassificationVATType\\": "src/Pohoda/List/RequestClassificationVATType",
"Pohoda\\List\\RequestEstablishmentType\\": "src/Pohoda/List/RequestEstablishmentType",
"Pohoda\\List\\RequestGDPRType\\": "src/Pohoda/List/RequestGDPRType",
"Pohoda\\List\\RequestIntParamType\\": "src/Pohoda/List/RequestIntParamType",
"Pohoda\\List\\RequestParameterType\\": "src/Pohoda/List/RequestParameterType",
"Pohoda\\List\\RequestrequestGlobalSettingsType\\": "src/Pohoda/List/RequestrequestGlobalSettingsType",
"Pohoda\\List\\RequestUserCodeType\\": "src/Pohoda/List/RequestUserCodeType",
"Pohoda\\List\\RestrictionDataStoreType\\": "src/Pohoda/List/RestrictionDataStoreType",
"Pohoda\\List\\RestrictionDataVyrobaType\\": "src/Pohoda/List/RestrictionDataVyrobaType",
"Pohoda\\List\\RestrictionDocParamType\\": "src/Pohoda/List/RestrictionDocParamType",
"Pohoda\\List\\SubStoragesType\\": "src/Pohoda/List/SubStoragesType",
"Pohoda\\List\\TaxDataResponse\\": "src/Pohoda/List/TaxDataResponse",
"Pohoda\\ListActivity\\": "src/Pohoda/ListActivity",
"Pohoda\\ListActivity\\ListActivity\\": "src/Pohoda/ListActivity/ListActivity",
"Pohoda\\ListActivity\\ListActivityRequest\\": "src/Pohoda/ListActivity/ListActivityRequest",
"Pohoda\\ListActivity\\ListActivityType\\": "src/Pohoda/ListActivity/ListActivityType",
"Pohoda\\ListActivity\\ListRequestActivityType\\": "src/Pohoda/ListActivity/ListRequestActivityType",
"Pohoda\\ListActivity\\RequestActivityType\\": "src/Pohoda/ListActivity/RequestActivityType",
"Pohoda\\ListAddBook\\": "src/Pohoda/ListAddBook",
"Pohoda\\ListAddBook\\ListAddressBook\\": "src/Pohoda/ListAddBook/ListAddressBook",
"Pohoda\\ListAddBook\\ListAddressBookRequest\\": "src/Pohoda/ListAddBook/ListAddressBookRequest",
"Pohoda\\ListAddBook\\ListAddressBookRequestType\\": "src/Pohoda/ListAddBook/ListAddressBookRequestType",
"Pohoda\\ListAddBook\\ListAddressBookType\\": "src/Pohoda/ListAddBook/ListAddressBookType",
"Pohoda\\ListCentre\\": "src/Pohoda/ListCentre",
"Pohoda\\ListCentre\\ListCentre\\": "src/Pohoda/ListCentre/ListCentre",
"Pohoda\\ListCentre\\ListCentreRequest\\": "src/Pohoda/ListCentre/ListCentreRequest",
"Pohoda\\ListCentre\\ListCentreType\\": "src/Pohoda/ListCentre/ListCentreType",
"Pohoda\\ListCentre\\ListRequestCentreType\\": "src/Pohoda/ListCentre/ListRequestCentreType",
"Pohoda\\ListCentre\\RequestCentreType\\": "src/Pohoda/ListCentre/RequestCentreType",
"Pohoda\\ListContract\\": "src/Pohoda/ListContract",
"Pohoda\\ListContract\\ListContract\\": "src/Pohoda/ListContract/ListContract",
"Pohoda\\ListContract\\ListContractRequest\\": "src/Pohoda/ListContract/ListContractRequest",
"Pohoda\\ListContract\\ListContractType\\": "src/Pohoda/ListContract/ListContractType",
"Pohoda\\ListContract\\ListRequestContractType\\": "src/Pohoda/ListContract/ListRequestContractType",
"Pohoda\\ListStock\\": "src/Pohoda/ListStock",
"Pohoda\\ListStock\\ListRequestStockType\\": "src/Pohoda/ListStock/ListRequestStockType",
"Pohoda\\ListStock\\ListStock\\": "src/Pohoda/ListStock/ListStock",
"Pohoda\\ListStock\\ListStockRequest\\": "src/Pohoda/ListStock/ListStockRequest",
"Pohoda\\ListStock\\ListStockType\\": "src/Pohoda/ListStock/ListStockType",
"Pohoda\\ListStock\\RestrictionDataType\\": "src/Pohoda/ListStock/RestrictionDataType",
"Pohoda\\Lock\\": "src/Pohoda/Lock",
"Pohoda\\Lock\\Lock\\": "src/Pohoda/Lock/Lock",
"Pohoda\\Lock\\LockResponse\\": "src/Pohoda/Lock/LockResponse",
"Pohoda\\Lock\\LockResponseType\\": "src/Pohoda/Lock/LockResponseType",
"Pohoda\\Lock\\LockSettingsType\\": "src/Pohoda/Lock/LockSettingsType",
"Pohoda\\Lock\\LockType\\": "src/Pohoda/Lock/LockType",
"Pohoda\\MKasa\\": "src/Pohoda/MKasa",
"Pohoda\\MKasa\\ChangeOfModeInCalendarYearType\\": "src/Pohoda/MKasa/ChangeOfModeInCalendarYearType",
"Pohoda\\MKasa\\CompanyInfoType\\": "src/Pohoda/MKasa/CompanyInfoType",
"Pohoda\\MKasa\\ConfigurationType\\": "src/Pohoda/MKasa/ConfigurationType",
"Pohoda\\MKasa\\ConfigurationType\\GlobalSettingsAType\\": "src/Pohoda/MKasa/ConfigurationType/GlobalSettingsAType",
"Pohoda\\MKasa\\ExportRequestType\\": "src/Pohoda/MKasa/ExportRequestType",
"Pohoda\\MKasa\\ImportRequestType\\": "src/Pohoda/MKasa/ImportRequestType",
"Pohoda\\MKasa\\ImportResponseType\\": "src/Pohoda/MKasa/ImportResponseType",
"Pohoda\\MKasa\\KasaEstablishmentType\\": "src/Pohoda/MKasa/KasaEstablishmentType",
"Pohoda\\MKasa\\KasaInfoType\\": "src/Pohoda/MKasa/KasaInfoType",
"Pohoda\\MKasa\\MKasaRequest\\": "src/Pohoda/MKasa/MKasaRequest",
"Pohoda\\MKasa\\MKasaRequestType\\": "src/Pohoda/MKasa/MKasaRequestType",
"Pohoda\\MKasa\\MKasaResponse\\": "src/Pohoda/MKasa/MKasaResponse",
"Pohoda\\MKasa\\MKasaResponseType\\": "src/Pohoda/MKasa/MKasaResponseType",
"Pohoda\\MKasa\\ModeCalendarType\\": "src/Pohoda/MKasa/ModeCalendarType",
"Pohoda\\MKasa\\NonVatPayerWholePeriodType\\": "src/Pohoda/MKasa/NonVatPayerWholePeriodType",
"Pohoda\\MKasa\\PohodaRestrictionType\\": "src/Pohoda/MKasa/PohodaRestrictionType",
"Pohoda\\MKasa\\VatPayerType\\": "src/Pohoda/MKasa/VatPayerType",
"Pohoda\\MKasa\\VatPayerWholePeriodType\\": "src/Pohoda/MKasa/VatPayerWholePeriodType",
"Pohoda\\Movement\\": "src/Pohoda/Movement",
"Pohoda\\Movement\\Movement\\": "src/Pohoda/Movement/Movement",
"Pohoda\\Movement\\MovementHeaderType\\": "src/Pohoda/Movement/MovementHeaderType",
"Pohoda\\Movement\\MovementType\\": "src/Pohoda/Movement/MovementType",
"Pohoda\\MovementDetailType\\": "src/Pohoda/MovementDetailType",
"Pohoda\\NumericalSeries\\": "src/Pohoda/NumericalSeries",
"Pohoda\\NumericalSeries\\NumericalSeries\\": "src/Pohoda/NumericalSeries/NumericalSeries",
"Pohoda\\NumericalSeries\\NumericalSeriesHeaderType\\": "src/Pohoda/NumericalSeries/NumericalSeriesHeaderType",
"Pohoda\\NumericalSeries\\NumericalSeriesResponse\\": "src/Pohoda/NumericalSeries/NumericalSeriesResponse",
"Pohoda\\NumericalSeries\\NumericalSeriesResponseType\\": "src/Pohoda/NumericalSeries/NumericalSeriesResponseType",
"Pohoda\\NumericalSeries\\NumericalSeriesType\\": "src/Pohoda/NumericalSeries/NumericalSeriesType",
"Pohoda\\NumericalSeries\\PeriodAccountUnitType\\": "src/Pohoda/NumericalSeries/PeriodAccountUnitType",
"Pohoda\\Offer\\": "src/Pohoda/Offer",
"Pohoda\\Offer\\Offer\\": "src/Pohoda/Offer/Offer",
"Pohoda\\Offer\\OfferDetailType\\": "src/Pohoda/Offer/OfferDetailType",
"Pohoda\\Offer\\OfferHeaderType\\": "src/Pohoda/Offer/OfferHeaderType",
"Pohoda\\Offer\\OfferItemType\\": "src/Pohoda/Offer/OfferItemType",
"Pohoda\\Offer\\OfferResponse\\": "src/Pohoda/Offer/OfferResponse",
"Pohoda\\Offer\\OfferResponseType\\": "src/Pohoda/Offer/OfferResponseType",
"Pohoda\\Offer\\OfferSummaryType\\": "src/Pohoda/Offer/OfferSummaryType",
"Pohoda\\Offer\\OfferType\\": "src/Pohoda/Offer/OfferType",
"Pohoda\\Order\\": "src/Pohoda/Order",
"Pohoda\\Order\\ActionTypeType\\": "src/Pohoda/Order/ActionTypeType",
"Pohoda\\Order\\Order\\": "src/Pohoda/Order/Order",
"Pohoda\\Order\\OrderDetailType\\": "src/Pohoda/Order/OrderDetailType",
"Pohoda\\Order\\OrderHeaderType\\": "src/Pohoda/Order/OrderHeaderType",
"Pohoda\\Order\\OrderItemType\\": "src/Pohoda/Order/OrderItemType",
"Pohoda\\Order\\OrderResponse\\": "src/Pohoda/Order/OrderResponse",
"Pohoda\\Order\\OrderResponseType\\": "src/Pohoda/Order/OrderResponseType",
"Pohoda\\Order\\OrderSummaryType\\": "src/Pohoda/Order/OrderSummaryType",
"Pohoda\\Order\\OrderType\\": "src/Pohoda/Order/OrderType",
"Pohoda\\Parameter\\": "src/Pohoda/Parameter",
"Pohoda\\Parameter\\CtrlDefType\\": "src/Pohoda/Parameter/CtrlDefType",
"Pohoda\\Parameter\\FormItemListType\\": "src/Pohoda/Parameter/FormItemListType",
"Pohoda\\Parameter\\Parameter\\": "src/Pohoda/Parameter/Parameter",
"Pohoda\\Parameter\\ParameterDefType\\": "src/Pohoda/Parameter/ParameterDefType",
"Pohoda\\Parameter\\ParameterItemListType\\": "src/Pohoda/Parameter/ParameterItemListType",
"Pohoda\\Parameter\\ParameterItemResponse\\": "src/Pohoda/Parameter/ParameterItemResponse",
"Pohoda\\Parameter\\ParameterItemResponseType\\": "src/Pohoda/Parameter/ParameterItemResponseType",
"Pohoda\\Parameter\\ParameterType\\": "src/Pohoda/Parameter/ParameterType",
"Pohoda\\Parameter\\UserAgendaDefType\\": "src/Pohoda/Parameter/UserAgendaDefType",
"Pohoda\\Parameter\\UserCodePartType\\": "src/Pohoda/Parameter/UserCodePartType",
"Pohoda\\Payment\\": "src/Pohoda/Payment",
"Pohoda\\Payment\\CashDefaultType\\": "src/Pohoda/Payment/CashDefaultType",
"Pohoda\\Payment\\ForeignCurrencyType\\": "src/Pohoda/Payment/ForeignCurrencyType",
"Pohoda\\Payment\\Payment\\": "src/Pohoda/Payment/Payment",
"Pohoda\\Payment\\PaymentHeaderType\\": "src/Pohoda/Payment/PaymentHeaderType",
"Pohoda\\Payment\\PaymentResponse\\": "src/Pohoda/Payment/PaymentResponse",
"Pohoda\\Payment\\PaymentResponseType\\": "src/Pohoda/Payment/PaymentResponseType",
"Pohoda\\Payment\\PaymentTypeRootType\\": "src/Pohoda/Payment/PaymentTypeRootType",
"Pohoda\\Payment\\TicketType\\": "src/Pohoda/Payment/TicketType",
"Pohoda\\Prevodka\\": "src/Pohoda/Prevodka",
"Pohoda\\Prevodka\\Prevodka\\": "src/Pohoda/Prevodka/Prevodka",
"Pohoda\\Prevodka\\PrevodkaDetailType\\": "src/Pohoda/Prevodka/PrevodkaDetailType",
"Pohoda\\Prevodka\\PrevodkaHeaderType\\": "src/Pohoda/Prevodka/PrevodkaHeaderType",
"Pohoda\\Prevodka\\PrevodkaItemType\\": "src/Pohoda/Prevodka/PrevodkaItemType",
"Pohoda\\Prevodka\\PrevodkaResponse\\": "src/Pohoda/Prevodka/PrevodkaResponse",
"Pohoda\\Prevodka\\PrevodkaResponseType\\": "src/Pohoda/Prevodka/PrevodkaResponseType",
"Pohoda\\Prevodka\\PrevodkaType\\": "src/Pohoda/Prevodka/PrevodkaType",
"Pohoda\\Prijemka\\": "src/Pohoda/Prijemka",
"Pohoda\\Prijemka\\Prijemka\\": "src/Pohoda/Prijemka/Prijemka",
"Pohoda\\Prijemka\\PrijemkaAccessoryChargesItemType\\": "src/Pohoda/Prijemka/PrijemkaAccessoryChargesItemType",
"Pohoda\\Prijemka\\PrijemkaDetailType\\": "src/Pohoda/Prijemka/PrijemkaDetailType",
"Pohoda\\Prijemka\\PrijemkaHeaderType\\": "src/Pohoda/Prijemka/PrijemkaHeaderType",
"Pohoda\\Prijemka\\PrijemkaItemType\\": "src/Pohoda/Prijemka/PrijemkaItemType",
"Pohoda\\Prijemka\\PrijemkaResponse\\": "src/Pohoda/Prijemka/PrijemkaResponse",
"Pohoda\\Prijemka\\PrijemkaResponseType\\": "src/Pohoda/Prijemka/PrijemkaResponseType",
"Pohoda\\Prijemka\\PrijemkaSummaryType\\": "src/Pohoda/Prijemka/PrijemkaSummaryType",
"Pohoda\\Prijemka\\PrijemkaType\\": "src/Pohoda/Prijemka/PrijemkaType",
"Pohoda\\Print\\": "src/Pohoda/Print",
"Pohoda\\Print\\AgendaPrintType\\": "src/Pohoda/Print/AgendaPrintType",
"Pohoda\\Print\\CheckboxType\\": "src/Pohoda/Print/CheckboxType",
"Pohoda\\Print\\ComboboxType\\": "src/Pohoda/Print/ComboboxType",
"Pohoda\\Print\\DateType\\": "src/Pohoda/Print/DateType",
"Pohoda\\Print\\IsdocType\\": "src/Pohoda/Print/IsdocType",
"Pohoda\\Print\\NumberType\\": "src/Pohoda/Print/NumberType",
"Pohoda\\Print\\ParametersType\\": "src/Pohoda/Print/ParametersType",
"Pohoda\\Print\\PDFType\\": "src/Pohoda/Print/PDFType",
"Pohoda\\Print\\PrinterSettingsType\\": "src/Pohoda/Print/PrinterSettingsType",
"Pohoda\\Print\\PrintResponse\\": "src/Pohoda/Print/PrintResponse",
"Pohoda\\Print\\PrintResponseType\\": "src/Pohoda/Print/PrintResponseType",
"Pohoda\\Print\\PrintType\\": "src/Pohoda/Print/PrintType",
"Pohoda\\Print\\PrintXsd\\": "src/Pohoda/Print/PrintXsd",
"Pohoda\\Print\\RadioButtonType\\": "src/Pohoda/Print/RadioButtonType",
"Pohoda\\Print\\ReportType\\": "src/Pohoda/Print/ReportType",
"Pohoda\\Print\\TextType\\": "src/Pohoda/Print/TextType",
"Pohoda\\Prodejka\\": "src/Pohoda/Prodejka",
"Pohoda\\Prodejka\\EKasaItemType\\": "src/Pohoda/Prodejka/EKasaItemType",
"Pohoda\\Prodejka\\EKasaType\\": "src/Pohoda/Prodejka/EKasaType",
"Pohoda\\Prodejka\\PaymentAdvancedType\\": "src/Pohoda/Prodejka/PaymentAdvancedType",
"Pohoda\\Prodejka\\PaymentItemType\\": "src/Pohoda/Prodejka/PaymentItemType",
"Pohoda\\Prodejka\\PaymentsType\\": "src/Pohoda/Prodejka/PaymentsType",
"Pohoda\\Prodejka\\Prodejka\\": "src/Pohoda/Prodejka/Prodejka",
"Pohoda\\Prodejka\\ProdejkaDetailType\\": "src/Pohoda/Prodejka/ProdejkaDetailType",
"Pohoda\\Prodejka\\ProdejkaHeaderType\\": "src/Pohoda/Prodejka/ProdejkaHeaderType",
"Pohoda\\Prodejka\\ProdejkaItemType\\": "src/Pohoda/Prodejka/ProdejkaItemType",
"Pohoda\\Prodejka\\ProdejkaResponse\\": "src/Pohoda/Prodejka/ProdejkaResponse",
"Pohoda\\Prodejka\\ProdejkaResponseType\\": "src/Pohoda/Prodejka/ProdejkaResponseType",
"Pohoda\\Prodejka\\ProdejkaSummaryType\\": "src/Pohoda/Prodejka/ProdejkaSummaryType",
"Pohoda\\Prodejka\\ProdejkaType\\": "src/Pohoda/Prodejka/ProdejkaType",
"Pohoda\\ProductRequirement\\": "src/Pohoda/ProductRequirement",
"Pohoda\\ProductRequirement\\ProductRequirement\\": "src/Pohoda/ProductRequirement/ProductRequirement",
"Pohoda\\ProductRequirement\\ProductRequirementDetailType\\": "src/Pohoda/ProductRequirement/ProductRequirementDetailType",
"Pohoda\\ProductRequirement\\ProductRequirementHeaderType\\": "src/Pohoda/ProductRequirement/ProductRequirementHeaderType",
"Pohoda\\ProductRequirement\\ProductRequirementItemType\\": "src/Pohoda/ProductRequirement/ProductRequirementItemType",
"Pohoda\\ProductRequirement\\ProductRequirementResponse\\": "src/Pohoda/ProductRequirement/ProductRequirementResponse",
"Pohoda\\ProductRequirement\\ProductRequirementResponseType\\": "src/Pohoda/ProductRequirement/ProductRequirementResponseType",
"Pohoda\\ProductRequirement\\ProductRequirementType\\": "src/Pohoda/ProductRequirement/ProductRequirementType",
"Pohoda\\RecyclingContrib\\": "src/Pohoda/RecyclingContrib",
"Pohoda\\RecyclingContrib\\RecyclingContrib\\": "src/Pohoda/RecyclingContrib/RecyclingContrib",
"Pohoda\\RecyclingContrib\\RecyclingContribHeaderType\\": "src/Pohoda/RecyclingContrib/RecyclingContribHeaderType",
"Pohoda\\RecyclingContrib\\RecyclingContribType\\": "src/Pohoda/RecyclingContrib/RecyclingContribType",
"Pohoda\\RegistrationNumber\\": "src/Pohoda/RegistrationNumber",
"Pohoda\\RegistrationNumber\\RegistrationNumber\\": "src/Pohoda/RegistrationNumber/RegistrationNumber",
"Pohoda\\RegistrationNumber\\RegistrationNumberHeaderType\\": "src/Pohoda/RegistrationNumber/RegistrationNumberHeaderType",
"Pohoda\\RegistrationNumber\\RegistrationNumberType\\": "src/Pohoda/RegistrationNumber/RegistrationNumberType",
"Pohoda\\Response\\": "src/Pohoda/Response",
"Pohoda\\Response\\ResponsePack\\": "src/Pohoda/Response/ResponsePack",
"Pohoda\\Response\\ResponsePackItemType\\": "src/Pohoda/Response/ResponsePackItemType",
"Pohoda\\Response\\ResponsePackType\\": "src/Pohoda/Response/ResponsePackType",
"Pohoda\\RulesPairing\\": "src/Pohoda/RulesPairing",
"Pohoda\\RulesPairing\\DocumentsType\\": "src/Pohoda/RulesPairing/DocumentsType",
"Pohoda\\RulesPairing\\PairingsType\\": "src/Pohoda/RulesPairing/PairingsType",
"Pohoda\\RulesPairing\\RulesPairing\\": "src/Pohoda/RulesPairing/RulesPairing",
"Pohoda\\RulesPairing\\RulesPairingDetailType\\": "src/Pohoda/RulesPairing/RulesPairingDetailType",
"Pohoda\\RulesPairing\\RulesPairingHeaderType\\": "src/Pohoda/RulesPairing/RulesPairingHeaderType",
"Pohoda\\RulesPairing\\RulesPairingItemType\\": "src/Pohoda/RulesPairing/RulesPairingItemType",
"Pohoda\\RulesPairing\\RulesPairingResponse\\": "src/Pohoda/RulesPairing/RulesPairingResponse",
"Pohoda\\RulesPairing\\RulesPairingResponseType\\": "src/Pohoda/RulesPairing/RulesPairingResponseType",
"Pohoda\\RulesPairing\\RulesPairingType\\": "src/Pohoda/RulesPairing/RulesPairingType",
"Pohoda\\SendEET\\": "src/Pohoda/SendEET",
"Pohoda\\SendEET\\RecordSendEETType\\": "src/Pohoda/SendEET/RecordSendEETType",
"Pohoda\\SendEET\\SendEET\\": "src/Pohoda/SendEET/SendEET",
"Pohoda\\SendEET\\SendEETResponse\\": "src/Pohoda/SendEET/SendEETResponse",
"Pohoda\\SendEET\\SendEETResponseType\\": "src/Pohoda/SendEET/SendEETResponseType",
"Pohoda\\SendEET\\SendEETType\\": "src/Pohoda/SendEET/SendEETType",
"Pohoda\\Service\\": "src/Pohoda/Service",
"Pohoda\\Service\\ItemType\\": "src/Pohoda/Service/ItemType",
"Pohoda\\Service\\Service\\": "src/Pohoda/Service/Service",
"Pohoda\\Service\\ServiceAddressType\\": "src/Pohoda/Service/ServiceAddressType",
"Pohoda\\Service\\ServiceHeaderType\\": "src/Pohoda/Service/ServiceHeaderType",
"Pohoda\\Service\\ServiceItemsType\\": "src/Pohoda/Service/ServiceItemsType",
"Pohoda\\Service\\ServiceResponse\\": "src/Pohoda/Service/ServiceResponse",
"Pohoda\\Service\\ServiceResponseType\\": "src/Pohoda/Service/ServiceResponseType",
"Pohoda\\Service\\ServiceStatesType\\": "src/Pohoda/Service/ServiceStatesType",
"Pohoda\\Service\\ServiceSubjectType\\": "src/Pohoda/Service/ServiceSubjectType",
"Pohoda\\Service\\ServiceSummaryType\\": "src/Pohoda/Service/ServiceSummaryType",
"Pohoda\\Service\\ServiceType\\": "src/Pohoda/Service/ServiceType",
"Pohoda\\Service\\StateType\\": "src/Pohoda/Service/StateType",
"Pohoda\\Service\\SubjectType\\": "src/Pohoda/Service/SubjectType",
"Pohoda\\Stock\\": "src/Pohoda/Stock",
"Pohoda\\Stock\\ActionTypeType\\": "src/Pohoda/Stock/ActionTypeType",
"Pohoda\\Stock\\AlternativeStocksType\\": "src/Pohoda/Stock/AlternativeStocksType",
"Pohoda\\Stock\\AttachItemType\\": "src/Pohoda/Stock/AttachItemType",
"Pohoda\\Stock\\CategoriesType\\": "src/Pohoda/Stock/CategoriesType",
"Pohoda\\Stock\\EKasaItemType\\": "src/Pohoda/Stock/EKasaItemType",
"Pohoda\\Stock\\InstrastatType\\": "src/Pohoda/Stock/InstrastatType",
"Pohoda\\Stock\\IntParametersType\\": "src/Pohoda/Stock/IntParametersType",
"Pohoda\\Stock\\IntParameterType\\": "src/Pohoda/Stock/IntParameterType",
"Pohoda\\Stock\\IntParameterValuesType\\": "src/Pohoda/Stock/IntParameterValuesType",
"Pohoda\\Stock\\IntParameterValueType\\": "src/Pohoda/Stock/IntParameterValueType",
"Pohoda\\Stock\\PicturesType\\": "src/Pohoda/Stock/PicturesType",
"Pohoda\\Stock\\PictureType\\": "src/Pohoda/Stock/PictureType",
"Pohoda\\Stock\\RecyclingContribType\\": "src/Pohoda/Stock/RecyclingContribType",
"Pohoda\\Stock\\RelatedFilesType\\": "src/Pohoda/Stock/RelatedFilesType",
"Pohoda\\Stock\\RelatedFileType\\": "src/Pohoda/Stock/RelatedFileType",
"Pohoda\\Stock\\RelatedLinksType\\": "src/Pohoda/Stock/RelatedLinksType",
"Pohoda\\Stock\\RelatedLinkType\\": "src/Pohoda/Stock/RelatedLinkType",
"Pohoda\\Stock\\RelatedStocksType\\": "src/Pohoda/Stock/RelatedStocksType",
"Pohoda\\Stock\\SerialNumberItemType\\": "src/Pohoda/Stock/SerialNumberItemType",
"Pohoda\\Stock\\Stock\\": "src/Pohoda/Stock/Stock",
"Pohoda\\Stock\\StockAttachType\\": "src/Pohoda/Stock/StockAttachType",
"Pohoda\\Stock\\StockDetailType\\": "src/Pohoda/Stock/StockDetailType",
"Pohoda\\Stock\\StockHeaderType\\": "src/Pohoda/Stock/StockHeaderType",
"Pohoda\\Stock\\StockHeaderType\\PurchasingPriceAType\\": "src/Pohoda/Stock/StockHeaderType/PurchasingPriceAType",
"Pohoda\\Stock\\StockHeaderType\\SellingPriceAType\\": "src/Pohoda/Stock/StockHeaderType/SellingPriceAType",
"Pohoda\\Stock\\StockInfoType\\": "src/Pohoda/Stock/StockInfoType",
"Pohoda\\Stock\\StockItemResponse\\": "src/Pohoda/Stock/StockItemResponse",
"Pohoda\\Stock\\StockItemResponseType\\": "src/Pohoda/Stock/StockItemResponseType",
"Pohoda\\Stock\\StockItemType\\": "src/Pohoda/Stock/StockItemType",
"Pohoda\\Stock\\StockPriceItemType\\": "src/Pohoda/Stock/StockPriceItemType",
"Pohoda\\Stock\\StockSerialNumberType\\": "src/Pohoda/Stock/StockSerialNumberType",
"Pohoda\\Stock\\StockType\\": "src/Pohoda/Stock/StockType",
"Pohoda\\Storage\\": "src/Pohoda/Storage",
"Pohoda\\Storage\\ItemStorageType\\": "src/Pohoda/Storage/ItemStorageType",
"Pohoda\\Storage\\Storage\\": "src/Pohoda/Storage/Storage",
"Pohoda\\Storage\\StorageResponse\\": "src/Pohoda/Storage/StorageResponse",
"Pohoda\\Storage\\StorageResponseType\\": "src/Pohoda/Storage/StorageResponseType",
"Pohoda\\Storage\\StorageType\\": "src/Pohoda/Storage/StorageType",
"Pohoda\\Storage\\SubStoragesType\\": "src/Pohoda/Storage/SubStoragesType",
"Pohoda\\Store\\": "src/Pohoda/Store",
"Pohoda\\Store\\AccStockAType\\": "src/Pohoda/Store/AccStockAType",
"Pohoda\\Store\\PLUtypeType\\": "src/Pohoda/Store/PLUtypeType",
"Pohoda\\Store\\Store\\": "src/Pohoda/Store/Store",
"Pohoda\\Store\\StoreResponse\\": "src/Pohoda/Store/StoreResponse",
"Pohoda\\Store\\StoreResponseType\\": "src/Pohoda/Store/StoreResponseType",
"Pohoda\\Store\\StoreType\\": "src/Pohoda/Store/StoreType",
"Pohoda\\Supplier\\": "src/Pohoda/Supplier",
"Pohoda\\Supplier\\Supplier\\": "src/Pohoda/Supplier/Supplier",
"Pohoda\\Supplier\\SupplierItemType\\": "src/Pohoda/Supplier/SupplierItemType",
"Pohoda\\Supplier\\SupplierResponse\\": "src/Pohoda/Supplier/SupplierResponse",
"Pohoda\\Supplier\\SupplierResponseType\\": "src/Pohoda/Supplier/SupplierResponseType",
"Pohoda\\Supplier\\SuppliersType\\": "src/Pohoda/Supplier/SuppliersType",
"Pohoda\\Supplier\\SupplierType\\": "src/Pohoda/Supplier/SupplierType",
"Pohoda\\TaxDocumentType\\": "src/Pohoda/TaxDocumentType",
"Pohoda\\Type\\": "src/Pohoda/Type",
"Pohoda\\Type\\AccountingType\\": "src/Pohoda/Type/AccountingType",
"Pohoda\\Type\\AccountType\\": "src/Pohoda/Type/AccountType",
"Pohoda\\Type\\ActionTypeItemAddDeleteType\\": "src/Pohoda/Type/ActionTypeItemAddDeleteType",
"Pohoda\\Type\\ActionTypeItemType\\": "src/Pohoda/Type/ActionTypeItemType",
"Pohoda\\Type\\ActionTypeStockItemType\\": "src/Pohoda/Type/ActionTypeStockItemType",
"Pohoda\\Type\\AddressInternetType\\": "src/Pohoda/Type/AddressInternetType",
"Pohoda\\Type\\AddressType\\": "src/Pohoda/Type/AddressType",
"Pohoda\\Type\\CancelDocumentType\\": "src/Pohoda/Type/CancelDocumentType",
"Pohoda\\Type\\CarrierType\\": "src/Pohoda/Type/CarrierType",
"Pohoda\\Type\\ClassificationVATType\\": "src/Pohoda/Type/ClassificationVATType",
"Pohoda\\Type\\CompanyType\\": "src/Pohoda/Type/CompanyType",
"Pohoda\\Type\\CorrectiveDocumentType\\": "src/Pohoda/Type/CorrectiveDocumentType",
"Pohoda\\Type\\CurrencyVATType\\": "src/Pohoda/Type/CurrencyVATType",
"Pohoda\\Type\\DetailEETType\\": "src/Pohoda/Type/DetailEETType",
"Pohoda\\Type\\EETType\\": "src/Pohoda/Type/EETType",
"Pohoda\\Type\\EstablishmentType\\": "src/Pohoda/Type/EstablishmentType",
"Pohoda\\Type\\ExtIdType\\": "src/Pohoda/Type/ExtIdType",
"Pohoda\\Type\\LabelsType\\": "src/Pohoda/Type/LabelsType",
"Pohoda\\Type\\LabelType\\": "src/Pohoda/Type/LabelType",
"Pohoda\\Type\\LinkedDocumentType\\": "src/Pohoda/Type/LinkedDocumentType",
"Pohoda\\Type\\LinkElemetType\\": "src/Pohoda/Type/LinkElemetType",
"Pohoda\\Type\\LinkItemType\\": "src/Pohoda/Type/LinkItemType",
"Pohoda\\Type\\LinksType\\": "src/Pohoda/Type/LinksType",
"Pohoda\\Type\\LinkToStockType\\": "src/Pohoda/Type/LinkToStockType",
"Pohoda\\Type\\LiquidationItemType\\": "src/Pohoda/Type/LiquidationItemType",
"Pohoda\\Type\\LiquidationsType\\": "src/Pohoda/Type/LiquidationsType",
"Pohoda\\Type\\LiquidationType\\": "src/Pohoda/Type/LiquidationType",
"Pohoda\\Type\\ManualLinkElementType\\": "src/Pohoda/Type/ManualLinkElementType",
"Pohoda\\Type\\MOSStypeType\\": "src/Pohoda/Type/MOSStypeType",
"Pohoda\\Type\\MyAddressType\\": "src/Pohoda/Type/MyAddressType",
"Pohoda\\Type\\NumberADType\\": "src/Pohoda/Type/NumberADType",
"Pohoda\\Type\\NumberADType\\NumberRequestedAType\\": "src/Pohoda/Type/NumberADType/NumberRequestedAType",
"Pohoda\\Type\\NumberType\\": "src/Pohoda/Type/NumberType",
"Pohoda\\Type\\NumberType\\NumberRequestedAType\\": "src/Pohoda/Type/NumberType/NumberRequestedAType",
"Pohoda\\Type\\NumberTypeContractType\\": "src/Pohoda/Type/NumberTypeContractType",
"Pohoda\\Type\\NumberTypeContractType\\NumberRequestedAType\\": "src/Pohoda/Type/NumberTypeContractType/NumberRequestedAType",
"Pohoda\\Type\\OrderStockItemType\\": "src/Pohoda/Type/OrderStockItemType",
"Pohoda\\Type\\ParameterDocType\\": "src/Pohoda/Type/ParameterDocType",
"Pohoda\\Type\\ParametersType\\": "src/Pohoda/Type/ParametersType",
"Pohoda\\Type\\PaymentType\\": "src/Pohoda/Type/PaymentType",
"Pohoda\\Type\\PriceType\\": "src/Pohoda/Type/PriceType",
"Pohoda\\Type\\RectangleType\\": "src/Pohoda/Type/RectangleType",
"Pohoda\\Type\\RecyclingContribType\\": "src/Pohoda/Type/RecyclingContribType",
"Pohoda\\Type\\RefAddressType\\": "src/Pohoda/Type/RefAddressType",
"Pohoda\\Type\\RefSrvDeliveryType\\": "src/Pohoda/Type/RefSrvDeliveryType",
"Pohoda\\Type\\RefType\\": "src/Pohoda/Type/RefType",
"Pohoda\\Type\\RefTypeLongType\\": "src/Pohoda/Type/RefTypeLongType",
"Pohoda\\Type\\RefTypeRegVATinEUType\\": "src/Pohoda/Type/RefTypeRegVATinEUType",
"Pohoda\\Type\\RefTypeStorageType\\": "src/Pohoda/Type/RefTypeStorageType",
"Pohoda\\Type\\RefTypeSupplierAddressType\\": "src/Pohoda/Type/RefTypeSupplierAddressType",
"Pohoda\\Type\\ResourcesMOSStypeType\\": "src/Pohoda/Type/ResourcesMOSStypeType",
"Pohoda\\Type\\ResponsiblePersonType\\": "src/Pohoda/Type/ResponsiblePersonType",
"Pohoda\\Type\\RoundingItemType\\": "src/Pohoda/Type/RoundingItemType",
"Pohoda\\Type\\SettingsSourceDocumentItemType\\": "src/Pohoda/Type/SettingsSourceDocumentItemType",
"Pohoda\\Type\\SettingsSourceDocumentOrderItemType\\": "src/Pohoda/Type/SettingsSourceDocumentOrderItemType",
"Pohoda\\Type\\SettingsSourceDocumentType\\": "src/Pohoda/Type/SettingsSourceDocumentType",
"Pohoda\\Type\\ShipToAddressType\\": "src/Pohoda/Type/ShipToAddressType",
"Pohoda\\Type\\SourceDocumentItemType\\": "src/Pohoda/Type/SourceDocumentItemType",
"Pohoda\\Type\\SourceDocumentType\\": "src/Pohoda/Type/SourceDocumentType",
"Pohoda\\Type\\StockItemMovementType\\": "src/Pohoda/Type/StockItemMovementType",
"Pohoda\\Type\\StockItemMovementType\\StockItemAType\\": "src/Pohoda/Type/StockItemMovementType/StockItemAType",
"Pohoda\\Type\\StockItemRegNumberType\\": "src/Pohoda/Type/StockItemRegNumberType",
"Pohoda\\Type\\StockItemRegNumberType\\StockItemAType\\": "src/Pohoda/Type/StockItemRegNumberType/StockItemAType",
"Pohoda\\Type\\StockItemType\\": "src/Pohoda/Type/StockItemType",
"Pohoda\\Type\\StockPriceType\\": "src/Pohoda/Type/StockPriceType",
"Pohoda\\Type\\StockRefType\\": "src/Pohoda/Type/StockRefType",
"Pohoda\\Type\\TypeCurrencyForeignItem2Type\\": "src/Pohoda/Type/TypeCurrencyForeignItem2Type",
"Pohoda\\Type\\TypeCurrencyForeignItemType\\": "src/Pohoda/Type/TypeCurrencyForeignItemType",
"Pohoda\\Type\\TypeCurrencyForeignType\\": "src/Pohoda/Type/TypeCurrencyForeignType",
"Pohoda\\Type\\TypeCurrencyHomeItem2Type\\": "src/Pohoda/Type/TypeCurrencyHomeItem2Type",
"Pohoda\\Type\\TypeCurrencyHomeItemRoundingType\\": "src/Pohoda/Type/TypeCurrencyHomeItemRoundingType",
"Pohoda\\Type\\TypeCurrencyHomeItemType\\": "src/Pohoda/Type/TypeCurrencyHomeItemType",
"Pohoda\\Type\\TypeCurrencyHomeType\\": "src/Pohoda/Type/TypeCurrencyHomeType",
"Pohoda\\Type\\TypeRoundType\\": "src/Pohoda/Type/TypeRoundType",
"Pohoda\\Type\\TypeValidateType\\": "src/Pohoda/Type/TypeValidateType",
"Pohoda\\Type\\VatRateType\\": "src/Pohoda/Type/VatRateType",
"Pohoda\\Voucher\\": "src/Pohoda/Voucher",
"Pohoda\\Voucher\\LiquidationItemType\\": "src/Pohoda/Voucher/LiquidationItemType",
"Pohoda\\Voucher\\LiquidationType\\": "src/Pohoda/Voucher/LiquidationType",
"Pohoda\\Voucher\\SettingsLiquidationType\\": "src/Pohoda/Voucher/SettingsLiquidationType",
"Pohoda\\Voucher\\Voucher\\": "src/Pohoda/Voucher/Voucher",
"Pohoda\\Voucher\\VoucherDetailType\\": "src/Pohoda/Voucher/VoucherDetailType",
"Pohoda\\Voucher\\VoucherHeaderType\\": "src/Pohoda/Voucher/VoucherHeaderType",
"Pohoda\\Voucher\\VoucherItemType\\": "src/Pohoda/Voucher/VoucherItemType",
"Pohoda\\Voucher\\VoucherliquidationItemType\\": "src/Pohoda/Voucher/VoucherliquidationItemType",
"Pohoda\\Voucher\\VoucherResponse\\": "src/Pohoda/Voucher/VoucherResponse",
"Pohoda\\Voucher\\VoucherResponseType\\": "src/Pohoda/Voucher/VoucherResponseType",
"Pohoda\\Voucher\\VoucherSummaryType\\": "src/Pohoda/Voucher/VoucherSummaryType",
"Pohoda\\Voucher\\VoucherType\\": "src/Pohoda/Voucher/VoucherType",
"Pohoda\\Vydejka\\": "src/Pohoda/Vydejka",
"Pohoda\\Vydejka\\Vydejka\\": "src/Pohoda/Vydejka/Vydejka",
"Pohoda\\Vydejka\\VydejkaDetailType\\": "src/Pohoda/Vydejka/VydejkaDetailType",
"Pohoda\\Vydejka\\VydejkaHeaderType\\": "src/Pohoda/Vydejka/VydejkaHeaderType",
"Pohoda\\Vydejka\\VydejkaItemType\\": "src/Pohoda/Vydejka/VydejkaItemType",
"Pohoda\\Vydejka\\VydejkaResponse\\": "src/Pohoda/Vydejka/VydejkaResponse",
"Pohoda\\Vydejka\\VydejkaResponseType\\": "src/Pohoda/Vydejka/VydejkaResponseType",
"Pohoda\\Vydejka\\VydejkaSummaryType\\": "src/Pohoda/Vydejka/VydejkaSummaryType",
"Pohoda\\Vydejka\\VydejkaType\\": "src/Pohoda/Vydejka/VydejkaType",
"Pohoda\\Vyroba\\": "src/Pohoda/Vyroba",
"Pohoda\\Vyroba\\ProductionListItemType\\": "src/Pohoda/Vyroba/ProductionListItemType",
"Pohoda\\Vyroba\\ProductionListType\\": "src/Pohoda/Vyroba/ProductionListType",
"Pohoda\\Vyroba\\Vyroba\\": "src/Pohoda/Vyroba/Vyroba",
"Pohoda\\Vyroba\\VyrobaDetailType\\": "src/Pohoda/Vyroba/VyrobaDetailType",
"Pohoda\\Vyroba\\VyrobaHeaderType\\": "src/Pohoda/Vyroba/VyrobaHeaderType",
"Pohoda\\Vyroba\\VyrobaItemType\\": "src/Pohoda/Vyroba/VyrobaItemType",
"Pohoda\\Vyroba\\VyrobaResponse\\": "src/Pohoda/Vyroba/VyrobaResponse",
"Pohoda\\Vyroba\\VyrobaResponseType\\": "src/Pohoda/Vyroba/VyrobaResponseType",
"Pohoda\\Vyroba\\VyrobaType\\": "src/Pohoda/Vyroba/VyrobaType"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "testing/",
"Test\\Ease\\": "vendor/vitexsoftware/ease-core/tests/src/Ease",
"Test\\mServer\\": "testing/src/mServer/"
}
},
"description": "Stormware's Pohoda mServer client.",
"license": "MIT",
"minimum-stability": "stable",
"name": "vitexsoftware/pohoda-connector",
"require": {
"ext-curl": "*",
"ext-iconv": "*",
"goetas-webservices/xsd2php-runtime": "0.2.17",
"lightools/xml": "^2.0|^3.0",
"riesenia/pohoda": "^1.21",
"vitexsoftware/ease-core": "^1.44",
"jms/serializer": "^3.28"
},
"require-dev": {
"goetas-webservices/xsd2php": "^0.4.11",
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "3.64.0",
"ergebnis/composer-normalize": "^2.43",
"ergebnis/php-cs-fixer-config": "^6.34"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --ansi --memory-limit=4G"
},
"scripts-descriptions": {
"phpstan": "PHPStan - PHP Static Analysis Tool - https://github.com/phpstan/phpstan"
}
}