Class: FeeType

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_anyObject (readonly)

Returns the value of attribute __xmlele_any.



17732
17733
17734
# File 'lib/eBay.rb', line 17732

def __xmlele_any
  @__xmlele_any
end

#feeObject

Returns the value of attribute fee.



17731
17732
17733
# File 'lib/eBay.rb', line 17731

def fee
  @fee
end

#nameObject

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