ebayapi 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (421) hide show
  1. data/CHANGELOG +42 -29
  2. data/MIT-LICENSE +1 -1
  3. data/README +1 -1
  4. data/Rakefile +4 -3
  5. data/examples/add_item.rb +46 -11
  6. data/examples/config.rb +6 -0
  7. data/examples/end_item.rb +0 -0
  8. data/examples/get_api_usage.rb +0 -0
  9. data/examples/get_attributes_xsl.rb +0 -0
  10. data/examples/get_ebay_details.rb +0 -0
  11. data/examples/get_ebay_time.rb +0 -0
  12. data/examples/get_ebay_time_raw.rb +0 -0
  13. data/examples/get_item.rb +0 -0
  14. data/examples/get_item_transactions.rb +0 -0
  15. data/examples/get_items_selling.rb +0 -0
  16. data/examples/get_my_messages.rb +0 -0
  17. data/examples/get_my_messages_folders.rb +0 -0
  18. data/examples/get_notification_preferences.rb +0 -0
  19. data/examples/get_notifications_usage.rb +0 -0
  20. data/examples/get_product_finder_xsl.rb +0 -0
  21. data/examples/get_search_results.rb +0 -0
  22. data/examples/get_user.rb +0 -0
  23. data/examples/mark_my_messages_message_as_read.rb +0 -0
  24. data/examples/revise_item.rb +0 -0
  25. data/examples/set_notification_preferences.rb +0 -0
  26. data/examples/verify_add_item.rb +0 -0
  27. data/lib/ebay/api.rb +5 -1
  28. data/lib/ebay/api_methods.rb +279 -79
  29. data/lib/ebay/request/base.rb +3 -3
  30. data/lib/ebay/request/connection.rb +4 -7
  31. data/lib/ebay/requests.rb +36 -11
  32. data/lib/ebay/requests/abstract.rb +2 -0
  33. data/lib/ebay/requests/add_item_from_selling_manager_template.rb +20 -0
  34. data/lib/ebay/requests/add_items.rb +16 -0
  35. data/lib/ebay/requests/add_selling_manager_inventory_folder.rb +19 -0
  36. data/lib/ebay/requests/add_selling_manager_product.rb +18 -0
  37. data/lib/ebay/requests/add_selling_manager_template.rb +20 -0
  38. data/lib/ebay/requests/complete_sale.rb +5 -0
  39. data/lib/ebay/requests/confirm_identity.rb +15 -0
  40. data/lib/ebay/requests/delete_selling_manager_inventory_folder.rb +15 -0
  41. data/lib/ebay/requests/delete_selling_manager_item_automation_rule.rb +19 -0
  42. data/lib/ebay/requests/delete_selling_manager_product.rb +15 -0
  43. data/lib/ebay/requests/delete_selling_manager_template.rb +15 -0
  44. data/lib/ebay/requests/delete_selling_manager_template_automation_rule.rb +21 -0
  45. data/lib/ebay/requests/end_items.rb +16 -0
  46. data/lib/ebay/requests/fetch_token.rb +2 -0
  47. data/lib/ebay/requests/get_account.rb +2 -0
  48. data/lib/ebay/requests/get_ad_format_leads.rb +4 -0
  49. data/lib/ebay/requests/get_attributes_cs.rb +0 -2
  50. data/lib/ebay/requests/get_category_listings.rb +2 -0
  51. data/lib/ebay/requests/get_charities.rb +2 -0
  52. data/lib/ebay/requests/{get_live_auction_catalog_details.rb → get_client_alerts_auth_token.rb} +2 -2
  53. data/lib/ebay/requests/get_feedback.rb +10 -2
  54. data/lib/ebay/requests/get_item.rb +4 -2
  55. data/lib/ebay/requests/get_item_transactions.rb +2 -0
  56. data/lib/ebay/requests/get_my_ebay_buying.rb +6 -0
  57. data/lib/ebay/requests/get_my_ebay_selling.rb +8 -0
  58. data/lib/ebay/requests/get_my_messages.rb +2 -0
  59. data/lib/ebay/requests/get_order_transactions.rb +2 -0
  60. data/lib/ebay/requests/get_products.rb +2 -0
  61. data/lib/ebay/requests/get_search_results.rb +2 -2
  62. data/lib/ebay/requests/get_seller_dashboard.rb +13 -0
  63. data/lib/ebay/requests/get_seller_list.rb +4 -0
  64. data/lib/ebay/requests/get_seller_transactions.rb +4 -0
  65. data/lib/ebay/requests/get_selling_manager_alerts.rb +13 -0
  66. data/lib/ebay/requests/get_selling_manager_email_log.rb +22 -0
  67. data/lib/ebay/requests/get_selling_manager_inventory.rb +29 -0
  68. data/lib/ebay/requests/get_selling_manager_inventory_folder.rb +19 -0
  69. data/lib/ebay/requests/get_selling_manager_item_automation_rule.rb +15 -0
  70. data/lib/ebay/requests/get_selling_manager_sale_record.rb +19 -0
  71. data/lib/ebay/requests/get_selling_manager_sold_listings.rb +32 -0
  72. data/lib/ebay/requests/get_selling_manager_template_automation_rule.rb +15 -0
  73. data/lib/ebay/requests/get_selling_manager_templates.rb +15 -0
  74. data/lib/ebay/{responses/get_ru_name.rb → requests/get_session_id.rb} +3 -3
  75. data/lib/ebay/requests/{get_return_url.rb → get_token_status.rb} +2 -2
  76. data/lib/ebay/requests/get_user_preferences.rb +2 -0
  77. data/lib/ebay/requests/move_selling_manager_inventory_folder.rb +17 -0
  78. data/lib/ebay/requests/revise_checkout_status.rb +2 -0
  79. data/lib/ebay/requests/revise_inventory_status.rb +16 -0
  80. data/lib/ebay/requests/revise_selling_manager_inventory_folder.rb +16 -0
  81. data/lib/ebay/requests/revise_selling_manager_product.rb +21 -0
  82. data/lib/ebay/requests/revise_selling_manager_sale_record.rb +22 -0
  83. data/lib/ebay/requests/revise_selling_manager_template.rb +26 -0
  84. data/lib/ebay/requests/revoke_token.rb +15 -0
  85. data/lib/ebay/requests/save_item_to_selling_manager_template.rb +19 -0
  86. data/lib/ebay/requests/send_invoice.rb +4 -0
  87. data/lib/ebay/requests/set_notification_preferences.rb +2 -0
  88. data/lib/ebay/requests/set_promotional_sale_listings.rb +2 -0
  89. data/lib/ebay/requests/set_selling_manager_feedback_options.rb +18 -0
  90. data/lib/ebay/requests/set_selling_manager_item_automation_rule.rb +21 -0
  91. data/lib/ebay/requests/set_selling_manager_template_automation_rule.rb +24 -0
  92. data/lib/ebay/requests/set_user_notes.rb +2 -0
  93. data/lib/ebay/requests/set_user_preferences.rb +2 -3
  94. data/lib/ebay/requests/upload_site_hosted_pictures.rb +4 -0
  95. data/lib/ebay/responses.rb +36 -11
  96. data/lib/ebay/responses/abstract.rb +2 -0
  97. data/lib/ebay/responses/{add_live_auction_item.rb → add_item_from_selling_manager_template.rb} +6 -2
  98. data/lib/ebay/responses/add_items.rb +16 -0
  99. data/lib/ebay/responses/add_selling_manager_inventory_folder.rb +15 -0
  100. data/lib/ebay/responses/add_selling_manager_product.rb +16 -0
  101. data/lib/ebay/responses/add_selling_manager_template.rb +29 -0
  102. data/lib/ebay/responses/confirm_identity.rb +15 -0
  103. data/lib/ebay/responses/delete_selling_manager_inventory_folder.rb +13 -0
  104. data/lib/ebay/responses/delete_selling_manager_item_automation_rule.rb +25 -0
  105. data/lib/ebay/responses/delete_selling_manager_product.rb +16 -0
  106. data/lib/ebay/responses/delete_selling_manager_template.rb +17 -0
  107. data/lib/ebay/responses/delete_selling_manager_template_automation_rule.rb +25 -0
  108. data/lib/ebay/responses/end_items.rb +16 -0
  109. data/lib/ebay/responses/get_category_listings.rb +2 -0
  110. data/lib/ebay/responses/get_client_alerts_auth_token.rb +17 -0
  111. data/lib/ebay/responses/get_ebay_details.rb +15 -0
  112. data/lib/ebay/responses/get_feedback.rb +7 -0
  113. data/lib/ebay/responses/get_my_ebay_buying.rb +4 -0
  114. data/lib/ebay/responses/get_my_ebay_selling.rb +6 -0
  115. data/lib/ebay/responses/get_notification_preferences.rb +2 -0
  116. data/lib/ebay/responses/get_products.rb +2 -0
  117. data/lib/ebay/responses/get_search_results.rb +2 -0
  118. data/lib/ebay/responses/get_seller_dashboard.rb +31 -0
  119. data/lib/ebay/responses/get_selling_manager_alerts.rb +16 -0
  120. data/lib/ebay/responses/get_selling_manager_email_log.rb +16 -0
  121. data/lib/ebay/responses/get_selling_manager_inventory.rb +21 -0
  122. data/lib/ebay/responses/get_selling_manager_inventory_folder.rb +16 -0
  123. data/lib/ebay/responses/get_selling_manager_item_automation_rule.rb +25 -0
  124. data/lib/ebay/responses/get_selling_manager_sale_record.rb +16 -0
  125. data/lib/ebay/responses/get_selling_manager_sold_listings.rb +19 -0
  126. data/lib/ebay/responses/get_selling_manager_template_automation_rule.rb +25 -0
  127. data/lib/ebay/responses/get_selling_manager_templates.rb +16 -0
  128. data/lib/ebay/responses/get_session_id.rb +15 -0
  129. data/lib/ebay/responses/get_token_status.rb +16 -0
  130. data/lib/ebay/responses/get_user_preferences.rb +2 -3
  131. data/lib/ebay/responses/items_canceled_event.rb +19 -0
  132. data/lib/ebay/responses/move_selling_manager_inventory_folder.rb +13 -0
  133. data/lib/ebay/responses/place_offer.rb +5 -0
  134. data/lib/ebay/responses/revise_inventory_status.rb +16 -0
  135. data/lib/ebay/responses/revise_selling_manager_inventory_folder.rb +16 -0
  136. data/lib/ebay/responses/revise_selling_manager_product.rb +16 -0
  137. data/lib/ebay/responses/revise_selling_manager_sale_record.rb +13 -0
  138. data/lib/ebay/responses/revise_selling_manager_template.rb +29 -0
  139. data/lib/ebay/responses/{set_return_url.rb → revoke_token.rb} +2 -2
  140. data/lib/ebay/responses/save_item_to_selling_manager_template.rb +15 -0
  141. data/lib/ebay/responses/set_selling_manager_feedback_options.rb +13 -0
  142. data/lib/ebay/responses/set_selling_manager_item_automation_rule.rb +25 -0
  143. data/lib/ebay/responses/set_selling_manager_template_automation_rule.rb +25 -0
  144. data/lib/ebay/schema/ebaySvc.xsd +110905 -0
  145. data/lib/ebay/schema/version.rb +1 -1
  146. data/lib/ebay/types.rb +51 -9
  147. data/lib/ebay/types/account_detail_entry_code.rb +8 -0
  148. data/lib/ebay/types/ad_format_lead.rb +16 -8
  149. data/lib/ebay/{requests/add_live_auction_item.rb → types/add_item_request_container.rb} +5 -3
  150. data/lib/ebay/types/add_item_response_container.rb +33 -0
  151. data/lib/ebay/types/address.rb +6 -0
  152. data/lib/ebay/types/announcement_message.rb +19 -0
  153. data/lib/ebay/types/announcement_message_code.rb +13 -0
  154. data/lib/ebay/types/application_delivery_preferences.rb +5 -0
  155. data/lib/ebay/types/automated_leave_feedback_event_code.rb +12 -0
  156. data/lib/ebay/types/average_rating_summary.rb +18 -0
  157. data/lib/ebay/types/best_offer_auto_accept_enabled_definition.rb +13 -0
  158. data/lib/ebay/types/bid_action_code.rb +4 -0
  159. data/lib/ebay/types/bid_approval_array.rb +0 -3
  160. data/lib/ebay/types/bidder_detail.rb +2 -3
  161. data/lib/ebay/types/business_seller_details.rb +31 -0
  162. data/lib/ebay/types/{digital_delivery_enabled_definition.rb → buyer_guarantee_enabled_definition.rb} +2 -2
  163. data/lib/ebay/types/buyer_payment_method_code.rb +7 -0
  164. data/lib/ebay/types/buyer_protection_code.rb +1 -0
  165. data/lib/ebay/types/{buyer_requirements.rb → buyer_requirement_details.rb} +8 -4
  166. data/lib/ebay/types/buyer_role_metrics.rb +21 -0
  167. data/lib/ebay/types/buyer_satisfaction_dashboard.rb +18 -0
  168. data/lib/ebay/types/buyer_satisfaction_status_code.rb +15 -0
  169. data/lib/ebay/types/calculated_shipping_rate.rb +2 -0
  170. data/lib/ebay/types/catalog_product.rb +2 -0
  171. data/lib/ebay/types/category_feature.rb +122 -2
  172. data/lib/ebay/types/charity_affiliation_detail.rb +19 -0
  173. data/lib/ebay/types/charity_info.rb +6 -0
  174. data/lib/ebay/types/charity_seller.rb +2 -0
  175. data/lib/ebay/types/charity_seller_status_code.rb +2 -0
  176. data/lib/ebay/types/checkout_status.rb +2 -0
  177. data/lib/ebay/types/classified_ad_auto_accept_enabled_definition.rb +13 -0
  178. data/lib/ebay/types/classified_ad_company_name_enabled_definition.rb +13 -0
  179. data/lib/ebay/types/classified_ad_contact_by_address_enabled_definition.rb +13 -0
  180. data/lib/ebay/types/classified_ad_phone_count_definition.rb +13 -0
  181. data/lib/ebay/types/classified_ad_street_count_definition.rb +13 -0
  182. data/lib/ebay/types/combined_fixed_price_treatment_enabled_definition.rb +13 -0
  183. data/lib/ebay/types/cost_group_flat_code.rb +12 -0
  184. data/lib/ebay/types/country_code.rb +2 -0
  185. data/lib/ebay/types/cross_border_trade_australia_enabled_definition.rb +13 -0
  186. data/lib/ebay/types/cross_border_trade_gb_enabled_definition.rb +13 -0
  187. data/lib/ebay/types/cross_border_trade_north_america_enabled_definition.rb +13 -0
  188. data/lib/ebay/types/day_of_week_code.rb +16 -0
  189. data/lib/ebay/types/delivery_url_detail.rb +19 -0
  190. data/lib/ebay/types/detail_name_code.rb +5 -0
  191. data/lib/ebay/types/device_type_code.rb +1 -0
  192. data/lib/ebay/types/dispute_record_type_code.rb +1 -0
  193. data/lib/ebay/types/ebay_motors_pro_ad_format_enabled_definition.rb +13 -0
  194. data/lib/ebay/types/ebay_motors_pro_auto_accept_enabled_definition.rb +13 -0
  195. data/lib/ebay/types/ebay_motors_pro_auto_decline_enabled_definition.rb +13 -0
  196. data/lib/ebay/types/ebay_motors_pro_best_offer_enabled_definition.rb +13 -0
  197. data/lib/ebay/types/ebay_motors_pro_company_name_enabled_definition.rb +13 -0
  198. data/lib/ebay/types/ebay_motors_pro_contact_by_address_enabled_definition.rb +13 -0
  199. data/lib/ebay/types/ebay_motors_pro_contact_by_email_enabled_definition.rb +13 -0
  200. data/lib/ebay/types/ebay_motors_pro_contact_by_phone_enabled_definition.rb +13 -0
  201. data/lib/ebay/types/ebay_motors_pro_counter_offer_enabled_definition.rb +13 -0
  202. data/lib/ebay/types/ebay_motors_pro_payment_method_check_out_enabled_definition.rb +13 -0
  203. data/lib/ebay/types/ebay_motors_pro_phone_count_definition.rb +13 -0
  204. data/lib/ebay/types/ebay_motors_pro_seller_contact_details_enabled_definition.rb +13 -0
  205. data/lib/ebay/types/ebay_motors_pro_shipping_method_enabled_definition.rb +13 -0
  206. data/lib/ebay/types/ebay_motors_pro_street_count_definition.rb +13 -0
  207. data/lib/ebay/types/end_item_request_container.rb +19 -0
  208. data/lib/ebay/types/end_item_response_container.rb +20 -0
  209. data/lib/ebay/types/express_item_requirements.rb +0 -2
  210. data/lib/ebay/types/express_product.rb +4 -0
  211. data/lib/ebay/types/feature_definitions.rb +183 -3
  212. data/lib/ebay/types/feature_id_code.rb +54 -0
  213. data/lib/ebay/types/fee.rb +4 -0
  214. data/lib/ebay/types/feedback_comment_array.rb +15 -0
  215. data/lib/ebay/types/feedback_detail.rb +2 -0
  216. data/lib/ebay/types/feedback_summary.rb +11 -3
  217. data/lib/ebay/types/feedback_summary_period_code.rb +11 -0
  218. data/lib/ebay/types/feedback_type_code.rb +13 -0
  219. data/lib/ebay/types/geographic_exposure_code.rb +12 -0
  220. data/lib/ebay/types/group1_max_flat_shipping_cost_definition.rb +13 -0
  221. data/lib/ebay/types/group2_max_flat_shipping_cost_definition.rb +13 -0
  222. data/lib/ebay/types/group3_max_flat_shipping_cost_definition.rb +13 -0
  223. data/lib/ebay/types/handling_time_enabled_definition.rb +13 -0
  224. data/lib/ebay/types/in_escrow_workflow_timeline_code.rb +12 -0
  225. data/lib/ebay/types/in_escrow_workflow_timeline_definition.rb +13 -0
  226. data/lib/ebay/types/integrated_merchant_credit_card_info.rb +15 -0
  227. data/lib/ebay/types/inventory_status.rb +21 -0
  228. data/lib/ebay/types/{express_detail_level_code.rb → inventory_tracking_method_code.rb} +3 -4
  229. data/lib/ebay/types/item.rb +30 -18
  230. data/lib/ebay/types/item_policy_violation.rb +17 -0
  231. data/lib/ebay/types/item_transaction_id.rb +2 -0
  232. data/lib/ebay/types/item_type_code.rb +19 -0
  233. data/lib/ebay/types/listing_details.rb +2 -5
  234. data/lib/ebay/types/listing_enhancement_duration_code.rb +60 -0
  235. data/lib/ebay/types/listing_enhancement_duration_definition.rb +13 -0
  236. data/lib/ebay/types/listing_enhancement_duration_reference.rb +15 -0
  237. data/lib/ebay/types/listing_start_price_details.rb +19 -0
  238. data/lib/ebay/types/{listing_subtype_enum.rb → listing_subtype_code.rb} +2 -1
  239. data/lib/ebay/types/listing_type_code.rb +1 -0
  240. data/lib/ebay/types/local_market_ad_format_enabled_definition.rb +13 -0
  241. data/lib/ebay/types/local_market_auto_accept_enabled_definition.rb +13 -0
  242. data/lib/ebay/types/local_market_auto_decline_enabled_definition.rb +13 -0
  243. data/lib/ebay/types/local_market_best_offer_enabled_definition.rb +13 -0
  244. data/lib/ebay/types/local_market_company_name_enabled_definition.rb +13 -0
  245. data/lib/ebay/types/local_market_contact_by_address_enabled_definition.rb +13 -0
  246. data/lib/ebay/types/local_market_contact_by_email_enabled_definition.rb +13 -0
  247. data/lib/ebay/types/local_market_contact_by_phone_enabled_definition.rb +13 -0
  248. data/lib/ebay/types/local_market_counter_offer_enabled_definition.rb +13 -0
  249. data/lib/ebay/types/local_market_payment_method_check_out_enabled_definition.rb +13 -0
  250. data/lib/ebay/types/local_market_phone_count_definition.rb +13 -0
  251. data/lib/ebay/types/local_market_seller_contact_details_enabled_definition.rb +13 -0
  252. data/lib/ebay/types/local_market_shipping_method_enabled_definition.rb +13 -0
  253. data/lib/ebay/types/local_market_street_count_definition.rb +13 -0
  254. data/lib/ebay/types/max_flat_shipping_cost_cbt_exempt_definition.rb +13 -0
  255. data/lib/ebay/types/max_flat_shipping_cost_definition.rb +13 -0
  256. data/lib/ebay/types/maximum_buyer_policy_violations.rb +17 -0
  257. data/lib/ebay/types/maximum_unpaid_item_strikes_info.rb +17 -0
  258. data/lib/ebay/types/my_ebay_favorite_search.rb +50 -0
  259. data/lib/ebay/types/my_messages_external_message_id_array.rb +15 -0
  260. data/lib/ebay/types/my_messages_message.rb +8 -0
  261. data/lib/ebay/types/non_subscription_definition.rb +13 -0
  262. data/lib/ebay/types/notification_details.rb +2 -0
  263. data/lib/ebay/types/notification_event_type_code.rb +20 -0
  264. data/lib/ebay/types/notification_user_data.rb +2 -0
  265. data/lib/ebay/types/offer.rb +4 -0
  266. data/lib/ebay/types/order.rb +6 -2
  267. data/lib/ebay/types/paid_status_code.rb +6 -0
  268. data/lib/ebay/types/paisa_pay_full_escrow_enabled_definition.rb +13 -0
  269. data/lib/ebay/types/payment_hold_status_code.rb +13 -0
  270. data/lib/ebay/types/payment_method_definition.rb +13 -0
  271. data/lib/ebay/types/payment_method_search_code.rb +1 -0
  272. data/lib/ebay/types/paypal_buyer_protection_enabled_definition.rb +13 -0
  273. data/lib/ebay/types/paypal_required_definition.rb +13 -0
  274. data/lib/ebay/types/paypal_required_for_store_owner_definition.rb +13 -0
  275. data/lib/ebay/types/period_code.rb +14 -0
  276. data/lib/ebay/types/picture_details.rb +2 -0
  277. data/lib/ebay/types/picture_upload_policy_code.rb +11 -0
  278. data/lib/ebay/types/policy_compliance_dashboard.rb +18 -0
  279. data/lib/ebay/types/policy_compliance_status_code.rb +13 -0
  280. data/lib/ebay/types/power_seller_dashboard.rb +18 -0
  281. data/lib/ebay/types/preferred_location_code.rb +14 -0
  282. data/lib/ebay/types/premium_subscription_definition.rb +13 -0
  283. data/lib/ebay/types/product_info.rb +2 -0
  284. data/lib/ebay/types/product_state_code.rb +14 -0
  285. data/lib/ebay/types/promotional_sale.rb +2 -0
  286. data/lib/ebay/types/promotional_sale_type_code.rb +12 -0
  287. data/lib/ebay/types/question_type_code.rb +1 -0
  288. data/lib/ebay/types/refund_details.rb +17 -0
  289. data/lib/ebay/types/refund_options_code.rb +12 -0
  290. data/lib/ebay/types/region_of_origin_details.rb +19 -0
  291. data/lib/ebay/types/regular_subscription_definition.rb +13 -0
  292. data/lib/ebay/types/reminders.rb +20 -0
  293. data/lib/ebay/types/return_policy.rb +45 -0
  294. data/lib/ebay/types/return_policy_details.rb +38 -0
  295. data/lib/ebay/types/return_policy_enabled_definition.rb +13 -0
  296. data/lib/ebay/types/returns_accepted_details.rb +17 -0
  297. data/lib/ebay/types/returns_accepted_options_code.rb +11 -0
  298. data/lib/ebay/types/returns_within_details.rb +17 -0
  299. data/lib/ebay/types/returns_within_options_code.rb +15 -0
  300. data/lib/ebay/types/revise_price_allowed_definition.rb +13 -0
  301. data/lib/ebay/types/revise_quantity_allowed_definition.rb +13 -0
  302. data/lib/ebay/types/search_flag_code.rb +20 -0
  303. data/lib/ebay/types/{live_auction_approval_status.rb → search_standing_dashboard.rb} +2 -4
  304. data/lib/ebay/types/search_standing_status_code.rb +12 -0
  305. data/lib/ebay/types/seller.rb +12 -9
  306. data/lib/ebay/types/seller_account_dashboard.rb +18 -0
  307. data/lib/ebay/types/seller_account_status_code.rb +12 -0
  308. data/lib/ebay/types/seller_dashboard_alert.rb +17 -0
  309. data/lib/ebay/types/seller_dashboard_alert_severity_code.rb +12 -0
  310. data/lib/ebay/types/seller_fee_discount_dashboard.rb +15 -0
  311. data/lib/ebay/types/seller_payment_method_code.rb +1 -0
  312. data/lib/ebay/types/seller_role_metrics.rb +33 -0
  313. data/lib/ebay/types/selling_manager_alert.rb +29 -0
  314. data/lib/ebay/types/selling_manager_alert_type_code.rb +14 -0
  315. data/lib/ebay/types/selling_manager_auto_list.rb +21 -0
  316. data/lib/ebay/types/selling_manager_auto_list_according_to_schedule.rb +27 -0
  317. data/lib/ebay/types/selling_manager_auto_list_min_active_items.rb +23 -0
  318. data/lib/ebay/types/selling_manager_auto_relist.rb +36 -0
  319. data/lib/ebay/types/selling_manager_auto_relist_option_code.rb +12 -0
  320. data/lib/ebay/types/selling_manager_auto_relist_type_code.rb +12 -0
  321. data/lib/ebay/types/selling_manager_auto_second_chance_offer.rb +23 -0
  322. data/lib/ebay/types/selling_manager_auto_second_chance_offer_type_code.rb +12 -0
  323. data/lib/ebay/types/selling_manager_automation_property_type_code.rb +12 -0
  324. data/lib/ebay/types/selling_manager_email_log.rb +21 -0
  325. data/lib/ebay/types/selling_manager_email_sent_status_code.rb +12 -0
  326. data/lib/ebay/types/selling_manager_email_type_code.rb +38 -0
  327. data/lib/ebay/types/selling_manager_folder_details.rb +28 -0
  328. data/lib/ebay/types/selling_manager_general_property_type_code.rb +12 -0
  329. data/lib/ebay/types/selling_manager_inventory_property_type_code.rb +15 -0
  330. data/lib/ebay/types/selling_manager_order_status.rb +45 -0
  331. data/lib/ebay/types/selling_manager_paid_status_code.rb +14 -0
  332. data/lib/ebay/types/selling_manager_paisa_pay_property_type_code.rb +14 -0
  333. data/lib/ebay/types/selling_manager_product.rb +22 -0
  334. data/lib/ebay/types/selling_manager_product_details.rb +13 -6
  335. data/lib/ebay/types/selling_manager_product_inventory_status.rb +25 -0
  336. data/lib/ebay/types/selling_manager_product_sort_code.rb +21 -0
  337. data/lib/ebay/types/selling_manager_search.rb +17 -0
  338. data/lib/ebay/types/selling_manager_search_type_code.rb +18 -0
  339. data/lib/ebay/types/selling_manager_shipped_status_code.rb +11 -0
  340. data/lib/ebay/types/selling_manager_sold_listings_property_type_code.rb +58 -0
  341. data/lib/ebay/types/selling_manager_sold_listings_sort_type_code.rb +30 -0
  342. data/lib/ebay/types/selling_manager_sold_order.rb +74 -0
  343. data/lib/ebay/types/selling_manager_sold_transaction.rb +52 -0
  344. data/lib/ebay/types/selling_manager_template_details.rb +25 -0
  345. data/lib/ebay/types/selling_manager_vendor_details.rb +17 -0
  346. data/lib/ebay/types/selling_status.rb +2 -0
  347. data/lib/ebay/types/shipment.rb +2 -0
  348. data/lib/ebay/types/shipment_delivery_status_code.rb +3 -0
  349. data/lib/ebay/types/shipping_carrier_code.rb +1 -0
  350. data/lib/ebay/types/shipping_carrier_details.rb +19 -0
  351. data/lib/ebay/types/shipping_cost_paid_by_details.rb +17 -0
  352. data/lib/ebay/types/shipping_cost_paid_by_options_code.rb +11 -0
  353. data/lib/ebay/types/shipping_details.rb +2 -0
  354. data/lib/ebay/types/shipping_package_details.rb +23 -0
  355. data/lib/ebay/types/shipping_service_code.rb +92 -0
  356. data/lib/ebay/types/shipping_service_details.rb +16 -0
  357. data/lib/ebay/types/shipping_service_options.rb +2 -0
  358. data/lib/ebay/types/shipping_service_package_details.rb +17 -0
  359. data/lib/ebay/types/shipping_type_code.rb +1 -0
  360. data/lib/ebay/types/simple_item_sort_code.rb +18 -0
  361. data/lib/ebay/types/site_defaults.rb +124 -2
  362. data/lib/ebay/types/speciality_subscription_definition.rb +13 -0
  363. data/lib/ebay/types/{transaction_platform.rb → status_code.rb} +3 -3
  364. data/lib/ebay/types/store_item_list_sort_order_code.rb +2 -0
  365. data/lib/ebay/types/store_owner_extended_listing_durations.rb +15 -0
  366. data/lib/ebay/types/store_owner_extended_listing_durations_definition.rb +13 -0
  367. data/lib/ebay/types/store_owner_extended_listing_durations_enabled_definition.rb +13 -0
  368. data/lib/ebay/types/time_range.rb +17 -0
  369. data/lib/ebay/types/token_status.rb +21 -0
  370. data/lib/ebay/types/token_status_code.rb +15 -0
  371. data/lib/ebay/types/transaction.rb +8 -2
  372. data/lib/ebay/types/transaction_platform_code.rb +1 -0
  373. data/lib/ebay/types/transaction_status.rb +4 -0
  374. data/lib/ebay/types/unit_code.rb +2 -0
  375. data/lib/ebay/types/unpaid_item_status_type_code.rb +16 -0
  376. data/lib/ebay/types/user.rb +6 -3
  377. data/lib/ebay/types/user_status_code.rb +1 -0
  378. data/lib/ebay/types/vat_details.rb +4 -0
  379. data/lib/ebay/types/vat_rate.rb +19 -0
  380. data/lib/ebay/types/warranty_duration_details.rb +17 -0
  381. data/lib/ebay/types/warranty_duration_options_code.rb +16 -0
  382. data/lib/ebay/types/{condition_selection_code.rb → warranty_offered_code.rb} +2 -3
  383. data/lib/ebay/types/warranty_offered_details.rb +17 -0
  384. data/lib/ebay/types/warranty_type_details.rb +17 -0
  385. data/lib/ebay/types/warranty_type_options_code.rb +12 -0
  386. data/lib/ebay/types/wish_list_entry.rb +27 -0
  387. data/test/unit/notifications_test.rb +0 -1
  388. data/test/unit/xml_mapping_money_node_test.rb +16 -1
  389. metadata +328 -116
  390. data/lib/ebay/requests/approve_live_auction_bidders.rb +0 -22
  391. data/lib/ebay/requests/get_cart.rb +0 -21
  392. data/lib/ebay/requests/get_live_auction_bidders.rb +0 -20
  393. data/lib/ebay/requests/get_ru_name.rb +0 -15
  394. data/lib/ebay/requests/get_search_results_express.rb +0 -56
  395. data/lib/ebay/requests/revise_live_auction_item.rb +0 -18
  396. data/lib/ebay/requests/set_cart.rb +0 -27
  397. data/lib/ebay/requests/set_return_url.rb +0 -20
  398. data/lib/ebay/responses/approve_live_auction_bidders.rb +0 -16
  399. data/lib/ebay/responses/get_cart.rb +0 -16
  400. data/lib/ebay/responses/get_live_auction_bidders.rb +0 -27
  401. data/lib/ebay/responses/get_live_auction_catalog_details.rb +0 -16
  402. data/lib/ebay/responses/get_return_url.rb +0 -18
  403. data/lib/ebay/responses/get_search_results_express.rb +0 -28
  404. data/lib/ebay/responses/revise_live_auction_item.rb +0 -22
  405. data/lib/ebay/responses/set_cart.rb +0 -16
  406. data/lib/ebay/types/authentication_entry.rb +0 -23
  407. data/lib/ebay/types/cart.rb +0 -35
  408. data/lib/ebay/types/checkout_complete_redirect.rb +0 -17
  409. data/lib/ebay/types/digital_delivery_details.rb +0 -21
  410. data/lib/ebay/types/digital_delivery_enabled_code.rb +0 -12
  411. data/lib/ebay/types/digital_delivery_method_code.rb +0 -12
  412. data/lib/ebay/types/domain_histogram.rb +0 -16
  413. data/lib/ebay/types/express_histogram_sort_code.rb +0 -12
  414. data/lib/ebay/types/express_item_sort_code.rb +0 -12
  415. data/lib/ebay/types/express_product_sort_code.rb +0 -12
  416. data/lib/ebay/types/live_auction_approval_status_array.rb +0 -16
  417. data/lib/ebay/types/live_auction_bid.rb +0 -21
  418. data/lib/ebay/types/live_auction_bid_array.rb +0 -16
  419. data/lib/ebay/types/live_auction_catalog.rb +0 -20
  420. data/lib/ebay/types/live_auction_details.rb +0 -23
  421. data/rakefile +0 -148
