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.



15624
15625
15626
15627
15628
# File 'lib/eBay.rb', line 15624

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.



15618
15619
15620
# File 'lib/eBay.rb', line 15618

def __xmlele_any
  @__xmlele_any
end

#feeObject

Returns the value of attribute fee.



15617
15618
15619
# File 'lib/eBay.rb', line 15617

def fee
  @fee
end

#nameObject

Returns the value of attribute name.



15616
15617
15618
# File 'lib/eBay.rb', line 15616

def name
  @name
end

Instance Method Details

#set_any(elements) ⇒ Object



15620
15621
15622
# File 'lib/eBay.rb', line 15620

def set_any(elements)
  @__xmlele_any = elements
end