Class: GetBidderListResponseType

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

Overview

urn:ebay:apis:eBLBaseComponentsGetBidderListResponseType

Constant Summary collapse

@@schema_type =
"GetBidderListResponseType"
@@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")]],
  ["bidder", ["UserType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Bidder")]],
  ["bidItemArray", ["ItemArrayType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BidItemArray")]]
]

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, bidder = nil, bidItemArray = nil) ⇒ GetBidderListResponseType

Returns a new instance of GetBidderListResponseType.



2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
# File 'lib/eBay.rb', line 2407

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, bidder = nil, bidItemArray = 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
  @bidder = bidder
  @bidItemArray = bidItemArray
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



2399
2400
2401
# File 'lib/eBay.rb', line 2399

def __xmlele_any
  @__xmlele_any
end

#ackObject

Returns the value of attribute ack.



2388
2389
2390
# File 'lib/eBay.rb', line 2388

def ack
  @ack
end

#bidderObject

Returns the value of attribute bidder.



2400
2401
2402
# File 'lib/eBay.rb', line 2400

def bidder
  @bidder
end

#bidItemArrayObject

Returns the value of attribute bidItemArray.



2401
2402
2403
# File 'lib/eBay.rb', line 2401

def bidItemArray
  @bidItemArray
end

#buildObject

Returns the value of attribute build.



2393
2394
2395
# File 'lib/eBay.rb', line 2393

def build
  @build
end

#correlationIDObject

Returns the value of attribute correlationID.



2389
2390
2391
# File 'lib/eBay.rb', line 2389

def correlationID
  @correlationID
end

#duplicateInvocationDetailsObject

Returns the value of attribute duplicateInvocationDetails.



2395
2396
2397
# File 'lib/eBay.rb', line 2395

def duplicateInvocationDetails
  @duplicateInvocationDetails
end

#errorsObject

Returns the value of attribute errors.



2390
2391
2392
# File 'lib/eBay.rb', line 2390

def errors
  @errors
end

#hardExpirationWarningObject

Returns the value of attribute hardExpirationWarning.



2398
2399
2400
# File 'lib/eBay.rb', line 2398

def hardExpirationWarning
  @hardExpirationWarning
end

#messageObject

Returns the value of attribute message.



2391
2392
2393
# File 'lib/eBay.rb', line 2391

def message
  @message
end

#notificationEventNameObject

Returns the value of attribute notificationEventName.



2394
2395
2396
# File 'lib/eBay.rb', line 2394

def notificationEventName
  @notificationEventName
end

#notificationSignatureObject

Returns the value of attribute notificationSignature.



2397
2398
2399
# File 'lib/eBay.rb', line 2397

def notificationSignature
  @notificationSignature
end

#recipientUserIDObject

Returns the value of attribute recipientUserID.



2396
2397
2398
# File 'lib/eBay.rb', line 2396

def recipientUserID
  @recipientUserID
end

#timestampObject

Returns the value of attribute timestamp.



2387
2388
2389
# File 'lib/eBay.rb', line 2387

def timestamp
  @timestamp
end

#versionObject

Returns the value of attribute version.



2392
2393
2394
# File 'lib/eBay.rb', line 2392

def version
  @version
end

Instance Method Details

#set_any(elements) ⇒ Object



2403
2404
2405
# File 'lib/eBay.rb', line 2403

def set_any(elements)
  @__xmlele_any = elements
end