Class: SearchRequestType

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

Overview

urn:ebay:apis:eBLBaseComponentsSearchRequestType

Constant Summary collapse

@@schema_type =
"SearchRequestType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["attributeSetID", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "AttributeSetID")]],
  ["productFinderID", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ProductFinderID")]],
  ["searchAttributes", ["SearchAttributesType[]", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "SearchAttributes")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributeSetID = nil, productFinderID = nil, searchAttributes = []) ⇒ SearchRequestType

Returns a new instance of SearchRequestType.



21897
21898
21899
21900
21901
21902
# File 'lib/eBay.rb', line 21897

def initialize(attributeSetID = nil, productFinderID = nil, searchAttributes = [])
  @attributeSetID = attributeSetID
  @productFinderID = productFinderID
  @searchAttributes = searchAttributes
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



21891
21892
21893
# File 'lib/eBay.rb', line 21891

def __xmlele_any
  @__xmlele_any
end

#attributeSetIDObject

Returns the value of attribute attributeSetID.



21888
21889
21890
# File 'lib/eBay.rb', line 21888

def attributeSetID
  @attributeSetID
end

#productFinderIDObject

Returns the value of attribute productFinderID.



21889
21890
21891
# File 'lib/eBay.rb', line 21889

def productFinderID
  @productFinderID
end

#searchAttributesObject

Returns the value of attribute searchAttributes.



21890
21891
21892
# File 'lib/eBay.rb', line 21890

def searchAttributes
  @searchAttributes
end

Instance Method Details

#set_any(elements) ⇒ Object



21893
21894
21895
# File 'lib/eBay.rb', line 21893

def set_any(elements)
  @__xmlele_any = elements
end