Class: SearchDetailsType

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

Overview

urn:ebay:apis:eBLBaseComponentsSearchDetailsType

Constant Summary collapse

@@schema_type =
"SearchDetailsType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
["buyItNowEnabled", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BuyItNowEnabled")]],
["picture", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Picture")]],
["recentListing", ["SOAP::SOAPBoolean", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "RecentListing")]],
["any", [nil, XSD::QName.new("http://www.w3.org/2001/XMLSchema", "anyType")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(buyItNowEnabled = nil, picture = nil, recentListing = nil) ⇒ SearchDetailsType

Returns a new instance of SearchDetailsType.



16952
16953
16954
16955
16956
16957
# File 'lib/eBay.rb', line 16952

def initialize(buyItNowEnabled = nil, picture = nil, recentListing = nil)
  @buyItNowEnabled = buyItNowEnabled
  @picture = picture
  @recentListing = recentListing
  @__xmlele_any = nil
end

Instance Attribute Details

#__xmlele_anyObject (readonly)

Returns the value of attribute __xmlele_any.



16946
16947
16948
# File 'lib/eBay.rb', line 16946

def __xmlele_any
  @__xmlele_any
end

#buyItNowEnabledObject

Returns the value of attribute buyItNowEnabled.



16943
16944
16945
# File 'lib/eBay.rb', line 16943

def buyItNowEnabled
  @buyItNowEnabled
end

#pictureObject

Returns the value of attribute picture.



16944
16945
16946
# File 'lib/eBay.rb', line 16944

def picture
  @picture
end

#recentListingObject

Returns the value of attribute recentListing.



16945
16946
16947
# File 'lib/eBay.rb', line 16945

def recentListing
  @recentListing
end

Instance Method Details

#set_any(elements) ⇒ Object



16948
16949
16950
# File 'lib/eBay.rb', line 16948

def set_any(elements)
  @__xmlele_any = elements
end