Class: GetBestOffersResponseType

Inherits:
Object
  • Object
show all
Defined in:
lib/eBay.rb

Overview

urn:ebay:apis:eBLBaseComponentsGetBestOffersResponseType

Constant Summary collapse

@@schema_type =
"GetBestOffersResponseType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["timestamp", ["SOAP::SOAPDateTime", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Timestamp")]],
  ["ack", ["AckCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Ack")]],
  ["correlationID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CorrelationID")]],
  ["errors", ["ErrorType[]", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Errors")]],
  ["message", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Message")]],
  ["version", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Version")]],
  ["build", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Build")]],
  ["notificationEventName", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "NotificationEventName")]],
  ["duplicateInvocationDetails", ["DuplicateInvocationDetailsType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "DuplicateInvocationDetails")]],
  ["recipientUserID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "RecipientUserID")]],
  ["notificationSignature", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "NotificationSignature")]],
  ["hardExpirationWarning", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "HardExpirationWarning")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]],
  ["bestOfferArray", ["BestOfferArrayType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BestOfferArray")]],
  ["item", ["ItemType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Item")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(timestamp = nil, ack = nil, correlationID = nil, errors = [], message = nil, version = nil, build = nil, notificationEventName = nil, duplicateInvocationDetails = nil, recipientUserID = nil, notificationSignature = nil, hardExpirationWarning = nil, bestOfferArray = nil, item = nil) ⇒ GetBestOffersResponseType

Returns a new instance of GetBestOffersResponseType.



2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
# File 'lib/eBay.rb', line 2291

def initialize(timestamp = nil, ack = nil, correlationID = nil, errors = [], message = nil, version = nil, build = nil, notificationEventName = nil, duplicateInvocationDetails = nil, recipientUserID = nil, notificationSignature = nil, hardExpirationWarning = nil, bestOfferArray = nil, item = nil)
  @timestamp = timestamp
  @ack = ack
  @correlationID = correlationID
  @errors = errors
  @message = message
  @version = version
  @build = build
  @notificationEventName = notificationEventName
  @duplicateInvocationDetails = duplicateInvocationDetails
  @recipientUserID = recipientUserID
  @notificationSignature = notificationSignature
  @hardExpirationWarning = hardExpirationWarning
  @__xmlele_any = nil
  @bestOfferArray = bestOfferArray
  @item = item
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



2283
2284
2285
# File 'lib/eBay.rb', line 2283

def __xmlele_any
  @__xmlele_any
end

#ackObject

Returns the value of attribute ack.



2272
2273
2274
# File 'lib/eBay.rb', line 2272

def ack
  @ack
end

#bestOfferArrayObject

Returns the value of attribute bestOfferArray.



2284
2285
2286
# File 'lib/eBay.rb', line 2284

def bestOfferArray
  @bestOfferArray
end

#buildObject

Returns the value of attribute build.



2277
2278
2279
# File 'lib/eBay.rb', line 2277

def build
  @build
end

#correlationIDObject

Returns the value of attribute correlationID.



2273
2274
2275
# File 'lib/eBay.rb', line 2273

def correlationID
  @correlationID
end

#duplicateInvocationDetailsObject

Returns the value of attribute duplicateInvocationDetails.



2279
2280
2281
# File 'lib/eBay.rb', line 2279

def duplicateInvocationDetails
  @duplicateInvocationDetails
end

#errorsObject

Returns the value of attribute errors.



2274
2275
2276
# File 'lib/eBay.rb', line 2274

def errors
  @errors
end

#hardExpirationWarningObject

Returns the value of attribute hardExpirationWarning.



2282
2283
2284
# File 'lib/eBay.rb', line 2282

def hardExpirationWarning
  @hardExpirationWarning
end

#itemObject

Returns the value of attribute item.



2285
2286
2287
# File 'lib/eBay.rb', line 2285

def item
  @item
end

#messageObject

Returns the value of attribute message.



2275
2276
2277
# File 'lib/eBay.rb', line 2275

def message
  @message
end

#notificationEventNameObject

Returns the value of attribute notificationEventName.



2278
2279
2280
# File 'lib/eBay.rb', line 2278

def notificationEventName
  @notificationEventName
end

#notificationSignatureObject

Returns the value of attribute notificationSignature.



2281
2282
2283
# File 'lib/eBay.rb', line 2281

def notificationSignature
  @notificationSignature
end

#recipientUserIDObject

Returns the value of attribute recipientUserID.



2280
2281
2282
# File 'lib/eBay.rb', line 2280

def recipientUserID
  @recipientUserID
end

#timestampObject

Returns the value of attribute timestamp.



2271
2272
2273
# File 'lib/eBay.rb', line 2271

def timestamp
  @timestamp
end

#versionObject

Returns the value of attribute version.



2276
2277
2278
# File 'lib/eBay.rb', line 2276

def version
  @version
end

Instance Method Details

#set_any(elements) ⇒ Object



2287
2288
2289
# File 'lib/eBay.rb', line 2287

def set_any(elements)
  @__xmlele_any = elements
end