Class: OrderTransactionType

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

Overview

urn:ebay:apis:eBLBaseComponentsOrderTransactionType

Constant Summary collapse

@@schema_type =
"OrderTransactionType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["order", ["OrderType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Order")]],
  ["transaction", ["TransactionType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Transaction")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(order = nil, transaction = nil) ⇒ OrderTransactionType

Returns a new instance of OrderTransactionType.



17933
17934
17935
17936
17937
# File 'lib/eBay.rb', line 17933

def initialize(order = nil, transaction = nil)
  @order = order
  @transaction = transaction
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



17927
17928
17929
# File 'lib/eBay.rb', line 17927

def __xmlele_any
  @__xmlele_any
end

#orderObject

Returns the value of attribute order.



17925
17926
17927
# File 'lib/eBay.rb', line 17925

def order
  @order
end

#transactionObject

Returns the value of attribute transaction.



17926
17927
17928
# File 'lib/eBay.rb', line 17926

def transaction
  @transaction
end

Instance Method Details

#set_any(elements) ⇒ Object



17929
17930
17931
# File 'lib/eBay.rb', line 17929

def set_any(elements)
  @__xmlele_any = elements
end