Class: StoreCustomCategoryType

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

Overview

urn:ebay:apis:eBLBaseComponentsStoreCustomCategoryType

Constant Summary collapse

@@schema_type =
"StoreCustomCategoryType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
["categoryID", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CategoryID")]],
["name", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Name")]],
["order", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Order")]],
["childrenCategories", ["StoreCustomCategoryType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ChildrenCategories")]],
["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(categoryID = nil, name = nil, order = nil, childrenCategories = nil) ⇒ StoreCustomCategoryType

Returns a new instance of StoreCustomCategoryType.



17964
17965
17966
17967
17968
17969
17970
# File 'lib/eBay.rb', line 17964

def initialize(categoryID = nil, name = nil, order = nil, childrenCategories = nil)
  @categoryID = categoryID
  @name = name
  @order = order
  @childrenCategories = childrenCategories
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



17958
17959
17960
# File 'lib/eBay.rb', line 17958

def __xmlele_any
  @__xmlele_any
end

#categoryIDObject

Returns the value of attribute categoryID.



17954
17955
17956
# File 'lib/eBay.rb', line 17954

def categoryID
  @categoryID
end

#childrenCategoriesObject

Returns the value of attribute childrenCategories.



17957
17958
17959
# File 'lib/eBay.rb', line 17957

def childrenCategories
  @childrenCategories
end

#nameObject

Returns the value of attribute name.



17955
17956
17957
# File 'lib/eBay.rb', line 17955

def name
  @name
end

#orderObject

Returns the value of attribute order.



17956
17957
17958
# File 'lib/eBay.rb', line 17956

def order
  @order
end

Instance Method Details

#set_any(elements) ⇒ Object



17960
17961
17962
# File 'lib/eBay.rb', line 17960

def set_any(elements)
  @__xmlele_any = elements
end