Class: PriceRangeFilterType

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

Overview

urn:ebay:apis:eBLBaseComponentsPriceRangeFilterType

Constant Summary collapse

@@schema_type =
"PriceRangeFilterType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
["maxPrice", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MaxPrice")]],
["minPrice", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "MinPrice")]],
["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(maxPrice = nil, minPrice = nil) ⇒ PriceRangeFilterType

Returns a new instance of PriceRangeFilterType.



16136
16137
16138
16139
16140
# File 'lib/eBay.rb', line 16136

def initialize(maxPrice = nil, minPrice = nil)
  @maxPrice = maxPrice
  @minPrice = minPrice
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



16130
16131
16132
# File 'lib/eBay.rb', line 16130

def __xmlele_any
  @__xmlele_any
end

#maxPriceObject

Returns the value of attribute maxPrice.



16128
16129
16130
# File 'lib/eBay.rb', line 16128

def maxPrice
  @maxPrice
end

#minPriceObject

Returns the value of attribute minPrice.



16129
16130
16131
# File 'lib/eBay.rb', line 16129

def minPrice
  @minPrice
end

Instance Method Details

#set_any(elements) ⇒ Object



16132
16133
16134
# File 'lib/eBay.rb', line 16132

def set_any(elements)
  @__xmlele_any = elements
end