ebay4r 2.1

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.
@@ -0,0 +1,233 @@
1
+ #--
2
+ # $Id: eBayAPI.rb,v 1.31 2006/10/10 08:04:52 garrydolley Exp $
3
+ #
4
+ # Copyright (c) 2005,2006 Garry C. Dolley
5
+ #
6
+ # This file is part of eBay4R.
7
+ #
8
+ # eBay4R is free software; you can redistribute it and/or modify it under the
9
+ # terms of the GNU General Public License as published by the Free Software
10
+ # Foundation; either version 2 of the License, or (at your option) any later
11
+ # version.
12
+ #
13
+ # eBay4R is distributed in the hope that it will be useful, but WITHOUT ANY
14
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16
+ # details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License along with
19
+ # eBay4R; if not, write to the Free Software Foundation, Inc., 51 Franklin
20
+ # Street, Fifth Floor, Boston, MA 02110-1301, USA
21
+ #
22
+ #++
23
+
24
+ #:main: README
25
+
26
+ # Load SOAP4R from gem if it is available, suitable for most users.
27
+ #
28
+ # The gem will most likely be newer than the Ruby built-in SOAP4R and so we
29
+ # want to avoid the error:
30
+ #
31
+ # uninitialized constant SOAP::Mapping::EncodedRegistry
32
+ #
33
+ # If you have a different version of SOAP4R in a directory included in $RUBYLIB
34
+ # *and* you want to use that version instead of the gem you also have
35
+ # installed, you will most likely have to comment out this block.
36
+ #begin
37
+ # require 'rubygems'
38
+ # gem 'soap4r'
39
+ #rescue Exception
40
+ # nil
41
+ #end
42
+
43
+ require 'eBayDriver.rb'
44
+ require 'RequesterCredentialsHandler.rb'
45
+
46
+ module EBay
47
+
48
+ # This is the main class of the eBay4R library. Start by instantiating this class (see below)
49
+ class API
50
+ attr_writer :debug
51
+ attr_writer :debug_io
52
+
53
+ # Creates an eBay caller object.
54
+ #
55
+ # You will need this object to make any API calls to eBay's servers, so instantiation is required
56
+ # before you can use any other part of this library.
57
+ #
58
+ # :call-seq:
59
+ # new(auth_token, dev_id, app_id, cert_id)
60
+ # new(auth_token, dev_id, app_id, cert_id, <em>:sandbox => true</em>)
61
+ # new(auth_token, dev_id, app_id, cert_id, <em>:sandbox => false, :site_id => 3</em>)
62
+ #
63
+ # The first four (4) arguments are required (all String's):
64
+ #
65
+ # auth_token = Your eBay Authentication Token
66
+ # dev_id = Your eBay Developer's ID
67
+ # app_id = Your eBay Application ID
68
+ # cert_id = Your eBay Certificate ID
69
+ #
70
+ # The optional fifth argument is a hash where you can pass additional info to refine the caller
71
+ # object.
72
+ #
73
+ # The key "sandbox", for example:
74
+ #
75
+ # eBay = EBay::API.new("my_auth_tok", "dev_id", "cert_id", "app_id", :sandbox => true)
76
+ #
77
+ # creates a caller that works with the eBay "sandbox" environment. By default, the "live"
78
+ # environment is used.
79
+ #
80
+ # You may also pass the key "site_id" to specify calls to be routed to international or
81
+ # special (e.g. "eBay Motors") sites.
82
+ #
83
+ def initialize(auth_token, dev_id, app_id, cert_id, opt = {})
84
+ @ver = 925
85
+ @debug = false
86
+ @debug_io = STDOUT
87
+ @app_id = app_id
88
+ @header_handler = RequesterCredentialsHandler.new(auth_token, dev_id, app_id, cert_id)
89
+
90
+ # Default to 'US' (SiteID = 0) site
91
+ @site_id = opt[:site_id] ? opt[:site_id] : '0'
92
+
93
+ shost = opt[:sandbox] ? "sandbox." : ""
94
+
95
+ @endpoint_url = "https://api.#{shost}ebay.com/wsapi"
96
+
97
+ XSD::Charset.encoding = 'UTF8' # Thanks to Ray Hildreth
98
+ end
99
+
100
+ def method_missing(m, *args) #:nodoc:
101
+ call_name = EBay::fix_case_up(m.id2name) # upper first character
102
+
103
+ @callName = call_name.dup
104
+ args_hash = args[0]
105
+
106
+ if valid_call?(call_name)
107
+ service = makeService
108
+ request = eval("#{call_name}RequestType.new")
109
+
110
+ request.version = @ver
111
+
112
+ EBay::assign_args(request, args_hash)
113
+ EBay::fix_case_down(call_name)
114
+
115
+ verbose_obj_save = $VERBOSE
116
+ $VERBOSE = nil # Suppress "warning: peer certificate won't be verified in this SSL session"
117
+
118
+ resp = eval("service.#{call_name}(request)")
119
+
120
+ $VERBOSE = verbose_obj_save # Restore verbosity to previous state
121
+
122
+ # Handle eBay Application-level error
123
+ if resp.ack == "Failure"
124
+ err_string = ''
125
+
126
+ if resp.errors.is_a?(Array) # Something tells me there is a better way to do this
127
+ resp.errors.each do |err|
128
+ err_string += err.longMessage.chomp(".") + ", "
129
+ end
130
+ err_string = err_string.chop.chop
131
+ else
132
+ err_string = resp.errors.longMessage
133
+ end
134
+
135
+ raise(Error::ApplicationError.new(resp), "#{@callName} Call Failed: #{err_string}", caller)
136
+ end
137
+
138
+ return resp
139
+ else
140
+ raise(Error::UnknownAPICall, "Unknown API Call: #{call_name}", caller)
141
+ end
142
+ end
143
+
144
+ private
145
+ def requestURL
146
+ "#{@endpoint_url}?callname=#{@callName}&siteid=#{@site_id}&appid=#{@app_id}&version=#{@ver}&routing=default"
147
+ end
148
+
149
+ def makeService
150
+ service = EBayAPIInterface.new(requestURL())
151
+ service.headerhandler << @header_handler
152
+ service.wiredump_dev = @debug_io if @debug
153
+
154
+ # I believe the line below will work after we get the kinks worked out w/ http-access2
155
+ # service.options['protocol.http.ssl_config.verify_mode'] = OpenSSL::SSL::VERIFY_NONE
156
+
157
+ return service
158
+ end
159
+
160
+ def valid_call?(call)
161
+ call = EBay::fix_case_down(String.new(call)) # lower first character
162
+ EBayAPIInterface::Methods.each { |defs| return true if defs[1] == call }
163
+
164
+ return false
165
+ end
166
+
167
+ end
168
+
169
+ # Exception container
170
+ class Error
171
+ #:stopdoc:
172
+ class Error < StandardError; end
173
+ #:startdoc:
174
+
175
+ # Raised if a call is made to a method that does not exist in the eBay SOAP API
176
+ class UnknownAPICall < Error; end
177
+
178
+ # Raised if an attempt is made to instantiate a type that does not exist in the eBay SOAP API
179
+ class UnknownType < Error; end
180
+
181
+ # Raised if a call returns with <Ack>Failure</Ack>. The _resp_ attribute contains the full failed response.
182
+ class ApplicationError < Error;
183
+ attr_reader :resp
184
+
185
+ def initialize(response)
186
+ @resp = response
187
+ end
188
+ end
189
+ end
190
+
191
+ #:enddoc:
192
+
193
+ # These class module methods are for creating complex types (e.g. ItemType, CategoryType, etc...)
194
+ # and also include some helper functions
195
+ class <<self
196
+ def method_missing(m, *args)
197
+ type_name = fix_case_up(m.id2name)
198
+
199
+ begin
200
+ type = "#{type_name}Type"
201
+ type_obj = eval("#{type}.new")
202
+ EBay::assign_args(type_obj, args[0]) # args[0] is a hash of named parameters (like above)
203
+
204
+ return type_obj
205
+ rescue NameError
206
+ raise(Error::UnknownType, "Invalid Type: #{type}", caller)
207
+ end
208
+ end
209
+
210
+ def assign_args(obj, args_hash)
211
+ if args_hash
212
+ args_hash.each do |key, val|
213
+ key = fix_case_down(key.to_s) # lower first character
214
+
215
+ if obj.respond_to? "#{key}="
216
+ eval("obj.#{key} = val")
217
+ end
218
+ end
219
+ end
220
+ end
221
+
222
+ def fix_case_up(name)
223
+ name[0] = name[0,1].upcase # upper first character
224
+ name
225
+ end
226
+
227
+ def fix_case_down(name)
228
+ name[0] = name[0,1].downcase
229
+ name
230
+ end
231
+ end
232
+
233
+ end
@@ -0,0 +1,1931 @@
1
+ #!/usr/bin/env ruby
2
+ require 'eBayDriver.rb'
3
+
4
+ endpoint_url = ARGV.shift
5
+ obj = EBay::EBayAPIInterface.new(endpoint_url)
6
+
7
+ # run ruby with -d to see SOAP wiredumps.
8
+ obj.wiredump_dev = STDERR if $DEBUG
9
+
10
+ # SYNOPSIS
11
+ # addDispute(addDisputeRequest)
12
+ #
13
+ # ARGS
14
+ # addDisputeRequest AddDisputeRequestType - {urn:ebay:apis:eBLBaseComponents}AddDisputeRequestType
15
+ #
16
+ # RETURNS
17
+ # addDisputeResponse AddDisputeResponseType - {urn:ebay:apis:eBLBaseComponents}AddDisputeResponseType
18
+ #
19
+ addDisputeRequest = nil
20
+ puts obj.addDispute(addDisputeRequest)
21
+
22
+ # SYNOPSIS
23
+ # addDisputeResponse(addDisputeResponseRequest)
24
+ #
25
+ # ARGS
26
+ # addDisputeResponseRequest AddDisputeResponseRequestType - {urn:ebay:apis:eBLBaseComponents}AddDisputeResponseRequestType
27
+ #
28
+ # RETURNS
29
+ # addDisputeResponseResponse AddDisputeResponseResponseType - {urn:ebay:apis:eBLBaseComponents}AddDisputeResponseResponseType
30
+ #
31
+ addDisputeResponseRequest = nil
32
+ puts obj.addDisputeResponse(addDisputeResponseRequest)
33
+
34
+ # SYNOPSIS
35
+ # addFixedPriceItem(addFixedPriceItemRequest)
36
+ #
37
+ # ARGS
38
+ # addFixedPriceItemRequest AddFixedPriceItemRequestType - {urn:ebay:apis:eBLBaseComponents}AddFixedPriceItemRequestType
39
+ #
40
+ # RETURNS
41
+ # addFixedPriceItemResponse AddFixedPriceItemResponseType - {urn:ebay:apis:eBLBaseComponents}AddFixedPriceItemResponseType
42
+ #
43
+ addFixedPriceItemRequest = nil
44
+ puts obj.addFixedPriceItem(addFixedPriceItemRequest)
45
+
46
+ # SYNOPSIS
47
+ # addItem(addItemRequest)
48
+ #
49
+ # ARGS
50
+ # addItemRequest AddItemRequestType - {urn:ebay:apis:eBLBaseComponents}AddItemRequestType
51
+ #
52
+ # RETURNS
53
+ # addItemResponse AddItemResponseType - {urn:ebay:apis:eBLBaseComponents}AddItemResponseType
54
+ #
55
+ addItemRequest = nil
56
+ puts obj.addItem(addItemRequest)
57
+
58
+ # SYNOPSIS
59
+ # addItemFromSellingManagerTemplate(addItemFromSellingManagerTemplateRequest)
60
+ #
61
+ # ARGS
62
+ # addItemFromSellingManagerTemplateRequest AddItemFromSellingManagerTemplateRequestType - {urn:ebay:apis:eBLBaseComponents}AddItemFromSellingManagerTemplateRequestType
63
+ #
64
+ # RETURNS
65
+ # addItemFromSellingManagerTemplateResponse AddItemFromSellingManagerTemplateResponseType - {urn:ebay:apis:eBLBaseComponents}AddItemFromSellingManagerTemplateResponseType
66
+ #
67
+ addItemFromSellingManagerTemplateRequest = nil
68
+ puts obj.addItemFromSellingManagerTemplate(addItemFromSellingManagerTemplateRequest)
69
+
70
+ # SYNOPSIS
71
+ # addItems(addItemsRequest)
72
+ #
73
+ # ARGS
74
+ # addItemsRequest AddItemsRequestType - {urn:ebay:apis:eBLBaseComponents}AddItemsRequestType
75
+ #
76
+ # RETURNS
77
+ # addItemsResponse AddItemsResponseType - {urn:ebay:apis:eBLBaseComponents}AddItemsResponseType
78
+ #
79
+ addItemsRequest = nil
80
+ puts obj.addItems(addItemsRequest)
81
+
82
+ # SYNOPSIS
83
+ # addMemberMessageAAQToPartner(addMemberMessageAAQToPartnerRequest)
84
+ #
85
+ # ARGS
86
+ # addMemberMessageAAQToPartnerRequest AddMemberMessageAAQToPartnerRequestType - {urn:ebay:apis:eBLBaseComponents}AddMemberMessageAAQToPartnerRequestType
87
+ #
88
+ # RETURNS
89
+ # addMemberMessageAAQToPartnerResponse AddMemberMessageAAQToPartnerResponseType - {urn:ebay:apis:eBLBaseComponents}AddMemberMessageAAQToPartnerResponseType
90
+ #
91
+ addMemberMessageAAQToPartnerRequest = nil
92
+ puts obj.addMemberMessageAAQToPartner(addMemberMessageAAQToPartnerRequest)
93
+
94
+ # SYNOPSIS
95
+ # addMemberMessageRTQ(addMemberMessageRTQRequest)
96
+ #
97
+ # ARGS
98
+ # addMemberMessageRTQRequest AddMemberMessageRTQRequestType - {urn:ebay:apis:eBLBaseComponents}AddMemberMessageRTQRequestType
99
+ #
100
+ # RETURNS
101
+ # addMemberMessageRTQResponse AddMemberMessageRTQResponseType - {urn:ebay:apis:eBLBaseComponents}AddMemberMessageRTQResponseType
102
+ #
103
+ addMemberMessageRTQRequest = nil
104
+ puts obj.addMemberMessageRTQ(addMemberMessageRTQRequest)
105
+
106
+ # SYNOPSIS
107
+ # addMemberMessagesAAQToBidder(addMemberMessagesAAQToBidderRequest)
108
+ #
109
+ # ARGS
110
+ # addMemberMessagesAAQToBidderRequest AddMemberMessagesAAQToBidderRequestType - {urn:ebay:apis:eBLBaseComponents}AddMemberMessagesAAQToBidderRequestType
111
+ #
112
+ # RETURNS
113
+ # addMemberMessagesAAQToBidderResponse AddMemberMessagesAAQToBidderResponseType - {urn:ebay:apis:eBLBaseComponents}AddMemberMessagesAAQToBidderResponseType
114
+ #
115
+ addMemberMessagesAAQToBidderRequest = nil
116
+ puts obj.addMemberMessagesAAQToBidder(addMemberMessagesAAQToBidderRequest)
117
+
118
+ # SYNOPSIS
119
+ # addOrder(addOrderRequest)
120
+ #
121
+ # ARGS
122
+ # addOrderRequest AddOrderRequestType - {urn:ebay:apis:eBLBaseComponents}AddOrderRequestType
123
+ #
124
+ # RETURNS
125
+ # addOrderResponse AddOrderResponseType - {urn:ebay:apis:eBLBaseComponents}AddOrderResponseType
126
+ #
127
+ addOrderRequest = nil
128
+ puts obj.addOrder(addOrderRequest)
129
+
130
+ # SYNOPSIS
131
+ # addSecondChanceItem(addSecondChanceItemRequest)
132
+ #
133
+ # ARGS
134
+ # addSecondChanceItemRequest AddSecondChanceItemRequestType - {urn:ebay:apis:eBLBaseComponents}AddSecondChanceItemRequestType
135
+ #
136
+ # RETURNS
137
+ # addSecondChanceItemResponse AddSecondChanceItemResponseType - {urn:ebay:apis:eBLBaseComponents}AddSecondChanceItemResponseType
138
+ #
139
+ addSecondChanceItemRequest = nil
140
+ puts obj.addSecondChanceItem(addSecondChanceItemRequest)
141
+
142
+ # SYNOPSIS
143
+ # addSellingManagerInventoryFolder(addSellingManagerInventoryFolderRequest)
144
+ #
145
+ # ARGS
146
+ # addSellingManagerInventoryFolderRequest AddSellingManagerInventoryFolderRequestType - {urn:ebay:apis:eBLBaseComponents}AddSellingManagerInventoryFolderRequestType
147
+ #
148
+ # RETURNS
149
+ # addSellingManagerInventoryFolderResponse AddSellingManagerInventoryFolderResponseType - {urn:ebay:apis:eBLBaseComponents}AddSellingManagerInventoryFolderResponseType
150
+ #
151
+ addSellingManagerInventoryFolderRequest = nil
152
+ puts obj.addSellingManagerInventoryFolder(addSellingManagerInventoryFolderRequest)
153
+
154
+ # SYNOPSIS
155
+ # addSellingManagerProduct(addSellingManagerProductRequest)
156
+ #
157
+ # ARGS
158
+ # addSellingManagerProductRequest AddSellingManagerProductRequestType - {urn:ebay:apis:eBLBaseComponents}AddSellingManagerProductRequestType
159
+ #
160
+ # RETURNS
161
+ # addSellingManagerProductResponse AddSellingManagerProductResponseType - {urn:ebay:apis:eBLBaseComponents}AddSellingManagerProductResponseType
162
+ #
163
+ addSellingManagerProductRequest = nil
164
+ puts obj.addSellingManagerProduct(addSellingManagerProductRequest)
165
+
166
+ # SYNOPSIS
167
+ # addSellingManagerTemplate(addSellingManagerTemplateRequest)
168
+ #
169
+ # ARGS
170
+ # addSellingManagerTemplateRequest AddSellingManagerTemplateRequestType - {urn:ebay:apis:eBLBaseComponents}AddSellingManagerTemplateRequestType
171
+ #
172
+ # RETURNS
173
+ # addSellingManagerTemplateResponse AddSellingManagerTemplateResponseType - {urn:ebay:apis:eBLBaseComponents}AddSellingManagerTemplateResponseType
174
+ #
175
+ addSellingManagerTemplateRequest = nil
176
+ puts obj.addSellingManagerTemplate(addSellingManagerTemplateRequest)
177
+
178
+ # SYNOPSIS
179
+ # addToItemDescription(addToItemDescriptionRequest)
180
+ #
181
+ # ARGS
182
+ # addToItemDescriptionRequest AddToItemDescriptionRequestType - {urn:ebay:apis:eBLBaseComponents}AddToItemDescriptionRequestType
183
+ #
184
+ # RETURNS
185
+ # addToItemDescriptionResponse AddToItemDescriptionResponseType - {urn:ebay:apis:eBLBaseComponents}AddToItemDescriptionResponseType
186
+ #
187
+ addToItemDescriptionRequest = nil
188
+ puts obj.addToItemDescription(addToItemDescriptionRequest)
189
+
190
+ # SYNOPSIS
191
+ # addToWatchList(addToWatchListRequest)
192
+ #
193
+ # ARGS
194
+ # addToWatchListRequest AddToWatchListRequestType - {urn:ebay:apis:eBLBaseComponents}AddToWatchListRequestType
195
+ #
196
+ # RETURNS
197
+ # addToWatchListResponse AddToWatchListResponseType - {urn:ebay:apis:eBLBaseComponents}AddToWatchListResponseType
198
+ #
199
+ addToWatchListRequest = nil
200
+ puts obj.addToWatchList(addToWatchListRequest)
201
+
202
+ # SYNOPSIS
203
+ # addTransactionConfirmationItem(addTransactionConfirmationItemRequest)
204
+ #
205
+ # ARGS
206
+ # addTransactionConfirmationItemRequest AddTransactionConfirmationItemRequestType - {urn:ebay:apis:eBLBaseComponents}AddTransactionConfirmationItemRequestType
207
+ #
208
+ # RETURNS
209
+ # addTransactionConfirmationItemResponse AddTransactionConfirmationItemResponseType - {urn:ebay:apis:eBLBaseComponents}AddTransactionConfirmationItemResponseType
210
+ #
211
+ addTransactionConfirmationItemRequest = nil
212
+ puts obj.addTransactionConfirmationItem(addTransactionConfirmationItemRequest)
213
+
214
+ # SYNOPSIS
215
+ # completeSale(completeSaleRequest)
216
+ #
217
+ # ARGS
218
+ # completeSaleRequest CompleteSaleRequestType - {urn:ebay:apis:eBLBaseComponents}CompleteSaleRequestType
219
+ #
220
+ # RETURNS
221
+ # completeSaleResponse CompleteSaleResponseType - {urn:ebay:apis:eBLBaseComponents}CompleteSaleResponseType
222
+ #
223
+ completeSaleRequest = nil
224
+ puts obj.completeSale(completeSaleRequest)
225
+
226
+ # SYNOPSIS
227
+ # confirmIdentity(confirmIdentityRequest)
228
+ #
229
+ # ARGS
230
+ # confirmIdentityRequest ConfirmIdentityRequestType - {urn:ebay:apis:eBLBaseComponents}ConfirmIdentityRequestType
231
+ #
232
+ # RETURNS
233
+ # confirmIdentityResponse ConfirmIdentityResponseType - {urn:ebay:apis:eBLBaseComponents}ConfirmIdentityResponseType
234
+ #
235
+ confirmIdentityRequest = nil
236
+ puts obj.confirmIdentity(confirmIdentityRequest)
237
+
238
+ # SYNOPSIS
239
+ # deleteMyMessages(deleteMyMessagesRequest)
240
+ #
241
+ # ARGS
242
+ # deleteMyMessagesRequest DeleteMyMessagesRequestType - {urn:ebay:apis:eBLBaseComponents}DeleteMyMessagesRequestType
243
+ #
244
+ # RETURNS
245
+ # deleteMyMessagesResponse DeleteMyMessagesResponseType - {urn:ebay:apis:eBLBaseComponents}DeleteMyMessagesResponseType
246
+ #
247
+ deleteMyMessagesRequest = nil
248
+ puts obj.deleteMyMessages(deleteMyMessagesRequest)
249
+
250
+ # SYNOPSIS
251
+ # deleteSellingManagerInventoryFolder(deleteSellingManagerInventoryFolderRequest)
252
+ #
253
+ # ARGS
254
+ # deleteSellingManagerInventoryFolderRequest DeleteSellingManagerInventoryFolderRequestType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerInventoryFolderRequestType
255
+ #
256
+ # RETURNS
257
+ # deleteSellingManagerInventoryFolderResponse DeleteSellingManagerInventoryFolderResponseType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerInventoryFolderResponseType
258
+ #
259
+ deleteSellingManagerInventoryFolderRequest = nil
260
+ puts obj.deleteSellingManagerInventoryFolder(deleteSellingManagerInventoryFolderRequest)
261
+
262
+ # SYNOPSIS
263
+ # deleteSellingManagerItemAutomationRule(deleteSellingManagerItemAutomationRuleRequest)
264
+ #
265
+ # ARGS
266
+ # deleteSellingManagerItemAutomationRuleRequest DeleteSellingManagerItemAutomationRuleRequestType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerItemAutomationRuleRequestType
267
+ #
268
+ # RETURNS
269
+ # deleteSellingManagerItemAutomationRuleResponse DeleteSellingManagerItemAutomationRuleResponseType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerItemAutomationRuleResponseType
270
+ #
271
+ deleteSellingManagerItemAutomationRuleRequest = nil
272
+ puts obj.deleteSellingManagerItemAutomationRule(deleteSellingManagerItemAutomationRuleRequest)
273
+
274
+ # SYNOPSIS
275
+ # deleteSellingManagerProduct(deleteSellingManagerProductRequest)
276
+ #
277
+ # ARGS
278
+ # deleteSellingManagerProductRequest DeleteSellingManagerProductRequestType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerProductRequestType
279
+ #
280
+ # RETURNS
281
+ # deleteSellingManagerProductResponse DeleteSellingManagerProductResponseType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerProductResponseType
282
+ #
283
+ deleteSellingManagerProductRequest = nil
284
+ puts obj.deleteSellingManagerProduct(deleteSellingManagerProductRequest)
285
+
286
+ # SYNOPSIS
287
+ # deleteSellingManagerTemplate(deleteSellingManagerTemplateRequest)
288
+ #
289
+ # ARGS
290
+ # deleteSellingManagerTemplateRequest DeleteSellingManagerTemplateRequestType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerTemplateRequestType
291
+ #
292
+ # RETURNS
293
+ # deleteSellingManagerTemplateResponse DeleteSellingManagerTemplateResponseType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerTemplateResponseType
294
+ #
295
+ deleteSellingManagerTemplateRequest = nil
296
+ puts obj.deleteSellingManagerTemplate(deleteSellingManagerTemplateRequest)
297
+
298
+ # SYNOPSIS
299
+ # deleteSellingManagerTemplateAutomationRule(deleteSellingManagerTemplateAutomationRuleRequest)
300
+ #
301
+ # ARGS
302
+ # deleteSellingManagerTemplateAutomationRuleRequest DeleteSellingManagerTemplateAutomationRuleRequestType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerTemplateAutomationRuleRequestType
303
+ #
304
+ # RETURNS
305
+ # deleteSellingManagerTemplateAutomationRuleResponse DeleteSellingManagerTemplateAutomationRuleResponseType - {urn:ebay:apis:eBLBaseComponents}DeleteSellingManagerTemplateAutomationRuleResponseType
306
+ #
307
+ deleteSellingManagerTemplateAutomationRuleRequest = nil
308
+ puts obj.deleteSellingManagerTemplateAutomationRule(deleteSellingManagerTemplateAutomationRuleRequest)
309
+
310
+ # SYNOPSIS
311
+ # disableUnpaidItemAssistance(disableUnpaidItemAssistanceRequest)
312
+ #
313
+ # ARGS
314
+ # disableUnpaidItemAssistanceRequest DisableUnpaidItemAssistanceRequestType - {urn:ebay:apis:eBLBaseComponents}DisableUnpaidItemAssistanceRequestType
315
+ #
316
+ # RETURNS
317
+ # disableUnpaidItemAssistanceResponse DisableUnpaidItemAssistanceResponseType - {urn:ebay:apis:eBLBaseComponents}DisableUnpaidItemAssistanceResponseType
318
+ #
319
+ disableUnpaidItemAssistanceRequest = nil
320
+ puts obj.disableUnpaidItemAssistance(disableUnpaidItemAssistanceRequest)
321
+
322
+ # SYNOPSIS
323
+ # endFixedPriceItem(endFixedPriceItemRequest)
324
+ #
325
+ # ARGS
326
+ # endFixedPriceItemRequest EndFixedPriceItemRequestType - {urn:ebay:apis:eBLBaseComponents}EndFixedPriceItemRequestType
327
+ #
328
+ # RETURNS
329
+ # endFixedPriceItemResponse EndFixedPriceItemResponseType - {urn:ebay:apis:eBLBaseComponents}EndFixedPriceItemResponseType
330
+ #
331
+ endFixedPriceItemRequest = nil
332
+ puts obj.endFixedPriceItem(endFixedPriceItemRequest)
333
+
334
+ # SYNOPSIS
335
+ # endItem(endItemRequest)
336
+ #
337
+ # ARGS
338
+ # endItemRequest EndItemRequestType - {urn:ebay:apis:eBLBaseComponents}EndItemRequestType
339
+ #
340
+ # RETURNS
341
+ # endItemResponse EndItemResponseType - {urn:ebay:apis:eBLBaseComponents}EndItemResponseType
342
+ #
343
+ endItemRequest = nil
344
+ puts obj.endItem(endItemRequest)
345
+
346
+ # SYNOPSIS
347
+ # endItems(endItemsRequest)
348
+ #
349
+ # ARGS
350
+ # endItemsRequest EndItemsRequestType - {urn:ebay:apis:eBLBaseComponents}EndItemsRequestType
351
+ #
352
+ # RETURNS
353
+ # endItemsResponse EndItemsResponseType - {urn:ebay:apis:eBLBaseComponents}EndItemsResponseType
354
+ #
355
+ endItemsRequest = nil
356
+ puts obj.endItems(endItemsRequest)
357
+
358
+ # SYNOPSIS
359
+ # extendSiteHostedPictures(extendSiteHostedPicturesRequest)
360
+ #
361
+ # ARGS
362
+ # extendSiteHostedPicturesRequest ExtendSiteHostedPicturesRequestType - {urn:ebay:apis:eBLBaseComponents}ExtendSiteHostedPicturesRequestType
363
+ #
364
+ # RETURNS
365
+ # extendSiteHostedPicturesResponse ExtendSiteHostedPicturesResponseType - {urn:ebay:apis:eBLBaseComponents}ExtendSiteHostedPicturesResponseType
366
+ #
367
+ extendSiteHostedPicturesRequest = nil
368
+ puts obj.extendSiteHostedPictures(extendSiteHostedPicturesRequest)
369
+
370
+ # SYNOPSIS
371
+ # fetchToken(fetchTokenRequest)
372
+ #
373
+ # ARGS
374
+ # fetchTokenRequest FetchTokenRequestType - {urn:ebay:apis:eBLBaseComponents}FetchTokenRequestType
375
+ #
376
+ # RETURNS
377
+ # fetchTokenResponse FetchTokenResponseType - {urn:ebay:apis:eBLBaseComponents}FetchTokenResponseType
378
+ #
379
+ fetchTokenRequest = nil
380
+ puts obj.fetchToken(fetchTokenRequest)
381
+
382
+ # SYNOPSIS
383
+ # getAccount(getAccountRequest)
384
+ #
385
+ # ARGS
386
+ # getAccountRequest GetAccountRequestType - {urn:ebay:apis:eBLBaseComponents}GetAccountRequestType
387
+ #
388
+ # RETURNS
389
+ # getAccountResponse GetAccountResponseType - {urn:ebay:apis:eBLBaseComponents}GetAccountResponseType
390
+ #
391
+ getAccountRequest = nil
392
+ puts obj.getAccount(getAccountRequest)
393
+
394
+ # SYNOPSIS
395
+ # getAdFormatLeads(getAdFormatLeadsRequest)
396
+ #
397
+ # ARGS
398
+ # getAdFormatLeadsRequest GetAdFormatLeadsRequestType - {urn:ebay:apis:eBLBaseComponents}GetAdFormatLeadsRequestType
399
+ #
400
+ # RETURNS
401
+ # getAdFormatLeadsResponse GetAdFormatLeadsResponseType - {urn:ebay:apis:eBLBaseComponents}GetAdFormatLeadsResponseType
402
+ #
403
+ getAdFormatLeadsRequest = nil
404
+ puts obj.getAdFormatLeads(getAdFormatLeadsRequest)
405
+
406
+ # SYNOPSIS
407
+ # getAllBidders(getAllBiddersRequest)
408
+ #
409
+ # ARGS
410
+ # getAllBiddersRequest GetAllBiddersRequestType - {urn:ebay:apis:eBLBaseComponents}GetAllBiddersRequestType
411
+ #
412
+ # RETURNS
413
+ # getAllBiddersResponse GetAllBiddersResponseType - {urn:ebay:apis:eBLBaseComponents}GetAllBiddersResponseType
414
+ #
415
+ getAllBiddersRequest = nil
416
+ puts obj.getAllBidders(getAllBiddersRequest)
417
+
418
+ # SYNOPSIS
419
+ # getApiAccessRules(getApiAccessRulesRequest)
420
+ #
421
+ # ARGS
422
+ # getApiAccessRulesRequest GetApiAccessRulesRequestType - {urn:ebay:apis:eBLBaseComponents}GetApiAccessRulesRequestType
423
+ #
424
+ # RETURNS
425
+ # getApiAccessRulesResponse GetApiAccessRulesResponseType - {urn:ebay:apis:eBLBaseComponents}GetApiAccessRulesResponseType
426
+ #
427
+ getApiAccessRulesRequest = nil
428
+ puts obj.getApiAccessRules(getApiAccessRulesRequest)
429
+
430
+ # SYNOPSIS
431
+ # getAttributesCS(getAttributesCSRequest)
432
+ #
433
+ # ARGS
434
+ # getAttributesCSRequest GetAttributesCSRequestType - {urn:ebay:apis:eBLBaseComponents}GetAttributesCSRequestType
435
+ #
436
+ # RETURNS
437
+ # getAttributesCSResponse GetAttributesCSResponseType - {urn:ebay:apis:eBLBaseComponents}GetAttributesCSResponseType
438
+ #
439
+ getAttributesCSRequest = nil
440
+ puts obj.getAttributesCS(getAttributesCSRequest)
441
+
442
+ # SYNOPSIS
443
+ # getAttributesXSL(getAttributesXSLRequest)
444
+ #
445
+ # ARGS
446
+ # getAttributesXSLRequest GetAttributesXSLRequestType - {urn:ebay:apis:eBLBaseComponents}GetAttributesXSLRequestType
447
+ #
448
+ # RETURNS
449
+ # getAttributesXSLResponse GetAttributesXSLResponseType - {urn:ebay:apis:eBLBaseComponents}GetAttributesXSLResponseType
450
+ #
451
+ getAttributesXSLRequest = nil
452
+ puts obj.getAttributesXSL(getAttributesXSLRequest)
453
+
454
+ # SYNOPSIS
455
+ # getBestOffers(getBestOffersRequest)
456
+ #
457
+ # ARGS
458
+ # getBestOffersRequest GetBestOffersRequestType - {urn:ebay:apis:eBLBaseComponents}GetBestOffersRequestType
459
+ #
460
+ # RETURNS
461
+ # getBestOffersResponse GetBestOffersResponseType - {urn:ebay:apis:eBLBaseComponents}GetBestOffersResponseType
462
+ #
463
+ getBestOffersRequest = nil
464
+ puts obj.getBestOffers(getBestOffersRequest)
465
+
466
+ # SYNOPSIS
467
+ # getBidderList(getBidderListRequest)
468
+ #
469
+ # ARGS
470
+ # getBidderListRequest GetBidderListRequestType - {urn:ebay:apis:eBLBaseComponents}GetBidderListRequestType
471
+ #
472
+ # RETURNS
473
+ # getBidderListResponse GetBidderListResponseType - {urn:ebay:apis:eBLBaseComponents}GetBidderListResponseType
474
+ #
475
+ getBidderListRequest = nil
476
+ puts obj.getBidderList(getBidderListRequest)
477
+
478
+ # SYNOPSIS
479
+ # getCategories(getCategoriesRequest)
480
+ #
481
+ # ARGS
482
+ # getCategoriesRequest GetCategoriesRequestType - {urn:ebay:apis:eBLBaseComponents}GetCategoriesRequestType
483
+ #
484
+ # RETURNS
485
+ # getCategoriesResponse GetCategoriesResponseType - {urn:ebay:apis:eBLBaseComponents}GetCategoriesResponseType
486
+ #
487
+ getCategoriesRequest = nil
488
+ puts obj.getCategories(getCategoriesRequest)
489
+
490
+ # SYNOPSIS
491
+ # getCategory2CS(getCategory2CSRequest)
492
+ #
493
+ # ARGS
494
+ # getCategory2CSRequest GetCategory2CSRequestType - {urn:ebay:apis:eBLBaseComponents}GetCategory2CSRequestType
495
+ #
496
+ # RETURNS
497
+ # getCategory2CSResponse GetCategory2CSResponseType - {urn:ebay:apis:eBLBaseComponents}GetCategory2CSResponseType
498
+ #
499
+ getCategory2CSRequest = nil
500
+ puts obj.getCategory2CS(getCategory2CSRequest)
501
+
502
+ # SYNOPSIS
503
+ # getCategoryFeatures(getCategoryFeaturesRequest)
504
+ #
505
+ # ARGS
506
+ # getCategoryFeaturesRequest GetCategoryFeaturesRequestType - {urn:ebay:apis:eBLBaseComponents}GetCategoryFeaturesRequestType
507
+ #
508
+ # RETURNS
509
+ # getCategoryFeaturesResponse GetCategoryFeaturesResponseType - {urn:ebay:apis:eBLBaseComponents}GetCategoryFeaturesResponseType
510
+ #
511
+ getCategoryFeaturesRequest = nil
512
+ puts obj.getCategoryFeatures(getCategoryFeaturesRequest)
513
+
514
+ # SYNOPSIS
515
+ # getCategoryMappings(getCategoryMappingsRequest)
516
+ #
517
+ # ARGS
518
+ # getCategoryMappingsRequest GetCategoryMappingsRequestType - {urn:ebay:apis:eBLBaseComponents}GetCategoryMappingsRequestType
519
+ #
520
+ # RETURNS
521
+ # getCategoryMappingsResponse GetCategoryMappingsResponseType - {urn:ebay:apis:eBLBaseComponents}GetCategoryMappingsResponseType
522
+ #
523
+ getCategoryMappingsRequest = nil
524
+ puts obj.getCategoryMappings(getCategoryMappingsRequest)
525
+
526
+ # SYNOPSIS
527
+ # getCategorySpecifics(getCategorySpecificsRequest)
528
+ #
529
+ # ARGS
530
+ # getCategorySpecificsRequest GetCategorySpecificsRequestType - {urn:ebay:apis:eBLBaseComponents}GetCategorySpecificsRequestType
531
+ #
532
+ # RETURNS
533
+ # getCategorySpecificsResponse GetCategorySpecificsResponseType - {urn:ebay:apis:eBLBaseComponents}GetCategorySpecificsResponseType
534
+ #
535
+ getCategorySpecificsRequest = nil
536
+ puts obj.getCategorySpecifics(getCategorySpecificsRequest)
537
+
538
+ # SYNOPSIS
539
+ # getChallengeToken(getChallengeTokenRequest)
540
+ #
541
+ # ARGS
542
+ # getChallengeTokenRequest GetChallengeTokenRequestType - {urn:ebay:apis:eBLBaseComponents}GetChallengeTokenRequestType
543
+ #
544
+ # RETURNS
545
+ # getChallengeTokenResponse GetChallengeTokenResponseType - {urn:ebay:apis:eBLBaseComponents}GetChallengeTokenResponseType
546
+ #
547
+ getChallengeTokenRequest = nil
548
+ puts obj.getChallengeToken(getChallengeTokenRequest)
549
+
550
+ # SYNOPSIS
551
+ # getCharities(getCharitiesRequest)
552
+ #
553
+ # ARGS
554
+ # getCharitiesRequest GetCharitiesRequestType - {urn:ebay:apis:eBLBaseComponents}GetCharitiesRequestType
555
+ #
556
+ # RETURNS
557
+ # getCharitiesResponse GetCharitiesResponseType - {urn:ebay:apis:eBLBaseComponents}GetCharitiesResponseType
558
+ #
559
+ getCharitiesRequest = nil
560
+ puts obj.getCharities(getCharitiesRequest)
561
+
562
+ # SYNOPSIS
563
+ # getClientAlertsAuthToken(getClientAlertsAuthTokenRequest)
564
+ #
565
+ # ARGS
566
+ # getClientAlertsAuthTokenRequest GetClientAlertsAuthTokenRequestType - {urn:ebay:apis:eBLBaseComponents}GetClientAlertsAuthTokenRequestType
567
+ #
568
+ # RETURNS
569
+ # getClientAlertsAuthTokenResponse GetClientAlertsAuthTokenResponseType - {urn:ebay:apis:eBLBaseComponents}GetClientAlertsAuthTokenResponseType
570
+ #
571
+ getClientAlertsAuthTokenRequest = nil
572
+ puts obj.getClientAlertsAuthToken(getClientAlertsAuthTokenRequest)
573
+
574
+ # SYNOPSIS
575
+ # getContextualKeywords(getContextualKeywordsRequest)
576
+ #
577
+ # ARGS
578
+ # getContextualKeywordsRequest GetContextualKeywordsRequestType - {urn:ebay:apis:eBLBaseComponents}GetContextualKeywordsRequestType
579
+ #
580
+ # RETURNS
581
+ # getContextualKeywordsResponse GetContextualKeywordsResponseType - {urn:ebay:apis:eBLBaseComponents}GetContextualKeywordsResponseType
582
+ #
583
+ getContextualKeywordsRequest = nil
584
+ puts obj.getContextualKeywords(getContextualKeywordsRequest)
585
+
586
+ # SYNOPSIS
587
+ # getCrossPromotions(getCrossPromotionsRequest)
588
+ #
589
+ # ARGS
590
+ # getCrossPromotionsRequest GetCrossPromotionsRequestType - {urn:ebay:apis:eBLBaseComponents}GetCrossPromotionsRequestType
591
+ #
592
+ # RETURNS
593
+ # getCrossPromotionsResponse GetCrossPromotionsResponseType - {urn:ebay:apis:eBLBaseComponents}GetCrossPromotionsResponseType
594
+ #
595
+ getCrossPromotionsRequest = nil
596
+ puts obj.getCrossPromotions(getCrossPromotionsRequest)
597
+
598
+ # SYNOPSIS
599
+ # getDescriptionTemplates(getDescriptionTemplatesRequest)
600
+ #
601
+ # ARGS
602
+ # getDescriptionTemplatesRequest GetDescriptionTemplatesRequestType - {urn:ebay:apis:eBLBaseComponents}GetDescriptionTemplatesRequestType
603
+ #
604
+ # RETURNS
605
+ # getDescriptionTemplatesResponse GetDescriptionTemplatesResponseType - {urn:ebay:apis:eBLBaseComponents}GetDescriptionTemplatesResponseType
606
+ #
607
+ getDescriptionTemplatesRequest = nil
608
+ puts obj.getDescriptionTemplates(getDescriptionTemplatesRequest)
609
+
610
+ # SYNOPSIS
611
+ # getDispute(getDisputeRequest)
612
+ #
613
+ # ARGS
614
+ # getDisputeRequest GetDisputeRequestType - {urn:ebay:apis:eBLBaseComponents}GetDisputeRequestType
615
+ #
616
+ # RETURNS
617
+ # getDisputeResponse GetDisputeResponseType - {urn:ebay:apis:eBLBaseComponents}GetDisputeResponseType
618
+ #
619
+ getDisputeRequest = nil
620
+ puts obj.getDispute(getDisputeRequest)
621
+
622
+ # SYNOPSIS
623
+ # getFeedback(getFeedbackRequest)
624
+ #
625
+ # ARGS
626
+ # getFeedbackRequest GetFeedbackRequestType - {urn:ebay:apis:eBLBaseComponents}GetFeedbackRequestType
627
+ #
628
+ # RETURNS
629
+ # getFeedbackResponse GetFeedbackResponseType - {urn:ebay:apis:eBLBaseComponents}GetFeedbackResponseType
630
+ #
631
+ getFeedbackRequest = nil
632
+ puts obj.getFeedback(getFeedbackRequest)
633
+
634
+ # SYNOPSIS
635
+ # getHighBidders(getHighBiddersRequest)
636
+ #
637
+ # ARGS
638
+ # getHighBiddersRequest GetHighBiddersRequestType - {urn:ebay:apis:eBLBaseComponents}GetHighBiddersRequestType
639
+ #
640
+ # RETURNS
641
+ # getHighBiddersResponse GetHighBiddersResponseType - {urn:ebay:apis:eBLBaseComponents}GetHighBiddersResponseType
642
+ #
643
+ getHighBiddersRequest = nil
644
+ puts obj.getHighBidders(getHighBiddersRequest)
645
+
646
+ # SYNOPSIS
647
+ # getItem(getItemRequest)
648
+ #
649
+ # ARGS
650
+ # getItemRequest GetItemRequestType - {urn:ebay:apis:eBLBaseComponents}GetItemRequestType
651
+ #
652
+ # RETURNS
653
+ # getItemResponse GetItemResponseType - {urn:ebay:apis:eBLBaseComponents}GetItemResponseType
654
+ #
655
+ getItemRequest = nil
656
+ puts obj.getItem(getItemRequest)
657
+
658
+ # SYNOPSIS
659
+ # getItemRecommendations(getItemRecommendationsRequest)
660
+ #
661
+ # ARGS
662
+ # getItemRecommendationsRequest GetItemRecommendationsRequestType - {urn:ebay:apis:eBLBaseComponents}GetItemRecommendationsRequestType
663
+ #
664
+ # RETURNS
665
+ # getItemRecommendationsResponse GetItemRecommendationsResponseType - {urn:ebay:apis:eBLBaseComponents}GetItemRecommendationsResponseType
666
+ #
667
+ getItemRecommendationsRequest = nil
668
+ puts obj.getItemRecommendations(getItemRecommendationsRequest)
669
+
670
+ # SYNOPSIS
671
+ # getItemShipping(getItemShippingRequest)
672
+ #
673
+ # ARGS
674
+ # getItemShippingRequest GetItemShippingRequestType - {urn:ebay:apis:eBLBaseComponents}GetItemShippingRequestType
675
+ #
676
+ # RETURNS
677
+ # getItemShippingResponse GetItemShippingResponseType - {urn:ebay:apis:eBLBaseComponents}GetItemShippingResponseType
678
+ #
679
+ getItemShippingRequest = nil
680
+ puts obj.getItemShipping(getItemShippingRequest)
681
+
682
+ # SYNOPSIS
683
+ # getItemTransactions(getItemTransactionsRequest)
684
+ #
685
+ # ARGS
686
+ # getItemTransactionsRequest GetItemTransactionsRequestType - {urn:ebay:apis:eBLBaseComponents}GetItemTransactionsRequestType
687
+ #
688
+ # RETURNS
689
+ # getItemTransactionsResponse GetItemTransactionsResponseType - {urn:ebay:apis:eBLBaseComponents}GetItemTransactionsResponseType
690
+ #
691
+ getItemTransactionsRequest = nil
692
+ puts obj.getItemTransactions(getItemTransactionsRequest)
693
+
694
+ # SYNOPSIS
695
+ # getItemsAwaitingFeedback(getItemsAwaitingFeedbackRequest)
696
+ #
697
+ # ARGS
698
+ # getItemsAwaitingFeedbackRequest GetItemsAwaitingFeedbackRequestType - {urn:ebay:apis:eBLBaseComponents}GetItemsAwaitingFeedbackRequestType
699
+ #
700
+ # RETURNS
701
+ # getItemsAwaitingFeedbackResponse GetItemsAwaitingFeedbackResponseType - {urn:ebay:apis:eBLBaseComponents}GetItemsAwaitingFeedbackResponseType
702
+ #
703
+ getItemsAwaitingFeedbackRequest = nil
704
+ puts obj.getItemsAwaitingFeedback(getItemsAwaitingFeedbackRequest)
705
+
706
+ # SYNOPSIS
707
+ # getMemberMessages(getMemberMessagesRequest)
708
+ #
709
+ # ARGS
710
+ # getMemberMessagesRequest GetMemberMessagesRequestType - {urn:ebay:apis:eBLBaseComponents}GetMemberMessagesRequestType
711
+ #
712
+ # RETURNS
713
+ # getMemberMessagesResponse GetMemberMessagesResponseType - {urn:ebay:apis:eBLBaseComponents}GetMemberMessagesResponseType
714
+ #
715
+ getMemberMessagesRequest = nil
716
+ puts obj.getMemberMessages(getMemberMessagesRequest)
717
+
718
+ # SYNOPSIS
719
+ # getMessagePreferences(getMessagePreferencesRequest)
720
+ #
721
+ # ARGS
722
+ # getMessagePreferencesRequest GetMessagePreferencesRequestType - {urn:ebay:apis:eBLBaseComponents}GetMessagePreferencesRequestType
723
+ #
724
+ # RETURNS
725
+ # getMessagePreferencesResponse GetMessagePreferencesResponseType - {urn:ebay:apis:eBLBaseComponents}GetMessagePreferencesResponseType
726
+ #
727
+ getMessagePreferencesRequest = nil
728
+ puts obj.getMessagePreferences(getMessagePreferencesRequest)
729
+
730
+ # SYNOPSIS
731
+ # getMyMessages(getMyMessagesRequest)
732
+ #
733
+ # ARGS
734
+ # getMyMessagesRequest GetMyMessagesRequestType - {urn:ebay:apis:eBLBaseComponents}GetMyMessagesRequestType
735
+ #
736
+ # RETURNS
737
+ # getMyMessagesResponse GetMyMessagesResponseType - {urn:ebay:apis:eBLBaseComponents}GetMyMessagesResponseType
738
+ #
739
+ getMyMessagesRequest = nil
740
+ puts obj.getMyMessages(getMyMessagesRequest)
741
+
742
+ # SYNOPSIS
743
+ # getMyeBayBuying(getMyeBayBuyingRequest)
744
+ #
745
+ # ARGS
746
+ # getMyeBayBuyingRequest GetMyeBayBuyingRequestType - {urn:ebay:apis:eBLBaseComponents}GetMyeBayBuyingRequestType
747
+ #
748
+ # RETURNS
749
+ # getMyeBayBuyingResponse GetMyeBayBuyingResponseType - {urn:ebay:apis:eBLBaseComponents}GetMyeBayBuyingResponseType
750
+ #
751
+ getMyeBayBuyingRequest = nil
752
+ puts obj.getMyeBayBuying(getMyeBayBuyingRequest)
753
+
754
+ # SYNOPSIS
755
+ # getMyeBayReminders(getMyeBayRemindersRequest)
756
+ #
757
+ # ARGS
758
+ # getMyeBayRemindersRequest GetMyeBayRemindersRequestType - {urn:ebay:apis:eBLBaseComponents}GetMyeBayRemindersRequestType
759
+ #
760
+ # RETURNS
761
+ # getMyeBayRemindersResponse GetMyeBayRemindersResponseType - {urn:ebay:apis:eBLBaseComponents}GetMyeBayRemindersResponseType
762
+ #
763
+ getMyeBayRemindersRequest = nil
764
+ puts obj.getMyeBayReminders(getMyeBayRemindersRequest)
765
+
766
+ # SYNOPSIS
767
+ # getMyeBaySelling(getMyeBaySellingRequest)
768
+ #
769
+ # ARGS
770
+ # getMyeBaySellingRequest GetMyeBaySellingRequestType - {urn:ebay:apis:eBLBaseComponents}GetMyeBaySellingRequestType
771
+ #
772
+ # RETURNS
773
+ # getMyeBaySellingResponse GetMyeBaySellingResponseType - {urn:ebay:apis:eBLBaseComponents}GetMyeBaySellingResponseType
774
+ #
775
+ getMyeBaySellingRequest = nil
776
+ puts obj.getMyeBaySelling(getMyeBaySellingRequest)
777
+
778
+ # SYNOPSIS
779
+ # getNotificationPreferences(getNotificationPreferencesRequest)
780
+ #
781
+ # ARGS
782
+ # getNotificationPreferencesRequest GetNotificationPreferencesRequestType - {urn:ebay:apis:eBLBaseComponents}GetNotificationPreferencesRequestType
783
+ #
784
+ # RETURNS
785
+ # getNotificationPreferencesResponse GetNotificationPreferencesResponseType - {urn:ebay:apis:eBLBaseComponents}GetNotificationPreferencesResponseType
786
+ #
787
+ getNotificationPreferencesRequest = nil
788
+ puts obj.getNotificationPreferences(getNotificationPreferencesRequest)
789
+
790
+ # SYNOPSIS
791
+ # getNotificationsUsage(getNotificationsUsageRequest)
792
+ #
793
+ # ARGS
794
+ # getNotificationsUsageRequest GetNotificationsUsageRequestType - {urn:ebay:apis:eBLBaseComponents}GetNotificationsUsageRequestType
795
+ #
796
+ # RETURNS
797
+ # getNotificationsUsageResponse GetNotificationsUsageResponseType - {urn:ebay:apis:eBLBaseComponents}GetNotificationsUsageResponseType
798
+ #
799
+ getNotificationsUsageRequest = nil
800
+ puts obj.getNotificationsUsage(getNotificationsUsageRequest)
801
+
802
+ # SYNOPSIS
803
+ # getOrderTransactions(getOrderTransactionsRequest)
804
+ #
805
+ # ARGS
806
+ # getOrderTransactionsRequest GetOrderTransactionsRequestType - {urn:ebay:apis:eBLBaseComponents}GetOrderTransactionsRequestType
807
+ #
808
+ # RETURNS
809
+ # getOrderTransactionsResponse GetOrderTransactionsResponseType - {urn:ebay:apis:eBLBaseComponents}GetOrderTransactionsResponseType
810
+ #
811
+ getOrderTransactionsRequest = nil
812
+ puts obj.getOrderTransactions(getOrderTransactionsRequest)
813
+
814
+ # SYNOPSIS
815
+ # getOrders(getOrdersRequest)
816
+ #
817
+ # ARGS
818
+ # getOrdersRequest GetOrdersRequestType - {urn:ebay:apis:eBLBaseComponents}GetOrdersRequestType
819
+ #
820
+ # RETURNS
821
+ # getOrdersResponse GetOrdersResponseType - {urn:ebay:apis:eBLBaseComponents}GetOrdersResponseType
822
+ #
823
+ getOrdersRequest = nil
824
+ puts obj.getOrders(getOrdersRequest)
825
+
826
+ # SYNOPSIS
827
+ # getPictureManagerDetails(getPictureManagerDetailsRequest)
828
+ #
829
+ # ARGS
830
+ # getPictureManagerDetailsRequest GetPictureManagerDetailsRequestType - {urn:ebay:apis:eBLBaseComponents}GetPictureManagerDetailsRequestType
831
+ #
832
+ # RETURNS
833
+ # getPictureManagerDetailsResponse GetPictureManagerDetailsResponseType - {urn:ebay:apis:eBLBaseComponents}GetPictureManagerDetailsResponseType
834
+ #
835
+ getPictureManagerDetailsRequest = nil
836
+ puts obj.getPictureManagerDetails(getPictureManagerDetailsRequest)
837
+
838
+ # SYNOPSIS
839
+ # getPictureManagerOptions(getPictureManagerOptionsRequest)
840
+ #
841
+ # ARGS
842
+ # getPictureManagerOptionsRequest GetPictureManagerOptionsRequestType - {urn:ebay:apis:eBLBaseComponents}GetPictureManagerOptionsRequestType
843
+ #
844
+ # RETURNS
845
+ # getPictureManagerOptionsResponse GetPictureManagerOptionsResponseType - {urn:ebay:apis:eBLBaseComponents}GetPictureManagerOptionsResponseType
846
+ #
847
+ getPictureManagerOptionsRequest = nil
848
+ puts obj.getPictureManagerOptions(getPictureManagerOptionsRequest)
849
+
850
+ # SYNOPSIS
851
+ # getProductFamilyMembers(getProductFamilyMembersRequest)
852
+ #
853
+ # ARGS
854
+ # getProductFamilyMembersRequest GetProductFamilyMembersRequestType - {urn:ebay:apis:eBLBaseComponents}GetProductFamilyMembersRequestType
855
+ #
856
+ # RETURNS
857
+ # getProductFamilyMembersResponse GetProductFamilyMembersResponseType - {urn:ebay:apis:eBLBaseComponents}GetProductFamilyMembersResponseType
858
+ #
859
+ getProductFamilyMembersRequest = nil
860
+ puts obj.getProductFamilyMembers(getProductFamilyMembersRequest)
861
+
862
+ # SYNOPSIS
863
+ # getProductFinder(getProductFinderRequest)
864
+ #
865
+ # ARGS
866
+ # getProductFinderRequest GetProductFinderRequestType - {urn:ebay:apis:eBLBaseComponents}GetProductFinderRequestType
867
+ #
868
+ # RETURNS
869
+ # getProductFinderResponse GetProductFinderResponseType - {urn:ebay:apis:eBLBaseComponents}GetProductFinderResponseType
870
+ #
871
+ getProductFinderRequest = nil
872
+ puts obj.getProductFinder(getProductFinderRequest)
873
+
874
+ # SYNOPSIS
875
+ # getProductFinderXSL(getProductFinderXSLRequest)
876
+ #
877
+ # ARGS
878
+ # getProductFinderXSLRequest GetProductFinderXSLRequestType - {urn:ebay:apis:eBLBaseComponents}GetProductFinderXSLRequestType
879
+ #
880
+ # RETURNS
881
+ # getProductFinderXSLResponse GetProductFinderXSLResponseType - {urn:ebay:apis:eBLBaseComponents}GetProductFinderXSLResponseType
882
+ #
883
+ getProductFinderXSLRequest = nil
884
+ puts obj.getProductFinderXSL(getProductFinderXSLRequest)
885
+
886
+ # SYNOPSIS
887
+ # getProductSearchPage(getProductSearchPageRequest)
888
+ #
889
+ # ARGS
890
+ # getProductSearchPageRequest GetProductSearchPageRequestType - {urn:ebay:apis:eBLBaseComponents}GetProductSearchPageRequestType
891
+ #
892
+ # RETURNS
893
+ # getProductSearchPageResponse GetProductSearchPageResponseType - {urn:ebay:apis:eBLBaseComponents}GetProductSearchPageResponseType
894
+ #
895
+ getProductSearchPageRequest = nil
896
+ puts obj.getProductSearchPage(getProductSearchPageRequest)
897
+
898
+ # SYNOPSIS
899
+ # getProductSearchResults(getProductSearchResultsRequest)
900
+ #
901
+ # ARGS
902
+ # getProductSearchResultsRequest GetProductSearchResultsRequestType - {urn:ebay:apis:eBLBaseComponents}GetProductSearchResultsRequestType
903
+ #
904
+ # RETURNS
905
+ # getProductSearchResultsResponse GetProductSearchResultsResponseType - {urn:ebay:apis:eBLBaseComponents}GetProductSearchResultsResponseType
906
+ #
907
+ getProductSearchResultsRequest = nil
908
+ puts obj.getProductSearchResults(getProductSearchResultsRequest)
909
+
910
+ # SYNOPSIS
911
+ # getProductSellingPages(getProductSellingPagesRequest)
912
+ #
913
+ # ARGS
914
+ # getProductSellingPagesRequest GetProductSellingPagesRequestType - {urn:ebay:apis:eBLBaseComponents}GetProductSellingPagesRequestType
915
+ #
916
+ # RETURNS
917
+ # getProductSellingPagesResponse GetProductSellingPagesResponseType - {urn:ebay:apis:eBLBaseComponents}GetProductSellingPagesResponseType
918
+ #
919
+ getProductSellingPagesRequest = nil
920
+ puts obj.getProductSellingPages(getProductSellingPagesRequest)
921
+
922
+ # SYNOPSIS
923
+ # getPromotionRules(getPromotionRulesRequest)
924
+ #
925
+ # ARGS
926
+ # getPromotionRulesRequest GetPromotionRulesRequestType - {urn:ebay:apis:eBLBaseComponents}GetPromotionRulesRequestType
927
+ #
928
+ # RETURNS
929
+ # getPromotionRulesResponse GetPromotionRulesResponseType - {urn:ebay:apis:eBLBaseComponents}GetPromotionRulesResponseType
930
+ #
931
+ getPromotionRulesRequest = nil
932
+ puts obj.getPromotionRules(getPromotionRulesRequest)
933
+
934
+ # SYNOPSIS
935
+ # getPromotionalSaleDetails(getPromotionalSaleDetailsRequest)
936
+ #
937
+ # ARGS
938
+ # getPromotionalSaleDetailsRequest GetPromotionalSaleDetailsRequestType - {urn:ebay:apis:eBLBaseComponents}GetPromotionalSaleDetailsRequestType
939
+ #
940
+ # RETURNS
941
+ # getPromotionalSaleDetailsResponse GetPromotionalSaleDetailsResponseType - {urn:ebay:apis:eBLBaseComponents}GetPromotionalSaleDetailsResponseType
942
+ #
943
+ getPromotionalSaleDetailsRequest = nil
944
+ puts obj.getPromotionalSaleDetails(getPromotionalSaleDetailsRequest)
945
+
946
+ # SYNOPSIS
947
+ # getSellerDashboard(getSellerDashboardRequest)
948
+ #
949
+ # ARGS
950
+ # getSellerDashboardRequest GetSellerDashboardRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellerDashboardRequestType
951
+ #
952
+ # RETURNS
953
+ # getSellerDashboardResponse GetSellerDashboardResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellerDashboardResponseType
954
+ #
955
+ getSellerDashboardRequest = nil
956
+ puts obj.getSellerDashboard(getSellerDashboardRequest)
957
+
958
+ # SYNOPSIS
959
+ # getSellerEvents(getSellerEventsRequest)
960
+ #
961
+ # ARGS
962
+ # getSellerEventsRequest GetSellerEventsRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellerEventsRequestType
963
+ #
964
+ # RETURNS
965
+ # getSellerEventsResponse GetSellerEventsResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellerEventsResponseType
966
+ #
967
+ getSellerEventsRequest = nil
968
+ puts obj.getSellerEvents(getSellerEventsRequest)
969
+
970
+ # SYNOPSIS
971
+ # getSellerList(getSellerListRequest)
972
+ #
973
+ # ARGS
974
+ # getSellerListRequest GetSellerListRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellerListRequestType
975
+ #
976
+ # RETURNS
977
+ # getSellerListResponse GetSellerListResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellerListResponseType
978
+ #
979
+ getSellerListRequest = nil
980
+ puts obj.getSellerList(getSellerListRequest)
981
+
982
+ # SYNOPSIS
983
+ # getSellerPayments(getSellerPaymentsRequest)
984
+ #
985
+ # ARGS
986
+ # getSellerPaymentsRequest GetSellerPaymentsRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellerPaymentsRequestType
987
+ #
988
+ # RETURNS
989
+ # getSellerPaymentsResponse GetSellerPaymentsResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellerPaymentsResponseType
990
+ #
991
+ getSellerPaymentsRequest = nil
992
+ puts obj.getSellerPayments(getSellerPaymentsRequest)
993
+
994
+ # SYNOPSIS
995
+ # getSellerTransactions(getSellerTransactionsRequest)
996
+ #
997
+ # ARGS
998
+ # getSellerTransactionsRequest GetSellerTransactionsRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellerTransactionsRequestType
999
+ #
1000
+ # RETURNS
1001
+ # getSellerTransactionsResponse GetSellerTransactionsResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellerTransactionsResponseType
1002
+ #
1003
+ getSellerTransactionsRequest = nil
1004
+ puts obj.getSellerTransactions(getSellerTransactionsRequest)
1005
+
1006
+ # SYNOPSIS
1007
+ # getSellingManagerAlerts(getSellingManagerAlertsRequest)
1008
+ #
1009
+ # ARGS
1010
+ # getSellingManagerAlertsRequest GetSellingManagerAlertsRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerAlertsRequestType
1011
+ #
1012
+ # RETURNS
1013
+ # getSellingManagerAlertsResponse GetSellingManagerAlertsResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerAlertsResponseType
1014
+ #
1015
+ getSellingManagerAlertsRequest = nil
1016
+ puts obj.getSellingManagerAlerts(getSellingManagerAlertsRequest)
1017
+
1018
+ # SYNOPSIS
1019
+ # getSellingManagerEmailLog(getSellingManagerEmailLogRequest)
1020
+ #
1021
+ # ARGS
1022
+ # getSellingManagerEmailLogRequest GetSellingManagerEmailLogRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerEmailLogRequestType
1023
+ #
1024
+ # RETURNS
1025
+ # getSellingManagerEmailLogResponse GetSellingManagerEmailLogResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerEmailLogResponseType
1026
+ #
1027
+ getSellingManagerEmailLogRequest = nil
1028
+ puts obj.getSellingManagerEmailLog(getSellingManagerEmailLogRequest)
1029
+
1030
+ # SYNOPSIS
1031
+ # getSellingManagerInventory(getSellingManagerInventoryRequest)
1032
+ #
1033
+ # ARGS
1034
+ # getSellingManagerInventoryRequest GetSellingManagerInventoryRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerInventoryRequestType
1035
+ #
1036
+ # RETURNS
1037
+ # getSellingManagerInventoryResponse GetSellingManagerInventoryResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerInventoryResponseType
1038
+ #
1039
+ getSellingManagerInventoryRequest = nil
1040
+ puts obj.getSellingManagerInventory(getSellingManagerInventoryRequest)
1041
+
1042
+ # SYNOPSIS
1043
+ # getSellingManagerInventoryFolder(getSellingManagerInventoryFolderRequest)
1044
+ #
1045
+ # ARGS
1046
+ # getSellingManagerInventoryFolderRequest GetSellingManagerInventoryFolderRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerInventoryFolderRequestType
1047
+ #
1048
+ # RETURNS
1049
+ # getSellingManagerInventoryFolderResponse GetSellingManagerInventoryFolderResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerInventoryFolderResponseType
1050
+ #
1051
+ getSellingManagerInventoryFolderRequest = nil
1052
+ puts obj.getSellingManagerInventoryFolder(getSellingManagerInventoryFolderRequest)
1053
+
1054
+ # SYNOPSIS
1055
+ # getSellingManagerItemAutomationRule(getSellingManagerItemAutomationRuleRequest)
1056
+ #
1057
+ # ARGS
1058
+ # getSellingManagerItemAutomationRuleRequest GetSellingManagerItemAutomationRuleRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerItemAutomationRuleRequestType
1059
+ #
1060
+ # RETURNS
1061
+ # getSellingManagerItemAutomationRuleResponse GetSellingManagerItemAutomationRuleResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerItemAutomationRuleResponseType
1062
+ #
1063
+ getSellingManagerItemAutomationRuleRequest = nil
1064
+ puts obj.getSellingManagerItemAutomationRule(getSellingManagerItemAutomationRuleRequest)
1065
+
1066
+ # SYNOPSIS
1067
+ # getSellingManagerSaleRecord(getSellingManagerSaleRecordRequest)
1068
+ #
1069
+ # ARGS
1070
+ # getSellingManagerSaleRecordRequest GetSellingManagerSaleRecordRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerSaleRecordRequestType
1071
+ #
1072
+ # RETURNS
1073
+ # getSellingManagerSaleRecordResponse GetSellingManagerSaleRecordResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerSaleRecordResponseType
1074
+ #
1075
+ getSellingManagerSaleRecordRequest = nil
1076
+ puts obj.getSellingManagerSaleRecord(getSellingManagerSaleRecordRequest)
1077
+
1078
+ # SYNOPSIS
1079
+ # getSellingManagerSoldListings(getSellingManagerSoldListingsRequest)
1080
+ #
1081
+ # ARGS
1082
+ # getSellingManagerSoldListingsRequest GetSellingManagerSoldListingsRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerSoldListingsRequestType
1083
+ #
1084
+ # RETURNS
1085
+ # getSellingManagerSoldListingsResponse GetSellingManagerSoldListingsResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerSoldListingsResponseType
1086
+ #
1087
+ getSellingManagerSoldListingsRequest = nil
1088
+ puts obj.getSellingManagerSoldListings(getSellingManagerSoldListingsRequest)
1089
+
1090
+ # SYNOPSIS
1091
+ # getSellingManagerTemplateAutomationRule(getSellingManagerTemplateAutomationRuleRequest)
1092
+ #
1093
+ # ARGS
1094
+ # getSellingManagerTemplateAutomationRuleRequest GetSellingManagerTemplateAutomationRuleRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerTemplateAutomationRuleRequestType
1095
+ #
1096
+ # RETURNS
1097
+ # getSellingManagerTemplateAutomationRuleResponse GetSellingManagerTemplateAutomationRuleResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerTemplateAutomationRuleResponseType
1098
+ #
1099
+ getSellingManagerTemplateAutomationRuleRequest = nil
1100
+ puts obj.getSellingManagerTemplateAutomationRule(getSellingManagerTemplateAutomationRuleRequest)
1101
+
1102
+ # SYNOPSIS
1103
+ # getSellingManagerTemplates(getSellingManagerTemplatesRequest)
1104
+ #
1105
+ # ARGS
1106
+ # getSellingManagerTemplatesRequest GetSellingManagerTemplatesRequestType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerTemplatesRequestType
1107
+ #
1108
+ # RETURNS
1109
+ # getSellingManagerTemplatesResponse GetSellingManagerTemplatesResponseType - {urn:ebay:apis:eBLBaseComponents}GetSellingManagerTemplatesResponseType
1110
+ #
1111
+ getSellingManagerTemplatesRequest = nil
1112
+ puts obj.getSellingManagerTemplates(getSellingManagerTemplatesRequest)
1113
+
1114
+ # SYNOPSIS
1115
+ # getSessionID(getSessionIDRequest)
1116
+ #
1117
+ # ARGS
1118
+ # getSessionIDRequest GetSessionIDRequestType - {urn:ebay:apis:eBLBaseComponents}GetSessionIDRequestType
1119
+ #
1120
+ # RETURNS
1121
+ # getSessionIDResponse GetSessionIDResponseType - {urn:ebay:apis:eBLBaseComponents}GetSessionIDResponseType
1122
+ #
1123
+ getSessionIDRequest = nil
1124
+ puts obj.getSessionID(getSessionIDRequest)
1125
+
1126
+ # SYNOPSIS
1127
+ # getShippingDiscountProfiles(getShippingDiscountProfilesRequest)
1128
+ #
1129
+ # ARGS
1130
+ # getShippingDiscountProfilesRequest GetShippingDiscountProfilesRequestType - {urn:ebay:apis:eBLBaseComponents}GetShippingDiscountProfilesRequestType
1131
+ #
1132
+ # RETURNS
1133
+ # getShippingDiscountProfilesResponse GetShippingDiscountProfilesResponseType - {urn:ebay:apis:eBLBaseComponents}GetShippingDiscountProfilesResponseType
1134
+ #
1135
+ getShippingDiscountProfilesRequest = nil
1136
+ puts obj.getShippingDiscountProfiles(getShippingDiscountProfilesRequest)
1137
+
1138
+ # SYNOPSIS
1139
+ # getStore(getStoreRequest)
1140
+ #
1141
+ # ARGS
1142
+ # getStoreRequest GetStoreRequestType - {urn:ebay:apis:eBLBaseComponents}GetStoreRequestType
1143
+ #
1144
+ # RETURNS
1145
+ # getStoreResponse GetStoreResponseType - {urn:ebay:apis:eBLBaseComponents}GetStoreResponseType
1146
+ #
1147
+ getStoreRequest = nil
1148
+ puts obj.getStore(getStoreRequest)
1149
+
1150
+ # SYNOPSIS
1151
+ # getStoreCategoryUpdateStatus(getStoreCategoryUpdateStatusRequest)
1152
+ #
1153
+ # ARGS
1154
+ # getStoreCategoryUpdateStatusRequest GetStoreCategoryUpdateStatusRequestType - {urn:ebay:apis:eBLBaseComponents}GetStoreCategoryUpdateStatusRequestType
1155
+ #
1156
+ # RETURNS
1157
+ # getStoreCategoryUpdateStatusResponse GetStoreCategoryUpdateStatusResponseType - {urn:ebay:apis:eBLBaseComponents}GetStoreCategoryUpdateStatusResponseType
1158
+ #
1159
+ getStoreCategoryUpdateStatusRequest = nil
1160
+ puts obj.getStoreCategoryUpdateStatus(getStoreCategoryUpdateStatusRequest)
1161
+
1162
+ # SYNOPSIS
1163
+ # getStoreCustomPage(getStoreCustomPageRequest)
1164
+ #
1165
+ # ARGS
1166
+ # getStoreCustomPageRequest GetStoreCustomPageRequestType - {urn:ebay:apis:eBLBaseComponents}GetStoreCustomPageRequestType
1167
+ #
1168
+ # RETURNS
1169
+ # getStoreCustomPageResponse GetStoreCustomPageResponseType - {urn:ebay:apis:eBLBaseComponents}GetStoreCustomPageResponseType
1170
+ #
1171
+ getStoreCustomPageRequest = nil
1172
+ puts obj.getStoreCustomPage(getStoreCustomPageRequest)
1173
+
1174
+ # SYNOPSIS
1175
+ # getStoreOptions(getStoreOptionsRequest)
1176
+ #
1177
+ # ARGS
1178
+ # getStoreOptionsRequest GetStoreOptionsRequestType - {urn:ebay:apis:eBLBaseComponents}GetStoreOptionsRequestType
1179
+ #
1180
+ # RETURNS
1181
+ # getStoreOptionsResponse GetStoreOptionsResponseType - {urn:ebay:apis:eBLBaseComponents}GetStoreOptionsResponseType
1182
+ #
1183
+ getStoreOptionsRequest = nil
1184
+ puts obj.getStoreOptions(getStoreOptionsRequest)
1185
+
1186
+ # SYNOPSIS
1187
+ # getStorePreferences(getStorePreferencesRequest)
1188
+ #
1189
+ # ARGS
1190
+ # getStorePreferencesRequest GetStorePreferencesRequestType - {urn:ebay:apis:eBLBaseComponents}GetStorePreferencesRequestType
1191
+ #
1192
+ # RETURNS
1193
+ # getStorePreferencesResponse GetStorePreferencesResponseType - {urn:ebay:apis:eBLBaseComponents}GetStorePreferencesResponseType
1194
+ #
1195
+ getStorePreferencesRequest = nil
1196
+ puts obj.getStorePreferences(getStorePreferencesRequest)
1197
+
1198
+ # SYNOPSIS
1199
+ # getSuggestedCategories(getSuggestedCategoriesRequest)
1200
+ #
1201
+ # ARGS
1202
+ # getSuggestedCategoriesRequest GetSuggestedCategoriesRequestType - {urn:ebay:apis:eBLBaseComponents}GetSuggestedCategoriesRequestType
1203
+ #
1204
+ # RETURNS
1205
+ # getSuggestedCategoriesResponse GetSuggestedCategoriesResponseType - {urn:ebay:apis:eBLBaseComponents}GetSuggestedCategoriesResponseType
1206
+ #
1207
+ getSuggestedCategoriesRequest = nil
1208
+ puts obj.getSuggestedCategories(getSuggestedCategoriesRequest)
1209
+
1210
+ # SYNOPSIS
1211
+ # getTaxTable(getTaxTableRequest)
1212
+ #
1213
+ # ARGS
1214
+ # getTaxTableRequest GetTaxTableRequestType - {urn:ebay:apis:eBLBaseComponents}GetTaxTableRequestType
1215
+ #
1216
+ # RETURNS
1217
+ # getTaxTableResponse GetTaxTableResponseType - {urn:ebay:apis:eBLBaseComponents}GetTaxTableResponseType
1218
+ #
1219
+ getTaxTableRequest = nil
1220
+ puts obj.getTaxTable(getTaxTableRequest)
1221
+
1222
+ # SYNOPSIS
1223
+ # getTokenStatus(getTokenStatusRequest)
1224
+ #
1225
+ # ARGS
1226
+ # getTokenStatusRequest GetTokenStatusRequestType - {urn:ebay:apis:eBLBaseComponents}GetTokenStatusRequestType
1227
+ #
1228
+ # RETURNS
1229
+ # getTokenStatusResponse GetTokenStatusResponseType - {urn:ebay:apis:eBLBaseComponents}GetTokenStatusResponseType
1230
+ #
1231
+ getTokenStatusRequest = nil
1232
+ puts obj.getTokenStatus(getTokenStatusRequest)
1233
+
1234
+ # SYNOPSIS
1235
+ # getUser(getUserRequest)
1236
+ #
1237
+ # ARGS
1238
+ # getUserRequest GetUserRequestType - {urn:ebay:apis:eBLBaseComponents}GetUserRequestType
1239
+ #
1240
+ # RETURNS
1241
+ # getUserResponse GetUserResponseType - {urn:ebay:apis:eBLBaseComponents}GetUserResponseType
1242
+ #
1243
+ getUserRequest = nil
1244
+ puts obj.getUser(getUserRequest)
1245
+
1246
+ # SYNOPSIS
1247
+ # getUserContactDetails(getUserContactDetailsRequest)
1248
+ #
1249
+ # ARGS
1250
+ # getUserContactDetailsRequest GetUserContactDetailsRequestType - {urn:ebay:apis:eBLBaseComponents}GetUserContactDetailsRequestType
1251
+ #
1252
+ # RETURNS
1253
+ # getUserContactDetailsResponse GetUserContactDetailsResponseType - {urn:ebay:apis:eBLBaseComponents}GetUserContactDetailsResponseType
1254
+ #
1255
+ getUserContactDetailsRequest = nil
1256
+ puts obj.getUserContactDetails(getUserContactDetailsRequest)
1257
+
1258
+ # SYNOPSIS
1259
+ # getUserDisputes(getUserDisputesRequest)
1260
+ #
1261
+ # ARGS
1262
+ # getUserDisputesRequest GetUserDisputesRequestType - {urn:ebay:apis:eBLBaseComponents}GetUserDisputesRequestType
1263
+ #
1264
+ # RETURNS
1265
+ # getUserDisputesResponse GetUserDisputesResponseType - {urn:ebay:apis:eBLBaseComponents}GetUserDisputesResponseType
1266
+ #
1267
+ getUserDisputesRequest = nil
1268
+ puts obj.getUserDisputes(getUserDisputesRequest)
1269
+
1270
+ # SYNOPSIS
1271
+ # getUserPreferences(getUserPreferencesRequest)
1272
+ #
1273
+ # ARGS
1274
+ # getUserPreferencesRequest GetUserPreferencesRequestType - {urn:ebay:apis:eBLBaseComponents}GetUserPreferencesRequestType
1275
+ #
1276
+ # RETURNS
1277
+ # getUserPreferencesResponse GetUserPreferencesResponseType - {urn:ebay:apis:eBLBaseComponents}GetUserPreferencesResponseType
1278
+ #
1279
+ getUserPreferencesRequest = nil
1280
+ puts obj.getUserPreferences(getUserPreferencesRequest)
1281
+
1282
+ # SYNOPSIS
1283
+ # getVeROReasonCodeDetails(getVeROReasonCodeDetailsRequest)
1284
+ #
1285
+ # ARGS
1286
+ # getVeROReasonCodeDetailsRequest GetVeROReasonCodeDetailsRequestType - {urn:ebay:apis:eBLBaseComponents}GetVeROReasonCodeDetailsRequestType
1287
+ #
1288
+ # RETURNS
1289
+ # getVeROReasonCodeDetailsResponse GetVeROReasonCodeDetailsResponseType - {urn:ebay:apis:eBLBaseComponents}GetVeROReasonCodeDetailsResponseType
1290
+ #
1291
+ getVeROReasonCodeDetailsRequest = nil
1292
+ puts obj.getVeROReasonCodeDetails(getVeROReasonCodeDetailsRequest)
1293
+
1294
+ # SYNOPSIS
1295
+ # getVeROReportStatus(getVeROReportStatusRequest)
1296
+ #
1297
+ # ARGS
1298
+ # getVeROReportStatusRequest GetVeROReportStatusRequestType - {urn:ebay:apis:eBLBaseComponents}GetVeROReportStatusRequestType
1299
+ #
1300
+ # RETURNS
1301
+ # getVeROReportStatusResponse GetVeROReportStatusResponseType - {urn:ebay:apis:eBLBaseComponents}GetVeROReportStatusResponseType
1302
+ #
1303
+ getVeROReportStatusRequest = nil
1304
+ puts obj.getVeROReportStatus(getVeROReportStatusRequest)
1305
+
1306
+ # SYNOPSIS
1307
+ # getWantItNowPost(getWantItNowPostRequest)
1308
+ #
1309
+ # ARGS
1310
+ # getWantItNowPostRequest GetWantItNowPostRequestType - {urn:ebay:apis:eBLBaseComponents}GetWantItNowPostRequestType
1311
+ #
1312
+ # RETURNS
1313
+ # getWantItNowPostResponse GetWantItNowPostResponseType - {urn:ebay:apis:eBLBaseComponents}GetWantItNowPostResponseType
1314
+ #
1315
+ getWantItNowPostRequest = nil
1316
+ puts obj.getWantItNowPost(getWantItNowPostRequest)
1317
+
1318
+ # SYNOPSIS
1319
+ # getWantItNowSearchResults(getWantItNowSearchResultsRequest)
1320
+ #
1321
+ # ARGS
1322
+ # getWantItNowSearchResultsRequest GetWantItNowSearchResultsRequestType - {urn:ebay:apis:eBLBaseComponents}GetWantItNowSearchResultsRequestType
1323
+ #
1324
+ # RETURNS
1325
+ # getWantItNowSearchResultsResponse GetWantItNowSearchResultsResponseType - {urn:ebay:apis:eBLBaseComponents}GetWantItNowSearchResultsResponseType
1326
+ #
1327
+ getWantItNowSearchResultsRequest = nil
1328
+ puts obj.getWantItNowSearchResults(getWantItNowSearchResultsRequest)
1329
+
1330
+ # SYNOPSIS
1331
+ # geteBayDetails(geteBayDetailsRequest)
1332
+ #
1333
+ # ARGS
1334
+ # geteBayDetailsRequest GeteBayDetailsRequestType - {urn:ebay:apis:eBLBaseComponents}GeteBayDetailsRequestType
1335
+ #
1336
+ # RETURNS
1337
+ # geteBayDetailsResponse GeteBayDetailsResponseType - {urn:ebay:apis:eBLBaseComponents}GeteBayDetailsResponseType
1338
+ #
1339
+ geteBayDetailsRequest = nil
1340
+ puts obj.geteBayDetails(geteBayDetailsRequest)
1341
+
1342
+ # SYNOPSIS
1343
+ # geteBayOfficialTime(geteBayOfficialTimeRequest)
1344
+ #
1345
+ # ARGS
1346
+ # geteBayOfficialTimeRequest GeteBayOfficialTimeRequestType - {urn:ebay:apis:eBLBaseComponents}GeteBayOfficialTimeRequestType
1347
+ #
1348
+ # RETURNS
1349
+ # geteBayOfficialTimeResponse GeteBayOfficialTimeResponseType - {urn:ebay:apis:eBLBaseComponents}GeteBayOfficialTimeResponseType
1350
+ #
1351
+ geteBayOfficialTimeRequest = nil
1352
+ puts obj.geteBayOfficialTime(geteBayOfficialTimeRequest)
1353
+
1354
+ # SYNOPSIS
1355
+ # issueRefund(issueRefundRequest)
1356
+ #
1357
+ # ARGS
1358
+ # issueRefundRequest IssueRefundRequestType - {urn:ebay:apis:eBLBaseComponents}IssueRefundRequestType
1359
+ #
1360
+ # RETURNS
1361
+ # issueRefundResponse IssueRefundResponseType - {urn:ebay:apis:eBLBaseComponents}IssueRefundResponseType
1362
+ #
1363
+ issueRefundRequest = nil
1364
+ puts obj.issueRefund(issueRefundRequest)
1365
+
1366
+ # SYNOPSIS
1367
+ # leaveFeedback(leaveFeedbackRequest)
1368
+ #
1369
+ # ARGS
1370
+ # leaveFeedbackRequest LeaveFeedbackRequestType - {urn:ebay:apis:eBLBaseComponents}LeaveFeedbackRequestType
1371
+ #
1372
+ # RETURNS
1373
+ # leaveFeedbackResponse LeaveFeedbackResponseType - {urn:ebay:apis:eBLBaseComponents}LeaveFeedbackResponseType
1374
+ #
1375
+ leaveFeedbackRequest = nil
1376
+ puts obj.leaveFeedback(leaveFeedbackRequest)
1377
+
1378
+ # SYNOPSIS
1379
+ # moveSellingManagerInventoryFolder(moveSellingManagerInventoryFolderRequest)
1380
+ #
1381
+ # ARGS
1382
+ # moveSellingManagerInventoryFolderRequest MoveSellingManagerInventoryFolderRequestType - {urn:ebay:apis:eBLBaseComponents}MoveSellingManagerInventoryFolderRequestType
1383
+ #
1384
+ # RETURNS
1385
+ # moveSellingManagerInventoryFolderResponse MoveSellingManagerInventoryFolderResponseType - {urn:ebay:apis:eBLBaseComponents}MoveSellingManagerInventoryFolderResponseType
1386
+ #
1387
+ moveSellingManagerInventoryFolderRequest = nil
1388
+ puts obj.moveSellingManagerInventoryFolder(moveSellingManagerInventoryFolderRequest)
1389
+
1390
+ # SYNOPSIS
1391
+ # placeOffer(placeOfferRequest)
1392
+ #
1393
+ # ARGS
1394
+ # placeOfferRequest PlaceOfferRequestType - {urn:ebay:apis:eBLBaseComponents}PlaceOfferRequestType
1395
+ #
1396
+ # RETURNS
1397
+ # placeOfferResponse PlaceOfferResponseType - {urn:ebay:apis:eBLBaseComponents}PlaceOfferResponseType
1398
+ #
1399
+ placeOfferRequest = nil
1400
+ puts obj.placeOffer(placeOfferRequest)
1401
+
1402
+ # SYNOPSIS
1403
+ # relistFixedPriceItem(relistFixedPriceItemRequest)
1404
+ #
1405
+ # ARGS
1406
+ # relistFixedPriceItemRequest RelistFixedPriceItemRequestType - {urn:ebay:apis:eBLBaseComponents}RelistFixedPriceItemRequestType
1407
+ #
1408
+ # RETURNS
1409
+ # relistFixedPriceItemResponse RelistFixedPriceItemResponseType - {urn:ebay:apis:eBLBaseComponents}RelistFixedPriceItemResponseType
1410
+ #
1411
+ relistFixedPriceItemRequest = nil
1412
+ puts obj.relistFixedPriceItem(relistFixedPriceItemRequest)
1413
+
1414
+ # SYNOPSIS
1415
+ # relistItem(relistItemRequest)
1416
+ #
1417
+ # ARGS
1418
+ # relistItemRequest RelistItemRequestType - {urn:ebay:apis:eBLBaseComponents}RelistItemRequestType
1419
+ #
1420
+ # RETURNS
1421
+ # relistItemResponse RelistItemResponseType - {urn:ebay:apis:eBLBaseComponents}RelistItemResponseType
1422
+ #
1423
+ relistItemRequest = nil
1424
+ puts obj.relistItem(relistItemRequest)
1425
+
1426
+ # SYNOPSIS
1427
+ # removeFromWatchList(removeFromWatchListRequest)
1428
+ #
1429
+ # ARGS
1430
+ # removeFromWatchListRequest RemoveFromWatchListRequestType - {urn:ebay:apis:eBLBaseComponents}RemoveFromWatchListRequestType
1431
+ #
1432
+ # RETURNS
1433
+ # removeFromWatchListResponse RemoveFromWatchListResponseType - {urn:ebay:apis:eBLBaseComponents}RemoveFromWatchListResponseType
1434
+ #
1435
+ removeFromWatchListRequest = nil
1436
+ puts obj.removeFromWatchList(removeFromWatchListRequest)
1437
+
1438
+ # SYNOPSIS
1439
+ # respondToBestOffer(respondToBestOfferRequest)
1440
+ #
1441
+ # ARGS
1442
+ # respondToBestOfferRequest RespondToBestOfferRequestType - {urn:ebay:apis:eBLBaseComponents}RespondToBestOfferRequestType
1443
+ #
1444
+ # RETURNS
1445
+ # respondToBestOfferResponse RespondToBestOfferResponseType - {urn:ebay:apis:eBLBaseComponents}RespondToBestOfferResponseType
1446
+ #
1447
+ respondToBestOfferRequest = nil
1448
+ puts obj.respondToBestOffer(respondToBestOfferRequest)
1449
+
1450
+ # SYNOPSIS
1451
+ # respondToFeedback(respondToFeedbackRequest)
1452
+ #
1453
+ # ARGS
1454
+ # respondToFeedbackRequest RespondToFeedbackRequestType - {urn:ebay:apis:eBLBaseComponents}RespondToFeedbackRequestType
1455
+ #
1456
+ # RETURNS
1457
+ # respondToFeedbackResponse RespondToFeedbackResponseType - {urn:ebay:apis:eBLBaseComponents}RespondToFeedbackResponseType
1458
+ #
1459
+ respondToFeedbackRequest = nil
1460
+ puts obj.respondToFeedback(respondToFeedbackRequest)
1461
+
1462
+ # SYNOPSIS
1463
+ # respondToWantItNowPost(respondToWantItNowPostRequest)
1464
+ #
1465
+ # ARGS
1466
+ # respondToWantItNowPostRequest RespondToWantItNowPostRequestType - {urn:ebay:apis:eBLBaseComponents}RespondToWantItNowPostRequestType
1467
+ #
1468
+ # RETURNS
1469
+ # respondToWantItNowPostResponse RespondToWantItNowPostResponseType - {urn:ebay:apis:eBLBaseComponents}RespondToWantItNowPostResponseType
1470
+ #
1471
+ respondToWantItNowPostRequest = nil
1472
+ puts obj.respondToWantItNowPost(respondToWantItNowPostRequest)
1473
+
1474
+ # SYNOPSIS
1475
+ # reviseCheckoutStatus(reviseCheckoutStatusRequest)
1476
+ #
1477
+ # ARGS
1478
+ # reviseCheckoutStatusRequest ReviseCheckoutStatusRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseCheckoutStatusRequestType
1479
+ #
1480
+ # RETURNS
1481
+ # reviseCheckoutStatusResponse ReviseCheckoutStatusResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseCheckoutStatusResponseType
1482
+ #
1483
+ reviseCheckoutStatusRequest = nil
1484
+ puts obj.reviseCheckoutStatus(reviseCheckoutStatusRequest)
1485
+
1486
+ # SYNOPSIS
1487
+ # reviseFixedPriceItem(reviseFixedPriceItemRequest)
1488
+ #
1489
+ # ARGS
1490
+ # reviseFixedPriceItemRequest ReviseFixedPriceItemRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseFixedPriceItemRequestType
1491
+ #
1492
+ # RETURNS
1493
+ # reviseFixedPriceItemResponse ReviseFixedPriceItemResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseFixedPriceItemResponseType
1494
+ #
1495
+ reviseFixedPriceItemRequest = nil
1496
+ puts obj.reviseFixedPriceItem(reviseFixedPriceItemRequest)
1497
+
1498
+ # SYNOPSIS
1499
+ # reviseInventoryStatus(reviseInventoryStatusRequest)
1500
+ #
1501
+ # ARGS
1502
+ # reviseInventoryStatusRequest ReviseInventoryStatusRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseInventoryStatusRequestType
1503
+ #
1504
+ # RETURNS
1505
+ # reviseInventoryStatusResponse ReviseInventoryStatusResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseInventoryStatusResponseType
1506
+ #
1507
+ reviseInventoryStatusRequest = nil
1508
+ puts obj.reviseInventoryStatus(reviseInventoryStatusRequest)
1509
+
1510
+ # SYNOPSIS
1511
+ # reviseItem(reviseItemRequest)
1512
+ #
1513
+ # ARGS
1514
+ # reviseItemRequest ReviseItemRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseItemRequestType
1515
+ #
1516
+ # RETURNS
1517
+ # reviseItemResponse ReviseItemResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseItemResponseType
1518
+ #
1519
+ reviseItemRequest = nil
1520
+ puts obj.reviseItem(reviseItemRequest)
1521
+
1522
+ # SYNOPSIS
1523
+ # reviseMyMessages(reviseMyMessagesRequest)
1524
+ #
1525
+ # ARGS
1526
+ # reviseMyMessagesRequest ReviseMyMessagesRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseMyMessagesRequestType
1527
+ #
1528
+ # RETURNS
1529
+ # reviseMyMessagesResponse ReviseMyMessagesResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseMyMessagesResponseType
1530
+ #
1531
+ reviseMyMessagesRequest = nil
1532
+ puts obj.reviseMyMessages(reviseMyMessagesRequest)
1533
+
1534
+ # SYNOPSIS
1535
+ # reviseMyMessagesFolders(reviseMyMessagesFoldersRequest)
1536
+ #
1537
+ # ARGS
1538
+ # reviseMyMessagesFoldersRequest ReviseMyMessagesFoldersRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseMyMessagesFoldersRequestType
1539
+ #
1540
+ # RETURNS
1541
+ # reviseMyMessagesFoldersResponse ReviseMyMessagesFoldersResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseMyMessagesFoldersResponseType
1542
+ #
1543
+ reviseMyMessagesFoldersRequest = nil
1544
+ puts obj.reviseMyMessagesFolders(reviseMyMessagesFoldersRequest)
1545
+
1546
+ # SYNOPSIS
1547
+ # reviseSellingManagerInventoryFolder(reviseSellingManagerInventoryFolderRequest)
1548
+ #
1549
+ # ARGS
1550
+ # reviseSellingManagerInventoryFolderRequest ReviseSellingManagerInventoryFolderRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseSellingManagerInventoryFolderRequestType
1551
+ #
1552
+ # RETURNS
1553
+ # reviseSellingManagerInventoryFolderResponse ReviseSellingManagerInventoryFolderResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseSellingManagerInventoryFolderResponseType
1554
+ #
1555
+ reviseSellingManagerInventoryFolderRequest = nil
1556
+ puts obj.reviseSellingManagerInventoryFolder(reviseSellingManagerInventoryFolderRequest)
1557
+
1558
+ # SYNOPSIS
1559
+ # reviseSellingManagerProduct(reviseSellingManagerProductRequest)
1560
+ #
1561
+ # ARGS
1562
+ # reviseSellingManagerProductRequest ReviseSellingManagerProductRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseSellingManagerProductRequestType
1563
+ #
1564
+ # RETURNS
1565
+ # reviseSellingManagerProductResponse ReviseSellingManagerProductResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseSellingManagerProductResponseType
1566
+ #
1567
+ reviseSellingManagerProductRequest = nil
1568
+ puts obj.reviseSellingManagerProduct(reviseSellingManagerProductRequest)
1569
+
1570
+ # SYNOPSIS
1571
+ # reviseSellingManagerSaleRecord(reviseSellingManagerSaleRecordRequest)
1572
+ #
1573
+ # ARGS
1574
+ # reviseSellingManagerSaleRecordRequest ReviseSellingManagerSaleRecordRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseSellingManagerSaleRecordRequestType
1575
+ #
1576
+ # RETURNS
1577
+ # reviseSellingManagerSaleRecordResponse ReviseSellingManagerSaleRecordResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseSellingManagerSaleRecordResponseType
1578
+ #
1579
+ reviseSellingManagerSaleRecordRequest = nil
1580
+ puts obj.reviseSellingManagerSaleRecord(reviseSellingManagerSaleRecordRequest)
1581
+
1582
+ # SYNOPSIS
1583
+ # reviseSellingManagerTemplate(reviseSellingManagerTemplateRequest)
1584
+ #
1585
+ # ARGS
1586
+ # reviseSellingManagerTemplateRequest ReviseSellingManagerTemplateRequestType - {urn:ebay:apis:eBLBaseComponents}ReviseSellingManagerTemplateRequestType
1587
+ #
1588
+ # RETURNS
1589
+ # reviseSellingManagerTemplateResponse ReviseSellingManagerTemplateResponseType - {urn:ebay:apis:eBLBaseComponents}ReviseSellingManagerTemplateResponseType
1590
+ #
1591
+ reviseSellingManagerTemplateRequest = nil
1592
+ puts obj.reviseSellingManagerTemplate(reviseSellingManagerTemplateRequest)
1593
+
1594
+ # SYNOPSIS
1595
+ # revokeToken(revokeTokenRequest)
1596
+ #
1597
+ # ARGS
1598
+ # revokeTokenRequest RevokeTokenRequestType - {urn:ebay:apis:eBLBaseComponents}RevokeTokenRequestType
1599
+ #
1600
+ # RETURNS
1601
+ # revokeTokenResponse RevokeTokenResponseType - {urn:ebay:apis:eBLBaseComponents}RevokeTokenResponseType
1602
+ #
1603
+ revokeTokenRequest = nil
1604
+ puts obj.revokeToken(revokeTokenRequest)
1605
+
1606
+ # SYNOPSIS
1607
+ # saveItemToSellingManagerTemplate(saveItemToSellingManagerTemplateRequest)
1608
+ #
1609
+ # ARGS
1610
+ # saveItemToSellingManagerTemplateRequest SaveItemToSellingManagerTemplateRequestType - {urn:ebay:apis:eBLBaseComponents}SaveItemToSellingManagerTemplateRequestType
1611
+ #
1612
+ # RETURNS
1613
+ # saveItemToSellingManagerTemplateResponse SaveItemToSellingManagerTemplateResponseType - {urn:ebay:apis:eBLBaseComponents}SaveItemToSellingManagerTemplateResponseType
1614
+ #
1615
+ saveItemToSellingManagerTemplateRequest = nil
1616
+ puts obj.saveItemToSellingManagerTemplate(saveItemToSellingManagerTemplateRequest)
1617
+
1618
+ # SYNOPSIS
1619
+ # sellerReverseDispute(sellerReverseDisputeRequest)
1620
+ #
1621
+ # ARGS
1622
+ # sellerReverseDisputeRequest SellerReverseDisputeRequestType - {urn:ebay:apis:eBLBaseComponents}SellerReverseDisputeRequestType
1623
+ #
1624
+ # RETURNS
1625
+ # sellerReverseDisputeResponse SellerReverseDisputeResponseType - {urn:ebay:apis:eBLBaseComponents}SellerReverseDisputeResponseType
1626
+ #
1627
+ sellerReverseDisputeRequest = nil
1628
+ puts obj.sellerReverseDispute(sellerReverseDisputeRequest)
1629
+
1630
+ # SYNOPSIS
1631
+ # sendInvoice(sendInvoiceRequest)
1632
+ #
1633
+ # ARGS
1634
+ # sendInvoiceRequest SendInvoiceRequestType - {urn:ebay:apis:eBLBaseComponents}SendInvoiceRequestType
1635
+ #
1636
+ # RETURNS
1637
+ # sendInvoiceResponse SendInvoiceResponseType - {urn:ebay:apis:eBLBaseComponents}SendInvoiceResponseType
1638
+ #
1639
+ sendInvoiceRequest = nil
1640
+ puts obj.sendInvoice(sendInvoiceRequest)
1641
+
1642
+ # SYNOPSIS
1643
+ # setMessagePreferences(setMessagePreferencesRequest)
1644
+ #
1645
+ # ARGS
1646
+ # setMessagePreferencesRequest SetMessagePreferencesRequestType - {urn:ebay:apis:eBLBaseComponents}SetMessagePreferencesRequestType
1647
+ #
1648
+ # RETURNS
1649
+ # setMessagePreferencesResponse SetMessagePreferencesResponseType - {urn:ebay:apis:eBLBaseComponents}SetMessagePreferencesResponseType
1650
+ #
1651
+ setMessagePreferencesRequest = nil
1652
+ puts obj.setMessagePreferences(setMessagePreferencesRequest)
1653
+
1654
+ # SYNOPSIS
1655
+ # setNotificationPreferences(setNotificationPreferencesRequest)
1656
+ #
1657
+ # ARGS
1658
+ # setNotificationPreferencesRequest SetNotificationPreferencesRequestType - {urn:ebay:apis:eBLBaseComponents}SetNotificationPreferencesRequestType
1659
+ #
1660
+ # RETURNS
1661
+ # setNotificationPreferencesResponse SetNotificationPreferencesResponseType - {urn:ebay:apis:eBLBaseComponents}SetNotificationPreferencesResponseType
1662
+ #
1663
+ setNotificationPreferencesRequest = nil
1664
+ puts obj.setNotificationPreferences(setNotificationPreferencesRequest)
1665
+
1666
+ # SYNOPSIS
1667
+ # setPictureManagerDetails(setPictureManagerDetailsRequest)
1668
+ #
1669
+ # ARGS
1670
+ # setPictureManagerDetailsRequest SetPictureManagerDetailsRequestType - {urn:ebay:apis:eBLBaseComponents}SetPictureManagerDetailsRequestType
1671
+ #
1672
+ # RETURNS
1673
+ # setPictureManagerDetailsResponse SetPictureManagerDetailsResponseType - {urn:ebay:apis:eBLBaseComponents}SetPictureManagerDetailsResponseType
1674
+ #
1675
+ setPictureManagerDetailsRequest = nil
1676
+ puts obj.setPictureManagerDetails(setPictureManagerDetailsRequest)
1677
+
1678
+ # SYNOPSIS
1679
+ # setPromotionalSale(setPromotionalSaleRequest)
1680
+ #
1681
+ # ARGS
1682
+ # setPromotionalSaleRequest SetPromotionalSaleRequestType - {urn:ebay:apis:eBLBaseComponents}SetPromotionalSaleRequestType
1683
+ #
1684
+ # RETURNS
1685
+ # setPromotionalSaleResponse SetPromotionalSaleResponseType - {urn:ebay:apis:eBLBaseComponents}SetPromotionalSaleResponseType
1686
+ #
1687
+ setPromotionalSaleRequest = nil
1688
+ puts obj.setPromotionalSale(setPromotionalSaleRequest)
1689
+
1690
+ # SYNOPSIS
1691
+ # setPromotionalSaleListings(setPromotionalSaleListingsRequest)
1692
+ #
1693
+ # ARGS
1694
+ # setPromotionalSaleListingsRequest SetPromotionalSaleListingsRequestType - {urn:ebay:apis:eBLBaseComponents}SetPromotionalSaleListingsRequestType
1695
+ #
1696
+ # RETURNS
1697
+ # setPromotionalSaleListingsResponse SetPromotionalSaleListingsResponseType - {urn:ebay:apis:eBLBaseComponents}SetPromotionalSaleListingsResponseType
1698
+ #
1699
+ setPromotionalSaleListingsRequest = nil
1700
+ puts obj.setPromotionalSaleListings(setPromotionalSaleListingsRequest)
1701
+
1702
+ # SYNOPSIS
1703
+ # setSellingManagerFeedbackOptions(setSellingManagerFeedbackOptionsRequest)
1704
+ #
1705
+ # ARGS
1706
+ # setSellingManagerFeedbackOptionsRequest SetSellingManagerFeedbackOptionsRequestType - {urn:ebay:apis:eBLBaseComponents}SetSellingManagerFeedbackOptionsRequestType
1707
+ #
1708
+ # RETURNS
1709
+ # setSellingManagerFeedbackOptionsResponse SetSellingManagerFeedbackOptionsResponseType - {urn:ebay:apis:eBLBaseComponents}SetSellingManagerFeedbackOptionsResponseType
1710
+ #
1711
+ setSellingManagerFeedbackOptionsRequest = nil
1712
+ puts obj.setSellingManagerFeedbackOptions(setSellingManagerFeedbackOptionsRequest)
1713
+
1714
+ # SYNOPSIS
1715
+ # setSellingManagerItemAutomationRule(setSellingManagerItemAutomationRuleRequest)
1716
+ #
1717
+ # ARGS
1718
+ # setSellingManagerItemAutomationRuleRequest SetSellingManagerItemAutomationRuleRequestType - {urn:ebay:apis:eBLBaseComponents}SetSellingManagerItemAutomationRuleRequestType
1719
+ #
1720
+ # RETURNS
1721
+ # setSellingManagerItemAutomationRuleResponse SetSellingManagerItemAutomationRuleResponseType - {urn:ebay:apis:eBLBaseComponents}SetSellingManagerItemAutomationRuleResponseType
1722
+ #
1723
+ setSellingManagerItemAutomationRuleRequest = nil
1724
+ puts obj.setSellingManagerItemAutomationRule(setSellingManagerItemAutomationRuleRequest)
1725
+
1726
+ # SYNOPSIS
1727
+ # setSellingManagerTemplateAutomationRule(setSellingManagerTemplateAutomationRuleRequest)
1728
+ #
1729
+ # ARGS
1730
+ # setSellingManagerTemplateAutomationRuleRequest SetSellingManagerTemplateAutomationRuleRequestType - {urn:ebay:apis:eBLBaseComponents}SetSellingManagerTemplateAutomationRuleRequestType
1731
+ #
1732
+ # RETURNS
1733
+ # setSellingManagerTemplateAutomationRuleResponse SetSellingManagerTemplateAutomationRuleResponseType - {urn:ebay:apis:eBLBaseComponents}SetSellingManagerTemplateAutomationRuleResponseType
1734
+ #
1735
+ setSellingManagerTemplateAutomationRuleRequest = nil
1736
+ puts obj.setSellingManagerTemplateAutomationRule(setSellingManagerTemplateAutomationRuleRequest)
1737
+
1738
+ # SYNOPSIS
1739
+ # setShippingDiscountProfiles(setShippingDiscountProfilesRequest)
1740
+ #
1741
+ # ARGS
1742
+ # setShippingDiscountProfilesRequest SetShippingDiscountProfilesRequestType - {urn:ebay:apis:eBLBaseComponents}SetShippingDiscountProfilesRequestType
1743
+ #
1744
+ # RETURNS
1745
+ # setShippingDiscountProfilesResponse SetShippingDiscountProfilesResponseType - {urn:ebay:apis:eBLBaseComponents}SetShippingDiscountProfilesResponseType
1746
+ #
1747
+ setShippingDiscountProfilesRequest = nil
1748
+ puts obj.setShippingDiscountProfiles(setShippingDiscountProfilesRequest)
1749
+
1750
+ # SYNOPSIS
1751
+ # setStore(setStoreRequest)
1752
+ #
1753
+ # ARGS
1754
+ # setStoreRequest SetStoreRequestType - {urn:ebay:apis:eBLBaseComponents}SetStoreRequestType
1755
+ #
1756
+ # RETURNS
1757
+ # setStoreResponse SetStoreResponseType - {urn:ebay:apis:eBLBaseComponents}SetStoreResponseType
1758
+ #
1759
+ setStoreRequest = nil
1760
+ puts obj.setStore(setStoreRequest)
1761
+
1762
+ # SYNOPSIS
1763
+ # setStoreCategories(setStoreCategoriesRequest)
1764
+ #
1765
+ # ARGS
1766
+ # setStoreCategoriesRequest SetStoreCategoriesRequestType - {urn:ebay:apis:eBLBaseComponents}SetStoreCategoriesRequestType
1767
+ #
1768
+ # RETURNS
1769
+ # setStoreCategoriesResponse SetStoreCategoriesResponseType - {urn:ebay:apis:eBLBaseComponents}SetStoreCategoriesResponseType
1770
+ #
1771
+ setStoreCategoriesRequest = nil
1772
+ puts obj.setStoreCategories(setStoreCategoriesRequest)
1773
+
1774
+ # SYNOPSIS
1775
+ # setStoreCustomPage(setStoreCustomPageRequest)
1776
+ #
1777
+ # ARGS
1778
+ # setStoreCustomPageRequest SetStoreCustomPageRequestType - {urn:ebay:apis:eBLBaseComponents}SetStoreCustomPageRequestType
1779
+ #
1780
+ # RETURNS
1781
+ # setStoreCustomPageResponse SetStoreCustomPageResponseType - {urn:ebay:apis:eBLBaseComponents}SetStoreCustomPageResponseType
1782
+ #
1783
+ setStoreCustomPageRequest = nil
1784
+ puts obj.setStoreCustomPage(setStoreCustomPageRequest)
1785
+
1786
+ # SYNOPSIS
1787
+ # setStorePreferences(setStorePreferencesRequest)
1788
+ #
1789
+ # ARGS
1790
+ # setStorePreferencesRequest SetStorePreferencesRequestType - {urn:ebay:apis:eBLBaseComponents}SetStorePreferencesRequestType
1791
+ #
1792
+ # RETURNS
1793
+ # setStorePreferencesResponse SetStorePreferencesResponseType - {urn:ebay:apis:eBLBaseComponents}SetStorePreferencesResponseType
1794
+ #
1795
+ setStorePreferencesRequest = nil
1796
+ puts obj.setStorePreferences(setStorePreferencesRequest)
1797
+
1798
+ # SYNOPSIS
1799
+ # setTaxTable(setTaxTableRequest)
1800
+ #
1801
+ # ARGS
1802
+ # setTaxTableRequest SetTaxTableRequestType - {urn:ebay:apis:eBLBaseComponents}SetTaxTableRequestType
1803
+ #
1804
+ # RETURNS
1805
+ # setTaxTableResponse SetTaxTableResponseType - {urn:ebay:apis:eBLBaseComponents}SetTaxTableResponseType
1806
+ #
1807
+ setTaxTableRequest = nil
1808
+ puts obj.setTaxTable(setTaxTableRequest)
1809
+
1810
+ # SYNOPSIS
1811
+ # setUserNotes(setUserNotesRequest)
1812
+ #
1813
+ # ARGS
1814
+ # setUserNotesRequest SetUserNotesRequestType - {urn:ebay:apis:eBLBaseComponents}SetUserNotesRequestType
1815
+ #
1816
+ # RETURNS
1817
+ # setUserNotesResponse SetUserNotesResponseType - {urn:ebay:apis:eBLBaseComponents}SetUserNotesResponseType
1818
+ #
1819
+ setUserNotesRequest = nil
1820
+ puts obj.setUserNotes(setUserNotesRequest)
1821
+
1822
+ # SYNOPSIS
1823
+ # setUserPreferences(setUserPreferencesRequest)
1824
+ #
1825
+ # ARGS
1826
+ # setUserPreferencesRequest SetUserPreferencesRequestType - {urn:ebay:apis:eBLBaseComponents}SetUserPreferencesRequestType
1827
+ #
1828
+ # RETURNS
1829
+ # setUserPreferencesResponse SetUserPreferencesResponseType - {urn:ebay:apis:eBLBaseComponents}SetUserPreferencesResponseType
1830
+ #
1831
+ setUserPreferencesRequest = nil
1832
+ puts obj.setUserPreferences(setUserPreferencesRequest)
1833
+
1834
+ # SYNOPSIS
1835
+ # uploadSiteHostedPictures(uploadSiteHostedPicturesRequest)
1836
+ #
1837
+ # ARGS
1838
+ # uploadSiteHostedPicturesRequest UploadSiteHostedPicturesRequestType - {urn:ebay:apis:eBLBaseComponents}UploadSiteHostedPicturesRequestType
1839
+ #
1840
+ # RETURNS
1841
+ # uploadSiteHostedPicturesResponse UploadSiteHostedPicturesResponseType - {urn:ebay:apis:eBLBaseComponents}UploadSiteHostedPicturesResponseType
1842
+ #
1843
+ uploadSiteHostedPicturesRequest = nil
1844
+ puts obj.uploadSiteHostedPictures(uploadSiteHostedPicturesRequest)
1845
+
1846
+ # SYNOPSIS
1847
+ # validateChallengeInput(validateChallengeInputRequest)
1848
+ #
1849
+ # ARGS
1850
+ # validateChallengeInputRequest ValidateChallengeInputRequestType - {urn:ebay:apis:eBLBaseComponents}ValidateChallengeInputRequestType
1851
+ #
1852
+ # RETURNS
1853
+ # validateChallengeInputResponse ValidateChallengeInputResponseType - {urn:ebay:apis:eBLBaseComponents}ValidateChallengeInputResponseType
1854
+ #
1855
+ validateChallengeInputRequest = nil
1856
+ puts obj.validateChallengeInput(validateChallengeInputRequest)
1857
+
1858
+ # SYNOPSIS
1859
+ # validateTestUserRegistration(validateTestUserRegistrationRequest)
1860
+ #
1861
+ # ARGS
1862
+ # validateTestUserRegistrationRequest ValidateTestUserRegistrationRequestType - {urn:ebay:apis:eBLBaseComponents}ValidateTestUserRegistrationRequestType
1863
+ #
1864
+ # RETURNS
1865
+ # validateTestUserRegistrationResponse ValidateTestUserRegistrationResponseType - {urn:ebay:apis:eBLBaseComponents}ValidateTestUserRegistrationResponseType
1866
+ #
1867
+ validateTestUserRegistrationRequest = nil
1868
+ puts obj.validateTestUserRegistration(validateTestUserRegistrationRequest)
1869
+
1870
+ # SYNOPSIS
1871
+ # veROReportItems(veROReportItemsRequest)
1872
+ #
1873
+ # ARGS
1874
+ # veROReportItemsRequest VeROReportItemsRequestType - {urn:ebay:apis:eBLBaseComponents}VeROReportItemsRequestType
1875
+ #
1876
+ # RETURNS
1877
+ # veROReportItemsResponse VeROReportItemsResponseType - {urn:ebay:apis:eBLBaseComponents}VeROReportItemsResponseType
1878
+ #
1879
+ veROReportItemsRequest = nil
1880
+ puts obj.veROReportItems(veROReportItemsRequest)
1881
+
1882
+ # SYNOPSIS
1883
+ # verifyAddFixedPriceItem(verifyAddFixedPriceItemRequest)
1884
+ #
1885
+ # ARGS
1886
+ # verifyAddFixedPriceItemRequest VerifyAddFixedPriceItemRequestType - {urn:ebay:apis:eBLBaseComponents}VerifyAddFixedPriceItemRequestType
1887
+ #
1888
+ # RETURNS
1889
+ # verifyAddFixedPriceItemResponse VerifyAddFixedPriceItemResponseType - {urn:ebay:apis:eBLBaseComponents}VerifyAddFixedPriceItemResponseType
1890
+ #
1891
+ verifyAddFixedPriceItemRequest = nil
1892
+ puts obj.verifyAddFixedPriceItem(verifyAddFixedPriceItemRequest)
1893
+
1894
+ # SYNOPSIS
1895
+ # verifyAddItem(verifyAddItemRequest)
1896
+ #
1897
+ # ARGS
1898
+ # verifyAddItemRequest VerifyAddItemRequestType - {urn:ebay:apis:eBLBaseComponents}VerifyAddItemRequestType
1899
+ #
1900
+ # RETURNS
1901
+ # verifyAddItemResponse VerifyAddItemResponseType - {urn:ebay:apis:eBLBaseComponents}VerifyAddItemResponseType
1902
+ #
1903
+ verifyAddItemRequest = nil
1904
+ puts obj.verifyAddItem(verifyAddItemRequest)
1905
+
1906
+ # SYNOPSIS
1907
+ # verifyAddSecondChanceItem(verifyAddSecondChanceItemRequest)
1908
+ #
1909
+ # ARGS
1910
+ # verifyAddSecondChanceItemRequest VerifyAddSecondChanceItemRequestType - {urn:ebay:apis:eBLBaseComponents}VerifyAddSecondChanceItemRequestType
1911
+ #
1912
+ # RETURNS
1913
+ # verifyAddSecondChanceItemResponse VerifyAddSecondChanceItemResponseType - {urn:ebay:apis:eBLBaseComponents}VerifyAddSecondChanceItemResponseType
1914
+ #
1915
+ verifyAddSecondChanceItemRequest = nil
1916
+ puts obj.verifyAddSecondChanceItem(verifyAddSecondChanceItemRequest)
1917
+
1918
+ # SYNOPSIS
1919
+ # verifyRelistItem(verifyRelistItemRequest)
1920
+ #
1921
+ # ARGS
1922
+ # verifyRelistItemRequest VerifyRelistItemRequestType - {urn:ebay:apis:eBLBaseComponents}VerifyRelistItemRequestType
1923
+ #
1924
+ # RETURNS
1925
+ # verifyRelistItemResponse VerifyRelistItemResponseType - {urn:ebay:apis:eBLBaseComponents}VerifyRelistItemResponseType
1926
+ #
1927
+ verifyRelistItemRequest = nil
1928
+ puts obj.verifyRelistItem(verifyRelistItemRequest)
1929
+
1930
+
1931
+