@@ -0,0 +1,13 @@
1
+
2
+ module Ebay # :nodoc:
3
+ module Types # :nodoc:
4
+ # == Attributes
5
+ class EBayMotorsProStreetCountDefinition
6
+ include XML::Mapping
7
+ include Initializer
8
+ root_element_name 'EBayMotorsProStreetCountDefinition'
9
+ end
10
+ end
11
+ end
12
+
13
+
@@ -0,0 +1,19 @@
1
+
2
+ module Ebay # :nodoc:
3
+ module Types # :nodoc:
4
+ # == Attributes
5
+ # text_node :item_id, 'ItemID', :optional => true
6
+ # text_node :ending_reason, 'EndingReason', :optional => true
7
+ # text_node :message_id, 'MessageID', :optional => true
8
+ class EndItemRequestContainer
9
+ include XML::Mapping
10
+ include Initializer
11
+ root_element_name 'EndItemRequestContainer'
12
+ text_node :item_id, 'ItemID', :optional => true
13
+ text_node :ending_reason, 'EndingReason', :optional => true
14
+ text_node :message_id, 'MessageID', :optional => true
15
+ end
16
+ end
17
+ end
18
+
19
+
@@ -0,0 +1,20 @@
1
+ require 'ebay/types/error'
2
+
3
+ module Ebay # :nodoc:
4
+ module Types # :nodoc:
5
+ # == Attributes
6
+ # time_node :end_time, 'EndTime', :optional => true
7
+ # text_node :correlation_id, 'CorrelationID', :optional => true
8
+ # array_node :errors, 'Errors', :class => Error, :default_value => []
9
+ class EndItemResponseContainer
10
+ include XML::Mapping
11
+ include Initializer
12
+ root_element_name 'EndItemResponseContainer'
13
+ time_node :end_time, 'EndTime', :optional => true
14
+ text_node :correlation_id, 'CorrelationID', :optional => true
15
+ array_node :errors, 'Errors', :class => Error, :default_value => []
16
+ end
17
+ end
18
+ end
19
+
20
+
@@ -17,7 +17,6 @@ module Ebay # :nodoc:
17
17
  # boolean_node :eligible_checkout, 'EligibleCheckout', 'true', 'false', :optional => true
