Class: FeeType
- Inherits:
-
Object
- Object
- FeeType
- Defined in:
- lib/v_paypal/default.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")]] ]
Instance Attribute Summary collapse
-
#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.
Constructor Details
#initialize(name = nil, fee = nil) ⇒ FeeType
Returns a new instance of FeeType.
1854 1855 1856 1857 |
# File 'lib/v_paypal/default.rb', line 1854 def initialize(name = nil, fee = nil) @name = name @fee = fee end |
Instance Attribute Details
#fee ⇒ Object
Returns the value of attribute fee.
1852 1853 1854 |
# File 'lib/v_paypal/default.rb', line 1852 def fee @fee end |
#name ⇒ Object
Returns the value of attribute name.
1851 1852 1853 |
# File 'lib/v_paypal/default.rb', line 1851 def name @name end |