Class: StoreColorSchemeType

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

Overview

urn:ebay:apis:eBLBaseComponentsStoreColorSchemeType

Constant Summary collapse

@@schema_type =
"StoreColorSchemeType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["colorSchemeID", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ColorSchemeID")]],
  ["name", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Name")]],
  ["color", ["StoreColorType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Color")]],
  ["font", ["StoreFontType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Font")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(colorSchemeID = nil, name = nil, color = nil, font = nil) ⇒ StoreColorSchemeType

Returns a new instance of StoreColorSchemeType.



20312
20313
20314
20315
20316
20317
20318
# File 'lib/eBay.rb', line 20312

def initialize(colorSchemeID = nil, name = nil, color = nil, font = nil)
  @colorSchemeID = colorSchemeID
  @name = name
  @color = color
  @font = font
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



20306
20307
20308
# File 'lib/eBay.rb', line 20306

def __xmlele_any
  @__xmlele_any
end

#colorObject

Returns the value of attribute color.



20304
20305
20306
# File 'lib/eBay.rb', line 20304

def color
  @color
end

#colorSchemeIDObject

Returns the value of attribute colorSchemeID.



20302
20303
20304
# File 'lib/eBay.rb', line 20302

def colorSchemeID
  @colorSchemeID
end

#fontObject

Returns the value of attribute font.



20305
20306
20307
# File 'lib/eBay.rb', line 20305

def font
  @font
end

#nameObject

Returns the value of attribute name.



20303
20304
20305
# File 'lib/eBay.rb', line 20303

def name
  @name
end

Instance Method Details

#set_any(elements) ⇒ Object



20308
20309
20310
# File 'lib/eBay.rb', line 20308

def set_any(elements)
  @__xmlele_any = elements
end