18
18
  # boolean_node :no_preapproved_bidder_list, 'NoPreapprovedBidderList', 'true', 'false', :optional => true
19
19
  # boolean_node :no_charity, 'NoCharity', 'true', 'false', :optional => true
20
- # boolean_node :no_digital_delivery, 'NoDigitalDelivery', 'true', 'false', :optional => true
21
20
  # boolean_node :combined_shipping_discount, 'CombinedShippingDiscount', 'true', 'false', :optional => true
22
21
  # boolean_node :ship_from_eligible_country, 'ShipFromEligibleCountry', 'true', 'false', :optional => true
23
22
  # boolean_node :paypal_account_accepts_unconfirmed_address, 'PayPalAccountAcceptsUnconfirmedAddress', 'true', 'false', :optional => true
@@ -40,7 +39,6 @@ module Ebay # :nodoc:
40
39
  boolean_node :eligible_checkout, 'EligibleCheckout', 'true', 'false', :optional => true
41
40
  boolean_node :no_preapproved_bidder_list, 'NoPreapprovedBidderList', 'true', 'false', :optional => true
42
41
  boolean_node :no_charity, 'NoCharity', 'true', 'false', :optional => true
43
- boolean_node :no_digital_delivery, 'NoDigitalDelivery', 'true', 'false', :optional => true
44
42
  boolean_node :combined_shipping_discount, 'CombinedShippingDiscount', 'true', 'false', :optional => true
