-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.ts
2225 lines (2225 loc) · 166 KB
/
index.ts
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
export {
CarrierCodeType as AmazonWarehousingAndDistributionModelCarrierCodeType,
DimensionUnitOfMeasurement as AmazonWarehousingAndDistributionModelDimensionUnitOfMeasurement,
DistributionPackageType as AmazonWarehousingAndDistributionModelDistributionPackageType,
InboundShipmentStatus as AmazonWarehousingAndDistributionModelInboundShipmentStatus,
InventoryDetailsVisibility as AmazonWarehousingAndDistributionModelInventoryDetailsVisibility,
InventoryUnitOfMeasurement as AmazonWarehousingAndDistributionModelInventoryUnitOfMeasurement,
ShipmentSortableField as AmazonWarehousingAndDistributionModelShipmentSortableField,
SkuQuantitiesVisibility as AmazonWarehousingAndDistributionModelSkuQuantitiesVisibility,
SortOrder as AmazonWarehousingAndDistributionModelSortOrder,
VolumeUnitOfMeasurement as AmazonWarehousingAndDistributionModelVolumeUnitOfMeasurement,
WeightUnitOfMeasurement as AmazonWarehousingAndDistributionModelWeightUnitOfMeasurement,
Address as AmazonWarehousingAndDistributionModelAddress,
CarrierCode as AmazonWarehousingAndDistributionModelCarrierCode,
DistributionPackage as AmazonWarehousingAndDistributionModelDistributionPackage,
DistributionPackageContents as AmazonWarehousingAndDistributionModelDistributionPackageContents,
DistributionPackageQuantity as AmazonWarehousingAndDistributionModelDistributionPackageQuantity,
ErrorList as AmazonWarehousingAndDistributionModelErrorList,
InboundShipment as AmazonWarehousingAndDistributionModelInboundShipment,
InboundShipmentSummary as AmazonWarehousingAndDistributionModelInboundShipmentSummary,
InventoryDetails as AmazonWarehousingAndDistributionModelInventoryDetails,
InventoryListing as AmazonWarehousingAndDistributionModelInventoryListing,
InventoryQuantity as AmazonWarehousingAndDistributionModelInventoryQuantity,
InventorySummary as AmazonWarehousingAndDistributionModelInventorySummary,
MeasurementData as AmazonWarehousingAndDistributionModelMeasurementData,
ModelError as AmazonWarehousingAndDistributionModelModelError,
PackageDimensions as AmazonWarehousingAndDistributionModelPackageDimensions,
PackageVolume as AmazonWarehousingAndDistributionModelPackageVolume,
PackageWeight as AmazonWarehousingAndDistributionModelPackageWeight,
ProductAttribute as AmazonWarehousingAndDistributionModelProductAttribute,
ProductQuantity as AmazonWarehousingAndDistributionModelProductQuantity,
ShipmentListing as AmazonWarehousingAndDistributionModelShipmentListing,
SkuQuantity as AmazonWarehousingAndDistributionModelSkuQuantity,
AwdApiGetInboundShipmentRequest as AmazonWarehousingAndDistributionModelAwdApiGetInboundShipmentRequest,
AwdApiListInboundShipmentsRequest as AmazonWarehousingAndDistributionModelAwdApiListInboundShipmentsRequest,
AwdApiListInventoryRequest as AmazonWarehousingAndDistributionModelAwdApiListInventoryRequest,
} from './amazon-warehousing-and-distribution-model'
export {
AsinBadge as AplusContentApiModelAsinBadge,
ColorType as AplusContentApiModelColorType,
ContentBadge as AplusContentApiModelContentBadge,
ContentModuleType as AplusContentApiModelContentModuleType,
ContentStatus as AplusContentApiModelContentStatus,
ContentType as AplusContentApiModelContentType,
DecoratorType as AplusContentApiModelDecoratorType,
PositionType as AplusContentApiModelPositionType,
AplusPaginatedResponse as AplusContentApiModelAplusPaginatedResponse,
AplusPaginatedResponseAllOf as AplusContentApiModelAplusPaginatedResponseAllOf,
AplusResponse as AplusContentApiModelAplusResponse,
AsinMetadata as AplusContentApiModelAsinMetadata,
ContentDocument as AplusContentApiModelContentDocument,
ContentMetadata as AplusContentApiModelContentMetadata,
ContentMetadataRecord as AplusContentApiModelContentMetadataRecord,
ContentModule as AplusContentApiModelContentModule,
ContentRecord as AplusContentApiModelContentRecord,
Decorator as AplusContentApiModelDecorator,
ErrorList as AplusContentApiModelErrorList,
GetContentDocumentResponse as AplusContentApiModelGetContentDocumentResponse,
GetContentDocumentResponseAllOf as AplusContentApiModelGetContentDocumentResponseAllOf,
ImageComponent as AplusContentApiModelImageComponent,
ImageCropSpecification as AplusContentApiModelImageCropSpecification,
ImageDimensions as AplusContentApiModelImageDimensions,
ImageOffsets as AplusContentApiModelImageOffsets,
IntegerWithUnits as AplusContentApiModelIntegerWithUnits,
ListContentDocumentAsinRelationsResponse as AplusContentApiModelListContentDocumentAsinRelationsResponse,
ListContentDocumentAsinRelationsResponseAllOf as AplusContentApiModelListContentDocumentAsinRelationsResponseAllOf,
ModelError as AplusContentApiModelModelError,
ParagraphComponent as AplusContentApiModelParagraphComponent,
PlainTextItem as AplusContentApiModelPlainTextItem,
PostContentDocumentApprovalSubmissionResponse as AplusContentApiModelPostContentDocumentApprovalSubmissionResponse,
PostContentDocumentAsinRelationsRequest as AplusContentApiModelPostContentDocumentAsinRelationsRequest,
PostContentDocumentAsinRelationsResponse as AplusContentApiModelPostContentDocumentAsinRelationsResponse,
PostContentDocumentRequest as AplusContentApiModelPostContentDocumentRequest,
PostContentDocumentResponse as AplusContentApiModelPostContentDocumentResponse,
PostContentDocumentResponseAllOf as AplusContentApiModelPostContentDocumentResponseAllOf,
PostContentDocumentSuspendSubmissionResponse as AplusContentApiModelPostContentDocumentSuspendSubmissionResponse,
PublishRecord as AplusContentApiModelPublishRecord,
SearchContentDocumentsResponse as AplusContentApiModelSearchContentDocumentsResponse,
SearchContentDocumentsResponseAllOf as AplusContentApiModelSearchContentDocumentsResponseAllOf,
SearchContentPublishRecordsResponse as AplusContentApiModelSearchContentPublishRecordsResponse,
SearchContentPublishRecordsResponseAllOf as AplusContentApiModelSearchContentPublishRecordsResponseAllOf,
StandardCompanyLogoModule as AplusContentApiModelStandardCompanyLogoModule,
StandardComparisonProductBlock as AplusContentApiModelStandardComparisonProductBlock,
StandardComparisonTableModule as AplusContentApiModelStandardComparisonTableModule,
StandardFourImageTextModule as AplusContentApiModelStandardFourImageTextModule,
StandardFourImageTextQuadrantModule as AplusContentApiModelStandardFourImageTextQuadrantModule,
StandardHeaderImageTextModule as AplusContentApiModelStandardHeaderImageTextModule,
StandardHeaderTextListBlock as AplusContentApiModelStandardHeaderTextListBlock,
StandardImageCaptionBlock as AplusContentApiModelStandardImageCaptionBlock,
StandardImageSidebarModule as AplusContentApiModelStandardImageSidebarModule,
StandardImageTextBlock as AplusContentApiModelStandardImageTextBlock,
StandardImageTextCaptionBlock as AplusContentApiModelStandardImageTextCaptionBlock,
StandardImageTextOverlayModule as AplusContentApiModelStandardImageTextOverlayModule,
StandardMultipleImageTextModule as AplusContentApiModelStandardMultipleImageTextModule,
StandardProductDescriptionModule as AplusContentApiModelStandardProductDescriptionModule,
StandardSingleImageHighlightsModule as AplusContentApiModelStandardSingleImageHighlightsModule,
StandardSingleImageSpecsDetailModule as AplusContentApiModelStandardSingleImageSpecsDetailModule,
StandardSingleSideImageModule as AplusContentApiModelStandardSingleSideImageModule,
StandardTechSpecsModule as AplusContentApiModelStandardTechSpecsModule,
StandardTextBlock as AplusContentApiModelStandardTextBlock,
StandardTextListBlock as AplusContentApiModelStandardTextListBlock,
StandardTextModule as AplusContentApiModelStandardTextModule,
StandardTextPairBlock as AplusContentApiModelStandardTextPairBlock,
StandardThreeImageTextModule as AplusContentApiModelStandardThreeImageTextModule,
TextComponent as AplusContentApiModelTextComponent,
TextItem as AplusContentApiModelTextItem,
ValidateContentDocumentAsinRelationsResponse as AplusContentApiModelValidateContentDocumentAsinRelationsResponse,
AplusContentApiCreateContentDocumentRequest as AplusContentApiModelAplusContentApiCreateContentDocumentRequest,
AplusContentApiGetContentDocumentRequest as AplusContentApiModelAplusContentApiGetContentDocumentRequest,
AplusContentApiListContentDocumentAsinRelationsRequest as AplusContentApiModelAplusContentApiListContentDocumentAsinRelationsRequest,
AplusContentApiPostContentDocumentApprovalSubmissionRequest as AplusContentApiModelAplusContentApiPostContentDocumentApprovalSubmissionRequest,
AplusContentApiPostContentDocumentAsinRelationsRequest as AplusContentApiModelAplusContentApiPostContentDocumentAsinRelationsRequest,
AplusContentApiPostContentDocumentSuspendSubmissionRequest as AplusContentApiModelAplusContentApiPostContentDocumentSuspendSubmissionRequest,
AplusContentApiSearchContentDocumentsRequest as AplusContentApiModelAplusContentApiSearchContentDocumentsRequest,
AplusContentApiSearchContentPublishRecordsRequest as AplusContentApiModelAplusContentApiSearchContentPublishRecordsRequest,
AplusContentApiUpdateContentDocumentRequest as AplusContentApiModelAplusContentApiUpdateContentDocumentRequest,
AplusContentApiValidateContentDocumentAsinRelationsRequest as AplusContentApiModelAplusContentApiValidateContentDocumentAsinRelationsRequest,
} from './aplus-content-api-model'
export {
DeleteNotificationsRequestDeletionReasonEnum as ApplicationIntegrationsApiModelDeleteNotificationsRequestDeletionReasonEnum,
RecordActionFeedbackRequestFeedbackActionCodeEnum as ApplicationIntegrationsApiModelRecordActionFeedbackRequestFeedbackActionCodeEnum,
CreateNotificationRequest as ApplicationIntegrationsApiModelCreateNotificationRequest,
CreateNotificationResponse as ApplicationIntegrationsApiModelCreateNotificationResponse,
DeleteNotificationsRequest as ApplicationIntegrationsApiModelDeleteNotificationsRequest,
ErrorList as ApplicationIntegrationsApiModelErrorList,
ModelError as ApplicationIntegrationsApiModelModelError,
RecordActionFeedbackRequest as ApplicationIntegrationsApiModelRecordActionFeedbackRequest,
AppIntegrationsApiCreateNotificationRequest as ApplicationIntegrationsApiModelAppIntegrationsApiCreateNotificationRequest,
AppIntegrationsApiDeleteNotificationsRequest as ApplicationIntegrationsApiModelAppIntegrationsApiDeleteNotificationsRequest,
AppIntegrationsApiRecordActionFeedbackRequest as ApplicationIntegrationsApiModelAppIntegrationsApiRecordActionFeedbackRequest,
} from './application-integrations-api-model'
export {
ErrorList as ApplicationManagementApiModelErrorList,
ModelError as ApplicationManagementApiModelModelError,
} from './application-management-api-model'
export {
ASINIdentifier as CatalogItemsApiModelASINIdentifier,
AttributeSetListType as CatalogItemsApiModelAttributeSetListType,
Categories as CatalogItemsApiModelCategories,
CreatorType as CatalogItemsApiModelCreatorType,
DecimalWithUnits as CatalogItemsApiModelDecimalWithUnits,
DimensionType as CatalogItemsApiModelDimensionType,
GetCatalogItemResponse as CatalogItemsApiModelGetCatalogItemResponse,
IdentifierType as CatalogItemsApiModelIdentifierType,
Image as CatalogItemsApiModelImage,
Item as CatalogItemsApiModelItem,
LanguageType as CatalogItemsApiModelLanguageType,
ListCatalogCategoriesResponse as CatalogItemsApiModelListCatalogCategoriesResponse,
ListCatalogItemsResponse as CatalogItemsApiModelListCatalogItemsResponse,
ListMatchingItemsResponse as CatalogItemsApiModelListMatchingItemsResponse,
ModelError as CatalogItemsApiModelModelError,
Price as CatalogItemsApiModelPrice,
RelationshipType as CatalogItemsApiModelRelationshipType,
SalesRankType as CatalogItemsApiModelSalesRankType,
SellerSKUIdentifier as CatalogItemsApiModelSellerSKUIdentifier,
CatalogApiGetCatalogItemRequest as CatalogItemsApiModelCatalogApiGetCatalogItemRequest,
CatalogApiListCatalogCategoriesRequest as CatalogItemsApiModelCatalogApiListCatalogCategoriesRequest,
CatalogApiListCatalogItemsRequest as CatalogItemsApiModelCatalogApiListCatalogItemsRequest,
} from './catalog-items-api-model'
export {
ItemImageVariantEnum as CatalogItemsApiModelV20201201ItemImageVariantEnum,
ItemVariationsByMarketplaceVariationTypeEnum as CatalogItemsApiModelV20201201ItemVariationsByMarketplaceVariationTypeEnum,
ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum as CatalogItemsApiModelV20201201ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum,
BrandRefinement as CatalogItemsApiModelV20201201BrandRefinement,
ClassificationRefinement as CatalogItemsApiModelV20201201ClassificationRefinement,
ErrorList as CatalogItemsApiModelV20201201ErrorList,
Item as CatalogItemsApiModelV20201201Item,
ItemIdentifier as CatalogItemsApiModelV20201201ItemIdentifier,
ItemIdentifiersByMarketplace as CatalogItemsApiModelV20201201ItemIdentifiersByMarketplace,
ItemImage as CatalogItemsApiModelV20201201ItemImage,
ItemImagesByMarketplace as CatalogItemsApiModelV20201201ItemImagesByMarketplace,
ItemProductTypeByMarketplace as CatalogItemsApiModelV20201201ItemProductTypeByMarketplace,
ItemSalesRank as CatalogItemsApiModelV20201201ItemSalesRank,
ItemSalesRanksByMarketplace as CatalogItemsApiModelV20201201ItemSalesRanksByMarketplace,
ItemSearchResults as CatalogItemsApiModelV20201201ItemSearchResults,
ItemSummaryByMarketplace as CatalogItemsApiModelV20201201ItemSummaryByMarketplace,
ItemVariationsByMarketplace as CatalogItemsApiModelV20201201ItemVariationsByMarketplace,
ItemVendorDetailsByMarketplace as CatalogItemsApiModelV20201201ItemVendorDetailsByMarketplace,
ModelError as CatalogItemsApiModelV20201201ModelError,
Pagination as CatalogItemsApiModelV20201201Pagination,
Refinements as CatalogItemsApiModelV20201201Refinements,
CatalogApiGetCatalogItemRequest as CatalogItemsApiModelV20201201CatalogApiGetCatalogItemRequest,
CatalogApiSearchCatalogItemsRequest as CatalogItemsApiModelV20201201CatalogApiSearchCatalogItemsRequest,
} from './catalog-items-api-model-v20201201'
export {
ItemImageVariantEnum as CatalogItemsApiModelV20220401ItemImageVariantEnum,
ItemRelationshipTypeEnum as CatalogItemsApiModelV20220401ItemRelationshipTypeEnum,
ItemSummaryByMarketplaceItemClassificationEnum as CatalogItemsApiModelV20220401ItemSummaryByMarketplaceItemClassificationEnum,
ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum as CatalogItemsApiModelV20220401ItemVendorDetailsByMarketplaceReplenishmentCategoryEnum,
BrandRefinement as CatalogItemsApiModelV20220401BrandRefinement,
ClassificationRefinement as CatalogItemsApiModelV20220401ClassificationRefinement,
Dimension as CatalogItemsApiModelV20220401Dimension,
Dimensions as CatalogItemsApiModelV20220401Dimensions,
ErrorList as CatalogItemsApiModelV20220401ErrorList,
Item as CatalogItemsApiModelV20220401Item,
ItemBrowseClassification as CatalogItemsApiModelV20220401ItemBrowseClassification,
ItemBrowseClassificationsByMarketplace as CatalogItemsApiModelV20220401ItemBrowseClassificationsByMarketplace,
ItemClassificationSalesRank as CatalogItemsApiModelV20220401ItemClassificationSalesRank,
ItemContributor as CatalogItemsApiModelV20220401ItemContributor,
ItemContributorRole as CatalogItemsApiModelV20220401ItemContributorRole,
ItemDimensionsByMarketplace as CatalogItemsApiModelV20220401ItemDimensionsByMarketplace,
ItemDisplayGroupSalesRank as CatalogItemsApiModelV20220401ItemDisplayGroupSalesRank,
ItemIdentifier as CatalogItemsApiModelV20220401ItemIdentifier,
ItemIdentifiersByMarketplace as CatalogItemsApiModelV20220401ItemIdentifiersByMarketplace,
ItemImage as CatalogItemsApiModelV20220401ItemImage,
ItemImagesByMarketplace as CatalogItemsApiModelV20220401ItemImagesByMarketplace,
ItemProductTypeByMarketplace as CatalogItemsApiModelV20220401ItemProductTypeByMarketplace,
ItemRelationship as CatalogItemsApiModelV20220401ItemRelationship,
ItemRelationshipsByMarketplace as CatalogItemsApiModelV20220401ItemRelationshipsByMarketplace,
ItemSalesRanksByMarketplace as CatalogItemsApiModelV20220401ItemSalesRanksByMarketplace,
ItemSearchResults as CatalogItemsApiModelV20220401ItemSearchResults,
ItemSummaryByMarketplace as CatalogItemsApiModelV20220401ItemSummaryByMarketplace,
ItemVariationTheme as CatalogItemsApiModelV20220401ItemVariationTheme,
ItemVendorDetailsByMarketplace as CatalogItemsApiModelV20220401ItemVendorDetailsByMarketplace,
ItemVendorDetailsCategory as CatalogItemsApiModelV20220401ItemVendorDetailsCategory,
ModelError as CatalogItemsApiModelV20220401ModelError,
Pagination as CatalogItemsApiModelV20220401Pagination,
Refinements as CatalogItemsApiModelV20220401Refinements,
CatalogApiGetCatalogItemRequest as CatalogItemsApiModelV20220401CatalogApiGetCatalogItemRequest,
CatalogApiSearchCatalogItemsRequest as CatalogItemsApiModelV20220401CatalogApiSearchCatalogItemsRequest,
} from './catalog-items-api-model-v20220401'
export {
QueryProcessingStatusEnum as DataKioskApiModelQueryProcessingStatusEnum,
CreateQueryResponse as DataKioskApiModelCreateQueryResponse,
CreateQuerySpecification as DataKioskApiModelCreateQuerySpecification,
ErrorList as DataKioskApiModelErrorList,
GetDocumentResponse as DataKioskApiModelGetDocumentResponse,
GetQueriesResponse as DataKioskApiModelGetQueriesResponse,
GetQueriesResponsePagination as DataKioskApiModelGetQueriesResponsePagination,
ModelError as DataKioskApiModelModelError,
Query as DataKioskApiModelQuery,
QueryPagination as DataKioskApiModelQueryPagination,
QueriesApiCancelQueryRequest as DataKioskApiModelQueriesApiCancelQueryRequest,
QueriesApiCreateQueryRequest as DataKioskApiModelQueriesApiCreateQueryRequest,
QueriesApiGetDocumentRequest as DataKioskApiModelQueriesApiGetDocumentRequest,
QueriesApiGetQueriesRequest as DataKioskApiModelQueriesApiGetQueriesRequest,
QueriesApiGetQueryRequest as DataKioskApiModelQueriesApiGetQueryRequest,
} from './data-kiosk-api-model'
export {
Code as EasyShipModelCode,
HandoverMethod as EasyShipModelHandoverMethod,
LabelFormat as EasyShipModelLabelFormat,
PackageStatus as EasyShipModelPackageStatus,
UnitOfLength as EasyShipModelUnitOfLength,
UnitOfWeight as EasyShipModelUnitOfWeight,
CreateScheduledPackageRequest as EasyShipModelCreateScheduledPackageRequest,
CreateScheduledPackagesRequest as EasyShipModelCreateScheduledPackagesRequest,
CreateScheduledPackagesResponse as EasyShipModelCreateScheduledPackagesResponse,
Dimensions as EasyShipModelDimensions,
ErrorList as EasyShipModelErrorList,
InvoiceData as EasyShipModelInvoiceData,
Item as EasyShipModelItem,
ListHandoverSlotsRequest as EasyShipModelListHandoverSlotsRequest,
ListHandoverSlotsResponse as EasyShipModelListHandoverSlotsResponse,
ModelError as EasyShipModelModelError,
OrderScheduleDetails as EasyShipModelOrderScheduleDetails,
Package as EasyShipModelPackage,
PackageDetails as EasyShipModelPackageDetails,
Packages as EasyShipModelPackages,
RejectedOrder as EasyShipModelRejectedOrder,
ScheduledPackageId as EasyShipModelScheduledPackageId,
TimeSlot as EasyShipModelTimeSlot,
TrackingDetails as EasyShipModelTrackingDetails,
UpdatePackageDetails as EasyShipModelUpdatePackageDetails,
UpdateScheduledPackagesRequest as EasyShipModelUpdateScheduledPackagesRequest,
Weight as EasyShipModelWeight,
EasyShipApiCreateScheduledPackageRequest as EasyShipModelEasyShipApiCreateScheduledPackageRequest,
EasyShipApiCreateScheduledPackageBulkRequest as EasyShipModelEasyShipApiCreateScheduledPackageBulkRequest,
EasyShipApiGetScheduledPackageRequest as EasyShipModelEasyShipApiGetScheduledPackageRequest,
EasyShipApiListHandoverSlotsRequest as EasyShipModelEasyShipApiListHandoverSlotsRequest,
EasyShipApiUpdateScheduledPackagesRequest as EasyShipModelEasyShipApiUpdateScheduledPackagesRequest,
} from './easy-ship-model'
export {
ItemEligibilityPreviewProgramEnum as FbaInboundEligibilityApiModelItemEligibilityPreviewProgramEnum,
ItemEligibilityPreviewIneligibilityReasonListEnum as FbaInboundEligibilityApiModelItemEligibilityPreviewIneligibilityReasonListEnum,
GetItemEligibilityPreviewResponse as FbaInboundEligibilityApiModelGetItemEligibilityPreviewResponse,
ItemEligibilityPreview as FbaInboundEligibilityApiModelItemEligibilityPreview,
ModelError as FbaInboundEligibilityApiModelModelError,
FbaInboundApiGetItemEligibilityPreviewRequest as FbaInboundEligibilityApiModelFbaInboundApiGetItemEligibilityPreviewRequest,
} from './fba-inbound-eligibility-api-model'
export {
ResearchingQuantityEntryNameEnum as FbaInventoryApiModelResearchingQuantityEntryNameEnum,
AddInventoryRequest as FbaInventoryApiModelAddInventoryRequest,
AddInventoryResponse as FbaInventoryApiModelAddInventoryResponse,
CreateInventoryItemRequest as FbaInventoryApiModelCreateInventoryItemRequest,
CreateInventoryItemResponse as FbaInventoryApiModelCreateInventoryItemResponse,
DeleteInventoryItemResponse as FbaInventoryApiModelDeleteInventoryItemResponse,
GetInventorySummariesResponse as FbaInventoryApiModelGetInventorySummariesResponse,
GetInventorySummariesResult as FbaInventoryApiModelGetInventorySummariesResult,
Granularity as FbaInventoryApiModelGranularity,
InventoryDetails as FbaInventoryApiModelInventoryDetails,
InventoryItem as FbaInventoryApiModelInventoryItem,
InventorySummary as FbaInventoryApiModelInventorySummary,
ModelError as FbaInventoryApiModelModelError,
Pagination as FbaInventoryApiModelPagination,
ResearchingQuantity as FbaInventoryApiModelResearchingQuantity,
ResearchingQuantityEntry as FbaInventoryApiModelResearchingQuantityEntry,
ReservedQuantity as FbaInventoryApiModelReservedQuantity,
UnfulfillableQuantity as FbaInventoryApiModelUnfulfillableQuantity,
FbaInventoryApiAddInventoryRequest as FbaInventoryApiModelFbaInventoryApiAddInventoryRequest,
FbaInventoryApiCreateInventoryItemRequest as FbaInventoryApiModelFbaInventoryApiCreateInventoryItemRequest,
FbaInventoryApiDeleteInventoryItemRequest as FbaInventoryApiModelFbaInventoryApiDeleteInventoryItemRequest,
FbaInventoryApiGetInventorySummariesRequest as FbaInventoryApiModelFbaInventoryApiGetInventorySummariesRequest,
} from './fba-inventory-api-model'
export {
FeedProcessingStatusEnum as FeedsApiModelFeedProcessingStatusEnum,
FeedDocumentCompressionAlgorithmEnum as FeedsApiModelFeedDocumentCompressionAlgorithmEnum,
FeedDocumentEncryptionDetailsStandardEnum as FeedsApiModelFeedDocumentEncryptionDetailsStandardEnum,
CancelFeedResponse as FeedsApiModelCancelFeedResponse,
CreateFeedDocumentResponse as FeedsApiModelCreateFeedDocumentResponse,
CreateFeedDocumentResult as FeedsApiModelCreateFeedDocumentResult,
CreateFeedDocumentSpecification as FeedsApiModelCreateFeedDocumentSpecification,
CreateFeedResponse as FeedsApiModelCreateFeedResponse,
CreateFeedResult as FeedsApiModelCreateFeedResult,
CreateFeedSpecification as FeedsApiModelCreateFeedSpecification,
Feed as FeedsApiModelFeed,
FeedDocument as FeedsApiModelFeedDocument,
FeedDocumentEncryptionDetails as FeedsApiModelFeedDocumentEncryptionDetails,
GetFeedDocumentResponse as FeedsApiModelGetFeedDocumentResponse,
GetFeedResponse as FeedsApiModelGetFeedResponse,
GetFeedsResponse as FeedsApiModelGetFeedsResponse,
ModelError as FeedsApiModelModelError,
FeedsApiCancelFeedRequest as FeedsApiModelFeedsApiCancelFeedRequest,
FeedsApiCreateFeedRequest as FeedsApiModelFeedsApiCreateFeedRequest,
FeedsApiCreateFeedDocumentRequest as FeedsApiModelFeedsApiCreateFeedDocumentRequest,
FeedsApiGetFeedRequest as FeedsApiModelFeedsApiGetFeedRequest,
FeedsApiGetFeedDocumentRequest as FeedsApiModelFeedsApiGetFeedDocumentRequest,
FeedsApiGetFeedsRequest as FeedsApiModelFeedsApiGetFeedsRequest,
} from './feeds-api-model'
export {
FeedProcessingStatusEnum as FeedsApiModelV20210630FeedProcessingStatusEnum,
FeedDocumentCompressionAlgorithmEnum as FeedsApiModelV20210630FeedDocumentCompressionAlgorithmEnum,
CreateFeedDocumentResponse as FeedsApiModelV20210630CreateFeedDocumentResponse,
CreateFeedDocumentSpecification as FeedsApiModelV20210630CreateFeedDocumentSpecification,
CreateFeedResponse as FeedsApiModelV20210630CreateFeedResponse,
CreateFeedSpecification as FeedsApiModelV20210630CreateFeedSpecification,
ErrorList as FeedsApiModelV20210630ErrorList,
Feed as FeedsApiModelV20210630Feed,
FeedDocument as FeedsApiModelV20210630FeedDocument,
GetFeedsResponse as FeedsApiModelV20210630GetFeedsResponse,
ModelError as FeedsApiModelV20210630ModelError,
FeedsApiCancelFeedRequest as FeedsApiModelV20210630FeedsApiCancelFeedRequest,
FeedsApiCreateFeedRequest as FeedsApiModelV20210630FeedsApiCreateFeedRequest,
FeedsApiCreateFeedDocumentRequest as FeedsApiModelV20210630FeedsApiCreateFeedDocumentRequest,
FeedsApiGetFeedRequest as FeedsApiModelV20210630FeedsApiGetFeedRequest,
FeedsApiGetFeedDocumentRequest as FeedsApiModelV20210630FeedsApiGetFeedDocumentRequest,
FeedsApiGetFeedsRequest as FeedsApiModelV20210630FeedsApiGetFeedsRequest,
} from './feeds-api-model-v20210630'
export {
AdhocDisbursementEvent as FinancesApiModelAdhocDisbursementEvent,
AdjustmentEvent as FinancesApiModelAdjustmentEvent,
AdjustmentItem as FinancesApiModelAdjustmentItem,
AffordabilityExpenseEvent as FinancesApiModelAffordabilityExpenseEvent,
CapacityReservationBillingEvent as FinancesApiModelCapacityReservationBillingEvent,
ChargeComponent as FinancesApiModelChargeComponent,
ChargeInstrument as FinancesApiModelChargeInstrument,
ChargeRefundEvent as FinancesApiModelChargeRefundEvent,
ChargeRefundTransaction as FinancesApiModelChargeRefundTransaction,
CouponPaymentEvent as FinancesApiModelCouponPaymentEvent,
Currency as FinancesApiModelCurrency,
DebtRecoveryEvent as FinancesApiModelDebtRecoveryEvent,
DebtRecoveryItem as FinancesApiModelDebtRecoveryItem,
DirectPayment as FinancesApiModelDirectPayment,
FBALiquidationEvent as FinancesApiModelFBALiquidationEvent,
FailedAdhocDisbursementEvent as FinancesApiModelFailedAdhocDisbursementEvent,
FeeComponent as FinancesApiModelFeeComponent,
FinancialEventGroup as FinancesApiModelFinancialEventGroup,
FinancialEvents as FinancesApiModelFinancialEvents,
ImagingServicesFeeEvent as FinancesApiModelImagingServicesFeeEvent,
ListFinancialEventGroupsPayload as FinancesApiModelListFinancialEventGroupsPayload,
ListFinancialEventGroupsResponse as FinancesApiModelListFinancialEventGroupsResponse,
ListFinancialEventsPayload as FinancesApiModelListFinancialEventsPayload,
ListFinancialEventsResponse as FinancesApiModelListFinancialEventsResponse,
LoanServicingEvent as FinancesApiModelLoanServicingEvent,
ModelError as FinancesApiModelModelError,
NetworkComminglingTransactionEvent as FinancesApiModelNetworkComminglingTransactionEvent,
PayWithAmazonEvent as FinancesApiModelPayWithAmazonEvent,
ProductAdsPaymentEvent as FinancesApiModelProductAdsPaymentEvent,
Promotion as FinancesApiModelPromotion,
RemovalShipmentAdjustmentEvent as FinancesApiModelRemovalShipmentAdjustmentEvent,
RemovalShipmentEvent as FinancesApiModelRemovalShipmentEvent,
RemovalShipmentItem as FinancesApiModelRemovalShipmentItem,
RemovalShipmentItemAdjustment as FinancesApiModelRemovalShipmentItemAdjustment,
RentalTransactionEvent as FinancesApiModelRentalTransactionEvent,
RetrochargeEvent as FinancesApiModelRetrochargeEvent,
SAFETReimbursementEvent as FinancesApiModelSAFETReimbursementEvent,
SAFETReimbursementItem as FinancesApiModelSAFETReimbursementItem,
SellerDealPaymentEvent as FinancesApiModelSellerDealPaymentEvent,
SellerReviewEnrollmentPaymentEvent as FinancesApiModelSellerReviewEnrollmentPaymentEvent,
ServiceFeeEvent as FinancesApiModelServiceFeeEvent,
ShipmentEvent as FinancesApiModelShipmentEvent,
ShipmentItem as FinancesApiModelShipmentItem,
SolutionProviderCreditEvent as FinancesApiModelSolutionProviderCreditEvent,
TDSReimbursementEvent as FinancesApiModelTDSReimbursementEvent,
TaxWithheldComponent as FinancesApiModelTaxWithheldComponent,
TaxWithholdingEvent as FinancesApiModelTaxWithholdingEvent,
TaxWithholdingPeriod as FinancesApiModelTaxWithholdingPeriod,
TrialShipmentEvent as FinancesApiModelTrialShipmentEvent,
ValueAddedServiceChargeEvent as FinancesApiModelValueAddedServiceChargeEvent,
DefaultApiListFinancialEventGroupsRequest as FinancesApiModelDefaultApiListFinancialEventGroupsRequest,
DefaultApiListFinancialEventsRequest as FinancesApiModelDefaultApiListFinancialEventsRequest,
DefaultApiListFinancialEventsByGroupIdRequest as FinancesApiModelDefaultApiListFinancialEventsByGroupIdRequest,
DefaultApiListFinancialEventsByOrderIdRequest as FinancesApiModelDefaultApiListFinancialEventsByOrderIdRequest,
} from './finances-api-model'
export {
ItemRelatedIdentifierItemRelatedIdentifierNameEnum as FinancesApiModelV20240619ItemRelatedIdentifierItemRelatedIdentifierNameEnum,
RelatedIdentifierRelatedIdentifierNameEnum as FinancesApiModelV20240619RelatedIdentifierRelatedIdentifierNameEnum,
AmazonPayContext as FinancesApiModelV20240619AmazonPayContext,
Breakdown as FinancesApiModelV20240619Breakdown,
Context as FinancesApiModelV20240619Context,
ContextAllOf as FinancesApiModelV20240619ContextAllOf,
Currency as FinancesApiModelV20240619Currency,
DeferredContext as FinancesApiModelV20240619DeferredContext,
ErrorList as FinancesApiModelV20240619ErrorList,
Item as FinancesApiModelV20240619Item,
ItemRelatedIdentifier as FinancesApiModelV20240619ItemRelatedIdentifier,
ListTransactionsResponse as FinancesApiModelV20240619ListTransactionsResponse,
MarketplaceDetails as FinancesApiModelV20240619MarketplaceDetails,
ModelError as FinancesApiModelV20240619ModelError,
PaymentsContext as FinancesApiModelV20240619PaymentsContext,
ProductContext as FinancesApiModelV20240619ProductContext,
RelatedIdentifier as FinancesApiModelV20240619RelatedIdentifier,
SellingPartnerMetadata as FinancesApiModelV20240619SellingPartnerMetadata,
TimeRangeContext as FinancesApiModelV20240619TimeRangeContext,
Transaction as FinancesApiModelV20240619Transaction,
DefaultApiListTransactionsRequest as FinancesApiModelV20240619DefaultApiListTransactionsRequest,
} from './finances-api-model-v20240619'
export {
BarcodeInstruction as FulfillmentInboundApiModelBarcodeInstruction,
BoxContentsSource as FulfillmentInboundApiModelBoxContentsSource,
Condition as FulfillmentInboundApiModelCondition,
CurrencyCode as FulfillmentInboundApiModelCurrencyCode,
ErrorReason as FulfillmentInboundApiModelErrorReason,
GuidanceReason as FulfillmentInboundApiModelGuidanceReason,
InboundGuidance as FulfillmentInboundApiModelInboundGuidance,
IntendedBoxContentsSource as FulfillmentInboundApiModelIntendedBoxContentsSource,
LabelPrepPreference as FulfillmentInboundApiModelLabelPrepPreference,
LabelPrepType as FulfillmentInboundApiModelLabelPrepType,
PackageStatus as FulfillmentInboundApiModelPackageStatus,
PrepGuidance as FulfillmentInboundApiModelPrepGuidance,
PrepInstruction as FulfillmentInboundApiModelPrepInstruction,
PrepOwner as FulfillmentInboundApiModelPrepOwner,
SellerFreightClass as FulfillmentInboundApiModelSellerFreightClass,
ShipmentStatus as FulfillmentInboundApiModelShipmentStatus,
ShipmentType as FulfillmentInboundApiModelShipmentType,
TransportStatus as FulfillmentInboundApiModelTransportStatus,
UnitOfMeasurement as FulfillmentInboundApiModelUnitOfMeasurement,
UnitOfWeight as FulfillmentInboundApiModelUnitOfWeight,
ASINInboundGuidance as FulfillmentInboundApiModelASINInboundGuidance,
ASINPrepInstructions as FulfillmentInboundApiModelASINPrepInstructions,
Address as FulfillmentInboundApiModelAddress,
AmazonPrepFeesDetails as FulfillmentInboundApiModelAmazonPrepFeesDetails,
Amount as FulfillmentInboundApiModelAmount,
BillOfLadingDownloadURL as FulfillmentInboundApiModelBillOfLadingDownloadURL,
BoxContentsFeeDetails as FulfillmentInboundApiModelBoxContentsFeeDetails,
CommonTransportResult as FulfillmentInboundApiModelCommonTransportResult,
ConfirmPreorderResponse as FulfillmentInboundApiModelConfirmPreorderResponse,
ConfirmPreorderResult as FulfillmentInboundApiModelConfirmPreorderResult,
ConfirmTransportResponse as FulfillmentInboundApiModelConfirmTransportResponse,
Contact as FulfillmentInboundApiModelContact,
CreateInboundShipmentPlanRequest as FulfillmentInboundApiModelCreateInboundShipmentPlanRequest,
CreateInboundShipmentPlanResponse as FulfillmentInboundApiModelCreateInboundShipmentPlanResponse,
CreateInboundShipmentPlanResult as FulfillmentInboundApiModelCreateInboundShipmentPlanResult,
Dimensions as FulfillmentInboundApiModelDimensions,
EstimateTransportResponse as FulfillmentInboundApiModelEstimateTransportResponse,
GetBillOfLadingResponse as FulfillmentInboundApiModelGetBillOfLadingResponse,
GetInboundGuidanceResult as FulfillmentInboundApiModelGetInboundGuidanceResult,
GetLabelsResponse as FulfillmentInboundApiModelGetLabelsResponse,
GetPreorderInfoResponse as FulfillmentInboundApiModelGetPreorderInfoResponse,
GetPreorderInfoResult as FulfillmentInboundApiModelGetPreorderInfoResult,
GetPrepInstructionsResponse as FulfillmentInboundApiModelGetPrepInstructionsResponse,
GetPrepInstructionsResult as FulfillmentInboundApiModelGetPrepInstructionsResult,
GetShipmentItemsResponse as FulfillmentInboundApiModelGetShipmentItemsResponse,
GetShipmentItemsResult as FulfillmentInboundApiModelGetShipmentItemsResult,
GetShipmentsResponse as FulfillmentInboundApiModelGetShipmentsResponse,
GetShipmentsResult as FulfillmentInboundApiModelGetShipmentsResult,
GetTransportDetailsResponse as FulfillmentInboundApiModelGetTransportDetailsResponse,
GetTransportDetailsResult as FulfillmentInboundApiModelGetTransportDetailsResult,
InboundShipmentHeader as FulfillmentInboundApiModelInboundShipmentHeader,
InboundShipmentInfo as FulfillmentInboundApiModelInboundShipmentInfo,
InboundShipmentItem as FulfillmentInboundApiModelInboundShipmentItem,
InboundShipmentPlan as FulfillmentInboundApiModelInboundShipmentPlan,
InboundShipmentPlanItem as FulfillmentInboundApiModelInboundShipmentPlanItem,
InboundShipmentPlanRequestItem as FulfillmentInboundApiModelInboundShipmentPlanRequestItem,
InboundShipmentRequest as FulfillmentInboundApiModelInboundShipmentRequest,
InboundShipmentResponse as FulfillmentInboundApiModelInboundShipmentResponse,
InboundShipmentResult as FulfillmentInboundApiModelInboundShipmentResult,
InvalidASIN as FulfillmentInboundApiModelInvalidASIN,
InvalidSKU as FulfillmentInboundApiModelInvalidSKU,
LabelDownloadURL as FulfillmentInboundApiModelLabelDownloadURL,
ModelError as FulfillmentInboundApiModelModelError,
NonPartneredLtlDataInput as FulfillmentInboundApiModelNonPartneredLtlDataInput,
NonPartneredLtlDataOutput as FulfillmentInboundApiModelNonPartneredLtlDataOutput,
NonPartneredSmallParcelDataInput as FulfillmentInboundApiModelNonPartneredSmallParcelDataInput,
NonPartneredSmallParcelDataOutput as FulfillmentInboundApiModelNonPartneredSmallParcelDataOutput,
NonPartneredSmallParcelPackageInput as FulfillmentInboundApiModelNonPartneredSmallParcelPackageInput,
NonPartneredSmallParcelPackageOutput as FulfillmentInboundApiModelNonPartneredSmallParcelPackageOutput,
Pallet as FulfillmentInboundApiModelPallet,
PartneredEstimate as FulfillmentInboundApiModelPartneredEstimate,
PartneredLtlDataInput as FulfillmentInboundApiModelPartneredLtlDataInput,
PartneredLtlDataOutput as FulfillmentInboundApiModelPartneredLtlDataOutput,
PartneredSmallParcelDataInput as FulfillmentInboundApiModelPartneredSmallParcelDataInput,
PartneredSmallParcelDataOutput as FulfillmentInboundApiModelPartneredSmallParcelDataOutput,
PartneredSmallParcelPackageInput as FulfillmentInboundApiModelPartneredSmallParcelPackageInput,
PartneredSmallParcelPackageOutput as FulfillmentInboundApiModelPartneredSmallParcelPackageOutput,
PrepDetails as FulfillmentInboundApiModelPrepDetails,
PutTransportDetailsRequest as FulfillmentInboundApiModelPutTransportDetailsRequest,
PutTransportDetailsResponse as FulfillmentInboundApiModelPutTransportDetailsResponse,
SKUInboundGuidance as FulfillmentInboundApiModelSKUInboundGuidance,
SKUPrepInstructions as FulfillmentInboundApiModelSKUPrepInstructions,
TransportContent as FulfillmentInboundApiModelTransportContent,
TransportDetailInput as FulfillmentInboundApiModelTransportDetailInput,
TransportDetailOutput as FulfillmentInboundApiModelTransportDetailOutput,
TransportHeader as FulfillmentInboundApiModelTransportHeader,
TransportResult as FulfillmentInboundApiModelTransportResult,
VoidTransportResponse as FulfillmentInboundApiModelVoidTransportResponse,
Weight as FulfillmentInboundApiModelWeight,
FbaInboundApiConfirmPreorderRequest as FulfillmentInboundApiModelFbaInboundApiConfirmPreorderRequest,
FbaInboundApiConfirmTransportRequest as FulfillmentInboundApiModelFbaInboundApiConfirmTransportRequest,
FbaInboundApiCreateInboundShipmentRequest as FulfillmentInboundApiModelFbaInboundApiCreateInboundShipmentRequest,
FbaInboundApiCreateInboundShipmentPlanRequest as FulfillmentInboundApiModelFbaInboundApiCreateInboundShipmentPlanRequest,
FbaInboundApiEstimateTransportRequest as FulfillmentInboundApiModelFbaInboundApiEstimateTransportRequest,
FbaInboundApiGetBillOfLadingRequest as FulfillmentInboundApiModelFbaInboundApiGetBillOfLadingRequest,
FbaInboundApiGetLabelsRequest as FulfillmentInboundApiModelFbaInboundApiGetLabelsRequest,
FbaInboundApiGetPreorderInfoRequest as FulfillmentInboundApiModelFbaInboundApiGetPreorderInfoRequest,
FbaInboundApiGetPrepInstructionsRequest as FulfillmentInboundApiModelFbaInboundApiGetPrepInstructionsRequest,
FbaInboundApiGetShipmentItemsRequest as FulfillmentInboundApiModelFbaInboundApiGetShipmentItemsRequest,
FbaInboundApiGetShipmentItemsByShipmentIdRequest as FulfillmentInboundApiModelFbaInboundApiGetShipmentItemsByShipmentIdRequest,
FbaInboundApiGetShipmentsRequest as FulfillmentInboundApiModelFbaInboundApiGetShipmentsRequest,
FbaInboundApiGetTransportDetailsRequest as FulfillmentInboundApiModelFbaInboundApiGetTransportDetailsRequest,
FbaInboundApiPutTransportDetailsRequest as FulfillmentInboundApiModelFbaInboundApiPutTransportDetailsRequest,
FbaInboundApiUpdateInboundShipmentRequest as FulfillmentInboundApiModelFbaInboundApiUpdateInboundShipmentRequest,
FbaInboundApiVoidTransportRequest as FulfillmentInboundApiModelFbaInboundApiVoidTransportRequest,
} from './fulfillment-inbound-api-model'
export {
AllOwnersConstraint as FulfillmentInboundApiModelV20240320AllOwnersConstraint,
BoxContentInformationSource as FulfillmentInboundApiModelV20240320BoxContentInformationSource,
ItemLabelPageType as FulfillmentInboundApiModelV20240320ItemLabelPageType,
LabelOwner as FulfillmentInboundApiModelV20240320LabelOwner,
LabelPrintType as FulfillmentInboundApiModelV20240320LabelPrintType,
OperationStatus as FulfillmentInboundApiModelV20240320OperationStatus,
OwnerConstraint as FulfillmentInboundApiModelV20240320OwnerConstraint,
PrepCategory as FulfillmentInboundApiModelV20240320PrepCategory,
PrepOwner as FulfillmentInboundApiModelV20240320PrepOwner,
PrepType as FulfillmentInboundApiModelV20240320PrepType,
ReasonComment as FulfillmentInboundApiModelV20240320ReasonComment,
Stackability as FulfillmentInboundApiModelV20240320Stackability,
UnitOfMeasurement as FulfillmentInboundApiModelV20240320UnitOfMeasurement,
UnitOfWeight as FulfillmentInboundApiModelV20240320UnitOfWeight,
Address as FulfillmentInboundApiModelV20240320Address,
AddressInput as FulfillmentInboundApiModelV20240320AddressInput,
AppointmentSlot as FulfillmentInboundApiModelV20240320AppointmentSlot,
AppointmentSlotTime as FulfillmentInboundApiModelV20240320AppointmentSlotTime,
Box as FulfillmentInboundApiModelV20240320Box,
BoxInput as FulfillmentInboundApiModelV20240320BoxInput,
BoxUpdateInput as FulfillmentInboundApiModelV20240320BoxUpdateInput,
CancelInboundPlanResponse as FulfillmentInboundApiModelV20240320CancelInboundPlanResponse,
CancelSelfShipAppointmentRequest as FulfillmentInboundApiModelV20240320CancelSelfShipAppointmentRequest,
CancelSelfShipAppointmentResponse as FulfillmentInboundApiModelV20240320CancelSelfShipAppointmentResponse,
Carrier as FulfillmentInboundApiModelV20240320Carrier,
CarrierAppointment as FulfillmentInboundApiModelV20240320CarrierAppointment,
ComplianceDetail as FulfillmentInboundApiModelV20240320ComplianceDetail,
ConfirmDeliveryWindowOptionsResponse as FulfillmentInboundApiModelV20240320ConfirmDeliveryWindowOptionsResponse,
ConfirmPackingOptionResponse as FulfillmentInboundApiModelV20240320ConfirmPackingOptionResponse,
ConfirmPlacementOptionResponse as FulfillmentInboundApiModelV20240320ConfirmPlacementOptionResponse,
ConfirmShipmentContentUpdatePreviewResponse as FulfillmentInboundApiModelV20240320ConfirmShipmentContentUpdatePreviewResponse,
ConfirmTransportationOptionsRequest as FulfillmentInboundApiModelV20240320ConfirmTransportationOptionsRequest,
ConfirmTransportationOptionsResponse as FulfillmentInboundApiModelV20240320ConfirmTransportationOptionsResponse,
ContactInformation as FulfillmentInboundApiModelV20240320ContactInformation,
ContentUpdatePreview as FulfillmentInboundApiModelV20240320ContentUpdatePreview,
CreateInboundPlanRequest as FulfillmentInboundApiModelV20240320CreateInboundPlanRequest,
CreateInboundPlanResponse as FulfillmentInboundApiModelV20240320CreateInboundPlanResponse,
CreateMarketplaceItemLabelsRequest as FulfillmentInboundApiModelV20240320CreateMarketplaceItemLabelsRequest,
CreateMarketplaceItemLabelsResponse as FulfillmentInboundApiModelV20240320CreateMarketplaceItemLabelsResponse,
Currency as FulfillmentInboundApiModelV20240320Currency,
CustomPlacementInput as FulfillmentInboundApiModelV20240320CustomPlacementInput,
Dates as FulfillmentInboundApiModelV20240320Dates,
DeliveryWindowOption as FulfillmentInboundApiModelV20240320DeliveryWindowOption,
Dimensions as FulfillmentInboundApiModelV20240320Dimensions,
DocumentDownload as FulfillmentInboundApiModelV20240320DocumentDownload,
ErrorList as FulfillmentInboundApiModelV20240320ErrorList,
FreightInformation as FulfillmentInboundApiModelV20240320FreightInformation,
GenerateDeliveryWindowOptionsResponse as FulfillmentInboundApiModelV20240320GenerateDeliveryWindowOptionsResponse,
GeneratePackingOptionsResponse as FulfillmentInboundApiModelV20240320GeneratePackingOptionsResponse,
GeneratePlacementOptionsRequest as FulfillmentInboundApiModelV20240320GeneratePlacementOptionsRequest,
GeneratePlacementOptionsResponse as FulfillmentInboundApiModelV20240320GeneratePlacementOptionsResponse,
GenerateSelfShipAppointmentSlotsRequest as FulfillmentInboundApiModelV20240320GenerateSelfShipAppointmentSlotsRequest,
GenerateSelfShipAppointmentSlotsResponse as FulfillmentInboundApiModelV20240320GenerateSelfShipAppointmentSlotsResponse,
GenerateShipmentContentUpdatePreviewsRequest as FulfillmentInboundApiModelV20240320GenerateShipmentContentUpdatePreviewsRequest,
GenerateShipmentContentUpdatePreviewsResponse as FulfillmentInboundApiModelV20240320GenerateShipmentContentUpdatePreviewsResponse,
GenerateTransportationOptionsRequest as FulfillmentInboundApiModelV20240320GenerateTransportationOptionsRequest,
GenerateTransportationOptionsResponse as FulfillmentInboundApiModelV20240320GenerateTransportationOptionsResponse,
GetDeliveryChallanDocumentResponse as FulfillmentInboundApiModelV20240320GetDeliveryChallanDocumentResponse,
GetSelfShipAppointmentSlotsResponse as FulfillmentInboundApiModelV20240320GetSelfShipAppointmentSlotsResponse,
InboundOperationStatus as FulfillmentInboundApiModelV20240320InboundOperationStatus,
InboundPlan as FulfillmentInboundApiModelV20240320InboundPlan,
InboundPlanSummary as FulfillmentInboundApiModelV20240320InboundPlanSummary,
Incentive as FulfillmentInboundApiModelV20240320Incentive,
Item as FulfillmentInboundApiModelV20240320Item,
ItemInput as FulfillmentInboundApiModelV20240320ItemInput,
ListDeliveryWindowOptionsResponse as FulfillmentInboundApiModelV20240320ListDeliveryWindowOptionsResponse,
ListInboundPlanBoxesResponse as FulfillmentInboundApiModelV20240320ListInboundPlanBoxesResponse,
ListInboundPlanItemsResponse as FulfillmentInboundApiModelV20240320ListInboundPlanItemsResponse,
ListInboundPlanPalletsResponse as FulfillmentInboundApiModelV20240320ListInboundPlanPalletsResponse,
ListInboundPlansResponse as FulfillmentInboundApiModelV20240320ListInboundPlansResponse,
ListItemComplianceDetailsResponse as FulfillmentInboundApiModelV20240320ListItemComplianceDetailsResponse,
ListPackingGroupBoxesResponse as FulfillmentInboundApiModelV20240320ListPackingGroupBoxesResponse,
ListPackingGroupItemsResponse as FulfillmentInboundApiModelV20240320ListPackingGroupItemsResponse,
ListPackingOptionsResponse as FulfillmentInboundApiModelV20240320ListPackingOptionsResponse,
ListPlacementOptionsResponse as FulfillmentInboundApiModelV20240320ListPlacementOptionsResponse,
ListPrepDetailsResponse as FulfillmentInboundApiModelV20240320ListPrepDetailsResponse,
ListShipmentBoxesResponse as FulfillmentInboundApiModelV20240320ListShipmentBoxesResponse,
ListShipmentContentUpdatePreviewsResponse as FulfillmentInboundApiModelV20240320ListShipmentContentUpdatePreviewsResponse,
ListShipmentItemsResponse as FulfillmentInboundApiModelV20240320ListShipmentItemsResponse,
ListShipmentPalletsResponse as FulfillmentInboundApiModelV20240320ListShipmentPalletsResponse,
ListTransportationOptionsResponse as FulfillmentInboundApiModelV20240320ListTransportationOptionsResponse,
LtlTrackingDetail as FulfillmentInboundApiModelV20240320LtlTrackingDetail,
LtlTrackingDetailInput as FulfillmentInboundApiModelV20240320LtlTrackingDetailInput,
ModelError as FulfillmentInboundApiModelV20240320ModelError,
MskuPrepDetail as FulfillmentInboundApiModelV20240320MskuPrepDetail,
MskuPrepDetailInput as FulfillmentInboundApiModelV20240320MskuPrepDetailInput,
MskuQuantity as FulfillmentInboundApiModelV20240320MskuQuantity,
OperationProblem as FulfillmentInboundApiModelV20240320OperationProblem,
PackageGroupingInput as FulfillmentInboundApiModelV20240320PackageGroupingInput,
PackingOption as FulfillmentInboundApiModelV20240320PackingOption,
PackingOptionSummary as FulfillmentInboundApiModelV20240320PackingOptionSummary,
Pagination as FulfillmentInboundApiModelV20240320Pagination,
Pallet as FulfillmentInboundApiModelV20240320Pallet,
PalletInput as FulfillmentInboundApiModelV20240320PalletInput,
PlacementOption as FulfillmentInboundApiModelV20240320PlacementOption,
PlacementOptionSummary as FulfillmentInboundApiModelV20240320PlacementOptionSummary,
PrepInstruction as FulfillmentInboundApiModelV20240320PrepInstruction,
Quote as FulfillmentInboundApiModelV20240320Quote,
Region as FulfillmentInboundApiModelV20240320Region,
RequestedUpdates as FulfillmentInboundApiModelV20240320RequestedUpdates,
ScheduleSelfShipAppointmentRequest as FulfillmentInboundApiModelV20240320ScheduleSelfShipAppointmentRequest,
ScheduleSelfShipAppointmentResponse as FulfillmentInboundApiModelV20240320ScheduleSelfShipAppointmentResponse,
SelectedDeliveryWindow as FulfillmentInboundApiModelV20240320SelectedDeliveryWindow,
SelfShipAppointmentDetails as FulfillmentInboundApiModelV20240320SelfShipAppointmentDetails,
SelfShipAppointmentSlotsAvailability as FulfillmentInboundApiModelV20240320SelfShipAppointmentSlotsAvailability,
SetPackingInformationRequest as FulfillmentInboundApiModelV20240320SetPackingInformationRequest,
SetPackingInformationResponse as FulfillmentInboundApiModelV20240320SetPackingInformationResponse,
SetPrepDetailsRequest as FulfillmentInboundApiModelV20240320SetPrepDetailsRequest,
SetPrepDetailsResponse as FulfillmentInboundApiModelV20240320SetPrepDetailsResponse,
Shipment as FulfillmentInboundApiModelV20240320Shipment,
ShipmentDestination as FulfillmentInboundApiModelV20240320ShipmentDestination,
ShipmentSource as FulfillmentInboundApiModelV20240320ShipmentSource,
ShipmentSummary as FulfillmentInboundApiModelV20240320ShipmentSummary,
ShipmentTransportationConfiguration as FulfillmentInboundApiModelV20240320ShipmentTransportationConfiguration,
ShippingConfiguration as FulfillmentInboundApiModelV20240320ShippingConfiguration,
SpdTrackingDetail as FulfillmentInboundApiModelV20240320SpdTrackingDetail,
SpdTrackingDetailInput as FulfillmentInboundApiModelV20240320SpdTrackingDetailInput,
SpdTrackingItem as FulfillmentInboundApiModelV20240320SpdTrackingItem,
SpdTrackingItemInput as FulfillmentInboundApiModelV20240320SpdTrackingItemInput,
TaxDetails as FulfillmentInboundApiModelV20240320TaxDetails,
TaxRate as FulfillmentInboundApiModelV20240320TaxRate,
TrackingDetails as FulfillmentInboundApiModelV20240320TrackingDetails,
TrackingDetailsInput as FulfillmentInboundApiModelV20240320TrackingDetailsInput,
TransportationOption as FulfillmentInboundApiModelV20240320TransportationOption,
TransportationSelection as FulfillmentInboundApiModelV20240320TransportationSelection,
UpdateInboundPlanNameRequest as FulfillmentInboundApiModelV20240320UpdateInboundPlanNameRequest,
UpdateItemComplianceDetailsRequest as FulfillmentInboundApiModelV20240320UpdateItemComplianceDetailsRequest,
UpdateItemComplianceDetailsResponse as FulfillmentInboundApiModelV20240320UpdateItemComplianceDetailsResponse,
UpdateShipmentNameRequest as FulfillmentInboundApiModelV20240320UpdateShipmentNameRequest,
UpdateShipmentSourceAddressRequest as FulfillmentInboundApiModelV20240320UpdateShipmentSourceAddressRequest,
UpdateShipmentSourceAddressResponse as FulfillmentInboundApiModelV20240320UpdateShipmentSourceAddressResponse,
UpdateShipmentTrackingDetailsRequest as FulfillmentInboundApiModelV20240320UpdateShipmentTrackingDetailsRequest,
UpdateShipmentTrackingDetailsResponse as FulfillmentInboundApiModelV20240320UpdateShipmentTrackingDetailsResponse,
Weight as FulfillmentInboundApiModelV20240320Weight,
Window as FulfillmentInboundApiModelV20240320Window,
WindowInput as FulfillmentInboundApiModelV20240320WindowInput,
FbaInboundApiCancelInboundPlanRequest as FulfillmentInboundApiModelV20240320FbaInboundApiCancelInboundPlanRequest,
FbaInboundApiCancelSelfShipAppointmentRequest as FulfillmentInboundApiModelV20240320FbaInboundApiCancelSelfShipAppointmentRequest,
FbaInboundApiConfirmDeliveryWindowOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiConfirmDeliveryWindowOptionsRequest,
FbaInboundApiConfirmPackingOptionRequest as FulfillmentInboundApiModelV20240320FbaInboundApiConfirmPackingOptionRequest,
FbaInboundApiConfirmPlacementOptionRequest as FulfillmentInboundApiModelV20240320FbaInboundApiConfirmPlacementOptionRequest,
FbaInboundApiConfirmShipmentContentUpdatePreviewRequest as FulfillmentInboundApiModelV20240320FbaInboundApiConfirmShipmentContentUpdatePreviewRequest,
FbaInboundApiConfirmTransportationOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiConfirmTransportationOptionsRequest,
FbaInboundApiCreateInboundPlanRequest as FulfillmentInboundApiModelV20240320FbaInboundApiCreateInboundPlanRequest,
FbaInboundApiCreateMarketplaceItemLabelsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiCreateMarketplaceItemLabelsRequest,
FbaInboundApiGenerateDeliveryWindowOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGenerateDeliveryWindowOptionsRequest,
FbaInboundApiGeneratePackingOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGeneratePackingOptionsRequest,
FbaInboundApiGeneratePlacementOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGeneratePlacementOptionsRequest,
FbaInboundApiGenerateSelfShipAppointmentSlotsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGenerateSelfShipAppointmentSlotsRequest,
FbaInboundApiGenerateShipmentContentUpdatePreviewsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGenerateShipmentContentUpdatePreviewsRequest,
FbaInboundApiGenerateTransportationOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGenerateTransportationOptionsRequest,
FbaInboundApiGetDeliveryChallanDocumentRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGetDeliveryChallanDocumentRequest,
FbaInboundApiGetInboundOperationStatusRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGetInboundOperationStatusRequest,
FbaInboundApiGetInboundPlanRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGetInboundPlanRequest,
FbaInboundApiGetSelfShipAppointmentSlotsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGetSelfShipAppointmentSlotsRequest,
FbaInboundApiGetShipmentRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGetShipmentRequest,
FbaInboundApiGetShipmentContentUpdatePreviewRequest as FulfillmentInboundApiModelV20240320FbaInboundApiGetShipmentContentUpdatePreviewRequest,
FbaInboundApiListDeliveryWindowOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListDeliveryWindowOptionsRequest,
FbaInboundApiListInboundPlanBoxesRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListInboundPlanBoxesRequest,
FbaInboundApiListInboundPlanItemsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListInboundPlanItemsRequest,
FbaInboundApiListInboundPlanPalletsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListInboundPlanPalletsRequest,
FbaInboundApiListInboundPlansRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListInboundPlansRequest,
FbaInboundApiListItemComplianceDetailsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListItemComplianceDetailsRequest,
FbaInboundApiListPackingGroupBoxesRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListPackingGroupBoxesRequest,
FbaInboundApiListPackingGroupItemsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListPackingGroupItemsRequest,
FbaInboundApiListPackingOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListPackingOptionsRequest,
FbaInboundApiListPlacementOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListPlacementOptionsRequest,
FbaInboundApiListPrepDetailsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListPrepDetailsRequest,
FbaInboundApiListShipmentBoxesRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListShipmentBoxesRequest,
FbaInboundApiListShipmentContentUpdatePreviewsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListShipmentContentUpdatePreviewsRequest,
FbaInboundApiListShipmentItemsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListShipmentItemsRequest,
FbaInboundApiListShipmentPalletsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListShipmentPalletsRequest,
FbaInboundApiListTransportationOptionsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiListTransportationOptionsRequest,
FbaInboundApiScheduleSelfShipAppointmentRequest as FulfillmentInboundApiModelV20240320FbaInboundApiScheduleSelfShipAppointmentRequest,
FbaInboundApiSetPackingInformationRequest as FulfillmentInboundApiModelV20240320FbaInboundApiSetPackingInformationRequest,
FbaInboundApiSetPrepDetailsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiSetPrepDetailsRequest,
FbaInboundApiUpdateInboundPlanNameRequest as FulfillmentInboundApiModelV20240320FbaInboundApiUpdateInboundPlanNameRequest,
FbaInboundApiUpdateItemComplianceDetailsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiUpdateItemComplianceDetailsRequest,
FbaInboundApiUpdateShipmentNameRequest as FulfillmentInboundApiModelV20240320FbaInboundApiUpdateShipmentNameRequest,
FbaInboundApiUpdateShipmentSourceAddressRequest as FulfillmentInboundApiModelV20240320FbaInboundApiUpdateShipmentSourceAddressRequest,
FbaInboundApiUpdateShipmentTrackingDetailsRequest as FulfillmentInboundApiModelV20240320FbaInboundApiUpdateShipmentTrackingDetailsRequest,
} from './fulfillment-inbound-api-model-v20240320'
export {
AdditionalLocationInfo as FulfillmentOutboundApiModelAdditionalLocationInfo,
AmountUnitOfMeasureEnum as FulfillmentOutboundApiModelAmountUnitOfMeasureEnum,
CurrentStatus as FulfillmentOutboundApiModelCurrentStatus,
DropOffLocationTypeEnum as FulfillmentOutboundApiModelDropOffLocationTypeEnum,
EventCode as FulfillmentOutboundApiModelEventCode,
FeatureSettingsFeatureFulfillmentPolicyEnum as FulfillmentOutboundApiModelFeatureSettingsFeatureFulfillmentPolicyEnum,
FeeNameEnum as FulfillmentOutboundApiModelFeeNameEnum,
FulfillmentAction as FulfillmentOutboundApiModelFulfillmentAction,
FulfillmentOrderStatus as FulfillmentOutboundApiModelFulfillmentOrderStatus,
FulfillmentPolicy as FulfillmentOutboundApiModelFulfillmentPolicy,
FulfillmentPreviewItemShippingWeightCalculationMethodEnum as FulfillmentOutboundApiModelFulfillmentPreviewItemShippingWeightCalculationMethodEnum,
FulfillmentReturnItemStatus as FulfillmentOutboundApiModelFulfillmentReturnItemStatus,
FulfillmentShipmentFulfillmentShipmentStatusEnum as FulfillmentOutboundApiModelFulfillmentShipmentFulfillmentShipmentStatusEnum,
InvalidItemReasonCode as FulfillmentOutboundApiModelInvalidItemReasonCode,
ReturnItemDisposition as FulfillmentOutboundApiModelReturnItemDisposition,
ShippingSpeedCategory as FulfillmentOutboundApiModelShippingSpeedCategory,
WeightUnitEnum as FulfillmentOutboundApiModelWeightUnitEnum,
Address as FulfillmentOutboundApiModelAddress,
Amount as FulfillmentOutboundApiModelAmount,
CODSettings as FulfillmentOutboundApiModelCODSettings,
CancelFulfillmentOrderResponse as FulfillmentOutboundApiModelCancelFulfillmentOrderResponse,
CreateFulfillmentOrderItem as FulfillmentOutboundApiModelCreateFulfillmentOrderItem,
CreateFulfillmentOrderRequest as FulfillmentOutboundApiModelCreateFulfillmentOrderRequest,
CreateFulfillmentOrderResponse as FulfillmentOutboundApiModelCreateFulfillmentOrderResponse,
CreateFulfillmentReturnRequest as FulfillmentOutboundApiModelCreateFulfillmentReturnRequest,
CreateFulfillmentReturnResponse as FulfillmentOutboundApiModelCreateFulfillmentReturnResponse,
CreateFulfillmentReturnResult as FulfillmentOutboundApiModelCreateFulfillmentReturnResult,
CreateReturnItem as FulfillmentOutboundApiModelCreateReturnItem,
DateRange as FulfillmentOutboundApiModelDateRange,
DeliveryDocument as FulfillmentOutboundApiModelDeliveryDocument,
DeliveryInformation as FulfillmentOutboundApiModelDeliveryInformation,
DeliveryMessage as FulfillmentOutboundApiModelDeliveryMessage,
DeliveryOffer as FulfillmentOutboundApiModelDeliveryOffer,
DeliveryPolicy as FulfillmentOutboundApiModelDeliveryPolicy,
DeliveryPreferences as FulfillmentOutboundApiModelDeliveryPreferences,
DeliveryWindow as FulfillmentOutboundApiModelDeliveryWindow,
Destination as FulfillmentOutboundApiModelDestination,
DropOffLocation as FulfillmentOutboundApiModelDropOffLocation,
Feature as FulfillmentOutboundApiModelFeature,
FeatureSettings as FulfillmentOutboundApiModelFeatureSettings,
FeatureSku as FulfillmentOutboundApiModelFeatureSku,
Fee as FulfillmentOutboundApiModelFee,
FulfillmentOrder as FulfillmentOutboundApiModelFulfillmentOrder,
FulfillmentOrderItem as FulfillmentOutboundApiModelFulfillmentOrderItem,
FulfillmentPreview as FulfillmentOutboundApiModelFulfillmentPreview,
FulfillmentPreviewItem as FulfillmentOutboundApiModelFulfillmentPreviewItem,
FulfillmentPreviewShipment as FulfillmentOutboundApiModelFulfillmentPreviewShipment,
FulfillmentShipment as FulfillmentOutboundApiModelFulfillmentShipment,
FulfillmentShipmentItem as FulfillmentOutboundApiModelFulfillmentShipmentItem,
FulfillmentShipmentPackage as FulfillmentOutboundApiModelFulfillmentShipmentPackage,
GetDeliveryOffersProduct as FulfillmentOutboundApiModelGetDeliveryOffersProduct,
GetDeliveryOffersRequest as FulfillmentOutboundApiModelGetDeliveryOffersRequest,
GetDeliveryOffersResponse as FulfillmentOutboundApiModelGetDeliveryOffersResponse,
GetDeliveryOffersResult as FulfillmentOutboundApiModelGetDeliveryOffersResult,
GetDeliveryOffersTerms as FulfillmentOutboundApiModelGetDeliveryOffersTerms,
GetFeatureInventoryResponse as FulfillmentOutboundApiModelGetFeatureInventoryResponse,
GetFeatureInventoryResult as FulfillmentOutboundApiModelGetFeatureInventoryResult,
GetFeatureSkuResponse as FulfillmentOutboundApiModelGetFeatureSkuResponse,
GetFeatureSkuResult as FulfillmentOutboundApiModelGetFeatureSkuResult,
GetFeaturesResponse as FulfillmentOutboundApiModelGetFeaturesResponse,
GetFeaturesResult as FulfillmentOutboundApiModelGetFeaturesResult,
GetFulfillmentOrderResponse as FulfillmentOutboundApiModelGetFulfillmentOrderResponse,
GetFulfillmentOrderResult as FulfillmentOutboundApiModelGetFulfillmentOrderResult,
GetFulfillmentPreviewItem as FulfillmentOutboundApiModelGetFulfillmentPreviewItem,
GetFulfillmentPreviewRequest as FulfillmentOutboundApiModelGetFulfillmentPreviewRequest,
GetFulfillmentPreviewResponse as FulfillmentOutboundApiModelGetFulfillmentPreviewResponse,
GetFulfillmentPreviewResult as FulfillmentOutboundApiModelGetFulfillmentPreviewResult,
GetPackageTrackingDetailsResponse as FulfillmentOutboundApiModelGetPackageTrackingDetailsResponse,
InvalidItemReason as FulfillmentOutboundApiModelInvalidItemReason,
InvalidReturnItem as FulfillmentOutboundApiModelInvalidReturnItem,
ListAllFulfillmentOrdersResponse as FulfillmentOutboundApiModelListAllFulfillmentOrdersResponse,
ListAllFulfillmentOrdersResult as FulfillmentOutboundApiModelListAllFulfillmentOrdersResult,
ListReturnReasonCodesResponse as FulfillmentOutboundApiModelListReturnReasonCodesResponse,
ListReturnReasonCodesResult as FulfillmentOutboundApiModelListReturnReasonCodesResult,
LockerDetails as FulfillmentOutboundApiModelLockerDetails,
ModelError as FulfillmentOutboundApiModelModelError,
Money as FulfillmentOutboundApiModelMoney,
Origin as FulfillmentOutboundApiModelOrigin,
PackageTrackingDetails as FulfillmentOutboundApiModelPackageTrackingDetails,
PaymentInformation as FulfillmentOutboundApiModelPaymentInformation,
ProductIdentifier as FulfillmentOutboundApiModelProductIdentifier,
ReasonCodeDetails as FulfillmentOutboundApiModelReasonCodeDetails,
ReturnAuthorization as FulfillmentOutboundApiModelReturnAuthorization,
ReturnItem as FulfillmentOutboundApiModelReturnItem,
ScheduledDeliveryInfo as FulfillmentOutboundApiModelScheduledDeliveryInfo,
SubmitFulfillmentOrderStatusUpdateRequest as FulfillmentOutboundApiModelSubmitFulfillmentOrderStatusUpdateRequest,
SubmitFulfillmentOrderStatusUpdateResponse as FulfillmentOutboundApiModelSubmitFulfillmentOrderStatusUpdateResponse,
TrackingAddress as FulfillmentOutboundApiModelTrackingAddress,
TrackingEvent as FulfillmentOutboundApiModelTrackingEvent,
UnfulfillablePreviewItem as FulfillmentOutboundApiModelUnfulfillablePreviewItem,
UpdateFulfillmentOrderItem as FulfillmentOutboundApiModelUpdateFulfillmentOrderItem,
UpdateFulfillmentOrderRequest as FulfillmentOutboundApiModelUpdateFulfillmentOrderRequest,
UpdateFulfillmentOrderResponse as FulfillmentOutboundApiModelUpdateFulfillmentOrderResponse,
VariablePrecisionAddress as FulfillmentOutboundApiModelVariablePrecisionAddress,
Weight as FulfillmentOutboundApiModelWeight,
FbaOutboundApiCancelFulfillmentOrderRequest as FulfillmentOutboundApiModelFbaOutboundApiCancelFulfillmentOrderRequest,
FbaOutboundApiCreateFulfillmentOrderRequest as FulfillmentOutboundApiModelFbaOutboundApiCreateFulfillmentOrderRequest,
FbaOutboundApiCreateFulfillmentReturnRequest as FulfillmentOutboundApiModelFbaOutboundApiCreateFulfillmentReturnRequest,
FbaOutboundApiDeliveryOffersRequest as FulfillmentOutboundApiModelFbaOutboundApiDeliveryOffersRequest,
FbaOutboundApiGetFeatureInventoryRequest as FulfillmentOutboundApiModelFbaOutboundApiGetFeatureInventoryRequest,
FbaOutboundApiGetFeatureSKURequest as FulfillmentOutboundApiModelFbaOutboundApiGetFeatureSKURequest,
FbaOutboundApiGetFeaturesRequest as FulfillmentOutboundApiModelFbaOutboundApiGetFeaturesRequest,
FbaOutboundApiGetFulfillmentOrderRequest as FulfillmentOutboundApiModelFbaOutboundApiGetFulfillmentOrderRequest,
FbaOutboundApiGetFulfillmentPreviewRequest as FulfillmentOutboundApiModelFbaOutboundApiGetFulfillmentPreviewRequest,
FbaOutboundApiGetPackageTrackingDetailsRequest as FulfillmentOutboundApiModelFbaOutboundApiGetPackageTrackingDetailsRequest,
FbaOutboundApiListAllFulfillmentOrdersRequest as FulfillmentOutboundApiModelFbaOutboundApiListAllFulfillmentOrdersRequest,
FbaOutboundApiListReturnReasonCodesRequest as FulfillmentOutboundApiModelFbaOutboundApiListReturnReasonCodesRequest,
FbaOutboundApiSubmitFulfillmentOrderStatusUpdateRequest as FulfillmentOutboundApiModelFbaOutboundApiSubmitFulfillmentOrderStatusUpdateRequest,
FbaOutboundApiUpdateFulfillmentOrderRequest as FulfillmentOutboundApiModelFbaOutboundApiUpdateFulfillmentOrderRequest,
} from './fulfillment-outbound-api-model'
export {
ExportStatus as InvoicesApiModelExportStatus,
FileFormat as InvoicesApiModelFileFormat,
AttributeOption as InvoicesApiModelAttributeOption,
ErrorList as InvoicesApiModelErrorList,
Export as InvoicesApiModelExport,
ExportInvoicesRequest as InvoicesApiModelExportInvoicesRequest,
ExportInvoicesResponse as InvoicesApiModelExportInvoicesResponse,
GetInvoiceResponse as InvoicesApiModelGetInvoiceResponse,
GetInvoicesAttributesResponse as InvoicesApiModelGetInvoicesAttributesResponse,
GetInvoicesDocumentResponse as InvoicesApiModelGetInvoicesDocumentResponse,
GetInvoicesExportResponse as InvoicesApiModelGetInvoicesExportResponse,
GetInvoicesExportsResponse as InvoicesApiModelGetInvoicesExportsResponse,
GetInvoicesResponse as InvoicesApiModelGetInvoicesResponse,
Invoice as InvoicesApiModelInvoice,
InvoicesAttributes as InvoicesApiModelInvoicesAttributes,
InvoicesDocument as InvoicesApiModelInvoicesDocument,
ModelError as InvoicesApiModelModelError,
TransactionIdentifier as InvoicesApiModelTransactionIdentifier,
InvoicesApiCreateInvoicesExportRequest as InvoicesApiModelInvoicesApiCreateInvoicesExportRequest,
InvoicesApiGetInvoiceRequest as InvoicesApiModelInvoicesApiGetInvoiceRequest,
InvoicesApiGetInvoicesRequest as InvoicesApiModelInvoicesApiGetInvoicesRequest,
InvoicesApiGetInvoicesAttributesRequest as InvoicesApiModelInvoicesApiGetInvoicesAttributesRequest,
InvoicesApiGetInvoicesDocumentRequest as InvoicesApiModelInvoicesApiGetInvoicesDocumentRequest,
InvoicesApiGetInvoicesExportRequest as InvoicesApiModelInvoicesApiGetInvoicesExportRequest,
InvoicesApiGetInvoicesExportsRequest as InvoicesApiModelInvoicesApiGetInvoicesExportsRequest,
} from './invoices-api-model'
export {
IssueSeverityEnum as ListingsItemsApiModelIssueSeverityEnum,
ListingsItemPutRequestRequirementsEnum as ListingsItemsApiModelListingsItemPutRequestRequirementsEnum,
ListingsItemSubmissionResponseStatusEnum as ListingsItemsApiModelListingsItemSubmissionResponseStatusEnum,
PatchOperationOpEnum as ListingsItemsApiModelPatchOperationOpEnum,
ErrorList as ListingsItemsApiModelErrorList,
Issue as ListingsItemsApiModelIssue,
ListingsItemPatchRequest as ListingsItemsApiModelListingsItemPatchRequest,
ListingsItemPutRequest as ListingsItemsApiModelListingsItemPutRequest,
ListingsItemSubmissionResponse as ListingsItemsApiModelListingsItemSubmissionResponse,
ModelError as ListingsItemsApiModelModelError,
PatchOperation as ListingsItemsApiModelPatchOperation,
ListingsApiDeleteListingsItemRequest as ListingsItemsApiModelListingsApiDeleteListingsItemRequest,
ListingsApiPatchListingsItemRequest as ListingsItemsApiModelListingsApiPatchListingsItemRequest,
ListingsApiPutListingsItemRequest as ListingsItemsApiModelListingsApiPutListingsItemRequest,
} from './listings-items-api-model'
export {
IssueSeverityEnum as ListingsItemsApiModelV20210801IssueSeverityEnum,
IssueExemptionStatusEnum as ListingsItemsApiModelV20210801IssueExemptionStatusEnum,
ItemOfferByMarketplaceOfferTypeEnum as ListingsItemsApiModelV20210801ItemOfferByMarketplaceOfferTypeEnum,
ItemSummaryByMarketplaceConditionTypeEnum as ListingsItemsApiModelV20210801ItemSummaryByMarketplaceConditionTypeEnum,
ItemSummaryByMarketplaceStatusEnum as ListingsItemsApiModelV20210801ItemSummaryByMarketplaceStatusEnum,
ListingsItemPutRequestRequirementsEnum as ListingsItemsApiModelV20210801ListingsItemPutRequestRequirementsEnum,
ListingsItemSubmissionResponseStatusEnum as ListingsItemsApiModelV20210801ListingsItemSubmissionResponseStatusEnum,
PatchOperationOpEnum as ListingsItemsApiModelV20210801PatchOperationOpEnum,
Audience as ListingsItemsApiModelV20210801Audience,
ErrorList as ListingsItemsApiModelV20210801ErrorList,
FulfillmentAvailability as ListingsItemsApiModelV20210801FulfillmentAvailability,
Issue as ListingsItemsApiModelV20210801Issue,
IssueEnforcementAction as ListingsItemsApiModelV20210801IssueEnforcementAction,
IssueEnforcements as ListingsItemsApiModelV20210801IssueEnforcements,
IssueExemption as ListingsItemsApiModelV20210801IssueExemption,
Item as ListingsItemsApiModelV20210801Item,
ItemIdentifiersByMarketplace as ListingsItemsApiModelV20210801ItemIdentifiersByMarketplace,
ItemImage as ListingsItemsApiModelV20210801ItemImage,
ItemOfferByMarketplace as ListingsItemsApiModelV20210801ItemOfferByMarketplace,
ItemProcurement as ListingsItemsApiModelV20210801ItemProcurement,
ItemSearchResults as ListingsItemsApiModelV20210801ItemSearchResults,
ItemSummaryByMarketplace as ListingsItemsApiModelV20210801ItemSummaryByMarketplace,
ListingsItemPatchRequest as ListingsItemsApiModelV20210801ListingsItemPatchRequest,
ListingsItemPutRequest as ListingsItemsApiModelV20210801ListingsItemPutRequest,
ListingsItemSubmissionResponse as ListingsItemsApiModelV20210801ListingsItemSubmissionResponse,
ModelError as ListingsItemsApiModelV20210801ModelError,
Money as ListingsItemsApiModelV20210801Money,
Pagination as ListingsItemsApiModelV20210801Pagination,
PatchOperation as ListingsItemsApiModelV20210801PatchOperation,
Points as ListingsItemsApiModelV20210801Points,
ListingsApiDeleteListingsItemRequest as ListingsItemsApiModelV20210801ListingsApiDeleteListingsItemRequest,
ListingsApiGetListingsItemRequest as ListingsItemsApiModelV20210801ListingsApiGetListingsItemRequest,
ListingsApiPatchListingsItemRequest as ListingsItemsApiModelV20210801ListingsApiPatchListingsItemRequest,
ListingsApiPutListingsItemRequest as ListingsItemsApiModelV20210801ListingsApiPutListingsItemRequest,
ListingsApiSearchListingsItemsRequest as ListingsItemsApiModelV20210801ListingsApiSearchListingsItemsRequest,
} from './listings-items-api-model-v20210801'
export {
LinkVerbEnum as ListingsRestrictionsApiModelLinkVerbEnum,
ReasonReasonCodeEnum as ListingsRestrictionsApiModelReasonReasonCodeEnum,
RestrictionConditionTypeEnum as ListingsRestrictionsApiModelRestrictionConditionTypeEnum,
Link as ListingsRestrictionsApiModelLink,
ModelError as ListingsRestrictionsApiModelModelError,
Reason as ListingsRestrictionsApiModelReason,
Restriction as ListingsRestrictionsApiModelRestriction,
RestrictionList as ListingsRestrictionsApiModelRestrictionList,
ListingsApiGetListingsRestrictionsRequest as ListingsRestrictionsApiModelListingsApiGetListingsRestrictionsRequest,
} from './listings-restrictions-api-model'
export {
CarrierWillPickUpOption as MerchantFulfillmentApiModelCarrierWillPickUpOption,
DangerousGoodsDetailsPackingGroupEnum as MerchantFulfillmentApiModelDangerousGoodsDetailsPackingGroupEnum,
DangerousGoodsDetailsPackingInstructionEnum as MerchantFulfillmentApiModelDangerousGoodsDetailsPackingInstructionEnum,
DeliveryExperienceOption as MerchantFulfillmentApiModelDeliveryExperienceOption,
DeliveryExperienceType as MerchantFulfillmentApiModelDeliveryExperienceType,
FileType as MerchantFulfillmentApiModelFileType,
HazmatType as MerchantFulfillmentApiModelHazmatType,
InputTargetType as MerchantFulfillmentApiModelInputTargetType,
LabelFormat as MerchantFulfillmentApiModelLabelFormat,
LiquidVolumeUnitEnum as MerchantFulfillmentApiModelLiquidVolumeUnitEnum,
PredefinedPackageDimensions as MerchantFulfillmentApiModelPredefinedPackageDimensions,
ShipmentStatus as MerchantFulfillmentApiModelShipmentStatus,
StandardIdForLabel as MerchantFulfillmentApiModelStandardIdForLabel,
UnitOfLength as MerchantFulfillmentApiModelUnitOfLength,
UnitOfWeight as MerchantFulfillmentApiModelUnitOfWeight,
AdditionalInputs as MerchantFulfillmentApiModelAdditionalInputs,
AdditionalSellerInput as MerchantFulfillmentApiModelAdditionalSellerInput,
AdditionalSellerInputs as MerchantFulfillmentApiModelAdditionalSellerInputs,
Address as MerchantFulfillmentApiModelAddress,
AvailableCarrierWillPickUpOption as MerchantFulfillmentApiModelAvailableCarrierWillPickUpOption,
AvailableDeliveryExperienceOption as MerchantFulfillmentApiModelAvailableDeliveryExperienceOption,
AvailableShippingServiceOptions as MerchantFulfillmentApiModelAvailableShippingServiceOptions,
Benefits as MerchantFulfillmentApiModelBenefits,
CancelShipmentResponse as MerchantFulfillmentApiModelCancelShipmentResponse,
Constraint as MerchantFulfillmentApiModelConstraint,
CreateShipmentRequest as MerchantFulfillmentApiModelCreateShipmentRequest,
CreateShipmentResponse as MerchantFulfillmentApiModelCreateShipmentResponse,
CurrencyAmount as MerchantFulfillmentApiModelCurrencyAmount,
DangerousGoodsDetails as MerchantFulfillmentApiModelDangerousGoodsDetails,
ExcludedBenefit as MerchantFulfillmentApiModelExcludedBenefit,
FileContents as MerchantFulfillmentApiModelFileContents,
GetAdditionalSellerInputsRequest as MerchantFulfillmentApiModelGetAdditionalSellerInputsRequest,
GetAdditionalSellerInputsResponse as MerchantFulfillmentApiModelGetAdditionalSellerInputsResponse,
GetAdditionalSellerInputsResult as MerchantFulfillmentApiModelGetAdditionalSellerInputsResult,
GetEligibleShipmentServicesRequest as MerchantFulfillmentApiModelGetEligibleShipmentServicesRequest,
GetEligibleShipmentServicesResponse as MerchantFulfillmentApiModelGetEligibleShipmentServicesResponse,
GetEligibleShipmentServicesResult as MerchantFulfillmentApiModelGetEligibleShipmentServicesResult,
GetShipmentResponse as MerchantFulfillmentApiModelGetShipmentResponse,
Item as MerchantFulfillmentApiModelItem,
ItemLevelFields as MerchantFulfillmentApiModelItemLevelFields,
Label as MerchantFulfillmentApiModelLabel,
LabelCustomization as MerchantFulfillmentApiModelLabelCustomization,
LabelDimensions as MerchantFulfillmentApiModelLabelDimensions,
LabelFormatOption as MerchantFulfillmentApiModelLabelFormatOption,
LabelFormatOptionRequest as MerchantFulfillmentApiModelLabelFormatOptionRequest,
Length as MerchantFulfillmentApiModelLength,
LiquidVolume as MerchantFulfillmentApiModelLiquidVolume,
ModelError as MerchantFulfillmentApiModelModelError,
PackageDimensions as MerchantFulfillmentApiModelPackageDimensions,
RejectedShippingService as MerchantFulfillmentApiModelRejectedShippingService,
SellerInputDefinition as MerchantFulfillmentApiModelSellerInputDefinition,
Shipment as MerchantFulfillmentApiModelShipment,
ShipmentRequestDetails as MerchantFulfillmentApiModelShipmentRequestDetails,
ShippingOfferingFilter as MerchantFulfillmentApiModelShippingOfferingFilter,
ShippingService as MerchantFulfillmentApiModelShippingService,
ShippingServiceOptions as MerchantFulfillmentApiModelShippingServiceOptions,
TemporarilyUnavailableCarrier as MerchantFulfillmentApiModelTemporarilyUnavailableCarrier,
TermsAndConditionsNotAcceptedCarrier as MerchantFulfillmentApiModelTermsAndConditionsNotAcceptedCarrier,
Weight as MerchantFulfillmentApiModelWeight,
MerchantFulfillmentApiCancelShipmentRequest as MerchantFulfillmentApiModelMerchantFulfillmentApiCancelShipmentRequest,
MerchantFulfillmentApiCreateShipmentRequest as MerchantFulfillmentApiModelMerchantFulfillmentApiCreateShipmentRequest,
MerchantFulfillmentApiGetAdditionalSellerInputsRequest as MerchantFulfillmentApiModelMerchantFulfillmentApiGetAdditionalSellerInputsRequest,
MerchantFulfillmentApiGetEligibleShipmentServicesRequest as MerchantFulfillmentApiModelMerchantFulfillmentApiGetEligibleShipmentServicesRequest,
MerchantFulfillmentApiGetShipmentRequest as MerchantFulfillmentApiModelMerchantFulfillmentApiGetShipmentRequest,
} from './merchant-fulfillment-api-model'
export {
Attachment as MessagingApiModelAttachment,
CreateAmazonMotorsRequest as MessagingApiModelCreateAmazonMotorsRequest,
CreateAmazonMotorsResponse as MessagingApiModelCreateAmazonMotorsResponse,
CreateConfirmCustomizationDetailsRequest as MessagingApiModelCreateConfirmCustomizationDetailsRequest,
CreateConfirmCustomizationDetailsResponse as MessagingApiModelCreateConfirmCustomizationDetailsResponse,
CreateConfirmDeliveryDetailsRequest as MessagingApiModelCreateConfirmDeliveryDetailsRequest,
CreateConfirmDeliveryDetailsResponse as MessagingApiModelCreateConfirmDeliveryDetailsResponse,
CreateConfirmOrderDetailsRequest as MessagingApiModelCreateConfirmOrderDetailsRequest,
CreateConfirmOrderDetailsResponse as MessagingApiModelCreateConfirmOrderDetailsResponse,
CreateConfirmServiceDetailsRequest as MessagingApiModelCreateConfirmServiceDetailsRequest,
CreateConfirmServiceDetailsResponse as MessagingApiModelCreateConfirmServiceDetailsResponse,
CreateDigitalAccessKeyRequest as MessagingApiModelCreateDigitalAccessKeyRequest,
CreateDigitalAccessKeyResponse as MessagingApiModelCreateDigitalAccessKeyResponse,
CreateLegalDisclosureRequest as MessagingApiModelCreateLegalDisclosureRequest,