Method: ExpressProductType#initialize
- Defined in:
- lib/eBay.rb
#initialize(title = nil, minPrice = nil, maxPrice = nil, stockPhotoURL = nil, itemCount = nil, externalProductID = nil, productReferenceID = nil, itemSpecifics = nil, detailsURL = nil) ⇒ ExpressProductType
Returns a new instance of ExpressProductType.
19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 |
# File 'lib/eBay.rb', line 19188 def initialize(title = nil, minPrice = nil, maxPrice = nil, stockPhotoURL = nil, itemCount = nil, externalProductID = nil, productReferenceID = nil, itemSpecifics = nil, detailsURL = nil) @title = title @minPrice = minPrice @maxPrice = maxPrice @stockPhotoURL = stockPhotoURL @itemCount = itemCount @externalProductID = externalProductID @productReferenceID = productReferenceID @itemSpecifics = itemSpecifics @detailsURL = detailsURL @__xmlele_any = nil end |