45
43
  boolean_node :ship_from_eligible_country, 'ShipFromEligibleCountry', 'true', 'false', :optional => true
46
44
  boolean_node :paypal_account_accepts_unconfirmed_address, 'PayPalAccountAcceptsUnconfirmedAddress', 'true', 'false', :optional => true
@@ -12,6 +12,8 @@ module Ebay # :nodoc:
12
12
  # object_node :external_product_id, 'ExternalProductID', :class => ExternalProductID, :optional => true
13
13
  # numeric_node :product_reference_id, 'ProductReferenceID', :optional => true
14
14
  # array_node :item_specifics, 'ItemSpecifics', 'NameValueList', :class => NameValueList, :default_value => []
15
+ # text_node :details_url, 'DetailsURL', :optional => true
16
+ # text_node :product_state, 'ProductState', :optional => true
15
17
  class ExpressProduct
16
18
  include XML::Mapping
17
19
  include Initializer
@@ -24,6 +26,8 @@ module Ebay # :nodoc:
24
26
  object_node :external_product_id, 'ExternalProductID', :class => ExternalProductID, :optional => true
25
27
  numeric_node :product_reference_id, 'ProductReferenceID', :optional => true
26
28
  array_node :item_specifics, 'ItemSpecifics', 'NameValueList', :class => NameValueList, :default_value => []
29
+ text_node :details_url, 'DetailsURL', :optional => true
30
+ text_node :product_state, 'ProductState', :optional => true
27
31
  end
28
32
  end
29
33
  end
@@ -9,7 +9,6 @@ require 'ebay/types/basic_upgrade_pack_enabled_definition'
9
9
  require 'ebay/types/value_pack_enabled_definition'
10
10
  require 'ebay/types/pro_pack_plus_enabled_definition'
11
11
  require 'ebay/types/ad_format_enabled_definition'
12
- require 'ebay/types/digital_delivery_enabled_definition'
13
12
  require 'ebay/types/best_offer_counter_enabled_definition'
14
13
  require 'ebay/types/best_offer_auto_decline_enabled_definition'
15
14
  require 'ebay/types/local_market_speciality_subscription_definition'
@@ -38,6 +37,67 @@ require 'ebay/types/classified_ad_contact_by_email_enabled_defintion'
38
37
  require 'ebay/types/safe_payment_required_definition'
39
38
  require 'ebay/types/classified_ad_pay_per_lead_enabled_definition'
40
39
  require 'ebay/types/item_specifics_enabled_definition'
