ebayapi 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +42 -29
- data/MIT-LICENSE +1 -1
- data/README +1 -1
- data/Rakefile +4 -3
- data/examples/add_item.rb +46 -11
- data/examples/config.rb +6 -0
- data/examples/end_item.rb +0 -0
- data/examples/get_api_usage.rb +0 -0
- data/examples/get_attributes_xsl.rb +0 -0
- data/examples/get_ebay_details.rb +0 -0
- data/examples/get_ebay_time.rb +0 -0
- data/examples/get_ebay_time_raw.rb +0 -0
- data/examples/get_item.rb +0 -0
- data/examples/get_item_transactions.rb +0 -0
- data/examples/get_items_selling.rb +0 -0
- data/examples/get_my_messages.rb +0 -0
- data/examples/get_my_messages_folders.rb +0 -0
- data/examples/get_notification_preferences.rb +0 -0
- data/examples/get_notifications_usage.rb +0 -0
- data/examples/get_product_finder_xsl.rb +0 -0
- data/examples/get_search_results.rb +0 -0
- data/examples/get_user.rb +0 -0
- data/examples/mark_my_messages_message_as_read.rb +0 -0
- data/examples/revise_item.rb +0 -0
- data/examples/set_notification_preferences.rb +0 -0
- data/examples/verify_add_item.rb +0 -0
- data/lib/ebay/api.rb +5 -1
- data/lib/ebay/api_methods.rb +279 -79
- data/lib/ebay/request/base.rb +3 -3
- data/lib/ebay/request/connection.rb +4 -7
- data/lib/ebay/requests.rb +36 -11
- data/lib/ebay/requests/abstract.rb +2 -0
- data/lib/ebay/requests/add_item_from_selling_manager_template.rb +20 -0
- data/lib/ebay/requests/add_items.rb +16 -0
- data/lib/ebay/requests/add_selling_manager_inventory_folder.rb +19 -0
- data/lib/ebay/requests/add_selling_manager_product.rb +18 -0
- data/lib/ebay/requests/add_selling_manager_template.rb +20 -0
- data/lib/ebay/requests/complete_sale.rb +5 -0
- data/lib/ebay/requests/confirm_identity.rb +15 -0
- data/lib/ebay/requests/delete_selling_manager_inventory_folder.rb +15 -0
- data/lib/ebay/requests/delete_selling_manager_item_automation_rule.rb +19 -0
- data/lib/ebay/requests/delete_selling_manager_product.rb +15 -0
- data/lib/ebay/requests/delete_selling_manager_template.rb +15 -0
- data/lib/ebay/requests/delete_selling_manager_template_automation_rule.rb +21 -0
- data/lib/ebay/requests/end_items.rb +16 -0
- data/lib/ebay/requests/fetch_token.rb +2 -0
- data/lib/ebay/requests/get_account.rb +2 -0
- data/lib/ebay/requests/get_ad_format_leads.rb +4 -0
- data/lib/ebay/requests/get_attributes_cs.rb +0 -2
- data/lib/ebay/requests/get_category_listings.rb +2 -0
- data/lib/ebay/requests/get_charities.rb +2 -0
- data/lib/ebay/requests/{get_live_auction_catalog_details.rb → get_client_alerts_auth_token.rb} +2 -2
- data/lib/ebay/requests/get_feedback.rb +10 -2
- data/lib/ebay/requests/get_item.rb +4 -2
- data/lib/ebay/requests/get_item_transactions.rb +2 -0
- data/lib/ebay/requests/get_my_ebay_buying.rb +6 -0
- data/lib/ebay/requests/get_my_ebay_selling.rb +8 -0
- data/lib/ebay/requests/get_my_messages.rb +2 -0
- data/lib/ebay/requests/get_order_transactions.rb +2 -0
- data/lib/ebay/requests/get_products.rb +2 -0
- data/lib/ebay/requests/get_search_results.rb +2 -2
- data/lib/ebay/requests/get_seller_dashboard.rb +13 -0
- data/lib/ebay/requests/get_seller_list.rb +4 -0
- data/lib/ebay/requests/get_seller_transactions.rb +4 -0
- data/lib/ebay/requests/get_selling_manager_alerts.rb +13 -0
- data/lib/ebay/requests/get_selling_manager_email_log.rb +22 -0
- data/lib/ebay/requests/get_selling_manager_inventory.rb +29 -0
- data/lib/ebay/requests/get_selling_manager_inventory_folder.rb +19 -0
- data/lib/ebay/requests/get_selling_manager_item_automation_rule.rb +15 -0
- data/lib/ebay/requests/get_selling_manager_sale_record.rb +19 -0
- data/lib/ebay/requests/get_selling_manager_sold_listings.rb +32 -0
- data/lib/ebay/requests/get_selling_manager_template_automation_rule.rb +15 -0
- data/lib/ebay/requests/get_selling_manager_templates.rb +15 -0
- data/lib/ebay/{responses/get_ru_name.rb → requests/get_session_id.rb} +3 -3
- data/lib/ebay/requests/{get_return_url.rb → get_token_status.rb} +2 -2
- data/lib/ebay/requests/get_user_preferences.rb +2 -0
- data/lib/ebay/requests/move_selling_manager_inventory_folder.rb +17 -0
- data/lib/ebay/requests/revise_checkout_status.rb +2 -0
- data/lib/ebay/requests/revise_inventory_status.rb +16 -0
- data/lib/ebay/requests/revise_selling_manager_inventory_folder.rb +16 -0
- data/lib/ebay/requests/revise_selling_manager_product.rb +21 -0
- data/lib/ebay/requests/revise_selling_manager_sale_record.rb +22 -0
- data/lib/ebay/requests/revise_selling_manager_template.rb +26 -0
- data/lib/ebay/requests/revoke_token.rb +15 -0
- data/lib/ebay/requests/save_item_to_selling_manager_template.rb +19 -0
- data/lib/ebay/requests/send_invoice.rb +4 -0
- data/lib/ebay/requests/set_notification_preferences.rb +2 -0
- data/lib/ebay/requests/set_promotional_sale_listings.rb +2 -0
- data/lib/ebay/requests/set_selling_manager_feedback_options.rb +18 -0
- data/lib/ebay/requests/set_selling_manager_item_automation_rule.rb +21 -0
- data/lib/ebay/requests/set_selling_manager_template_automation_rule.rb +24 -0
- data/lib/ebay/requests/set_user_notes.rb +2 -0
- data/lib/ebay/requests/set_user_preferences.rb +2 -3
- data/lib/ebay/requests/upload_site_hosted_pictures.rb +4 -0
- data/lib/ebay/responses.rb +36 -11
- data/lib/ebay/responses/abstract.rb +2 -0
- data/lib/ebay/responses/{add_live_auction_item.rb → add_item_from_selling_manager_template.rb} +6 -2
- data/lib/ebay/responses/add_items.rb +16 -0
- data/lib/ebay/responses/add_selling_manager_inventory_folder.rb +15 -0
- data/lib/ebay/responses/add_selling_manager_product.rb +16 -0
- data/lib/ebay/responses/add_selling_manager_template.rb +29 -0
- data/lib/ebay/responses/confirm_identity.rb +15 -0
- data/lib/ebay/responses/delete_selling_manager_inventory_folder.rb +13 -0
- data/lib/ebay/responses/delete_selling_manager_item_automation_rule.rb +25 -0
- data/lib/ebay/responses/delete_selling_manager_product.rb +16 -0
- data/lib/ebay/responses/delete_selling_manager_template.rb +17 -0
- data/lib/ebay/responses/delete_selling_manager_template_automation_rule.rb +25 -0
- data/lib/ebay/responses/end_items.rb +16 -0
- data/lib/ebay/responses/get_category_listings.rb +2 -0
- data/lib/ebay/responses/get_client_alerts_auth_token.rb +17 -0
- data/lib/ebay/responses/get_ebay_details.rb +15 -0
- data/lib/ebay/responses/get_feedback.rb +7 -0
- data/lib/ebay/responses/get_my_ebay_buying.rb +4 -0
- data/lib/ebay/responses/get_my_ebay_selling.rb +6 -0
- data/lib/ebay/responses/get_notification_preferences.rb +2 -0
- data/lib/ebay/responses/get_products.rb +2 -0
- data/lib/ebay/responses/get_search_results.rb +2 -0
- data/lib/ebay/responses/get_seller_dashboard.rb +31 -0
- data/lib/ebay/responses/get_selling_manager_alerts.rb +16 -0
- data/lib/ebay/responses/get_selling_manager_email_log.rb +16 -0
- data/lib/ebay/responses/get_selling_manager_inventory.rb +21 -0
- data/lib/ebay/responses/get_selling_manager_inventory_folder.rb +16 -0
- data/lib/ebay/responses/get_selling_manager_item_automation_rule.rb +25 -0
- data/lib/ebay/responses/get_selling_manager_sale_record.rb +16 -0
- data/lib/ebay/responses/get_selling_manager_sold_listings.rb +19 -0
- data/lib/ebay/responses/get_selling_manager_template_automation_rule.rb +25 -0
- data/lib/ebay/responses/get_selling_manager_templates.rb +16 -0
- data/lib/ebay/responses/get_session_id.rb +15 -0
- data/lib/ebay/responses/get_token_status.rb +16 -0
- data/lib/ebay/responses/get_user_preferences.rb +2 -3
- data/lib/ebay/responses/items_canceled_event.rb +19 -0
- data/lib/ebay/responses/move_selling_manager_inventory_folder.rb +13 -0
- data/lib/ebay/responses/place_offer.rb +5 -0
- data/lib/ebay/responses/revise_inventory_status.rb +16 -0
- data/lib/ebay/responses/revise_selling_manager_inventory_folder.rb +16 -0
- data/lib/ebay/responses/revise_selling_manager_product.rb +16 -0
- data/lib/ebay/responses/revise_selling_manager_sale_record.rb +13 -0
- data/lib/ebay/responses/revise_selling_manager_template.rb +29 -0
- data/lib/ebay/responses/{set_return_url.rb → revoke_token.rb} +2 -2
- data/lib/ebay/responses/save_item_to_selling_manager_template.rb +15 -0
- data/lib/ebay/responses/set_selling_manager_feedback_options.rb +13 -0
- data/lib/ebay/responses/set_selling_manager_item_automation_rule.rb +25 -0
- data/lib/ebay/responses/set_selling_manager_template_automation_rule.rb +25 -0
- data/lib/ebay/schema/ebaySvc.xsd +110905 -0
- data/lib/ebay/schema/version.rb +1 -1
- data/lib/ebay/types.rb +51 -9
- data/lib/ebay/types/account_detail_entry_code.rb +8 -0
- data/lib/ebay/types/ad_format_lead.rb +16 -8
- data/lib/ebay/{requests/add_live_auction_item.rb → types/add_item_request_container.rb} +5 -3
- data/lib/ebay/types/add_item_response_container.rb +33 -0
- data/lib/ebay/types/address.rb +6 -0
- data/lib/ebay/types/announcement_message.rb +19 -0
- data/lib/ebay/types/announcement_message_code.rb +13 -0
- data/lib/ebay/types/application_delivery_preferences.rb +5 -0
- data/lib/ebay/types/automated_leave_feedback_event_code.rb +12 -0
- data/lib/ebay/types/average_rating_summary.rb +18 -0
- data/lib/ebay/types/best_offer_auto_accept_enabled_definition.rb +13 -0
- data/lib/ebay/types/bid_action_code.rb +4 -0
- data/lib/ebay/types/bid_approval_array.rb +0 -3
- data/lib/ebay/types/bidder_detail.rb +2 -3
- data/lib/ebay/types/business_seller_details.rb +31 -0
- data/lib/ebay/types/{digital_delivery_enabled_definition.rb → buyer_guarantee_enabled_definition.rb} +2 -2
- data/lib/ebay/types/buyer_payment_method_code.rb +7 -0
- data/lib/ebay/types/buyer_protection_code.rb +1 -0
- data/lib/ebay/types/{buyer_requirements.rb → buyer_requirement_details.rb} +8 -4
- data/lib/ebay/types/buyer_role_metrics.rb +21 -0
- data/lib/ebay/types/buyer_satisfaction_dashboard.rb +18 -0
- data/lib/ebay/types/buyer_satisfaction_status_code.rb +15 -0
- data/lib/ebay/types/calculated_shipping_rate.rb +2 -0
- data/lib/ebay/types/catalog_product.rb +2 -0
- data/lib/ebay/types/category_feature.rb +122 -2
- data/lib/ebay/types/charity_affiliation_detail.rb +19 -0
- data/lib/ebay/types/charity_info.rb +6 -0
- data/lib/ebay/types/charity_seller.rb +2 -0
- data/lib/ebay/types/charity_seller_status_code.rb +2 -0
- data/lib/ebay/types/checkout_status.rb +2 -0
- data/lib/ebay/types/classified_ad_auto_accept_enabled_definition.rb +13 -0
- data/lib/ebay/types/classified_ad_company_name_enabled_definition.rb +13 -0
- data/lib/ebay/types/classified_ad_contact_by_address_enabled_definition.rb +13 -0
- data/lib/ebay/types/classified_ad_phone_count_definition.rb +13 -0
- data/lib/ebay/types/classified_ad_street_count_definition.rb +13 -0
- data/lib/ebay/types/combined_fixed_price_treatment_enabled_definition.rb +13 -0
- data/lib/ebay/types/cost_group_flat_code.rb +12 -0
- data/lib/ebay/types/country_code.rb +2 -0
- data/lib/ebay/types/cross_border_trade_australia_enabled_definition.rb +13 -0
- data/lib/ebay/types/cross_border_trade_gb_enabled_definition.rb +13 -0
- data/lib/ebay/types/cross_border_trade_north_america_enabled_definition.rb +13 -0
- data/lib/ebay/types/day_of_week_code.rb +16 -0
- data/lib/ebay/types/delivery_url_detail.rb +19 -0
- data/lib/ebay/types/detail_name_code.rb +5 -0
- data/lib/ebay/types/device_type_code.rb +1 -0
- data/lib/ebay/types/dispute_record_type_code.rb +1 -0
- data/lib/ebay/types/ebay_motors_pro_ad_format_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_auto_accept_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_auto_decline_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_best_offer_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_company_name_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_contact_by_address_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_contact_by_email_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_contact_by_phone_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_counter_offer_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_payment_method_check_out_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_phone_count_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_seller_contact_details_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_shipping_method_enabled_definition.rb +13 -0
- data/lib/ebay/types/ebay_motors_pro_street_count_definition.rb +13 -0
- data/lib/ebay/types/end_item_request_container.rb +19 -0
- data/lib/ebay/types/end_item_response_container.rb +20 -0
- data/lib/ebay/types/express_item_requirements.rb +0 -2
- data/lib/ebay/types/express_product.rb +4 -0
- data/lib/ebay/types/feature_definitions.rb +183 -3
- data/lib/ebay/types/feature_id_code.rb +54 -0
- data/lib/ebay/types/fee.rb +4 -0
- data/lib/ebay/types/feedback_comment_array.rb +15 -0
- data/lib/ebay/types/feedback_detail.rb +2 -0
- data/lib/ebay/types/feedback_summary.rb +11 -3
- data/lib/ebay/types/feedback_summary_period_code.rb +11 -0
- data/lib/ebay/types/feedback_type_code.rb +13 -0
- data/lib/ebay/types/geographic_exposure_code.rb +12 -0
- data/lib/ebay/types/group1_max_flat_shipping_cost_definition.rb +13 -0
- data/lib/ebay/types/group2_max_flat_shipping_cost_definition.rb +13 -0
- data/lib/ebay/types/group3_max_flat_shipping_cost_definition.rb +13 -0
- data/lib/ebay/types/handling_time_enabled_definition.rb +13 -0
- data/lib/ebay/types/in_escrow_workflow_timeline_code.rb +12 -0
- data/lib/ebay/types/in_escrow_workflow_timeline_definition.rb +13 -0
- data/lib/ebay/types/integrated_merchant_credit_card_info.rb +15 -0
- data/lib/ebay/types/inventory_status.rb +21 -0
- data/lib/ebay/types/{express_detail_level_code.rb → inventory_tracking_method_code.rb} +3 -4
- data/lib/ebay/types/item.rb +30 -18
- data/lib/ebay/types/item_policy_violation.rb +17 -0
- data/lib/ebay/types/item_transaction_id.rb +2 -0
- data/lib/ebay/types/item_type_code.rb +19 -0
- data/lib/ebay/types/listing_details.rb +2 -5
- data/lib/ebay/types/listing_enhancement_duration_code.rb +60 -0
- data/lib/ebay/types/listing_enhancement_duration_definition.rb +13 -0
- data/lib/ebay/types/listing_enhancement_duration_reference.rb +15 -0
- data/lib/ebay/types/listing_start_price_details.rb +19 -0
- data/lib/ebay/types/{listing_subtype_enum.rb → listing_subtype_code.rb} +2 -1
- data/lib/ebay/types/listing_type_code.rb +1 -0
- data/lib/ebay/types/local_market_ad_format_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_auto_accept_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_auto_decline_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_best_offer_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_company_name_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_contact_by_address_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_contact_by_email_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_contact_by_phone_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_counter_offer_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_payment_method_check_out_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_phone_count_definition.rb +13 -0
- data/lib/ebay/types/local_market_seller_contact_details_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_shipping_method_enabled_definition.rb +13 -0
- data/lib/ebay/types/local_market_street_count_definition.rb +13 -0
- data/lib/ebay/types/max_flat_shipping_cost_cbt_exempt_definition.rb +13 -0
- data/lib/ebay/types/max_flat_shipping_cost_definition.rb +13 -0
- data/lib/ebay/types/maximum_buyer_policy_violations.rb +17 -0
- data/lib/ebay/types/maximum_unpaid_item_strikes_info.rb +17 -0
- data/lib/ebay/types/my_ebay_favorite_search.rb +50 -0
- data/lib/ebay/types/my_messages_external_message_id_array.rb +15 -0
- data/lib/ebay/types/my_messages_message.rb +8 -0
- data/lib/ebay/types/non_subscription_definition.rb +13 -0
- data/lib/ebay/types/notification_details.rb +2 -0
- data/lib/ebay/types/notification_event_type_code.rb +20 -0
- data/lib/ebay/types/notification_user_data.rb +2 -0
- data/lib/ebay/types/offer.rb +4 -0
- data/lib/ebay/types/order.rb +6 -2
- data/lib/ebay/types/paid_status_code.rb +6 -0
- data/lib/ebay/types/paisa_pay_full_escrow_enabled_definition.rb +13 -0
- data/lib/ebay/types/payment_hold_status_code.rb +13 -0
- data/lib/ebay/types/payment_method_definition.rb +13 -0
- data/lib/ebay/types/payment_method_search_code.rb +1 -0
- data/lib/ebay/types/paypal_buyer_protection_enabled_definition.rb +13 -0
- data/lib/ebay/types/paypal_required_definition.rb +13 -0
- data/lib/ebay/types/paypal_required_for_store_owner_definition.rb +13 -0
- data/lib/ebay/types/period_code.rb +14 -0
- data/lib/ebay/types/picture_details.rb +2 -0
- data/lib/ebay/types/picture_upload_policy_code.rb +11 -0
- data/lib/ebay/types/policy_compliance_dashboard.rb +18 -0
- data/lib/ebay/types/policy_compliance_status_code.rb +13 -0
- data/lib/ebay/types/power_seller_dashboard.rb +18 -0
- data/lib/ebay/types/preferred_location_code.rb +14 -0
- data/lib/ebay/types/premium_subscription_definition.rb +13 -0
- data/lib/ebay/types/product_info.rb +2 -0
- data/lib/ebay/types/product_state_code.rb +14 -0
- data/lib/ebay/types/promotional_sale.rb +2 -0
- data/lib/ebay/types/promotional_sale_type_code.rb +12 -0
- data/lib/ebay/types/question_type_code.rb +1 -0
- data/lib/ebay/types/refund_details.rb +17 -0
- data/lib/ebay/types/refund_options_code.rb +12 -0
- data/lib/ebay/types/region_of_origin_details.rb +19 -0
- data/lib/ebay/types/regular_subscription_definition.rb +13 -0
- data/lib/ebay/types/reminders.rb +20 -0
- data/lib/ebay/types/return_policy.rb +45 -0
- data/lib/ebay/types/return_policy_details.rb +38 -0
- data/lib/ebay/types/return_policy_enabled_definition.rb +13 -0
- data/lib/ebay/types/returns_accepted_details.rb +17 -0
- data/lib/ebay/types/returns_accepted_options_code.rb +11 -0
- data/lib/ebay/types/returns_within_details.rb +17 -0
- data/lib/ebay/types/returns_within_options_code.rb +15 -0
- data/lib/ebay/types/revise_price_allowed_definition.rb +13 -0
- data/lib/ebay/types/revise_quantity_allowed_definition.rb +13 -0
- data/lib/ebay/types/search_flag_code.rb +20 -0
- data/lib/ebay/types/{live_auction_approval_status.rb → search_standing_dashboard.rb} +2 -4
- data/lib/ebay/types/search_standing_status_code.rb +12 -0
- data/lib/ebay/types/seller.rb +12 -9
- data/lib/ebay/types/seller_account_dashboard.rb +18 -0
- data/lib/ebay/types/seller_account_status_code.rb +12 -0
- data/lib/ebay/types/seller_dashboard_alert.rb +17 -0
- data/lib/ebay/types/seller_dashboard_alert_severity_code.rb +12 -0
- data/lib/ebay/types/seller_fee_discount_dashboard.rb +15 -0
- data/lib/ebay/types/seller_payment_method_code.rb +1 -0
- data/lib/ebay/types/seller_role_metrics.rb +33 -0
- data/lib/ebay/types/selling_manager_alert.rb +29 -0
- data/lib/ebay/types/selling_manager_alert_type_code.rb +14 -0
- data/lib/ebay/types/selling_manager_auto_list.rb +21 -0
- data/lib/ebay/types/selling_manager_auto_list_according_to_schedule.rb +27 -0
- data/lib/ebay/types/selling_manager_auto_list_min_active_items.rb +23 -0
- data/lib/ebay/types/selling_manager_auto_relist.rb +36 -0
- data/lib/ebay/types/selling_manager_auto_relist_option_code.rb +12 -0
- data/lib/ebay/types/selling_manager_auto_relist_type_code.rb +12 -0
- data/lib/ebay/types/selling_manager_auto_second_chance_offer.rb +23 -0
- data/lib/ebay/types/selling_manager_auto_second_chance_offer_type_code.rb +12 -0
- data/lib/ebay/types/selling_manager_automation_property_type_code.rb +12 -0
- data/lib/ebay/types/selling_manager_email_log.rb +21 -0
- data/lib/ebay/types/selling_manager_email_sent_status_code.rb +12 -0
- data/lib/ebay/types/selling_manager_email_type_code.rb +38 -0
- data/lib/ebay/types/selling_manager_folder_details.rb +28 -0
- data/lib/ebay/types/selling_manager_general_property_type_code.rb +12 -0
- data/lib/ebay/types/selling_manager_inventory_property_type_code.rb +15 -0
- data/lib/ebay/types/selling_manager_order_status.rb +45 -0
- data/lib/ebay/types/selling_manager_paid_status_code.rb +14 -0
- data/lib/ebay/types/selling_manager_paisa_pay_property_type_code.rb +14 -0
- data/lib/ebay/types/selling_manager_product.rb +22 -0
- data/lib/ebay/types/selling_manager_product_details.rb +13 -6
- data/lib/ebay/types/selling_manager_product_inventory_status.rb +25 -0
- data/lib/ebay/types/selling_manager_product_sort_code.rb +21 -0
- data/lib/ebay/types/selling_manager_search.rb +17 -0
- data/lib/ebay/types/selling_manager_search_type_code.rb +18 -0
- data/lib/ebay/types/selling_manager_shipped_status_code.rb +11 -0
- data/lib/ebay/types/selling_manager_sold_listings_property_type_code.rb +58 -0
- data/lib/ebay/types/selling_manager_sold_listings_sort_type_code.rb +30 -0
- data/lib/ebay/types/selling_manager_sold_order.rb +74 -0
- data/lib/ebay/types/selling_manager_sold_transaction.rb +52 -0
- data/lib/ebay/types/selling_manager_template_details.rb +25 -0
- data/lib/ebay/types/selling_manager_vendor_details.rb +17 -0
- data/lib/ebay/types/selling_status.rb +2 -0
- data/lib/ebay/types/shipment.rb +2 -0
- data/lib/ebay/types/shipment_delivery_status_code.rb +3 -0
- data/lib/ebay/types/shipping_carrier_code.rb +1 -0
- data/lib/ebay/types/shipping_carrier_details.rb +19 -0
- data/lib/ebay/types/shipping_cost_paid_by_details.rb +17 -0
- data/lib/ebay/types/shipping_cost_paid_by_options_code.rb +11 -0
- data/lib/ebay/types/shipping_details.rb +2 -0
- data/lib/ebay/types/shipping_package_details.rb +23 -0
- data/lib/ebay/types/shipping_service_code.rb +92 -0
- data/lib/ebay/types/shipping_service_details.rb +16 -0
- data/lib/ebay/types/shipping_service_options.rb +2 -0
- data/lib/ebay/types/shipping_service_package_details.rb +17 -0
- data/lib/ebay/types/shipping_type_code.rb +1 -0
- data/lib/ebay/types/simple_item_sort_code.rb +18 -0
- data/lib/ebay/types/site_defaults.rb +124 -2
- data/lib/ebay/types/speciality_subscription_definition.rb +13 -0
- data/lib/ebay/types/{transaction_platform.rb → status_code.rb} +3 -3
- data/lib/ebay/types/store_item_list_sort_order_code.rb +2 -0
- data/lib/ebay/types/store_owner_extended_listing_durations.rb +15 -0
- data/lib/ebay/types/store_owner_extended_listing_durations_definition.rb +13 -0
- data/lib/ebay/types/store_owner_extended_listing_durations_enabled_definition.rb +13 -0
- data/lib/ebay/types/time_range.rb +17 -0
- data/lib/ebay/types/token_status.rb +21 -0
- data/lib/ebay/types/token_status_code.rb +15 -0
- data/lib/ebay/types/transaction.rb +8 -2
- data/lib/ebay/types/transaction_platform_code.rb +1 -0
- data/lib/ebay/types/transaction_status.rb +4 -0
- data/lib/ebay/types/unit_code.rb +2 -0
- data/lib/ebay/types/unpaid_item_status_type_code.rb +16 -0
- data/lib/ebay/types/user.rb +6 -3
- data/lib/ebay/types/user_status_code.rb +1 -0
- data/lib/ebay/types/vat_details.rb +4 -0
- data/lib/ebay/types/vat_rate.rb +19 -0
- data/lib/ebay/types/warranty_duration_details.rb +17 -0
- data/lib/ebay/types/warranty_duration_options_code.rb +16 -0
- data/lib/ebay/types/{condition_selection_code.rb → warranty_offered_code.rb} +2 -3
- data/lib/ebay/types/warranty_offered_details.rb +17 -0
- data/lib/ebay/types/warranty_type_details.rb +17 -0
- data/lib/ebay/types/warranty_type_options_code.rb +12 -0
- data/lib/ebay/types/wish_list_entry.rb +27 -0
- data/test/unit/notifications_test.rb +0 -1
- data/test/unit/xml_mapping_money_node_test.rb +16 -1
- metadata +328 -116
- data/lib/ebay/requests/approve_live_auction_bidders.rb +0 -22
- data/lib/ebay/requests/get_cart.rb +0 -21
- data/lib/ebay/requests/get_live_auction_bidders.rb +0 -20
- data/lib/ebay/requests/get_ru_name.rb +0 -15
- data/lib/ebay/requests/get_search_results_express.rb +0 -56
- data/lib/ebay/requests/revise_live_auction_item.rb +0 -18
- data/lib/ebay/requests/set_cart.rb +0 -27
- data/lib/ebay/requests/set_return_url.rb +0 -20
- data/lib/ebay/responses/approve_live_auction_bidders.rb +0 -16
- data/lib/ebay/responses/get_cart.rb +0 -16
- data/lib/ebay/responses/get_live_auction_bidders.rb +0 -27
- data/lib/ebay/responses/get_live_auction_catalog_details.rb +0 -16
- data/lib/ebay/responses/get_return_url.rb +0 -18
- data/lib/ebay/responses/get_search_results_express.rb +0 -28
- data/lib/ebay/responses/revise_live_auction_item.rb +0 -22
- data/lib/ebay/responses/set_cart.rb +0 -16
- data/lib/ebay/types/authentication_entry.rb +0 -23
- data/lib/ebay/types/cart.rb +0 -35
- data/lib/ebay/types/checkout_complete_redirect.rb +0 -17
- data/lib/ebay/types/digital_delivery_details.rb +0 -21
- data/lib/ebay/types/digital_delivery_enabled_code.rb +0 -12
- data/lib/ebay/types/digital_delivery_method_code.rb +0 -12
- data/lib/ebay/types/domain_histogram.rb +0 -16
- data/lib/ebay/types/express_histogram_sort_code.rb +0 -12
- data/lib/ebay/types/express_item_sort_code.rb +0 -12
- data/lib/ebay/types/express_product_sort_code.rb +0 -12
- data/lib/ebay/types/live_auction_approval_status_array.rb +0 -16
- data/lib/ebay/types/live_auction_bid.rb +0 -21
- data/lib/ebay/types/live_auction_bid_array.rb +0 -16
- data/lib/ebay/types/live_auction_catalog.rb +0 -20
- data/lib/ebay/types/live_auction_details.rb +0 -23
- data/rakefile +0 -148
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
module Ebay # :nodoc:
|
3
|
+
module Types # :nodoc:
|
4
|
+
# == Attributes
|
5
|
+
# text_node :region_of_origin, 'RegionOfOrigin', :optional => true
|
6
|
+
# text_node :description, 'Description', :optional => true
|
7
|
+
# text_node :status, 'Status', :optional => true
|
8
|
+
class RegionOfOriginDetails
|
9
|
+
include XML::Mapping
|
10
|
+
include Initializer
|
11
|
+
root_element_name 'RegionOfOriginDetails'
|
12
|
+
text_node :region_of_origin, 'RegionOfOrigin', :optional => true
|
13
|
+
text_node :description, 'Description', :optional => true
|
14
|
+
text_node :status, 'Status', :optional => true
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
|
data/lib/ebay/types/reminders.rb
CHANGED
@@ -11,6 +11,16 @@ module Ebay # :nodoc:
|
|
11
11
|
# numeric_node :shipping_needed_count, 'ShippingNeededCount', :optional => true
|
12
12
|
# numeric_node :relisting_needed_count, 'RelistingNeededCount', :optional => true
|
13
13
|
# numeric_node :total_new_leads_count, 'TotalNewLeadsCount', :optional => true
|
14
|
+
# numeric_node :docs_for_cc_processing_to_send_count, 'DocsForCCProcessingToSendCount', :optional => true
|
15
|
+
# numeric_node :rte_to_process_count, 'RTEToProcessCount', :optional => true
|
16
|
+
# numeric_node :item_receipt_to_confirm_count, 'ItemReceiptToConfirmCount', :optional => true
|
17
|
+
# numeric_node :refund_on_hold_count, 'RefundOnHoldCount', :optional => true
|
18
|
+
# numeric_node :refund_cancelled_count, 'RefundCancelledCount', :optional => true
|
19
|
+
# numeric_node :shipping_details_to_be_provided_count, 'ShippingDetailsToBeProvidedCount', :optional => true
|
20
|
+
# numeric_node :item_receipt_confirmation_to_receive_count, 'ItemReceiptConfirmationToReceiveCount', :optional => true
|
21
|
+
# numeric_node :refund_initiated_count, 'RefundInitiatedCount', :optional => true
|
22
|
+
# numeric_node :pending_rte_request_count, 'PendingRTERequestCount', :optional => true
|
23
|
+
# numeric_node :declined_rte_request_count, 'DeclinedRTERequestCount', :optional => true
|
14
24
|
class Reminders
|
15
25
|
include XML::Mapping
|
16
26
|
include Initializer
|
@@ -24,6 +34,16 @@ module Ebay # :nodoc:
|
|
24
34
|
numeric_node :shipping_needed_count, 'ShippingNeededCount', :optional => true
|
25
35
|
numeric_node :relisting_needed_count, 'RelistingNeededCount', :optional => true
|
26
36
|
numeric_node :total_new_leads_count, 'TotalNewLeadsCount', :optional => true
|
37
|
+
numeric_node :docs_for_cc_processing_to_send_count, 'DocsForCCProcessingToSendCount', :optional => true
|
38
|
+
numeric_node :rte_to_process_count, 'RTEToProcessCount', :optional => true
|
39
|
+
numeric_node :item_receipt_to_confirm_count, 'ItemReceiptToConfirmCount', :optional => true
|
40
|
+
numeric_node :refund_on_hold_count, 'RefundOnHoldCount', :optional => true
|
41
|
+
numeric_node :refund_cancelled_count, 'RefundCancelledCount', :optional => true
|
42
|
+
numeric_node :shipping_details_to_be_provided_count, 'ShippingDetailsToBeProvidedCount', :optional => true
|
43
|
+
numeric_node :item_receipt_confirmation_to_receive_count, 'ItemReceiptConfirmationToReceiveCount', :optional => true
|
44
|
+
numeric_node :refund_initiated_count, 'RefundInitiatedCount', :optional => true
|
45
|
+
numeric_node :pending_rte_request_count, 'PendingRTERequestCount', :optional => true
|
46
|
+
numeric_node :declined_rte_request_count, 'DeclinedRTERequestCount', :optional => true
|
27
47
|
end
|
28
48
|
end
|
29
49
|
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
|
2
|
+
module Ebay # :nodoc:
|
3
|
+
module Types # :nodoc:
|
4
|
+
# == Attributes
|
5
|
+
# text_node :refund_option, 'RefundOption', :optional => true
|
6
|
+
# text_node :refund, 'Refund', :optional => true
|
7
|
+
# text_node :returns_within_option, 'ReturnsWithinOption', :optional => true
|
8
|
+
# text_node :returns_within, 'ReturnsWithin', :optional => true
|
9
|
+
# text_node :returns_accepted_option, 'ReturnsAcceptedOption', :optional => true
|
10
|
+
# text_node :returns_accepted, 'ReturnsAccepted', :optional => true
|
11
|
+
# text_node :description, 'Description', :optional => true
|
12
|
+
# text_node :warranty_offered_option, 'WarrantyOfferedOption', :optional => true
|
13
|
+
# text_node :warranty_offered, 'WarrantyOffered', :optional => true
|
14
|
+
# text_node :warranty_type_option, 'WarrantyTypeOption', :optional => true
|
15
|
+
# text_node :warranty_type, 'WarrantyType', :optional => true
|
16
|
+
# text_node :warranty_duration_option, 'WarrantyDurationOption', :optional => true
|
17
|
+
# text_node :warranty_duration, 'WarrantyDuration', :optional => true
|
18
|
+
# text_node :ean, 'EAN', :optional => true
|
19
|
+
# text_node :shipping_cost_paid_by_option, 'ShippingCostPaidByOption', :optional => true
|
20
|
+
# text_node :shipping_cost_paid_by, 'ShippingCostPaidBy', :optional => true
|
21
|
+
class ReturnPolicy
|
22
|
+
include XML::Mapping
|
23
|
+
include Initializer
|
24
|
+
root_element_name 'ReturnPolicy'
|
25
|
+
text_node :refund_option, 'RefundOption', :optional => true
|
26
|
+
text_node :refund, 'Refund', :optional => true
|
27
|
+
text_node :returns_within_option, 'ReturnsWithinOption', :optional => true
|
28
|
+
text_node :returns_within, 'ReturnsWithin', :optional => true
|
29
|
+
text_node :returns_accepted_option, 'ReturnsAcceptedOption', :optional => true
|
30
|
+
text_node :returns_accepted, 'ReturnsAccepted', :optional => true
|
31
|
+
text_node :description, 'Description', :optional => true
|
32
|
+
text_node :warranty_offered_option, 'WarrantyOfferedOption', :optional => true
|
33
|
+
text_node :warranty_offered, 'WarrantyOffered', :optional => true
|
34
|
+
text_node :warranty_type_option, 'WarrantyTypeOption', :optional => true
|
35
|
+
text_node :warranty_type, 'WarrantyType', :optional => true
|
36
|
+
text_node :warranty_duration_option, 'WarrantyDurationOption', :optional => true
|
37
|
+
text_node :warranty_duration, 'WarrantyDuration', :optional => true
|
38
|
+
text_node :ean, 'EAN', :optional => true
|
39
|
+
text_node :shipping_cost_paid_by_option, 'ShippingCostPaidByOption', :optional => true
|
40
|
+
text_node :shipping_cost_paid_by, 'ShippingCostPaidBy', :optional => true
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'ebay/types/refund_details'
|
2
|
+
require 'ebay/types/returns_within_details'
|
3
|
+
require 'ebay/types/returns_accepted_details'
|
4
|
+
require 'ebay/types/warranty_offered_details'
|
5
|
+
require 'ebay/types/warranty_type_details'
|
6
|
+
require 'ebay/types/warranty_duration_details'
|
7
|
+
require 'ebay/types/shipping_cost_paid_by_details'
|
8
|
+
|
9
|
+
module Ebay # :nodoc:
|
10
|
+
module Types # :nodoc:
|
11
|
+
# == Attributes
|
12
|
+
# array_node :refunds, 'Refund', :class => RefundDetails, :default_value => []
|
13
|
+
# array_node :returns_withins, 'ReturnsWithin', :class => ReturnsWithinDetails, :default_value => []
|
14
|
+
# array_node :returns_accepteds, 'ReturnsAccepted', :class => ReturnsAcceptedDetails, :default_value => []
|
15
|
+
# boolean_node :description, 'Description', 'true', 'false', :optional => true
|
16
|
+
# array_node :warranty_offereds, 'WarrantyOffered', :class => WarrantyOfferedDetails, :default_value => []
|
17
|
+
# array_node :warranty_types, 'WarrantyType', :class => WarrantyTypeDetails, :default_value => []
|
18
|
+
# array_node :warranty_durations, 'WarrantyDuration', :class => WarrantyDurationDetails, :default_value => []
|
19
|
+
# boolean_node :ean, 'EAN', 'true', 'false', :optional => true
|
20
|
+
# array_node :shipping_cost_paid_bies, 'ShippingCostPaidBy', :class => ShippingCostPaidByDetails, :default_value => []
|
21
|
+
class ReturnPolicyDetails
|
22
|
+
include XML::Mapping
|
23
|
+
include Initializer
|
24
|
+
root_element_name 'ReturnPolicyDetails'
|
25
|
+
array_node :refunds, 'Refund', :class => RefundDetails, :default_value => []
|
26
|
+
array_node :returns_withins, 'ReturnsWithin', :class => ReturnsWithinDetails, :default_value => []
|
27
|
+
array_node :returns_accepteds, 'ReturnsAccepted', :class => ReturnsAcceptedDetails, :default_value => []
|
28
|
+
boolean_node :description, 'Description', 'true', 'false', :optional => true
|
29
|
+
array_node :warranty_offereds, 'WarrantyOffered', :class => WarrantyOfferedDetails, :default_value => []
|
30
|
+
array_node :warranty_types, 'WarrantyType', :class => WarrantyTypeDetails, :default_value => []
|
31
|
+
array_node :warranty_durations, 'WarrantyDuration', :class => WarrantyDurationDetails, :default_value => []
|
32
|
+
boolean_node :ean, 'EAN', 'true', 'false', :optional => true
|
33
|
+
array_node :shipping_cost_paid_bies, 'ShippingCostPaidBy', :class => ShippingCostPaidByDetails, :default_value => []
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
|
2
|
+
module Ebay # :nodoc:
|
3
|
+
module Types # :nodoc:
|
4
|
+
# == Attributes
|
5
|
+
# text_node :returns_accepted_option, 'ReturnsAcceptedOption', :optional => true
|
6
|
+
# text_node :description, 'Description', :optional => true
|
7
|
+
class ReturnsAcceptedDetails
|
8
|
+
include XML::Mapping
|
9
|
+
include Initializer
|
10
|
+
root_element_name 'ReturnsAcceptedDetails'
|
11
|
+
text_node :returns_accepted_option, 'ReturnsAcceptedOption', :optional => true
|
12
|
+
text_node :description, 'Description', :optional => true
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
|
2
|
+
module Ebay # :nodoc:
|
3
|
+
module Types # :nodoc:
|
4
|
+
# == Attributes
|
5
|
+
# text_node :returns_within_option, 'ReturnsWithinOption', :optional => true
|
6
|
+
# text_node :description, 'Description', :optional => true
|
7
|
+
class ReturnsWithinDetails
|
8
|
+
include XML::Mapping
|
9
|
+
include Initializer
|
10
|
+
root_element_name 'ReturnsWithinDetails'
|
11
|
+
text_node :returns_within_option, 'ReturnsWithinOption', :optional => true
|
12
|
+
text_node :description, 'Description', :optional => true
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module Ebay # :nodoc:
|
2
|
+
module Types # :nodoc:
|
3
|
+
class ReturnsWithinOptionsCode
|
4
|
+
extend Enumerable
|
5
|
+
extend Enumeration
|
6
|
+
Days3 = 'Days_3'
|
7
|
+
Days7 = 'Days_7'
|
8
|
+
Days10 = 'Days_10'
|
9
|
+
Days14 = 'Days_14'
|
10
|
+
Days30 = 'Days_30'
|
11
|
+
Days60 = 'Days_60'
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Ebay # :nodoc:
|
2
|
+
module Types # :nodoc:
|
3
|
+
class SearchFlagCode
|
4
|
+
extend Enumerable
|
5
|
+
extend Enumeration
|
6
|
+
Charity = 'Charity'
|
7
|
+
Gift = 'Gift'
|
8
|
+
NowAndNew = 'NowAndNew'
|
9
|
+
LocalSearch = 'LocalSearch'
|
10
|
+
FreeShipping = 'FreeShipping'
|
11
|
+
Gallery = 'Gallery'
|
12
|
+
Picture = 'Picture'
|
13
|
+
GetItFast = 'GetItFast'
|
14
|
+
Lot = 'Lot'
|
15
|
+
GermanMotorsSearchable = 'GermanMotorsSearchable'
|
16
|
+
DigitalDelivery = 'DigitalDelivery'
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
@@ -2,13 +2,11 @@
|
|
2
2
|
module Ebay # :nodoc:
|
3
3
|
module Types # :nodoc:
|
4
4
|
# == Attributes
|
5
|
-
# text_node :user_id, 'UserID', :optional => true
|
6
5
|
# text_node :status, 'Status', :optional => true
|
7
|
-
class
|
6
|
+
class SearchStandingDashboard
|
8
7
|
include XML::Mapping
|
9
8
|
include Initializer
|
10
|
-
root_element_name '
|
11
|
-
text_node :user_id, 'UserID', :optional => true
|
9
|
+
root_element_name 'SearchStandingDashboard'
|
12
10
|
text_node :status, 'Status', :optional => true
|
13
11
|
end
|
14
12
|
end
|
data/lib/ebay/types/seller.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
require 'ebay/types/address'
|
2
2
|
require 'ebay/types/scheduling_info'
|
3
3
|
require 'ebay/types/pro_stores_checkout_preference'
|
4
|
-
require 'ebay/types/
|
4
|
+
require 'ebay/types/charity_affiliation_detail'
|
5
|
+
require 'ebay/types/integrated_merchant_credit_card_info'
|
5
6
|
|
6
7
|
module Ebay # :nodoc:
|
7
8
|
module Types # :nodoc:
|
@@ -12,7 +13,6 @@ module Ebay # :nodoc:
|
|
12
13
|
# boolean_node :checkout_enabled, 'CheckoutEnabled', 'true', 'false'
|
13
14
|
# boolean_node :cip_bank_account_stored, 'CIPBankAccountStored', 'true', 'false'
|
14
15
|
# boolean_node :good_standing, 'GoodStanding', 'true', 'false'
|
15
|
-
# boolean_node :live_auction_authorized, 'LiveAuctionAuthorized', 'true', 'false'
|
16
16
|
# text_node :merchandizing_pref, 'MerchandizingPref', :optional => true
|
17
17
|
# boolean_node :qualifies_for_b2_bvat, 'QualifiesForB2BVAT', 'true', 'false'
|
18
18
|
# text_node :seller_guarantee_level, 'SellerGuaranteeLevel', :optional => true
|
@@ -23,13 +23,15 @@ module Ebay # :nodoc:
|
|
23
23
|
# text_node :store_url, 'StoreURL', :optional => true
|
24
24
|
# text_node :seller_business_type, 'SellerBusinessType', :optional => true
|
25
25
|
# boolean_node :registered_business_seller, 'RegisteredBusinessSeller', 'true', 'false', :optional => true
|
26
|
-
#
|
26
|
+
# text_node :store_site, 'StoreSite', :optional => true
|
27
27
|
# text_node :payment_method, 'PaymentMethod', :optional => true
|
28
28
|
# object_node :pro_stores_preference, 'ProStoresPreference', :class => ProStoresCheckoutPreference, :optional => true
|
29
|
-
# boolean_node :express_wallet, 'ExpressWallet', 'true', 'false', :optional => true
|
30
|
-
# object_node :express_seller_requirements, 'ExpressSellerRequirements', :class => ExpressSellerRequirements, :optional => true
|
31
29
|
# boolean_node :charity_registered, 'CharityRegistered', 'true', 'false', :optional => true
|
32
30
|
# boolean_node :safe_payment_exempt, 'SafePaymentExempt', 'true', 'false', :optional => true
|
31
|
+
# numeric_node :paisa_pay_escrow_emi_status, 'PaisaPayEscrowEMIStatus', :optional => true
|
32
|
+
# array_node :charity_affiliation_details, 'CharityAffiliationDetails', 'CharityAffiliationDetail', :class => CharityAffiliationDetail, :default_value => []
|
33
|
+
# numeric_node :transaction_percent, 'TransactionPercent', :optional => true
|
34
|
+
# object_node :integrated_merchant_credit_card_info, 'IntegratedMerchantCreditCardInfo', :class => IntegratedMerchantCreditCardInfo, :optional => true
|
33
35
|
class Seller
|
34
36
|
include XML::Mapping
|
35
37
|
include Initializer
|
@@ -40,7 +42,6 @@ module Ebay # :nodoc:
|
|
40
42
|
boolean_node :checkout_enabled, 'CheckoutEnabled', 'true', 'false'
|
41
43
|
boolean_node :cip_bank_account_stored, 'CIPBankAccountStored', 'true', 'false'
|
42
44
|
boolean_node :good_standing, 'GoodStanding', 'true', 'false'
|
43
|
-
boolean_node :live_auction_authorized, 'LiveAuctionAuthorized', 'true', 'false'
|
44
45
|
text_node :merchandizing_pref, 'MerchandizingPref', :optional => true
|
45
46
|
boolean_node :qualifies_for_b2_bvat, 'QualifiesForB2BVAT', 'true', 'false'
|
46
47
|
text_node :seller_guarantee_level, 'SellerGuaranteeLevel', :optional => true
|
@@ -51,13 +52,15 @@ module Ebay # :nodoc:
|
|
51
52
|
text_node :store_url, 'StoreURL', :optional => true
|
52
53
|
text_node :seller_business_type, 'SellerBusinessType', :optional => true
|
53
54
|
boolean_node :registered_business_seller, 'RegisteredBusinessSeller', 'true', 'false', :optional => true
|
54
|
-
|
55
|
+
text_node :store_site, 'StoreSite', :optional => true
|
55
56
|
text_node :payment_method, 'PaymentMethod', :optional => true
|
56
57
|
object_node :pro_stores_preference, 'ProStoresPreference', :class => ProStoresCheckoutPreference, :optional => true
|
57
|
-
boolean_node :express_wallet, 'ExpressWallet', 'true', 'false', :optional => true
|
58
|
-
object_node :express_seller_requirements, 'ExpressSellerRequirements', :class => ExpressSellerRequirements, :optional => true
|
59
58
|
boolean_node :charity_registered, 'CharityRegistered', 'true', 'false', :optional => true
|
60
59
|
boolean_node :safe_payment_exempt, 'SafePaymentExempt', 'true', 'false', :optional => true
|
60
|
+
numeric_node :paisa_pay_escrow_emi_status, 'PaisaPayEscrowEMIStatus', :optional => true
|
61
|
+
array_node :charity_affiliation_details, 'CharityAffiliationDetails', 'CharityAffiliationDetail', :class => CharityAffiliationDetail, :default_value => []
|
62
|
+
numeric_node :transaction_percent, 'TransactionPercent', :optional => true
|
63
|
+
object_node :integrated_merchant_credit_card_info, 'IntegratedMerchantCreditCardInfo', :class => IntegratedMerchantCreditCardInfo, :optional => true
|
61
64
|
end
|
62
65
|
end
|
63
66
|
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'ebay/types/seller_dashboard_alert'
|
2
|
+
|
3
|
+
module Ebay # :nodoc:
|
4
|
+
module Types # :nodoc:
|
5
|
+
# == Attributes
|
6
|
+
# text_node :status, 'Status', :optional => true
|
7
|
+
# array_node :alerts, 'Alert', :class => SellerDashboardAlert, :default_value => []
|
8
|
+
class SellerAccountDashboard
|
9
|
+
include XML::Mapping
|
10
|
+
include Initializer
|
11
|
+
root_element_name 'SellerAccountDashboard'
|
12
|
+
text_node :status, 'Status', :optional => true
|
13
|
+
array_node :alerts, 'Alert', :class => SellerDashboardAlert, :default_value => []
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
|
2
|
+
module Ebay # :nodoc:
|
3
|
+
module Types # :nodoc:
|
4
|
+
# == Attributes
|
5
|
+
# text_node :severity, 'Severity', :optional => true
|
6
|
+
# text_node :text, 'Text', :optional => true
|
7
|
+
class SellerDashboardAlert
|
8
|
+
include XML::Mapping
|
9
|
+
include Initializer
|
10
|
+
root_element_name 'SellerDashboardAlert'
|
11
|
+
text_node :severity, 'Severity', :optional => true
|
12
|
+
text_node :text, 'Text', :optional => true
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
|