Class: StoreThemeType

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

Overview

urn:ebay:apis:eBLBaseComponentsStoreThemeType

Constant Summary collapse

@@schema_type =
"StoreThemeType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["themeID", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ThemeID")]],
  ["name", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Name")]],
  ["colorScheme", ["StoreColorSchemeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ColorScheme")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(themeID = nil, name = nil, colorScheme = nil) ⇒ StoreThemeType

Returns a new instance of StoreThemeType.



20684
20685
20686
20687
20688
20689
# File 'lib/eBay.rb', line 20684

def initialize(themeID = nil, name = nil, colorScheme = nil)
  @themeID = themeID
  @name = name
  @colorScheme = colorScheme
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



20678
20679
20680
# File 'lib/eBay.rb', line 20678

def __xmlele_any
  @__xmlele_any
end

#colorSchemeObject

Returns the value of attribute colorScheme.



20677
20678
20679
# File 'lib/eBay.rb', line 20677

def colorScheme
  @colorScheme
end

#nameObject

Returns the value of attribute name.



20676
20677
20678
# File 'lib/eBay.rb', line 20676

def name
  @name
end

#themeIDObject

Returns the value of attribute themeID.



20675
20676
20677
# File 'lib/eBay.rb', line 20675

def themeID
  @themeID
end

Instance Method Details

#set_any(elements) ⇒ Object



20680
20681
20682
# File 'lib/eBay.rb', line 20680

def set_any(elements)
  @__xmlele_any = elements
end