40
+ require 'ebay/types/paisa_pay_full_escrow_enabled_definition'
41
+ require 'ebay/types/best_offer_auto_accept_enabled_definition'
42
+ require 'ebay/types/classified_ad_auto_accept_enabled_definition'
43
+ require 'ebay/types/cross_border_trade_north_america_enabled_definition'
44
+ require 'ebay/types/cross_border_trade_gb_enabled_definition'
45
+ require 'ebay/types/cross_border_trade_australia_enabled_definition'
46
+ require 'ebay/types/paypal_buyer_protection_enabled_definition'
47
+ require 'ebay/types/buyer_guarantee_enabled_definition'
48
+ require 'ebay/types/combined_fixed_price_treatment_enabled_definition'
49
+ require 'ebay/types/listing_enhancement_duration_definition'
50
+ require 'ebay/types/in_escrow_workflow_timeline_definition'
51
+ require 'ebay/types/paypal_required_definition'
52
+ require 'ebay/types/ebay_motors_pro_ad_format_enabled_definition'
53
+ require 'ebay/types/ebay_motors_pro_contact_by_phone_enabled_definition'
54
+ require 'ebay/types/ebay_motors_pro_phone_count_definition'
55
+ require 'ebay/types/ebay_motors_pro_contact_by_address_enabled_definition'
56
+ require 'ebay/types/ebay_motors_pro_street_count_definition'
57
+ require 'ebay/types/ebay_motors_pro_company_name_enabled_definition'
58
+ require 'ebay/types/ebay_motors_pro_contact_by_email_enabled_definition'
59
+ require 'ebay/types/ebay_motors_pro_best_offer_enabled_definition'
60
+ require 'ebay/types/ebay_motors_pro_auto_accept_enabled_definition'
61
+ require 'ebay/types/ebay_motors_pro_auto_decline_enabled_definition'
62
+ require 'ebay/types/ebay_motors_pro_payment_method_check_out_enabled_definition'
63
+ require 'ebay/types/ebay_motors_pro_shipping_method_enabled_definition'
64
+ require 'ebay/types/ebay_motors_pro_counter_offer_enabled_definition'
65
+ require 'ebay/types/ebay_motors_pro_seller_contact_details_enabled_definition'
66
+ require 'ebay/types/local_market_ad_format_enabled_definition'
67
+ require 'ebay/types/local_market_contact_by_phone_enabled_definition'
68
+ require 'ebay/types/local_market_phone_count_definition'
69
+ require 'ebay/types/local_market_contact_by_address_enabled_definition'
70
+ require 'ebay/types/local_market_street_count_definition'
71
+ require 'ebay/types/local_market_company_name_enabled_definition'
72
+ require 'ebay/types/local_market_contact_by_email_enabled_definition'
73
+ require 'ebay/types/local_market_best_offer_enabled_definition'
74
+ require 'ebay/types/local_market_auto_accept_enabled_definition'
75
+ require 'ebay/types/local_market_auto_decline_enabled_definition'
76
+ require 'ebay/types/local_market_payment_method_check_out_enabled_definition'
77
+ require 'ebay/types/local_market_shipping_method_enabled_definition'
78
+ require 'ebay/types/local_market_counter_offer_enabled_definition'
79
+ require 'ebay/types/local_market_seller_contact_details_enabled_definition'
80
+ require 'ebay/types/classified_ad_phone_count_definition'
81
+ require 'ebay/types/classified_ad_contact_by_address_enabled_definition'
82
+ require 'ebay/types/classified_ad_street_count_definition'
83
+ require 'ebay/types/classified_ad_company_name_enabled_definition'
84
+ require 'ebay/types/speciality_subscription_definition'
85
+ require 'ebay/types/regular_subscription_definition'
86
+ require 'ebay/types/premium_subscription_definition'
87
+ require 'ebay/types/non_subscription_definition'
88
+ require 'ebay/types/return_policy_enabled_definition'
89
+ require 'ebay/types/handling_time_enabled_definition'
90
+ require 'ebay/types/paypal_required_for_store_owner_definition'
91
+ require 'ebay/types/revise_quantity_allowed_definition'
92
+ require 'ebay/types/revise_price_allowed_definition'
93
+ require 'ebay/types/store_owner_extended_listing_durations_enabled_definition'
94
+ require 'ebay/types/store_owner_extended_listing_durations_definition'
95
+ require 'ebay/types/payment_method_definition'
96
+ require 'ebay/types/group1_max_flat_shipping_cost_definition'
97
+ require 'ebay/types/group2_max_flat_shipping_cost_definition'
98
+ require 'ebay/types/group3_max_flat_shipping_cost_definition'
99
+ require 'ebay/types/max_flat_shipping_cost_cbt_exempt_definition'
100
+ require 'ebay/types/max_flat_shipping_cost_definition'
41
101
 
42
102
  module Ebay # :nodoc:
43
103
  module Types # :nodoc:
@@ -53,7 +113,6 @@ module Ebay # :nodoc:
53
113
  # object_node :value_pack_enabled, 'ValuePackEnabled', :class => ValuePackEnabledDefinition, :optional => true
54
114
  # object_node :pro_pack_plus_enabled, 'ProPackPlusEnabled', :class => ProPackPlusEnabledDefinition, :optional => true
55
115
  # object_node :ad_format_enabled, 'AdFormatEnabled', :class => AdFormatEnabledDefinition, :optional => true
56
- # object_node :digital_delivery_enabled, 'DigitalDeliveryEnabled', :class => DigitalDeliveryEnabledDefinition, :optional => true
57
116
  # object_node :best_offer_counter_enabled, 'BestOfferCounterEnabled', :class => BestOfferCounterEnabledDefinition, :optional => true
58
117
  # object_node :best_offer_auto_decline_enabled, 'BestOfferAutoDeclineEnabled', :class => BestOfferAutoDeclineEnabledDefinition, :optional => true
59
118
  # object_node :local_market_speciality_subscription, 'LocalMarketSpecialitySubscription', :class => LocalMarketSpecialitySubscriptionDefinition, :optional => true
@@ -82,6 +141,67 @@ module Ebay # :nodoc:
82
141
  # object_node :safe_payment_required, 'SafePaymentRequired', :class => SafePaymentRequiredDefinition, :optional => true
83
142
  # object_node :classified_ad_pay_per_lead_enabled, 'ClassifiedAdPayPerLeadEnabled', :class => ClassifiedAdPayPerLeadEnabledDefinition, :optional => true
84
143
  # object_node :item_specifics_enabled, 'ItemSpecificsEnabled', :class => ItemSpecificsEnabledDefinition, :optional => true
