Class: GetOrdersResponseType

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

Overview

urn:ebay:apis:eBLBaseComponentsGetOrdersResponseType

Constant Summary collapse

@@schema_type =
"GetOrdersResponseType"
@@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")]],
  ["eIASToken", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "EIASToken")]],
  ["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")]],
  ["paginationResult", ["PaginationResultType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PaginationResult")]],
  ["hasMoreOrders", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "HasMoreOrders")]],
  ["orderArray", ["OrderArrayType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "OrderArray")]],
  ["ordersPerPage", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "OrdersPerPage")]],
  ["pageNumber", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PageNumber")]],
  ["returnedOrderCountActual", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ReturnedOrderCountActual")]]
]

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, eIASToken = nil, notificationSignature = nil, hardExpirationWarning = nil, paginationResult = nil, hasMoreOrders = nil, orderArray = nil, ordersPerPage = nil, pageNumber = nil, returnedOrderCountActual = nil) ⇒ GetOrdersResponseType

Returns a new instance of GetOrdersResponseType.



6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
# File 'lib/eBay.rb', line 6654

def initialize(timestamp = nil, ack = nil, correlationID = nil, errors = [], message = nil, version = nil, build = nil, notificationEventName = nil, duplicateInvocationDetails = nil, recipientUserID = nil, eIASToken = nil, notificationSignature = nil, hardExpirationWarning = nil, paginationResult = nil, hasMoreOrders = nil, orderArray = nil, ordersPerPage = nil, pageNumber = nil, returnedOrderCountActual = nil)
  @timestamp = timestamp
  @ack = ack
  @correlationID = correlationID
  @errors = errors
  @message = message
  @version = version
  @build = build
  @notificationEventName = notificationEventName
  @duplicateInvocationDetails = duplicateInvocationDetails
  @recipientUserID = recipientUserID
  @eIASToken = eIASToken
  @notificationSignature = notificationSignature
  @hardExpirationWarning = hardExpirationWarning
  @__xmlele_any = nil
  @paginationResult = paginationResult
  @hasMoreOrders = hasMoreOrders
  @orderArray = orderArray
  @ordersPerPage = ordersPerPage
  @pageNumber = pageNumber
  @returnedOrderCountActual = returnedOrderCountActual
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



6642
6643
6644
# File 'lib/eBay.rb', line 6642

def __xmlele_any
  @__xmlele_any
end

#ackObject

Returns the value of attribute ack.



6630
6631
6632
# File 'lib/eBay.rb', line 6630

def ack
  @ack
end

#buildObject

Returns the value of attribute build.



6635
6636
6637
# File 'lib/eBay.rb', line 6635

def build
  @build
end

#correlationIDObject

Returns the value of attribute correlationID.



6631
6632
6633
# File 'lib/eBay.rb', line 6631

def correlationID
  @correlationID
end

#duplicateInvocationDetailsObject

Returns the value of attribute duplicateInvocationDetails.



6637
6638
6639
# File 'lib/eBay.rb', line 6637

def duplicateInvocationDetails
  @duplicateInvocationDetails
end

#eIASTokenObject

Returns the value of attribute eIASToken.



6639
6640
6641
# File 'lib/eBay.rb', line 6639

def eIASToken
  @eIASToken
end

#errorsObject

Returns the value of attribute errors.



6632
6633
6634
# File 'lib/eBay.rb', line 6632

def errors
  @errors
end

#hardExpirationWarningObject

Returns the value of attribute hardExpirationWarning.



6641
6642
6643
# File 'lib/eBay.rb', line 6641

def hardExpirationWarning
  @hardExpirationWarning
end

#hasMoreOrdersObject

Returns the value of attribute hasMoreOrders.



6644
6645
6646
# File 'lib/eBay.rb', line 6644

def hasMoreOrders
  @hasMoreOrders
end

#messageObject

Returns the value of attribute message.



6633
6634
6635
# File 'lib/eBay.rb', line 6633

def message
  @message
end

#notificationEventNameObject

Returns the value of attribute notificationEventName.



6636
6637
6638
# File 'lib/eBay.rb', line 6636

def notificationEventName
  @notificationEventName
end

#notificationSignatureObject

Returns the value of attribute notificationSignature.



6640
6641
6642
# File 'lib/eBay.rb', line 6640

def notificationSignature
  @notificationSignature
end

#orderArrayObject

Returns the value of attribute orderArray.



6645
6646
6647
# File 'lib/eBay.rb', line 6645

def orderArray
  @orderArray
end

#ordersPerPageObject

Returns the value of attribute ordersPerPage.



6646
6647
6648
# File 'lib/eBay.rb', line 6646

def ordersPerPage
  @ordersPerPage
end

#pageNumberObject

Returns the value of attribute pageNumber.



6647
6648
6649
# File 'lib/eBay.rb', line 6647

def pageNumber
  @pageNumber
end

#paginationResultObject

Returns the value of attribute paginationResult.



6643
6644
6645
# File 'lib/eBay.rb', line 6643

def paginationResult
  @paginationResult
end

#recipientUserIDObject

Returns the value of attribute recipientUserID.



6638
6639
6640
# File 'lib/eBay.rb', line 6638

def recipientUserID
  @recipientUserID
end

#returnedOrderCountActualObject

Returns the value of attribute returnedOrderCountActual.



6648
6649
6650
# File 'lib/eBay.rb', line 6648

def returnedOrderCountActual
  @returnedOrderCountActual
end

#timestampObject

Returns the value of attribute timestamp.



6629
6630
6631
# File 'lib/eBay.rb', line 6629

def timestamp
  @timestamp
end

#versionObject

Returns the value of attribute version.



6634
6635
6636
# File 'lib/eBay.rb', line 6634

def version
  @version
end

Instance Method Details

#set_any(elements) ⇒ Object



6650
6651
6652
# File 'lib/eBay.rb', line 6650

def set_any(elements)
  @__xmlele_any = elements
end