forked from codyfauser/ebay
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathebay.gemspec
1262 lines (1257 loc) · 60.5 KB
/
ebay.gemspec
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
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "ebay"
s.version = "0.17.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["presmini"]
s.date = "2012-03-27"
s.description = "Ruby Gem to interact with Ebay APIs - Extension of http://ebayapi.rubyforge.org by Cody Fauser"
s.email = "[email protected]"
s.extra_rdoc_files = [
"README"
]
s.files = [
"CHANGELOG",
"MIT-LICENSE",
"README",
"Rakefile",
"VERSION",
"ebay.gemspec",
"examples/add_item.rb",
"examples/add_member_message_aaq_to_partner.rb",
"examples/config.template.rb",
"examples/end_item.rb",
"examples/get_api_usage.rb",
"examples/get_attributes_xsl.rb",
"examples/get_ebay_details.rb",
"examples/get_ebay_time.rb",
"examples/get_ebay_time_raw.rb",
"examples/get_item.rb",
"examples/get_item_transactions.rb",
"examples/get_items_selling.rb",
"examples/get_my_messages.rb",
"examples/get_my_messages_folders.rb",
"examples/get_notification_preferences.rb",
"examples/get_notifications_usage.rb",
"examples/get_product_finder_xsl.rb",
"examples/get_search_results.rb",
"examples/get_user.rb",
"examples/mark_my_messages_message_as_read.rb",
"examples/revise_item.rb",
"examples/set_notification_preferences.rb",
"examples/verify_add_item.rb",
"init.rb",
"lib/ebay.rb",
"lib/ebay/api.rb",
"lib/ebay/api_methods.rb",
"lib/ebay/ebay.rb",
"lib/ebay/enumeration.rb",
"lib/ebay/inflections.rb",
"lib/ebay/initializer.rb",
"lib/ebay/notification.rb",
"lib/ebay/request/base.rb",
"lib/ebay/request/connection.rb",
"lib/ebay/requests.rb",
"lib/ebay/requests/abstract.rb",
"lib/ebay/requests/add_dispute.rb",
"lib/ebay/requests/add_dispute_response.rb",
"lib/ebay/requests/add_fixed_price_item.rb",
"lib/ebay/requests/add_item.rb",
"lib/ebay/requests/add_item_from_selling_manager_template.rb",
"lib/ebay/requests/add_items.rb",
"lib/ebay/requests/add_member_message_aaq_to_partner.rb",
"lib/ebay/requests/add_member_message_rtq.rb",
"lib/ebay/requests/add_member_messages_aaq_to_bidder.rb",
"lib/ebay/requests/add_order.rb",
"lib/ebay/requests/add_second_chance_item.rb",
"lib/ebay/requests/add_selling_manager_inventory_folder.rb",
"lib/ebay/requests/add_selling_manager_product.rb",
"lib/ebay/requests/add_selling_manager_template.rb",
"lib/ebay/requests/add_to_item_description.rb",
"lib/ebay/requests/add_to_watch_list.rb",
"lib/ebay/requests/add_transaction_confirmation_item.rb",
"lib/ebay/requests/complete_sale.rb",
"lib/ebay/requests/confirm_identity.rb",
"lib/ebay/requests/delete_my_messages.rb",
"lib/ebay/requests/delete_selling_manager_inventory_folder.rb",
"lib/ebay/requests/delete_selling_manager_item_automation_rule.rb",
"lib/ebay/requests/delete_selling_manager_product.rb",
"lib/ebay/requests/delete_selling_manager_template.rb",
"lib/ebay/requests/delete_selling_manager_template_automation_rule.rb",
"lib/ebay/requests/disable_unpaid_item_assistance.rb",
"lib/ebay/requests/end_fixed_price_item.rb",
"lib/ebay/requests/end_item.rb",
"lib/ebay/requests/end_items.rb",
"lib/ebay/requests/fetch_token.rb",
"lib/ebay/requests/file_rental_dispute.rb",
"lib/ebay/requests/get_account.rb",
"lib/ebay/requests/get_ad_format_leads.rb",
"lib/ebay/requests/get_all_bidders.rb",
"lib/ebay/requests/get_api_access_rules.rb",
"lib/ebay/requests/get_attributes_cs.rb",
"lib/ebay/requests/get_attributes_xsl.rb",
"lib/ebay/requests/get_best_offers.rb",
"lib/ebay/requests/get_bidder_list.rb",
"lib/ebay/requests/get_categories.rb",
"lib/ebay/requests/get_category2_cs.rb",
"lib/ebay/requests/get_category_features.rb",
"lib/ebay/requests/get_category_listings.rb",
"lib/ebay/requests/get_category_mappings.rb",
"lib/ebay/requests/get_category_specifics.rb",
"lib/ebay/requests/get_challenge_token.rb",
"lib/ebay/requests/get_charities.rb",
"lib/ebay/requests/get_client_alerts_auth_token.rb",
"lib/ebay/requests/get_contextual_keywords.rb",
"lib/ebay/requests/get_cross_promotions.rb",
"lib/ebay/requests/get_description_templates.rb",
"lib/ebay/requests/get_dispute.rb",
"lib/ebay/requests/get_ebay_details.rb",
"lib/ebay/requests/get_ebay_official_time.rb",
"lib/ebay/requests/get_feedback.rb",
"lib/ebay/requests/get_high_bidders.rb",
"lib/ebay/requests/get_item.rb",
"lib/ebay/requests/get_item_recommendations.rb",
"lib/ebay/requests/get_item_shipping.rb",
"lib/ebay/requests/get_item_transactions.rb",
"lib/ebay/requests/get_items_awaiting_feedback.rb",
"lib/ebay/requests/get_member_messages.rb",
"lib/ebay/requests/get_message_preferences.rb",
"lib/ebay/requests/get_my_ebay_buying.rb",
"lib/ebay/requests/get_my_ebay_reminders.rb",
"lib/ebay/requests/get_my_ebay_selling.rb",
"lib/ebay/requests/get_my_messages.rb",
"lib/ebay/requests/get_notification_preferences.rb",
"lib/ebay/requests/get_notifications_usage.rb",
"lib/ebay/requests/get_order_transactions.rb",
"lib/ebay/requests/get_orders.rb",
"lib/ebay/requests/get_picture_manager_details.rb",
"lib/ebay/requests/get_picture_manager_options.rb",
"lib/ebay/requests/get_popular_keywords.rb",
"lib/ebay/requests/get_product_family_members.rb",
"lib/ebay/requests/get_product_finder.rb",
"lib/ebay/requests/get_product_finder_xsl.rb",
"lib/ebay/requests/get_product_search_page.rb",
"lib/ebay/requests/get_product_search_results.rb",
"lib/ebay/requests/get_product_selling_pages.rb",
"lib/ebay/requests/get_products.rb",
"lib/ebay/requests/get_promotion_rules.rb",
"lib/ebay/requests/get_promotional_sale_details.rb",
"lib/ebay/requests/get_search_results.rb",
"lib/ebay/requests/get_seller_dashboard.rb",
"lib/ebay/requests/get_seller_events.rb",
"lib/ebay/requests/get_seller_list.rb",
"lib/ebay/requests/get_seller_payments.rb",
"lib/ebay/requests/get_seller_transactions.rb",
"lib/ebay/requests/get_selling_manager_alerts.rb",
"lib/ebay/requests/get_selling_manager_email_log.rb",
"lib/ebay/requests/get_selling_manager_inventory.rb",
"lib/ebay/requests/get_selling_manager_inventory_folder.rb",
"lib/ebay/requests/get_selling_manager_item_automation_rule.rb",
"lib/ebay/requests/get_selling_manager_sale_record.rb",
"lib/ebay/requests/get_selling_manager_sold_listings.rb",
"lib/ebay/requests/get_selling_manager_template_automation_rule.rb",
"lib/ebay/requests/get_selling_manager_templates.rb",
"lib/ebay/requests/get_session_id.rb",
"lib/ebay/requests/get_shipping_discount_profiles.rb",
"lib/ebay/requests/get_store.rb",
"lib/ebay/requests/get_store_category_update_status.rb",
"lib/ebay/requests/get_store_custom_page.rb",
"lib/ebay/requests/get_store_options.rb",
"lib/ebay/requests/get_store_preferences.rb",
"lib/ebay/requests/get_suggested_categories.rb",
"lib/ebay/requests/get_tax_table.rb",
"lib/ebay/requests/get_token_status.rb",
"lib/ebay/requests/get_user.rb",
"lib/ebay/requests/get_user_contact_details.rb",
"lib/ebay/requests/get_user_disputes.rb",
"lib/ebay/requests/get_user_preferences.rb",
"lib/ebay/requests/get_vero_reason_code_details.rb",
"lib/ebay/requests/get_vero_report_status.rb",
"lib/ebay/requests/get_version.rb",
"lib/ebay/requests/get_want_it_now_post.rb",
"lib/ebay/requests/get_want_it_now_search_results.rb",
"lib/ebay/requests/issue_refund.rb",
"lib/ebay/requests/leave_feedback.rb",
"lib/ebay/requests/move_selling_manager_inventory_folder.rb",
"lib/ebay/requests/place_offer.rb",
"lib/ebay/requests/relist_fixed_price_item.rb",
"lib/ebay/requests/relist_item.rb",
"lib/ebay/requests/remove_from_watch_list.rb",
"lib/ebay/requests/respond_to_best_offer.rb",
"lib/ebay/requests/respond_to_feedback.rb",
"lib/ebay/requests/respond_to_want_it_now_post.rb",
"lib/ebay/requests/revise_checkout_status.rb",
"lib/ebay/requests/revise_fixed_price_item.rb",
"lib/ebay/requests/revise_inventory_status.rb",
"lib/ebay/requests/revise_item.rb",
"lib/ebay/requests/revise_my_messages.rb",
"lib/ebay/requests/revise_my_messages_folders.rb",
"lib/ebay/requests/revise_selling_manager_inventory_folder.rb",
"lib/ebay/requests/revise_selling_manager_product.rb",
"lib/ebay/requests/revise_selling_manager_sale_record.rb",
"lib/ebay/requests/revise_selling_manager_template.rb",
"lib/ebay/requests/revoke_token.rb",
"lib/ebay/requests/save_item_to_selling_manager_template.rb",
"lib/ebay/requests/seller_reverse_dispute.rb",
"lib/ebay/requests/send_invoice.rb",
"lib/ebay/requests/set_message_preferences.rb",
"lib/ebay/requests/set_notification_preferences.rb",
"lib/ebay/requests/set_picture_manager_details.rb",
"lib/ebay/requests/set_promotional_sale.rb",
"lib/ebay/requests/set_promotional_sale_listings.rb",
"lib/ebay/requests/set_selling_manager_feedback_options.rb",
"lib/ebay/requests/set_selling_manager_item_automation_rule.rb",
"lib/ebay/requests/set_selling_manager_template_automation_rule.rb",
"lib/ebay/requests/set_shipping_discount_profiles.rb",
"lib/ebay/requests/set_store.rb",
"lib/ebay/requests/set_store_categories.rb",
"lib/ebay/requests/set_store_custom_page.rb",
"lib/ebay/requests/set_store_preferences.rb",
"lib/ebay/requests/set_tax_table.rb",
"lib/ebay/requests/set_user_notes.rb",
"lib/ebay/requests/set_user_preferences.rb",
"lib/ebay/requests/update_rental_status.rb",
"lib/ebay/requests/upload_site_hosted_pictures.rb",
"lib/ebay/requests/validate_challenge_input.rb",
"lib/ebay/requests/validate_test_user_registration.rb",
"lib/ebay/requests/verify_add_fixed_price_item.rb",
"lib/ebay/requests/verify_add_item.rb",
"lib/ebay/requests/verify_add_second_chance_item.rb",
"lib/ebay/requests/verify_relist_item.rb",
"lib/ebay/requests/vero_report_items.rb",
"lib/ebay/response/base.rb",
"lib/ebay/responses.rb",
"lib/ebay/responses/abstract.rb",
"lib/ebay/responses/add_dispute.rb",
"lib/ebay/responses/add_dispute_response.rb",
"lib/ebay/responses/add_fixed_price_item.rb",
"lib/ebay/responses/add_item.rb",
"lib/ebay/responses/add_item_from_selling_manager_template.rb",
"lib/ebay/responses/add_items.rb",
"lib/ebay/responses/add_member_message_aaq_to_partner.rb",
"lib/ebay/responses/add_member_message_rtq.rb",
"lib/ebay/responses/add_member_messages_aaq_to_bidder.rb",
"lib/ebay/responses/add_order.rb",
"lib/ebay/responses/add_second_chance_item.rb",
"lib/ebay/responses/add_selling_manager_inventory_folder.rb",
"lib/ebay/responses/add_selling_manager_product.rb",
"lib/ebay/responses/add_selling_manager_template.rb",
"lib/ebay/responses/add_to_item_description.rb",
"lib/ebay/responses/add_to_watch_list.rb",
"lib/ebay/responses/add_transaction_confirmation_item.rb",
"lib/ebay/responses/complete_sale.rb",
"lib/ebay/responses/confirm_identity.rb",
"lib/ebay/responses/delete_my_messages.rb",
"lib/ebay/responses/delete_selling_manager_inventory_folder.rb",
"lib/ebay/responses/delete_selling_manager_item_automation_rule.rb",
"lib/ebay/responses/delete_selling_manager_product.rb",
"lib/ebay/responses/delete_selling_manager_template.rb",
"lib/ebay/responses/delete_selling_manager_template_automation_rule.rb",
"lib/ebay/responses/disable_unpaid_item_assistance.rb",
"lib/ebay/responses/end_fixed_price_item.rb",
"lib/ebay/responses/end_item.rb",
"lib/ebay/responses/end_items.rb",
"lib/ebay/responses/fetch_token.rb",
"lib/ebay/responses/file_rental_dispute.rb",
"lib/ebay/responses/get_account.rb",
"lib/ebay/responses/get_ad_format_leads.rb",
"lib/ebay/responses/get_all_bidders.rb",
"lib/ebay/responses/get_api_access_rules.rb",
"lib/ebay/responses/get_attributes_cs.rb",
"lib/ebay/responses/get_attributes_xsl.rb",
"lib/ebay/responses/get_best_offers.rb",
"lib/ebay/responses/get_bidder_list.rb",
"lib/ebay/responses/get_categories.rb",
"lib/ebay/responses/get_category2_cs.rb",
"lib/ebay/responses/get_category_features.rb",
"lib/ebay/responses/get_category_listings.rb",
"lib/ebay/responses/get_category_mappings.rb",
"lib/ebay/responses/get_category_specifics.rb",
"lib/ebay/responses/get_challenge_token.rb",
"lib/ebay/responses/get_charities.rb",
"lib/ebay/responses/get_client_alerts_auth_token.rb",
"lib/ebay/responses/get_contextual_keywords.rb",
"lib/ebay/responses/get_cross_promotions.rb",
"lib/ebay/responses/get_description_templates.rb",
"lib/ebay/responses/get_dispute.rb",
"lib/ebay/responses/get_ebay_details.rb",
"lib/ebay/responses/get_ebay_official_time.rb",
"lib/ebay/responses/get_feedback.rb",
"lib/ebay/responses/get_high_bidders.rb",
"lib/ebay/responses/get_item.rb",
"lib/ebay/responses/get_item_recommendations.rb",
"lib/ebay/responses/get_item_shipping.rb",
"lib/ebay/responses/get_item_transactions.rb",
"lib/ebay/responses/get_items_awaiting_feedback.rb",
"lib/ebay/responses/get_member_messages.rb",
"lib/ebay/responses/get_message_preferences.rb",
"lib/ebay/responses/get_my_ebay_buying.rb",
"lib/ebay/responses/get_my_ebay_reminders.rb",
"lib/ebay/responses/get_my_ebay_selling.rb",
"lib/ebay/responses/get_my_messages.rb",
"lib/ebay/responses/get_notification_preferences.rb",
"lib/ebay/responses/get_notifications_usage.rb",
"lib/ebay/responses/get_order_transactions.rb",
"lib/ebay/responses/get_orders.rb",
"lib/ebay/responses/get_picture_manager_details.rb",
"lib/ebay/responses/get_picture_manager_options.rb",
"lib/ebay/responses/get_popular_keywords.rb",
"lib/ebay/responses/get_product_family_members.rb",
"lib/ebay/responses/get_product_finder.rb",
"lib/ebay/responses/get_product_finder_xsl.rb",
"lib/ebay/responses/get_product_search_page.rb",
"lib/ebay/responses/get_product_search_results.rb",
"lib/ebay/responses/get_product_selling_pages.rb",
"lib/ebay/responses/get_products.rb",
"lib/ebay/responses/get_promotion_rules.rb",
"lib/ebay/responses/get_promotional_sale_details.rb",
"lib/ebay/responses/get_search_results.rb",
"lib/ebay/responses/get_seller_dashboard.rb",
"lib/ebay/responses/get_seller_events.rb",
"lib/ebay/responses/get_seller_list.rb",
"lib/ebay/responses/get_seller_payments.rb",
"lib/ebay/responses/get_seller_transactions.rb",
"lib/ebay/responses/get_selling_manager_alerts.rb",
"lib/ebay/responses/get_selling_manager_email_log.rb",
"lib/ebay/responses/get_selling_manager_inventory.rb",
"lib/ebay/responses/get_selling_manager_inventory_folder.rb",
"lib/ebay/responses/get_selling_manager_item_automation_rule.rb",
"lib/ebay/responses/get_selling_manager_sale_record.rb",
"lib/ebay/responses/get_selling_manager_sold_listings.rb",
"lib/ebay/responses/get_selling_manager_template_automation_rule.rb",
"lib/ebay/responses/get_selling_manager_templates.rb",
"lib/ebay/responses/get_session_id.rb",
"lib/ebay/responses/get_shipping_discount_profiles.rb",
"lib/ebay/responses/get_store.rb",
"lib/ebay/responses/get_store_category_update_status.rb",
"lib/ebay/responses/get_store_custom_page.rb",
"lib/ebay/responses/get_store_options.rb",
"lib/ebay/responses/get_store_preferences.rb",
"lib/ebay/responses/get_suggested_categories.rb",
"lib/ebay/responses/get_tax_table.rb",
"lib/ebay/responses/get_token_status.rb",
"lib/ebay/responses/get_user.rb",
"lib/ebay/responses/get_user_contact_details.rb",
"lib/ebay/responses/get_user_disputes.rb",
"lib/ebay/responses/get_user_preferences.rb",
"lib/ebay/responses/get_vero_reason_code_details.rb",
"lib/ebay/responses/get_vero_report_status.rb",
"lib/ebay/responses/get_version.rb",
"lib/ebay/responses/get_want_it_now_post.rb",
"lib/ebay/responses/get_want_it_now_search_results.rb",
"lib/ebay/responses/issue_refund.rb",
"lib/ebay/responses/items_canceled_event.rb",
"lib/ebay/responses/leave_feedback.rb",
"lib/ebay/responses/move_selling_manager_inventory_folder.rb",
"lib/ebay/responses/notification_message.rb",
"lib/ebay/responses/place_offer.rb",
"lib/ebay/responses/relist_fixed_price_item.rb",
"lib/ebay/responses/relist_item.rb",
"lib/ebay/responses/remove_from_watch_list.rb",
"lib/ebay/responses/respond_to_best_offer.rb",
"lib/ebay/responses/respond_to_feedback.rb",
"lib/ebay/responses/respond_to_want_it_now_post.rb",
"lib/ebay/responses/revise_checkout_status.rb",
"lib/ebay/responses/revise_fixed_price_item.rb",
"lib/ebay/responses/revise_inventory_status.rb",
"lib/ebay/responses/revise_item.rb",
"lib/ebay/responses/revise_my_messages.rb",
"lib/ebay/responses/revise_my_messages_folders.rb",
"lib/ebay/responses/revise_selling_manager_inventory_folder.rb",
"lib/ebay/responses/revise_selling_manager_product.rb",
"lib/ebay/responses/revise_selling_manager_sale_record.rb",
"lib/ebay/responses/revise_selling_manager_template.rb",
"lib/ebay/responses/revoke_token.rb",
"lib/ebay/responses/save_item_to_selling_manager_template.rb",
"lib/ebay/responses/seller_reverse_dispute.rb",
"lib/ebay/responses/send_invoice.rb",
"lib/ebay/responses/set_message_preferences.rb",
"lib/ebay/responses/set_notification_preferences.rb",
"lib/ebay/responses/set_picture_manager_details.rb",
"lib/ebay/responses/set_promotional_sale.rb",
"lib/ebay/responses/set_promotional_sale_listings.rb",
"lib/ebay/responses/set_selling_manager_feedback_options.rb",
"lib/ebay/responses/set_selling_manager_item_automation_rule.rb",
"lib/ebay/responses/set_selling_manager_template_automation_rule.rb",
"lib/ebay/responses/set_shipping_discount_profiles.rb",
"lib/ebay/responses/set_store.rb",
"lib/ebay/responses/set_store_categories.rb",
"lib/ebay/responses/set_store_custom_page.rb",
"lib/ebay/responses/set_store_preferences.rb",
"lib/ebay/responses/set_tax_table.rb",
"lib/ebay/responses/set_user_notes.rb",
"lib/ebay/responses/set_user_preferences.rb",
"lib/ebay/responses/update_rental_status.rb",
"lib/ebay/responses/upload_site_hosted_pictures.rb",
"lib/ebay/responses/validate_challenge_input.rb",
"lib/ebay/responses/validate_test_user_registration.rb",
"lib/ebay/responses/verify_add_fixed_price_item.rb",
"lib/ebay/responses/verify_add_item.rb",
"lib/ebay/responses/verify_add_second_chance_item.rb",
"lib/ebay/responses/verify_relist_item.rb",
"lib/ebay/responses/vero_report_items.rb",
"lib/ebay/schema/mapper.rb",
"lib/ebay/schema/mapper/class_definition.rb",
"lib/ebay/schema/mapper/class_template.rb",
"lib/ebay/schema/mapper/ebay_schema_importer.rb",
"lib/ebay/schema/mapper/enumeration.rb",
"lib/ebay/schema/mapper/enumeration_validation.rb",
"lib/ebay/schema/mapper/node.rb",
"lib/ebay/schema/mapper/parser.rb",
"lib/ebay/schema/mapper/ruby_class_generator.rb",
"lib/ebay/schema/mapper/ruby_class_generator_helper.rb",
"lib/ebay/schema/mapper/schema.rb",
"lib/ebay/schema/mapper/templates/abstract_request.erb",
"lib/ebay/schema/mapper/templates/application_delivery_preferences.erb",
"lib/ebay/schema/mapper/templates/base.erb",
"lib/ebay/schema/mapper/templates/value.erb",
"lib/ebay/schema/mapper/templates/xsl_file.erb",
"lib/ebay/schema/mapper/xsd2ebay.rb",
"lib/ebay/schema/version.rb",
"lib/ebay/types.rb",
"lib/ebay/types/access_rule_current_status_code.rb",
"lib/ebay/types/access_rule_status_code.rb",
"lib/ebay/types/account_detail_entry_code.rb",
"lib/ebay/types/account_entry.rb",
"lib/ebay/types/account_entry_sort_type_code.rb",
"lib/ebay/types/account_history_selection_code.rb",
"lib/ebay/types/account_state_code.rb",
"lib/ebay/types/account_summary.rb",
"lib/ebay/types/ack_code.rb",
"lib/ebay/types/ad_format_enabled_code.rb",
"lib/ebay/types/ad_format_enabled_definition.rb",
"lib/ebay/types/ad_format_lead.rb",
"lib/ebay/types/ad_format_lead_status_code.rb",
"lib/ebay/types/add_item_request_container.rb",
"lib/ebay/types/add_item_response_container.rb",
"lib/ebay/types/add_member_messages_aaq_to_bidder_request_container.rb",
"lib/ebay/types/add_member_messages_aaq_to_bidder_response_container.rb",
"lib/ebay/types/additional_account.rb",
"lib/ebay/types/address.rb",
"lib/ebay/types/address_owner_code.rb",
"lib/ebay/types/address_record_type_code.rb",
"lib/ebay/types/address_status_code.rb",
"lib/ebay/types/affiliate_tracking_details.rb",
"lib/ebay/types/amount.rb",
"lib/ebay/types/announcement_message.rb",
"lib/ebay/types/announcement_message_code.rb",
"lib/ebay/types/api_access_rule.rb",
"lib/ebay/types/application_delivery_preferences.rb",
"lib/ebay/types/application_device_type_code.rb",
"lib/ebay/types/asq_preferences.rb",
"lib/ebay/types/attribute.rb",
"lib/ebay/types/attribute_conversion_enabled_code.rb",
"lib/ebay/types/attribute_conversion_enabled_feature_definition.rb",
"lib/ebay/types/attribute_recommendations.rb",
"lib/ebay/types/attribute_set.rb",
"lib/ebay/types/auth_token_type_code.rb",
"lib/ebay/types/automated_leave_feedback_event_code.rb",
"lib/ebay/types/average_rating_detail_array.rb",
"lib/ebay/types/average_rating_details.rb",
"lib/ebay/types/average_rating_summary.rb",
"lib/ebay/types/balance_code.rb",
"lib/ebay/types/base64_binary.rb",
"lib/ebay/types/basic_amount.rb",
"lib/ebay/types/basic_upgrade_pack_enabled_definition.rb",
"lib/ebay/types/best_offer.rb",
"lib/ebay/types/best_offer_action_code.rb",
"lib/ebay/types/best_offer_auto_accept_enabled_definition.rb",
"lib/ebay/types/best_offer_auto_decline_enabled_definition.rb",
"lib/ebay/types/best_offer_counter_enabled_definition.rb",
"lib/ebay/types/best_offer_details.rb",
"lib/ebay/types/best_offer_enabled_definition.rb",
"lib/ebay/types/best_offer_status_code.rb",
"lib/ebay/types/best_offer_type_code.rb",
"lib/ebay/types/bid_action_code.rb",
"lib/ebay/types/bid_approval.rb",
"lib/ebay/types/bid_approval_array.rb",
"lib/ebay/types/bid_assistant_list.rb",
"lib/ebay/types/bid_group.rb",
"lib/ebay/types/bid_group_array.rb",
"lib/ebay/types/bid_group_item.rb",
"lib/ebay/types/bid_group_item_status_code.rb",
"lib/ebay/types/bid_group_status_code.rb",
"lib/ebay/types/bid_range.rb",
"lib/ebay/types/bidder_detail.rb",
"lib/ebay/types/bidder_detail_array.rb",
"lib/ebay/types/bidder_notice_preferences.rb",
"lib/ebay/types/bidder_status_code.rb",
"lib/ebay/types/bidder_type_code.rb",
"lib/ebay/types/bidding_details.rb",
"lib/ebay/types/bidding_summary.rb",
"lib/ebay/types/bold_title_code.rb",
"lib/ebay/types/border_code.rb",
"lib/ebay/types/bot_block_request.rb",
"lib/ebay/types/bot_block_response.rb",
"lib/ebay/types/brand_mpn.rb",
"lib/ebay/types/bulk_catalog_lister_status_code.rb",
"lib/ebay/types/business_seller_details.rb",
"lib/ebay/types/buyer.rb",
"lib/ebay/types/buyer_guarantee_enabled_definition.rb",
"lib/ebay/types/buyer_payment_method_code.rb",
"lib/ebay/types/buyer_protection_code.rb",
"lib/ebay/types/buyer_protection_details.rb",
"lib/ebay/types/buyer_protection_source_code.rb",
"lib/ebay/types/buyer_requirement_details.rb",
"lib/ebay/types/buyer_role_metrics.rb",
"lib/ebay/types/buyer_satisfaction_dashboard.rb",
"lib/ebay/types/buyer_satisfaction_status_code.rb",
"lib/ebay/types/buying_guide.rb",
"lib/ebay/types/buying_guide_details.rb",
"lib/ebay/types/buying_summary.rb",
"lib/ebay/types/calculated_handling_discount.rb",
"lib/ebay/types/calculated_shipping_charge_option_code.rb",
"lib/ebay/types/calculated_shipping_discount.rb",
"lib/ebay/types/calculated_shipping_preferences.rb",
"lib/ebay/types/calculated_shipping_rate.rb",
"lib/ebay/types/calculated_shipping_rate_option_code.rb",
"lib/ebay/types/cancel_offer.rb",
"lib/ebay/types/cancel_offer_array.rb",
"lib/ebay/types/cart_item.rb",
"lib/ebay/types/catalog_product.rb",
"lib/ebay/types/category.rb",
"lib/ebay/types/category_feature.rb",
"lib/ebay/types/category_feature_detail_level_code.rb",
"lib/ebay/types/category_item_specifics.rb",
"lib/ebay/types/category_listings_order_code.rb",
"lib/ebay/types/category_listings_search_code.rb",
"lib/ebay/types/category_mapping.rb",
"lib/ebay/types/characteristic.rb",
"lib/ebay/types/characteristic_set_ids.rb",
"lib/ebay/types/characteristics_search_code.rb",
"lib/ebay/types/characteristics_set.rb",
"lib/ebay/types/charity.rb",
"lib/ebay/types/charity_affiliation.rb",
"lib/ebay/types/charity_affiliation_detail.rb",
"lib/ebay/types/charity_affiliation_type_code.rb",
"lib/ebay/types/charity_id.rb",
"lib/ebay/types/charity_info.rb",
"lib/ebay/types/charity_seller.rb",
"lib/ebay/types/charity_seller_status_code.rb",
"lib/ebay/types/charity_status_code.rb",
"lib/ebay/types/checkout_method_code.rb",
"lib/ebay/types/checkout_order_detail.rb",
"lib/ebay/types/checkout_status.rb",
"lib/ebay/types/checkout_status_code.rb",
"lib/ebay/types/claim_type.rb",
"lib/ebay/types/classified_ad_auto_accept_enabled_definition.rb",
"lib/ebay/types/classified_ad_auto_decline_enabled_definition.rb",
"lib/ebay/types/classified_ad_best_offer_enabled_code.rb",
"lib/ebay/types/classified_ad_best_offer_enabled_definition.rb",
"lib/ebay/types/classified_ad_company_name_enabled_definition.rb",
"lib/ebay/types/classified_ad_contact_by_address_enabled_definition.rb",
"lib/ebay/types/classified_ad_contact_by_email_enabled_defintion.rb",
"lib/ebay/types/classified_ad_contact_by_phone_enabled_definition.rb",
"lib/ebay/types/classified_ad_counter_offer_enabled_definition.rb",
"lib/ebay/types/classified_ad_pay_per_lead_enabled_definition.rb",
"lib/ebay/types/classified_ad_payment_method_enabled_code.rb",
"lib/ebay/types/classified_ad_payment_method_enabled_definition.rb",
"lib/ebay/types/classified_ad_phone_count_definition.rb",
"lib/ebay/types/classified_ad_shipping_method_enabled_definition.rb",
"lib/ebay/types/classified_ad_street_count_definition.rb",
"lib/ebay/types/combined_fixed_price_treatment_enabled_definition.rb",
"lib/ebay/types/combined_payment_option_code.rb",
"lib/ebay/types/combined_payment_period_code.rb",
"lib/ebay/types/combined_payment_preferences.rb",
"lib/ebay/types/comment_type_code.rb",
"lib/ebay/types/complete_status_code.rb",
"lib/ebay/types/contact_hours_details.rb",
"lib/ebay/types/context_search_asset.rb",
"lib/ebay/types/cost_group_flat_code.rb",
"lib/ebay/types/country_code.rb",
"lib/ebay/types/country_details.rb",
"lib/ebay/types/cross_border_trade_australia_enabled_definition.rb",
"lib/ebay/types/cross_border_trade_gb_enabled_definition.rb",
"lib/ebay/types/cross_border_trade_north_america_enabled_definition.rb",
"lib/ebay/types/cross_promotion_preferences.rb",
"lib/ebay/types/cross_promotions.rb",
"lib/ebay/types/currency_code.rb",
"lib/ebay/types/currency_details.rb",
"lib/ebay/types/custom_security_header.rb",
"lib/ebay/types/data_element_set.rb",
"lib/ebay/types/date.rb",
"lib/ebay/types/date_specifier_code.rb",
"lib/ebay/types/day_of_week_code.rb",
"lib/ebay/types/days_code.rb",
"lib/ebay/types/delivery_url_detail.rb",
"lib/ebay/types/deposit_type_code.rb",
"lib/ebay/types/description_revise_mode_code.rb",
"lib/ebay/types/description_template.rb",
"lib/ebay/types/description_template_code.rb",
"lib/ebay/types/detail_level_code.rb",
"lib/ebay/types/detail_name_code.rb",
"lib/ebay/types/device_type_code.rb",
"lib/ebay/types/discount_code.rb",
"lib/ebay/types/discount_name_code.rb",
"lib/ebay/types/discount_profile.rb",
"lib/ebay/types/discount_reason_code.rb",
"lib/ebay/types/dispatch_time_max_details.rb",
"lib/ebay/types/display_pay_now_button_code.rb",
"lib/ebay/types/dispute.rb",
"lib/ebay/types/dispute_activity_code.rb",
"lib/ebay/types/dispute_credit_eligibility_code.rb",
"lib/ebay/types/dispute_explanation_code.rb",
"lib/ebay/types/dispute_filter_count.rb",
"lib/ebay/types/dispute_filter_type_code.rb",
"lib/ebay/types/dispute_message.rb",
"lib/ebay/types/dispute_message_source_code.rb",
"lib/ebay/types/dispute_reason_code.rb",
"lib/ebay/types/dispute_record_type_code.rb",
"lib/ebay/types/dispute_resolution.rb",
"lib/ebay/types/dispute_resolution_reason_code.rb",
"lib/ebay/types/dispute_resolution_record_type_code.rb",
"lib/ebay/types/dispute_sort_type_code.rb",
"lib/ebay/types/dispute_state_code.rb",
"lib/ebay/types/dispute_status_code.rb",
"lib/ebay/types/dispute_type.rb",
"lib/ebay/types/distance.rb",
"lib/ebay/types/duplicate_invocation_details.rb",
"lib/ebay/types/dutch_bin_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_ad_format_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_auto_accept_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_auto_decline_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_best_offer_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_company_name_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_contact_by_address_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_contact_by_email_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_contact_by_phone_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_counter_offer_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_payment_method_check_out_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_phone_count_definition.rb",
"lib/ebay/types/ebay_motors_pro_seller_contact_details_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_shipping_method_enabled_definition.rb",
"lib/ebay/types/ebay_motors_pro_street_count_definition.rb",
"lib/ebay/types/ebay_subscription_type_code.rb",
"lib/ebay/types/enable_code.rb",
"lib/ebay/types/end_item_request_container.rb",
"lib/ebay/types/end_item_response_container.rb",
"lib/ebay/types/end_of_auction_email_preferences.rb",
"lib/ebay/types/end_of_auction_logo_type_code.rb",
"lib/ebay/types/end_reason_code.rb",
"lib/ebay/types/error.rb",
"lib/ebay/types/error_classification_code.rb",
"lib/ebay/types/error_for_half_rental_service.rb",
"lib/ebay/types/error_handling_code.rb",
"lib/ebay/types/error_message.rb",
"lib/ebay/types/error_parameter.rb",
"lib/ebay/types/escrow_code.rb",
"lib/ebay/types/exclude_shipping_location_details.rb",
"lib/ebay/types/expansion_array.rb",
"lib/ebay/types/express_condition_required_definition.rb",
"lib/ebay/types/express_enabled_definition.rb",
"lib/ebay/types/express_item_requirements.rb",
"lib/ebay/types/express_pictures_required_definition.rb",
"lib/ebay/types/extended_contact_details.rb",
"lib/ebay/types/extended_product_finder_id.rb",
"lib/ebay/types/external_alert_id_array.rb",
"lib/ebay/types/external_product_code.rb",
"lib/ebay/types/external_product_id.rb",
"lib/ebay/types/external_transaction.rb",
"lib/ebay/types/fault_details.rb",
"lib/ebay/types/feature_definitions.rb",
"lib/ebay/types/feature_eligibility.rb",
"lib/ebay/types/feature_id_code.rb",
"lib/ebay/types/featured_first_code.rb",
"lib/ebay/types/featured_plus_code.rb",
"lib/ebay/types/fee.rb",
"lib/ebay/types/feedback_comment_array.rb",
"lib/ebay/types/feedback_detail.rb",
"lib/ebay/types/feedback_info.rb",
"lib/ebay/types/feedback_period.rb",
"lib/ebay/types/feedback_period_array.rb",
"lib/ebay/types/feedback_rating_detail_code.rb",
"lib/ebay/types/feedback_rating_star_code.rb",
"lib/ebay/types/feedback_requirements.rb",
"lib/ebay/types/feedback_response_code.rb",
"lib/ebay/types/feedback_summary.rb",
"lib/ebay/types/feedback_summary_period_code.rb",
"lib/ebay/types/feedback_type_code.rb",
"lib/ebay/types/flat_rate_insurance_range_code.rb",
"lib/ebay/types/flat_rate_insurance_range_cost.rb",
"lib/ebay/types/flat_shipping_discount.rb",
"lib/ebay/types/flat_shipping_preferences.rb",
"lib/ebay/types/flat_shipping_rate_option_code.rb",
"lib/ebay/types/free_gallery_plus_enabled_definition.rb",
"lib/ebay/types/free_picture_pack_enabled_definition.rb",
"lib/ebay/types/gallery_sort_filter_code.rb",
"lib/ebay/types/gallery_type_code.rb",
"lib/ebay/types/general_payment_method_code.rb",
"lib/ebay/types/geographic_exposure_code.rb",
"lib/ebay/types/get_all_bidders_mode_code.rb",
"lib/ebay/types/get_recommendations_request_container.rb",
"lib/ebay/types/get_recommendations_response_container.rb",
"lib/ebay/types/gift_icon_code.rb",
"lib/ebay/types/gift_services_code.rb",
"lib/ebay/types/granularity_level_code.rb",
"lib/ebay/types/group.rb",
"lib/ebay/types/group1_max_flat_shipping_cost_definition.rb",
"lib/ebay/types/group2_max_flat_shipping_cost_definition.rb",
"lib/ebay/types/group3_max_flat_shipping_cost_definition.rb",
"lib/ebay/types/handling_name_code.rb",
"lib/ebay/types/handling_time_enabled_definition.rb",
"lib/ebay/types/highlight_code.rb",
"lib/ebay/types/histogram_entry.rb",
"lib/ebay/types/hit_counter_code.rb",
"lib/ebay/types/home_page_featured_code.rb",
"lib/ebay/types/home_page_featured_enabled_definition.rb",
"lib/ebay/types/in_escrow_workflow_timeline_code.rb",
"lib/ebay/types/in_escrow_workflow_timeline_definition.rb",
"lib/ebay/types/insurance_details.rb",
"lib/ebay/types/insurance_option_code.rb",
"lib/ebay/types/insurance_selected_code.rb",
"lib/ebay/types/international_shipping_service_options.rb",
"lib/ebay/types/inventory_fees.rb",
"lib/ebay/types/inventory_status.rb",
"lib/ebay/types/inventory_tracking_method_code.rb",
"lib/ebay/types/invocation_status.rb",
"lib/ebay/types/item.rb",
"lib/ebay/types/item_best_offers.rb",
"lib/ebay/types/item_bid_details.rb",
"lib/ebay/types/item_compatibility.rb",
"lib/ebay/types/item_compatibility_enabled_code.rb",
"lib/ebay/types/item_compatibility_enabled_definition.rb",
"lib/ebay/types/item_condition_code.rb",
"lib/ebay/types/item_format_sort_filter_code.rb",
"lib/ebay/types/item_id_array.rb",
"lib/ebay/types/item_list_customization.rb",
"lib/ebay/types/item_location_code.rb",
"lib/ebay/types/item_policy_violation.rb",
"lib/ebay/types/item_rating_detail_array.rb",
"lib/ebay/types/item_rating_details.rb",
"lib/ebay/types/item_sort_filter_code.rb",
"lib/ebay/types/item_sort_type_code.rb",
"lib/ebay/types/item_specific_details.rb",
"lib/ebay/types/item_specific_source_code.rb",
"lib/ebay/types/item_specifics_enabled_code.rb",
"lib/ebay/types/item_specifics_enabled_definition.rb",
"lib/ebay/types/item_totals.rb",
"lib/ebay/types/item_transaction_id.rb",
"lib/ebay/types/item_type_code.rb",
"lib/ebay/types/item_type_filter_code.rb",
"lib/ebay/types/label.rb",
"lib/ebay/types/listing_analyzer_recommendations.rb",
"lib/ebay/types/listing_checkout_redirect_preference.rb",
"lib/ebay/types/listing_designer.rb",
"lib/ebay/types/listing_details.rb",
"lib/ebay/types/listing_duration_code.rb",
"lib/ebay/types/listing_duration_definition.rb",
"lib/ebay/types/listing_duration_definitions.rb",
"lib/ebay/types/listing_duration_reference.rb",
"lib/ebay/types/listing_enhancement_duration_code.rb",
"lib/ebay/types/listing_enhancement_duration_definition.rb",
"lib/ebay/types/listing_enhancement_duration_reference.rb",
"lib/ebay/types/listing_enhancements_code.rb",
"lib/ebay/types/listing_feature_details.rb",
"lib/ebay/types/listing_flow_code.rb",
"lib/ebay/types/listing_start_price_details.rb",
"lib/ebay/types/listing_status_code.rb",
"lib/ebay/types/listing_subtype_code.rb",
"lib/ebay/types/listing_tip.rb",
"lib/ebay/types/listing_tip_field.rb",
"lib/ebay/types/listing_tip_message.rb",
"lib/ebay/types/listing_type_code.rb",
"lib/ebay/types/local_listing_distances_non_subscription_definition.rb",
"lib/ebay/types/local_listing_distances_regular_definition.rb",
"lib/ebay/types/local_listing_distances_specialty_definition.rb",
"lib/ebay/types/local_market_ad_format_enabled_definition.rb",
"lib/ebay/types/local_market_auto_accept_enabled_definition.rb",
"lib/ebay/types/local_market_auto_decline_enabled_definition.rb",
"lib/ebay/types/local_market_best_offer_enabled_definition.rb",
"lib/ebay/types/local_market_company_name_enabled_definition.rb",
"lib/ebay/types/local_market_contact_by_address_enabled_definition.rb",
"lib/ebay/types/local_market_contact_by_email_enabled_definition.rb",
"lib/ebay/types/local_market_contact_by_phone_enabled_definition.rb",
"lib/ebay/types/local_market_counter_offer_enabled_definition.rb",
"lib/ebay/types/local_market_non_subscription_definition.rb",
"lib/ebay/types/local_market_payment_method_check_out_enabled_definition.rb",
"lib/ebay/types/local_market_phone_count_definition.rb",
"lib/ebay/types/local_market_premium_subscription_definition.rb",
"lib/ebay/types/local_market_regular_subscription_definition.rb",
"lib/ebay/types/local_market_seller_contact_details_enabled_definition.rb",
"lib/ebay/types/local_market_shipping_method_enabled_definition.rb",
"lib/ebay/types/local_market_speciality_subscription_definition.rb",
"lib/ebay/types/local_market_street_count_definition.rb",
"lib/ebay/types/local_search.rb",
"lib/ebay/types/logo_type_code.rb",
"lib/ebay/types/lookup_attribute.rb",
"lib/ebay/types/mail_options_type_code.rb",
"lib/ebay/types/mark_up_mark_down_event.rb",
"lib/ebay/types/mark_up_mark_down_event_type_code.rb",
"lib/ebay/types/max_flat_shipping_cost_cbt_exempt_definition.rb",
"lib/ebay/types/max_flat_shipping_cost_definition.rb",
"lib/ebay/types/max_item_compatibility_definition.rb",
"lib/ebay/types/maximum_buyer_policy_violations.rb",
"lib/ebay/types/maximum_buyer_policy_violations_details.rb",
"lib/ebay/types/maximum_item_requirements.rb",
"lib/ebay/types/maximum_item_requirements_details.rb",
"lib/ebay/types/maximum_unpaid_item_strikes_count_details.rb",
"lib/ebay/types/maximum_unpaid_item_strikes_duration_details.rb",
"lib/ebay/types/maximum_unpaid_item_strikes_info.rb",
"lib/ebay/types/maximum_unpaid_item_strikes_info_details.rb",
"lib/ebay/types/measure.rb",
"lib/ebay/types/measurement_system_code.rb",
"lib/ebay/types/member_message.rb",
"lib/ebay/types/member_message_exchange.rb",
"lib/ebay/types/member_message_exchange_array.rb",
"lib/ebay/types/merch_display_code.rb",
"lib/ebay/types/merchandizing_pref_code.rb",
"lib/ebay/types/message_status_type_code.rb",
"lib/ebay/types/message_type_code.rb",
"lib/ebay/types/min_item_compatibility_definition.rb",
"lib/ebay/types/minimum_feedback_score_details.rb",
"lib/ebay/types/minimum_reserve_price_definition.rb",
"lib/ebay/types/modify_action_code.rb",
"lib/ebay/types/motors_local_market_enabled_definition.rb",
"lib/ebay/types/my_ebay_favorite_search.rb",
"lib/ebay/types/my_ebay_favorite_search_list.rb",
"lib/ebay/types/my_ebay_favorite_seller.rb",
"lib/ebay/types/my_ebay_favorite_seller_list.rb",
"lib/ebay/types/my_ebay_second_chance_offer_list.rb",
"lib/ebay/types/my_ebay_selection.rb",
"lib/ebay/types/my_ebay_selling_summary.rb",
"lib/ebay/types/my_messages_alert.rb",
"lib/ebay/types/my_messages_alert_array.rb",
"lib/ebay/types/my_messages_alert_id_array.rb",
"lib/ebay/types/my_messages_alert_resolution_status_code.rb",
"lib/ebay/types/my_messages_external_message_id_array.rb",
"lib/ebay/types/my_messages_folder.rb",
"lib/ebay/types/my_messages_folder_operation_code.rb",
"lib/ebay/types/my_messages_folder_summary.rb",
"lib/ebay/types/my_messages_forward_details.rb",
"lib/ebay/types/my_messages_message.rb",
"lib/ebay/types/my_messages_message_array.rb",
"lib/ebay/types/my_messages_message_id_array.rb",
"lib/ebay/types/my_messages_response_details.rb",
"lib/ebay/types/my_messages_summary.rb",
"lib/ebay/types/name_recommendation.rb",
"lib/ebay/types/name_value_list.rb",
"lib/ebay/types/name_value_list_array.rb",
"lib/ebay/types/name_value_relationship.rb",
"lib/ebay/types/non_subscription_definition.rb",
"lib/ebay/types/notification_delivery_status_code.rb",
"lib/ebay/types/notification_details.rb",
"lib/ebay/types/notification_enable.rb",
"lib/ebay/types/notification_enable_array.rb",
"lib/ebay/types/notification_event_property.rb",
"lib/ebay/types/notification_event_property_name_code.rb",
"lib/ebay/types/notification_event_state_code.rb",
"lib/ebay/types/notification_event_type_code.rb",
"lib/ebay/types/notification_payload_type_code.rb",
"lib/ebay/types/notification_role_code.rb",
"lib/ebay/types/notification_statistics.rb",
"lib/ebay/types/notification_user_data.rb",
"lib/ebay/types/number_of_policy_violations_details.rb",
"lib/ebay/types/offer.rb",
"lib/ebay/types/offer_array.rb",
"lib/ebay/types/order.rb",
"lib/ebay/types/order_role_code.rb",
"lib/ebay/types/order_status_code.rb",
"lib/ebay/types/order_status_filter_code.rb",
"lib/ebay/types/order_transaction.rb",
"lib/ebay/types/paginated_item_array.rb",
"lib/ebay/types/paginated_order_transaction_array.rb",
"lib/ebay/types/paginated_transaction_array.rb",
"lib/ebay/types/pagination.rb",
"lib/ebay/types/pagination_result.rb",
"lib/ebay/types/paid_status_code.rb",
"lib/ebay/types/paisa_pay_full_escrow_enabled_definition.rb",
"lib/ebay/types/payment_details.rb",
"lib/ebay/types/payment_hold_status_code.rb",
"lib/ebay/types/payment_method_definition.rb",
"lib/ebay/types/payment_method_search_code.rb",
"lib/ebay/types/payment_option_details.rb",
"lib/ebay/types/payment_status_code.rb",
"lib/ebay/types/payment_type_code.rb",
"lib/ebay/types/paypal_account_level_code.rb",
"lib/ebay/types/paypal_account_status_code.rb",
"lib/ebay/types/paypal_account_type_code.rb",
"lib/ebay/types/paypal_buyer_protection_enabled_definition.rb",
"lib/ebay/types/paypal_required_definition.rb",
"lib/ebay/types/paypal_required_for_store_owner_definition.rb",
"lib/ebay/types/performance_dashboard.rb",
"lib/ebay/types/performance_status_code.rb",
"lib/ebay/types/period_code.rb",
"lib/ebay/types/photo_display_code.rb",
"lib/ebay/types/picture_details.rb",
"lib/ebay/types/picture_format_code.rb",
"lib/ebay/types/picture_manager_action_code.rb",
"lib/ebay/types/picture_manager_detail_level_code.rb",
"lib/ebay/types/picture_manager_details.rb",
"lib/ebay/types/picture_manager_folder.rb",
"lib/ebay/types/picture_manager_picture.rb",
"lib/ebay/types/picture_manager_picture_display.rb",
"lib/ebay/types/picture_manager_picture_display_type_code.rb",
"lib/ebay/types/picture_manager_subscription.rb",
"lib/ebay/types/picture_manager_subscription_level_code.rb",
"lib/ebay/types/picture_set_code.rb",
"lib/ebay/types/picture_set_member.rb",
"lib/ebay/types/picture_source_code.rb",
"lib/ebay/types/picture_upload_policy_code.rb",
"lib/ebay/types/pictures.rb",
"lib/ebay/types/policy_compliance_dashboard.rb",
"lib/ebay/types/policy_compliance_status_code.rb",
"lib/ebay/types/policy_violation_duration_details.rb",
"lib/ebay/types/power_seller_dashboard.rb",
"lib/ebay/types/preferred_location_code.rb",
"lib/ebay/types/premium_subscription_definition.rb",
"lib/ebay/types/price_range_filter.rb",
"lib/ebay/types/pricing_recommendations.rb",
"lib/ebay/types/pro_pack_code.rb",
"lib/ebay/types/pro_pack_enabled_definition.rb",
"lib/ebay/types/pro_pack_plus_enabled_definition.rb",
"lib/ebay/types/pro_stores_checkout_preference.rb",
"lib/ebay/types/pro_stores_details.rb",
"lib/ebay/types/product.rb",
"lib/ebay/types/product_family.rb",
"lib/ebay/types/product_finder_constraint.rb",
"lib/ebay/types/product_info.rb",
"lib/ebay/types/product_listing_details.rb",
"lib/ebay/types/product_search.rb",
"lib/ebay/types/product_search_page.rb",
"lib/ebay/types/product_search_result.rb",
"lib/ebay/types/product_sort_code.rb",
"lib/ebay/types/product_state_code.rb",
"lib/ebay/types/product_use_case_code.rb",
"lib/ebay/types/promoted_item.rb",
"lib/ebay/types/promotion_details.rb",
"lib/ebay/types/promotion_item_price_type_code.rb",
"lib/ebay/types/promotion_item_selection_code.rb",
"lib/ebay/types/promotion_method_code.rb",
"lib/ebay/types/promotion_rule.rb",
"lib/ebay/types/promotion_scheme_code.rb",
"lib/ebay/types/promotional_sale.rb",
"lib/ebay/types/promotional_sale_array.rb",
"lib/ebay/types/promotional_sale_details.rb",
"lib/ebay/types/promotional_sale_status_code.rb",
"lib/ebay/types/promotional_sale_type_code.rb",
"lib/ebay/types/promotional_shipping_discount_details.rb",
"lib/ebay/types/proximity_search.rb",
"lib/ebay/types/purchase_purpose_type_code.rb",
"lib/ebay/types/quantity.rb",
"lib/ebay/types/quantity_operator_code.rb",
"lib/ebay/types/question_type_code.rb",
"lib/ebay/types/range_code.rb",
"lib/ebay/types/rcs_payment_status_code.rb",
"lib/ebay/types/reason_code_detail.rb",
"lib/ebay/types/recommendation_engine_code.rb",
"lib/ebay/types/recommendation_validation_rules.rb",
"lib/ebay/types/recommendations.rb",
"lib/ebay/types/refund.rb",
"lib/ebay/types/refund_details.rb",
"lib/ebay/types/refund_options_code.rb",
"lib/ebay/types/refund_reason_code.rb",
"lib/ebay/types/refund_type_code.rb",
"lib/ebay/types/region_details.rb",
"lib/ebay/types/region_of_origin_details.rb",
"lib/ebay/types/regular_subscription_definition.rb",
"lib/ebay/types/related_search_keyword_array.rb",
"lib/ebay/types/reminder_customization.rb",
"lib/ebay/types/reminders.rb",
"lib/ebay/types/rental.rb",
"lib/ebay/types/rental_price_value.rb",
"lib/ebay/types/rental_transaction_info.rb",
"lib/ebay/types/request_categories.rb",
"lib/ebay/types/response_attribute_set.rb",
"lib/ebay/types/return_policy.rb",
"lib/ebay/types/return_policy_details.rb",
"lib/ebay/types/return_policy_enabled_definition.rb",
"lib/ebay/types/returns_accepted_details.rb",
"lib/ebay/types/returns_accepted_options_code.rb",
"lib/ebay/types/returns_within_details.rb",
"lib/ebay/types/returns_within_options_code.rb",
"lib/ebay/types/review.rb",
"lib/ebay/types/review_details.rb",
"lib/ebay/types/revise_price_allowed_definition.rb",
"lib/ebay/types/revise_quantity_allowed_definition.rb",
"lib/ebay/types/revise_status.rb",
"lib/ebay/types/safe_payment_required_definition.rb",
"lib/ebay/types/sales_tax.rb",
"lib/ebay/types/schedule.rb",
"lib/ebay/types/scheduling_info.rb",
"lib/ebay/types/search_attributes.rb",
"lib/ebay/types/search_details.rb",
"lib/ebay/types/search_flag_code.rb",
"lib/ebay/types/search_flags_code.rb",
"lib/ebay/types/search_location.rb",
"lib/ebay/types/search_location_filter.rb",
"lib/ebay/types/search_request.rb",
"lib/ebay/types/search_result_item.rb",
"lib/ebay/types/search_result_values_code.rb",
"lib/ebay/types/search_sort_order_code.rb",
"lib/ebay/types/search_standing_dashboard.rb",
"lib/ebay/types/search_standing_status_code.rb",
"lib/ebay/types/search_store_filter.rb",
"lib/ebay/types/search_type_code.rb",
"lib/ebay/types/second_chance_offer_duration_code.rb",
"lib/ebay/types/selection_mode_code.rb",
"lib/ebay/types/seller.rb",
"lib/ebay/types/seller_account_dashboard.rb",
"lib/ebay/types/seller_account_status_code.rb",
"lib/ebay/types/seller_business_code.rb",
"lib/ebay/types/seller_contact_details_enabled_definition.rb",
"lib/ebay/types/seller_dashboard_alert.rb",
"lib/ebay/types/seller_dashboard_alert_severity_code.rb",
"lib/ebay/types/seller_exclude_ship_to_location_preferences.rb",
"lib/ebay/types/seller_favorite_item_preferences.rb",