144
+ # object_node :paisa_pay_full_escrow_enabled, 'PaisaPayFullEscrowEnabled', :class => PaisaPayFullEscrowEnabledDefinition, :optional => true
145
+ # object_node :best_offer_auto_accept_enabled, 'BestOfferAutoAcceptEnabled', :class => BestOfferAutoAcceptEnabledDefinition, :optional => true
146
+ # object_node :classified_ad_auto_accept_enabled, 'ClassifiedAdAutoAcceptEnabled', :class => ClassifiedAdAutoAcceptEnabledDefinition, :optional => true
147
+ # object_node :cross_border_trade_north_america_enabled, 'CrossBorderTradeNorthAmericaEnabled', :class => CrossBorderTradeNorthAmericaEnabledDefinition, :optional => true
148
+ # object_node :cross_border_trade_gb_enabled, 'CrossBorderTradeGBEnabled', :class => CrossBorderTradeGBEnabledDefinition, :optional => true
149
+ # object_node :cross_border_trade_australia_enabled, 'CrossBorderTradeAustraliaEnabled', :class => CrossBorderTradeAustraliaEnabledDefinition, :optional => true
150
+ # object_node :paypal_buyer_protection_enabled, 'PayPalBuyerProtectionEnabled', :class => PayPalBuyerProtectionEnabledDefinition, :optional => true
151
+ # object_node :buyer_guarantee_enabled, 'BuyerGuaranteeEnabled', :class => BuyerGuaranteeEnabledDefinition, :optional => true
152
+ # object_node :combined_fixed_price_treatment_enabled, 'CombinedFixedPriceTreatmentEnabled', :class => CombinedFixedPriceTreatmentEnabledDefinition, :optional => true
153
+ # object_node :gallery_featured_durations, 'GalleryFeaturedDurations', :class => ListingEnhancementDurationDefinition, :optional => true
154
+ # object_node :in_escrow_workflow_timeline, 'INEscrowWorkflowTimeline', :class => INEscrowWorkflowTimelineDefinition, :optional => true
155
+ # object_node :paypal_required, 'PayPalRequired', :class => PayPalRequiredDefinition, :optional => true
156
+ # object_node :ebay_motors_pro_ad_format_enabled, 'eBayMotorsProAdFormatEnabled', :class => EBayMotorsProAdFormatEnabledDefinition, :optional => true
157
+ # object_node :ebay_motors_pro_contact_by_phone_enabled, 'eBayMotorsProContactByPhoneEnabled', :class => EBayMotorsProContactByPhoneEnabledDefinition, :optional => true
158
+ # object_node :ebay_motors_pro_phone_count, 'eBayMotorsProPhoneCount', :class => EBayMotorsProPhoneCountDefinition, :optional => true
159
+ # object_node :ebay_motors_pro_contact_by_address_enabled, 'eBayMotorsProContactByAddressEnabled', :class => EBayMotorsProContactByAddressEnabledDefinition, :optional => true
160
+ # object_node :ebay_motors_pro_street_count, 'eBayMotorsProStreetCount', :class => EBayMotorsProStreetCountDefinition, :optional => true
161
+ # object_node :ebay_motors_pro_company_name_enabled, 'eBayMotorsProCompanyNameEnabled', :class => EBayMotorsProCompanyNameEnabledDefinition, :optional => true
162
+ # object_node :ebay_motors_pro_contact_by_email_enabled, 'eBayMotorsProContactByEmailEnabled', :class => EBayMotorsProContactByEmailEnabledDefinition, :optional => true
163
+ # object_node :ebay_motors_pro_best_offer_enabled, 'eBayMotorsProBestOfferEnabled', :class => EBayMotorsProBestOfferEnabledDefinition, :optional => true
164
+ # object_node :ebay_motors_pro_auto_accept_enabled, 'eBayMotorsProAutoAcceptEnabled', :class => EBayMotorsProAutoAcceptEnabledDefinition, :optional => true
165
+ # object_node :ebay_motors_pro_auto_decline_enabled, 'eBayMotorsProAutoDeclineEnabled', :class => EBayMotorsProAutoDeclineEnabledDefinition, :optional => true
166
+ # object_node :ebay_motors_pro_payment_method_check_out_enabled, 'eBayMotorsProPaymentMethodCheckOutEnabled', :class => EBayMotorsProPaymentMethodCheckOutEnabledDefinition, :optional => true
167
+ # object_node :ebay_motors_pro_shipping_method_enabled, 'eBayMotorsProShippingMethodEnabled', :class => EBayMotorsProShippingMethodEnabledDefinition, :optional => true
168
+ # object_node :ebay_motors_pro_counter_offer_enabled, 'eBayMotorsProCounterOfferEnabled', :class => EBayMotorsProCounterOfferEnabledDefinition, :optional => true
169
+ # object_node :ebay_motors_pro_seller_contact_details_enabled, 'eBayMotorsProSellerContactDetailsEnabled', :class => EBayMotorsProSellerContactDetailsEnabledDefinition, :optional => true
170
+ # object_node :local_market_ad_format_enabled, 'LocalMarketAdFormatEnabled', :class => LocalMarketAdFormatEnabledDefinition, :optional => true
171
+ # object_node :local_market_contact_by_phone_enabled, 'LocalMarketContactByPhoneEnabled', :class => LocalMarketContactByPhoneEnabledDefinition, :optional => true
172
+ # object_node :local_market_phone_count, 'LocalMarketPhoneCount', :class => LocalMarketPhoneCountDefinition, :optional => true
173
+ # object_node :local_market_contact_by_address_enabled, 'LocalMarketContactByAddressEnabled', :class => LocalMarketContactByAddressEnabledDefinition, :optional => true
174
+ # object_node :local_market_street_count, 'LocalMarketStreetCount', :class => LocalMarketStreetCountDefinition, :optional => true
175
+ # object_node :local_market_company_name_enabled, 'LocalMarketCompanyNameEnabled', :class => LocalMarketCompanyNameEnabledDefinition, :optional => true
176
+ # object_node :local_market_contact_by_email_enabled, 'LocalMarketContactByEmailEnabled', :class => LocalMarketContactByEmailEnabledDefinition, :optional => true
177
+ # object_node :local_market_best_offer_enabled, 'LocalMarketBestOfferEnabled', :class => LocalMarketBestOfferEnabledDefinition, :optional => true
178
+ # object_node :local_market_auto_accept_enabled, 'LocalMarketAutoAcceptEnabled', :class => LocalMarketAutoAcceptEnabledDefinition, :optional => true
179
+ # object_node :local_market_auto_decline_enabled, 'LocalMarketAutoDeclineEnabled', :class => LocalMarketAutoDeclineEnabledDefinition, :optional => true
180
+ # object_node :local_market_payment_method_check_out_enabled, 'LocalMarketPaymentMethodCheckOutEnabled', :class => LocalMarketPaymentMethodCheckOutEnabledDefinition, :optional => true
181
+ # object_node :local_market_shipping_method_enabled, 'LocalMarketShippingMethodEnabled', :class => LocalMarketShippingMethodEnabledDefinition, :optional => true
182
+ # object_node :local_market_counter_offer_enabled, 'LocalMarketCounterOfferEnabled', :class => LocalMarketCounterOfferEnabledDefinition, :optional => true
183
+ # object_node :local_market_seller_contact_details_enabled, 'LocalMarketSellerContactDetailsEnabled', :class => LocalMarketSellerContactDetailsEnabledDefinition, :optional => true
184
+ # object_node :classified_ad_phone_count, 'ClassifiedAdPhoneCount', :class => ClassifiedAdPhoneCountDefinition, :optional => true
185
+ # object_node :classified_ad_contact_by_address_enabled, 'ClassifiedAdContactByAddressEnabled', :class => ClassifiedAdContactByAddressEnabledDefinition, :optional => true
186
+ # object_node :classified_ad_street_count, 'ClassifiedAdStreetCount', :class => ClassifiedAdStreetCountDefinition, :optional => true
187
+ # object_node :classified_ad_company_name_enabled, 'ClassifiedAdCompanyNameEnabled', :class => ClassifiedAdCompanyNameEnabledDefinition, :optional => true
188
+ # object_node :speciality_subscription, 'SpecialitySubscription', :class => SpecialitySubscriptionDefinition, :optional => true
189
+ # object_node :regular_subscription, 'RegularSubscription', :class => RegularSubscriptionDefinition, :optional => true
190
+ # object_node :premium_subscription, 'PremiumSubscription', :class => PremiumSubscriptionDefinition, :optional => true
191
+ # object_node :non_subscription, 'NonSubscription', :class => NonSubscriptionDefinition, :optional => true
192
+ # object_node :return_policy_enabled, 'ReturnPolicyEnabled', :class => ReturnPolicyEnabledDefinition, :optional => true
193
+ # object_node :handling_time_enabled, 'HandlingTimeEnabled', :class => HandlingTimeEnabledDefinition, :optional => true
194
+ # object_node :paypal_required_for_store_owner, 'PayPalRequiredForStoreOwner', :class => PayPalRequiredForStoreOwnerDefinition, :optional => true
195
+ # object_node :revise_quantity_allowed, 'ReviseQuantityAllowed', :class => ReviseQuantityAllowedDefinition, :optional => true
196
+ # object_node :revise_price_allowed, 'RevisePriceAllowed', :class => RevisePriceAllowedDefinition, :optional => true
197
+ # object_node :store_owner_extended_listing_durations_enabled, 'StoreOwnerExtendedListingDurationsEnabled', :class => StoreOwnerExtendedListingDurationsEnabledDefinition, :optional => true
198
+ # object_node :store_owner_extended_listing_durations, 'StoreOwnerExtendedListingDurations', :class => StoreOwnerExtendedListingDurationsDefinition, :optional => true
199
+ # object_node :payment_method, 'PaymentMethod', :class => PaymentMethodDefinition, :optional => true
200
+ # object_node :group1_max_flat_shipping_cost, 'Group1MaxFlatShippingCost', :class => Group1MaxFlatShippingCostDefinition, :optional => true
201
+ # object_node :group2_max_flat_shipping_cost, 'Group2MaxFlatShippingCost', :class => Group2MaxFlatShippingCostDefinition, :optional => true
202
+ # object_node :group3_max_flat_shipping_cost, 'Group3MaxFlatShippingCost', :class => Group3MaxFlatShippingCostDefinition, :optional => true
203
+ # object_node :max_flat_shipping_cost_cbt_exempt, 'MaxFlatShippingCostCBTExempt', :class => MaxFlatShippingCostCBTExemptDefinition, :optional => true
204
+ # object_node :max_flat_shipping_cost, 'MaxFlatShippingCost', :class => MaxFlatShippingCostDefinition, :optional => true
85
205
  class FeatureDefinitions
86
206
  include XML::Mapping
87
207
  include Initializer
@@ -97,7 +217,6 @@ module Ebay # :nodoc:
97
217
  object_node :value_pack_enabled, 'ValuePackEnabled', :class => ValuePackEnabledDefinition, :optional => true
98
218
  object_node :pro_pack_plus_enabled, 'ProPackPlusEnabled', :class => ProPackPlusEnabledDefinition, :optional => true
99
219
  object_node :ad_format_enabled, 'AdFormatEnabled', :class => AdFormatEnabledDefinition, :optional => true
100
- object_node :digital_delivery_enabled, 'DigitalDeliveryEnabled', :class => DigitalDeliveryEnabledDefinition, :optional => true
101
220
  object_node :best_offer_counter_enabled, 'BestOfferCounterEnabled', :class => BestOfferCounterEnabledDefinition, :optional => true
102
221
  object_node :best_offer_auto_decline_enabled, 'BestOfferAutoDeclineEnabled', :class => BestOfferAutoDeclineEnabledDefinition, :optional => true
103
222
  object_node :local_market_speciality_subscription, 'LocalMarketSpecialitySubscription', :class => LocalMarketSpecialitySubscriptionDefinition, :optional => true
@@ -126,6 +245,67 @@ module Ebay # :nodoc:
126
245
  object_node :safe_payment_required, 'SafePaymentRequired', :class => SafePaymentRequiredDefinition, :optional => true
127
246
  object_node :classified_ad_pay_per_lead_enabled, 'ClassifiedAdPayPerLeadEnabled', :class => ClassifiedAdPayPerLeadEnabledDefinition, :optional => true
128
247
  object_node :item_specifics_enabled, 'ItemSpecificsEnabled', :class => ItemSpecificsEnabledDefinition, :optional => true
