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.



19341
19342
19343
19344
19345
# File 'lib/eBay.rb', line 19341

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.



19335
19336
19337
# File 'lib/eBay.rb', line 19335

def __xmlele_any
  @__xmlele_any
end

#nameObject

Returns the value of attribute name.



19333
19334
19335
# File 'lib/eBay.rb', line 19333

def name
  @name
end

#valueObject

Returns the value of attribute value.



19334
19335
19336
# File 'lib/eBay.rb', line 19334

def value
  @value
end

Instance Method Details

#set_any(elements) ⇒ Object



19337
19338
19339
# File 'lib/eBay.rb', line 19337

def set_any(elements)
  @__xmlele_any = elements
end