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.



13767
13768
13769
13770
13771
# File 'lib/eBay.rb', line 13767

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.



13761
13762
13763
# File 'lib/eBay.rb', line 13761

def __xmlele_any
  @__xmlele_any
end

#feeObject

Returns the value of attribute fee.



13760
13761
13762
# File 'lib/eBay.rb', line 13760

def fee
  @fee
end

#nameObject

Returns the value of attribute name.



13759
13760
13761
# File 'lib/eBay.rb', line 13759

def name
  @name
end

Instance Method Details

#set_any(elements) ⇒ Object



13763
13764
13765
# File 'lib/eBay.rb', line 13763

def set_any(elements)
  @__xmlele_any = elements
end