Class: FeeType
- Inherits:
-
Object
- Object
- FeeType
- Defined in:
- lib/eBay.rb
Overview
urn:ebay:apis:eBLBaseComponentsFeeType
Constant Summary collapse
- @@schema_type =
"FeeType"- @@schema_ns =
"urn:ebay:apis:eBLBaseComponents"- @@schema_element =
[ ["name", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Name")]], ["fee", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Fee")]], ["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.
-
#fee ⇒ Object
Returns the value of attribute fee.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name = nil, fee = nil) ⇒ FeeType
constructor
A new instance of FeeType.
- #set_any(elements) ⇒ Object
Constructor Details
#initialize(name = nil, fee = nil) ⇒ FeeType
Returns a new instance of FeeType.
17738 17739 17740 17741 17742 |
# File 'lib/eBay.rb', line 17738 def initialize(name = nil, fee = nil) @name = name @fee = fee @__xmlele_any = nil end |
Instance Attribute Details
#__xmlele_any ⇒ Object (readonly)
Returns the value of attribute __xmlele_any.
17732 17733 17734 |
# File 'lib/eBay.rb', line 17732 def __xmlele_any @__xmlele_any end |
#fee ⇒ Object
Returns the value of attribute fee.
17731 17732 17733 |
# File 'lib/eBay.rb', line 17731 def fee @fee end |
#name ⇒ Object
Returns the value of attribute name.
17730 17731 17732 |
# File 'lib/eBay.rb', line 17730 def name @name end |
Instance Method Details
#set_any(elements) ⇒ Object
17734 17735 17736 |
# File 'lib/eBay.rb', line 17734 def set_any(elements) @__xmlele_any = elements end |