Class: OrderTransactionType
- Inherits:
-
Object
- Object
- OrderTransactionType
- 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
-
#__xmlele_any ⇒ Object
readonly
Returns the value of attribute __xmlele_any.
-
#order ⇒ Object
Returns the value of attribute order.
-
#transaction ⇒ Object
Returns the value of attribute transaction.
Instance Method Summary collapse
-
#initialize(order = nil, transaction = nil) ⇒ OrderTransactionType
constructor
A new instance of OrderTransactionType.
- #set_any(elements) ⇒ Object
Constructor Details
#initialize(order = nil, transaction = nil) ⇒ OrderTransactionType
Returns a new instance of OrderTransactionType.
20397 20398 20399 20400 20401 |
# File 'lib/eBay.rb', line 20397 def initialize(order = nil, transaction = nil) @order = order @transaction = transaction @__xmlele_any = nil end |
Instance Attribute Details
#__xmlele_any ⇒ Object (readonly)
Returns the value of attribute __xmlele_any.
20391 20392 20393 |
# File 'lib/eBay.rb', line 20391 def __xmlele_any @__xmlele_any end |
#order ⇒ Object
Returns the value of attribute order.
20389 20390 20391 |
# File 'lib/eBay.rb', line 20389 def order @order end |
#transaction ⇒ Object
Returns the value of attribute transaction.
20390 20391 20392 |
# File 'lib/eBay.rb', line 20390 def transaction @transaction end |
Instance Method Details
#set_any(elements) ⇒ Object
20393 20394 20395 |
# File 'lib/eBay.rb', line 20393 def set_any(elements) @__xmlele_any = elements end |