248
+ object_node :paisa_pay_full_escrow_enabled, 'PaisaPayFullEscrowEnabled', :class => PaisaPayFullEscrowEnabledDefinition, :optional => true
249
+ object_node :best_offer_auto_accept_enabled, 'BestOfferAutoAcceptEnabled', :class => BestOfferAutoAcceptEnabledDefinition, :optional => true
250
+ object_node :classified_ad_auto_accept_enabled, 'ClassifiedAdAutoAcceptEnabled', :class => ClassifiedAdAutoAcceptEnabledDefinition, :optional => true
251
+ object_node :cross_border_trade_north_america_enabled, 'CrossBorderTradeNorthAmericaEnabled', :class => CrossBorderTradeNorthAmericaEnabledDefinition, :optional => true
252
+ object_node :cross_border_trade_gb_enabled, 'CrossBorderTradeGBEnabled', :class => CrossBorderTradeGBEnabledDefinition, :optional => true
253
+ object_node :cross_border_trade_australia_enabled, 'CrossBorderTradeAustraliaEnabled', :class => CrossBorderTradeAustraliaEnabledDefinition, :optional => true
254
+ object_node :paypal_buyer_protection_enabled, 'PayPalBuyerProtectionEnabled', :class => PayPalBuyerProtectionEnabledDefinition, :optional => true
255
+ object_node :buyer_guarantee_enabled, 'BuyerGuaranteeEnabled', :class => BuyerGuaranteeEnabledDefinition, :optional => true
256
+ object_node :combined_fixed_price_treatment_enabled, 'CombinedFixedPriceTreatmentEnabled', :class => CombinedFixedPriceTreatmentEnabledDefinition, :optional => true
257
+ object_node :gallery_featured_durations, 'GalleryFeaturedDurations', :class => ListingEnhancementDurationDefinition, :optional => true
258
+ object_node :in_escrow_workflow_timeline, 'INEscrowWorkflowTimeline', :class => INEscrowWorkflowTimelineDefinition, :optional => true
259
+ object_node :paypal_required, 'PayPalRequired', :class => PayPalRequiredDefinition, :optional => true
260
+ object_node :ebay_motors_pro_ad_format_enabled, 'eBayMotorsProAdFormatEnabled', :class => EBayMotorsProAdFormatEnabledDefinition, :optional => true
261
+ object_node :ebay_motors_pro_contact_by_phone_enabled, 'eBayMotorsProContactByPhoneEnabled', :class => EBayMotorsProContactByPhoneEnabledDefinition, :optional => true
262
+ object_node :ebay_motors_pro_phone_count, 'eBayMotorsProPhoneCount', :class => EBayMotorsProPhoneCountDefinition, :optional => true
263
+ object_node :ebay_motors_pro_contact_by_address_enabled, 'eBayMotorsProContactByAddressEnabled', :class => EBayMotorsProContactByAddressEnabledDefinition, :optional => true
264
+ object_node :ebay_motors_pro_street_count, 'eBayMotorsProStreetCount', :class => EBayMotorsProStreetCountDefinition, :optional => true
265
+ object_node :ebay_motors_pro_company_name_enabled, 'eBayMotorsProCompanyNameEnabled', :class => EBayMotorsProCompanyNameEnabledDefinition, :optional => true
266
+ object_node :ebay_motors_pro_contact_by_email_enabled, 'eBayMotorsProContactByEmailEnabled', :class => EBayMotorsProContactByEmailEnabledDefinition, :optional => true
267
+ object_node :ebay_motors_pro_best_offer_enabled, 'eBayMotorsProBestOfferEnabled', :class => EBayMotorsProBestOfferEnabledDefinition, :optional => true
268
+ object_node :ebay_motors_pro_auto_accept_enabled, 'eBayMotorsProAutoAcceptEnabled', :class => EBayMotorsProAutoAcceptEnabledDefinition, :optional => true
269
+ object_node :ebay_motors_pro_auto_decline_enabled, 'eBayMotorsProAutoDeclineEnabled', :class => EBayMotorsProAutoDeclineEnabledDefinition, :optional => true
270
+ object_node :ebay_motors_pro_payment_method_check_out_enabled, 'eBayMotorsProPaymentMethodCheckOutEnabled', :class => EBayMotorsProPaymentMethodCheckOutEnabledDefinition, :optional => true
271
+ object_node :ebay_motors_pro_shipping_method_enabled, 'eBayMotorsProShippingMethodEnabled', :class => EBayMotorsProShippingMethodEnabledDefinition, :optional => true
272
+ object_node :ebay_motors_pro_counter_offer_enabled, 'eBayMotorsProCounterOfferEnabled', :class => EBayMotorsProCounterOfferEnabledDefinition, :optional => true
273
+ object_node :ebay_motors_pro_seller_contact_details_enabled, 'eBayMotorsProSellerContactDetailsEnabled', :class => EBayMotorsProSellerContactDetailsEnabledDefinition, :optional => true
274
+ object_node :local_market_ad_format_enabled, 'LocalMarketAdFormatEnabled', :class => LocalMarketAdFormatEnabledDefinition, :optional => true
275
+ object_node :local_market_contact_by_phone_enabled, 'LocalMarketContactByPhoneEnabled', :class => LocalMarketContactByPhoneEnabledDefinition, :optional => true
276
+ object_node :local_market_phone_count, 'LocalMarketPhoneCount', :class => LocalMarketPhoneCountDefinition, :optional => true
277
+ object_node :local_market_contact_by_address_enabled, 'LocalMarketContactByAddressEnabled', :class => LocalMarketContactByAddressEnabledDefinition, :optional => true
278
+ object_node :local_market_street_count, 'LocalMarketStreetCount', :class => LocalMarketStreetCountDefinition, :optional => true
279
+ object_node :local_market_company_name_enabled, 'LocalMarketCompanyNameEnabled', :class => LocalMarketCompanyNameEnabledDefinition, :optional => true
280
+ object_node :local_market_contact_by_email_enabled, 'LocalMarketContactByEmailEnabled', :class => LocalMarketContactByEmailEnabledDefinition, :optional => true
281
+ object_node :local_market_best_offer_enabled, 'LocalMarketBestOfferEnabled', :class => LocalMarketBestOfferEnabledDefinition, :optional => true
282
+ object_node :local_market_auto_accept_enabled, 'LocalMarketAutoAcceptEnabled', :class => LocalMarketAutoAcceptEnabledDefinition, :optional => true
283
+ object_node :local_market_auto_decline_enabled, 'LocalMarketAutoDeclineEnabled', :class => LocalMarketAutoDeclineEnabledDefinition, :optional => true
284
+ object_node :local_market_payment_method_check_out_enabled, 'LocalMarketPaymentMethodCheckOutEnabled', :class => LocalMarketPaymentMethodCheckOutEnabledDefinition, :optional => true
285
+ object_node :local_market_shipping_method_enabled, 'LocalMarketShippingMethodEnabled', :class => LocalMarketShippingMethodEnabledDefinition, :optional => true
286
+ object_node :local_market_counter_offer_enabled, 'LocalMarketCounterOfferEnabled', :class => LocalMarketCounterOfferEnabledDefinition, :optional => true
287
+ object_node :local_market_seller_contact_details_enabled, 'LocalMarketSellerContactDetailsEnabled', :class => LocalMarketSellerContactDetailsEnabledDefinition, :optional => true
288
+ object_node :classified_ad_phone_count, 'ClassifiedAdPhoneCount', :class => ClassifiedAdPhoneCountDefinition, :optional => true
289
+ object_node :classified_ad_contact_by_address_enabled, 'ClassifiedAdContactByAddressEnabled', :class => ClassifiedAdContactByAddressEnabledDefinition, :optional => true
290
+ object_node :classified_ad_street_count, 'ClassifiedAdStreetCount', :class => ClassifiedAdStreetCountDefinition, :optional => true
291
+ object_node :classified_ad_company_name_enabled, 'ClassifiedAdCompanyNameEnabled', :class => ClassifiedAdCompanyNameEnabledDefinition, :optional => true
292
+ object_node :speciality_subscription, 'SpecialitySubscription', :class => SpecialitySubscriptionDefinition, :optional => true
293
+ object_node :regular_subscription, 'RegularSubscription', :class => RegularSubscriptionDefinition, :optional => true
294
+ object_node :premium_subscription, 'PremiumSubscription', :class => PremiumSubscriptionDefinition, :optional => true
295
+ object_node :non_subscription, 'NonSubscription', :class => NonSubscriptionDefinition, :optional => true
296
+ object_node :return_policy_enabled, 'ReturnPolicyEnabled', :class => ReturnPolicyEnabledDefinition, :optional => true
297
+ object_node :handling_time_enabled, 'HandlingTimeEnabled', :class => HandlingTimeEnabledDefinition, :optional => true
298
+ object_node :paypal_required_for_store_owner, 'PayPalRequiredForStoreOwner', :class => PayPalRequiredForStoreOwnerDefinition, :optional => true
299
+ object_node :revise_quantity_allowed, 'ReviseQuantityAllowed', :class => ReviseQuantityAllowedDefinition, :optional => true
300
+ object_node :revise_price_allowed, 'RevisePriceAllowed', :class => RevisePriceAllowedDefinition, :optional => true
301
+ object_node :store_owner_extended_listing_durations_enabled, 'StoreOwnerExtendedListingDurationsEnabled', :class => StoreOwnerExtendedListingDurationsEnabledDefinition, :optional => true
302
+ object_node :store_owner_extended_listing_durations, 'StoreOwnerExtendedListingDurations', :class => StoreOwnerExtendedListingDurationsDefinition, :optional => true
303
+ object_node :payment_method, 'PaymentMethod', :class => PaymentMethodDefinition, :optional => true
304
+ object_node :group1_max_flat_shipping_cost, 'Group1MaxFlatShippingCost', :class => Group1MaxFlatShippingCostDefinition, :optional => true
305
+ object_node :group2_max_flat_shipping_cost, 'Group2MaxFlatShippingCost', :class => Group2MaxFlatShippingCostDefinition, :optional => true
306
+ object_node :group3_max_flat_shipping_cost, 'Group3MaxFlatShippingCost', :class => Group3MaxFlatShippingCostDefinition, :optional => true
307
+ object_node :max_flat_shipping_cost_cbt_exempt, 'MaxFlatShippingCostCBTExempt', :class => MaxFlatShippingCostCBTExemptDefinition, :optional => true
308
+ object_node :max_flat_shipping_cost, 'MaxFlatShippingCost', :class => MaxFlatShippingCostDefinition, :optional => true
129
309
  end
130
310
  end
131
311
  end
@@ -44,6 +44,60 @@ module Ebay # :nodoc:
44
44
  ClassifiedAdContactByEmailAvailable = 'ClassifiedAdContactByEmailAvailable'
45
45
  ClassifiedAdPayPerLeadEnabled = 'ClassifiedAdPayPerLeadEnabled'
46
46
  ItemSpecificsEnabled = 'ItemSpecificsEnabled'
