Class: AdditionalAccountType
- Inherits:
-
Object
- Object
- AdditionalAccountType
- Defined in:
- lib/v_paypal/default.rb
Overview
urn:ebay:apis:eBLBaseComponentsAdditionalAccountType
Constant Summary collapse
- @@schema_type =
"AdditionalAccountType"- @@schema_ns =
"urn:ebay:apis:eBLBaseComponents"- @@schema_element =
[ ["balance", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Balance")]], ["currency", ["CurrencyCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Currency")]], ["accountCode", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "AccountCode")]] ]
Instance Attribute Summary collapse
-
#accountCode ⇒ Object
Returns the value of attribute accountCode.
-
#balance ⇒ Object
Returns the value of attribute balance.
-
#currency ⇒ Object
Returns the value of attribute currency.
Instance Method Summary collapse
-
#initialize(balance = nil, currency = nil, accountCode = nil) ⇒ AdditionalAccountType
constructor
A new instance of AdditionalAccountType.
Constructor Details
#initialize(balance = nil, currency = nil, accountCode = nil) ⇒ AdditionalAccountType
Returns a new instance of AdditionalAccountType.
1634 1635 1636 1637 1638 |
# File 'lib/v_paypal/default.rb', line 1634 def initialize(balance = nil, currency = nil, accountCode = nil) @balance = balance @currency = currency @accountCode = accountCode end |
Instance Attribute Details
#accountCode ⇒ Object
Returns the value of attribute accountCode.
1632 1633 1634 |
# File 'lib/v_paypal/default.rb', line 1632 def accountCode @accountCode end |
#balance ⇒ Object
Returns the value of attribute balance.
1630 1631 1632 |
# File 'lib/v_paypal/default.rb', line 1630 def balance @balance end |
#currency ⇒ Object
Returns the value of attribute currency.
1631 1632 1633 |
# File 'lib/v_paypal/default.rb', line 1631 def currency @currency end |