Class: LookupAttributeType

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

Overview

urn:ebay:apis:eBLBaseComponentsLookupAttributeType

Constant Summary collapse

@@schema_type =
"LookupAttributeType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["name", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Name")]],
  ["value", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Value")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, value = nil) ⇒ LookupAttributeType

Returns a new instance of LookupAttributeType.



16920
16921
16922
16923
16924
# File 'lib/eBay.rb', line 16920

def initialize(name = nil, value = nil)
  @name = name
  @value = value
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



16914
16915
16916
# File 'lib/eBay.rb', line 16914

def __xmlele_any
  @__xmlele_any
end

#nameObject

Returns the value of attribute name.



16912
16913
16914
# File 'lib/eBay.rb', line 16912

def name
  @name
end

#valueObject

Returns the value of attribute value.



16913
16914
16915
# File 'lib/eBay.rb', line 16913

def value
  @value
end

Instance Method Details

#set_any(elements) ⇒ Object



16916
16917
16918
# File 'lib/eBay.rb', line 16916

def set_any(elements)
  @__xmlele_any = elements
end