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.



18421
18422
18423
18424
18425
# File 'lib/eBay.rb', line 18421

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.



18415
18416
18417
# File 'lib/eBay.rb', line 18415

def __xmlele_any
  @__xmlele_any
end

#maxPriceObject

Returns the value of attribute maxPrice.



18413
18414
18415
# File 'lib/eBay.rb', line 18413

def maxPrice
  @maxPrice
end

#minPriceObject

Returns the value of attribute minPrice.



18414
18415
18416
# File 'lib/eBay.rb', line 18414

def minPrice
  @minPrice
end

Instance Method Details

#set_any(elements) ⇒ Object



18417
18418
18419
# File 'lib/eBay.rb', line 18417

def set_any(elements)
  @__xmlele_any = elements
end