47
+ PaisaPayFullEscrowEnabled = 'PaisaPayFullEscrowEnabled'
48
+ ClassifiedAdAutoAcceptEnabled = 'ClassifiedAdAutoAcceptEnabled'
49
+ BestOfferAutoAcceptEnabled = 'BestOfferAutoAcceptEnabled'
50
+ CrossBorderTradeEnabled = 'CrossBorderTradeEnabled'
51
+ PayPalBuyerProtectionEnabled = 'PayPalBuyerProtectionEnabled'
52
+ BuyerGuaranteeEnabled = 'BuyerGuaranteeEnabled'
53
+ INEscrowWorkflowTimeline = 'INEscrowWorkflowTimeline'
54
+ CombinedFixedPriceTreatment = 'CombinedFixedPriceTreatment'
55
+ GalleryFeaturedDurations = 'GalleryFeaturedDurations'
56
+ PayPalRequired = 'PayPalRequired'
57
+ EBayMotorsProAdFormatEnabled = 'eBayMotorsProAdFormatEnabled'
58
+ EBayMotorsProContactByPhoneEnabled = 'eBayMotorsProContactByPhoneEnabled'
59
+ EBayMotorsProContactByAddressEnabled = 'eBayMotorsProContactByAddressEnabled'
60
+ EBayMotorsProCompanyNameEnabled = 'eBayMotorsProCompanyNameEnabled'
61
+ EBayMotorsProContactByEmailEnabled = 'eBayMotorsProContactByEmailEnabled'
62
+ EBayMotorsProBestOfferEnabled = 'eBayMotorsProBestOfferEnabled'
63
+ EBayMotorsProAutoAcceptEnabled = 'eBayMotorsProAutoAcceptEnabled'
64
+ EBayMotorsProAutoDeclineEnabled = 'eBayMotorsProAutoDeclineEnabled'
65
+ EBayMotorsProPaymentMethodCheckOutEnabled = 'eBayMotorsProPaymentMethodCheckOutEnabled'
66
+ EBayMotorsProShippingMethodEnabled = 'eBayMotorsProShippingMethodEnabled'
67
+ EBayMotorsProCounterOfferEnabled = 'eBayMotorsProCounterOfferEnabled'
68
+ EBayMotorsProSellerContactDetailsEnabled = 'eBayMotorsProSellerContactDetailsEnabled'
69
+ LocalMarketAdFormatEnabled = 'LocalMarketAdFormatEnabled'
70
+ LocalMarketContactByPhoneEnabled = 'LocalMarketContactByPhoneEnabled'
71
+ LocalMarketContactByAddressEnabled = 'LocalMarketContactByAddressEnabled'
72
+ LocalMarketCompanyNameEnabled = 'LocalMarketCompanyNameEnabled'
73
+ LocalMarketContactByEmailEnabled = 'LocalMarketContactByEmailEnabled'
74
+ LocalMarketBestOfferEnabled = 'LocalMarketBestOfferEnabled'
75
+ LocalMarketAutoAcceptEnabled = 'LocalMarketAutoAcceptEnabled'
76
+ LocalMarketAutoDeclineEnabled = 'LocalMarketAutoDeclineEnabled'
77
+ LocalMarketPaymentMethodCheckOutEnabled = 'LocalMarketPaymentMethodCheckOutEnabled'
78
+ LocalMarketShippingMethodEnabled = 'LocalMarketShippingMethodEnabled'
79
+ LocalMarketCounterOfferEnabled = 'LocalMarketCounterOfferEnabled'
80
+ LocalMarketSellerContactDetailsEnabled = 'LocalMarketSellerContactDetailsEnabled'
81
+ ClassifiedAdContactByAddressEnabled = 'ClassifiedAdContactByAddressEnabled'
82
+ ClassifiedAdCompanyNameEnabled = 'ClassifiedAdCompanyNameEnabled'
83
+ SpecialitySubscription = 'SpecialitySubscription'
84
+ RegularSubscription = 'RegularSubscription'
85
+ PremiumSubscription = 'PremiumSubscription'
86
+ NonSubscription = 'NonSubscription'
87
+ IntangibleEnabled = 'IntangibleEnabled'
88
+ PayPalRequiredForStoreOwner = 'PayPalRequiredForStoreOwner'
89
+ ReviseQuantityAllowed = 'ReviseQuantityAllowed'
90
+ RevisePriceAllowed = 'RevisePriceAllowed'
91
+ StoreOwnerExtendedListingDurationsEnabled = 'StoreOwnerExtendedListingDurationsEnabled'
92
+ StoreOwnerExtendedListingDurations = 'StoreOwnerExtendedListingDurations'
93
+ ReturnPolicyEnabled = 'ReturnPolicyEnabled'
94
+ HandlingTimeEnabled = 'HandlingTimeEnabled'
95
+ PaymentMethods = 'PaymentMethods'
96
+ MaxFlatShippingCost = 'MaxFlatShippingCost'
97
+ MaxFlatShippingCostCBTExempt = 'MaxFlatShippingCostCBTExempt'
98
+ Group1MaxFlatShippingCost = 'Group1MaxFlatShippingCost'
99
+ Group2MaxFlatShippingCost = 'Group2MaxFlatShippingCost'
100
+ Group3MaxFlatShippingCost = 'Group3MaxFlatShippingCost'
47
101
  end
48
102
  end
49
103
  end
@@ -4,12 +4,16 @@ module Ebay # :nodoc:
4
4
  # == Attributes
5
5
  # text_node :name, 'Name', :optional => true
6
6
  # money_node :fee, 'Fee', :optional => true
7
+ # money_node :discounted_fee, 'DiscountedFee', :optional => true
8
+ # text_node :related_discounted_fee_name, 'RelatedDiscountedFeeName', :optional => true
7
9
  class Fee
8
10
  include XML::Mapping
9
11
  include Initializer
10
12
  root_element_name 'Fee'
11
13
  text_node :name, 'Name', :optional => true
12
14
  money_node :fee, 'Fee', :optional => true
15
+ money_node :discounted_fee, 'DiscountedFee', :optional => true
16
+ text_node :related_discounted_fee_name, 'RelatedDiscountedFeeName', :optional => true
13
17
  end
14
18
  end
15
19
  end
@@ -0,0 +1,15 @@
1
+
2
+ module Ebay # :nodoc:
3
+ module Types # :nodoc:
4
+ # == Attributes
5
+ # text_node :stored_comment_text, 'StoredCommentText', :optional => true
6
+ class FeedbackCommentArray
7
+ include XML::Mapping
8
+ include Initializer
9
+ root_element_name 'FeedbackCommentArray'
10
+ text_node :stored_comment_text, 'StoredCommentText', :optional => true
11
+ end
12
+ end
13
+ end
14
+
15
+
@@ -19,6 +19,7 @@ module Ebay # :nodoc:
19
19
  # boolean_node :response_replaced, 'ResponseReplaced', 'true', 'false', :optional => true
20
20
  # boolean_node :follow_up_replaced, 'FollowUpReplaced', 'true', 'false', :optional => true
21
21
  # boolean_node :countable, 'Countable', 'true', 'false', :optional => true
22
+ # boolean_node :feedback_revised, 'FeedbackRevised', 'true', 'false', :optional => true
22
23
  class FeedbackDetail
23
24
  include XML::Mapping
24
25
  include Initializer
@@ -40,6 +41,7 @@ module Ebay # :nodoc:
40
41
  boolean_node :response_replaced, 'ResponseReplaced', 'true', 'false', :optional => true
41
42
  boolean_node :follow_up_replaced, 'FollowUpReplaced', 'true', 'false', :optional => true
42
43
  boolean_node :countable, 'Countable', 'true', 'false', :optional => true
44
+ boolean_node :feedback_revised, 'FeedbackRevised', 'true', 'false', :optional => true
43
45
  end
44
46
  end
45
47
  end
@@ -1,5 +1,7 @@
1
1
  require 'ebay/types/feedback_period'
2
- require 'ebay/types/average_rating_details'
2
+ require 'ebay/types/average_rating_summary'
3
+ require 'ebay/types/seller_role_metrics'
4
+ require 'ebay/types/buyer_role_metrics'
3
5
 
4
6
  module Ebay # :nodoc:
5
7
  module Types # :nodoc:
@@ -12,7 +14,10 @@ module Ebay # :nodoc:
12
14
  # numeric_node :neutral_comment_count_from_suspended_users, 'NeutralCommentCountFromSuspendedUsers', :optional => true
13
15
  # numeric_node :unique_negative_feedback_count, 'UniqueNegativeFeedbackCount', :optional => true
14
16
  # numeric_node :unique_positive_feedback_count, 'UniquePositiveFeedbackCount', :optional => true
15
- # array_node :seller_average_rating_details, 'SellerAverageRatingDetailArray', 'AverageRatingDetails', :class => AverageRatingDetails, :default_value => []
17
+ # numeric_node :unique_neutral_feedback_count, 'UniqueNeutralFeedbackCount', :optional => true
18
+ # array_node :seller_rating_summaries, 'SellerRatingSummaryArray', 'AverageRatingSummary', :class => AverageRatingSummary, :default_value => []
19
+ # object_node :seller_role_metrics, 'SellerRoleMetrics', :class => SellerRoleMetrics, :optional => true
20
+ # object_node :buyer_role_metrics, 'BuyerRoleMetrics', :class => BuyerRoleMetrics, :optional => true
16
21
  class FeedbackSummary
17
22
  include XML::Mapping
18
23
  include Initializer
@@ -25,7 +30,10 @@ module Ebay # :nodoc:
25
30
  numeric_node :neutral_comment_count_from_suspended_users, 'NeutralCommentCountFromSuspendedUsers', :optional => true
26
31
  numeric_node :unique_negative_feedback_count, 'UniqueNegativeFeedbackCount', :optional => true
27
32
  numeric_node :unique_positive_feedback_count, 'UniquePositiveFeedbackCount', :optional => true
28
- array_node :seller_average_rating_details, 'SellerAverageRatingDetailArray', 'AverageRatingDetails', :class => AverageRatingDetails, :default_value => []
33
+ numeric_node :unique_neutral_feedback_count, 'UniqueNeutralFeedbackCount', :optional => true
34
+ array_node :seller_rating_summaries, 'SellerRatingSummaryArray', 'AverageRatingSummary', :class => AverageRatingSummary, :default_value => []
35
+ object_node :seller_role_metrics, 'SellerRoleMetrics', :class => SellerRoleMetrics, :optional => true
36
+ object_node :buyer_role_metrics, 'BuyerRoleMetrics', :class => BuyerRoleMetrics, :optional => true
29
37
  end
30
38
  end
31
39
  end