Class: StoreSubscriptionType

Inherits:
Object
  • Object
show all
Defined in:
lib/eBay.rb

Overview

urn:ebay:apis:eBLBaseComponentsStoreSubscriptionType

Constant Summary collapse

@@schema_type =
"StoreSubscriptionType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["level", ["StoreSubscriptionLevelCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Level")]],
  ["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(level = nil, fee = nil) ⇒ StoreSubscriptionType

Returns a new instance of StoreSubscriptionType.



20632
20633
20634
20635
20636
# File 'lib/eBay.rb', line 20632

def initialize(level = nil, fee = nil)
  @level = level
  @fee = fee
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



20626
20627
20628
# File 'lib/eBay.rb', line 20626

def __xmlele_any
  @__xmlele_any
end

#feeObject

Returns the value of attribute fee.



20625
20626
20627
# File 'lib/eBay.rb', line 20625

def fee
  @fee
end

#levelObject

Returns the value of attribute level.



20624
20625
20626
# File 'lib/eBay.rb', line 20624

def level
  @level
end

Instance Method Details

#set_any(elements) ⇒ Object



20628
20629
20630
# File 'lib/eBay.rb', line 20628

def set_any(elements)
  @__xmlele_any = elements
end