Class: SearchLocationFilterType

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

Overview

urn:ebay:apis:eBLBaseComponentsSearchLocationFilterType

Constant Summary collapse

@@schema_type =
"SearchLocationFilterType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["countryCode", ["CountryCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CountryCode")]],
  ["itemLocation", ["ItemLocationCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ItemLocation")]],
  ["searchLocation", ["SearchLocationType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "SearchLocation")]],
  ["currency", ["CurrencyCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Currency")]],
  ["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(countryCode = nil, itemLocation = nil, searchLocation = nil, currency = nil) ⇒ SearchLocationFilterType

Returns a new instance of SearchLocationFilterType.



19345
19346
19347
19348
19349
19350
19351
# File 'lib/eBay.rb', line 19345

def initialize(countryCode = nil, itemLocation = nil, searchLocation = nil, currency = nil)
  @countryCode = countryCode
  @itemLocation = itemLocation
  @searchLocation = searchLocation
  @currency = currency
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



19339
19340
19341
# File 'lib/eBay.rb', line 19339

def __xmlele_any
  @__xmlele_any
end

#countryCodeObject

Returns the value of attribute countryCode.



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

def countryCode
  @countryCode
end

#currencyObject

Returns the value of attribute currency.



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

def currency
  @currency
end

#itemLocationObject

Returns the value of attribute itemLocation.



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

def itemLocation
  @itemLocation
end

#searchLocationObject

Returns the value of attribute searchLocation.



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

def searchLocation
  @searchLocation
end

Instance Method Details

#set_any(elements) ⇒ Object



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

def set_any(elements)
  @__xmlele_any = elements
end