Class: AdditionalAccountType

Inherits:
Object
  • Object
show all
Defined in:
lib/eBay.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")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(balance = nil, currency = nil, accountCode = nil) ⇒ AdditionalAccountType

Returns a new instance of AdditionalAccountType.



13365
13366
13367
13368
13369
13370
# File 'lib/eBay.rb', line 13365

def initialize(balance = nil, currency = nil, accountCode = nil)
  @balance = balance
  @currency = currency
  @accountCode = accountCode
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



13359
13360
13361
# File 'lib/eBay.rb', line 13359

def __xmlele_any
  @__xmlele_any
end

#accountCodeObject

Returns the value of attribute accountCode.



13358
13359
13360
# File 'lib/eBay.rb', line 13358

def accountCode
  @accountCode
end

#balanceObject

Returns the value of attribute balance.



13356
13357
13358
# File 'lib/eBay.rb', line 13356

def balance
  @balance
end

#currencyObject

Returns the value of attribute currency.



13357
13358
13359
# File 'lib/eBay.rb', line 13357

def currency
  @currency
end

Instance Method Details

#set_any(elements) ⇒ Object



13361
13362
13363
# File 'lib/eBay.rb', line 13361

def set_any(elements)
  @__xmlele_any = elements
end