Class: WantItNowPostType

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

Overview

urn:ebay:apis:eBLBaseComponentsWantItNowPostType

Constant Summary collapse

@@schema_type =
"WantItNowPostType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
["categoryID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "CategoryID")]],
["description", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Description")]],
["postID", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "PostID")]],
["site", ["SiteCodeType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Site")]],
["startTime", ["SOAP::SOAPDateTime", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "StartTime")]],
["responseCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ResponseCount")]],
["title", ["SOAP::SOAPString", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "Title")]]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(categoryID = nil, description = nil, postID = nil, site = nil, startTime = nil, responseCount = nil, title = nil) ⇒ WantItNowPostType

Returns a new instance of WantItNowPostType.



18934
18935
18936
18937
18938
18939
18940
18941
18942
# File 'lib/eBay.rb', line 18934

def initialize(categoryID = nil, description = nil, postID = nil, site = nil, startTime = nil, responseCount = nil, title = nil)
  @categoryID = categoryID
  @description = description
  @postID = postID
  @site = site
  @startTime = startTime
  @responseCount = responseCount
  @title = title
end

Instance Attribute Details

#categoryIDObject

Returns the value of attribute categoryID.



18926
18927
18928
# File 'lib/eBay.rb', line 18926

def categoryID
  @categoryID
end

#descriptionObject

Returns the value of attribute description.



18927
18928
18929
# File 'lib/eBay.rb', line 18927

def description
  @description
end

#postIDObject

Returns the value of attribute postID.



18928
18929
18930
# File 'lib/eBay.rb', line 18928

def postID
  @postID
end

#responseCountObject

Returns the value of attribute responseCount.



18931
18932
18933
# File 'lib/eBay.rb', line 18931

def responseCount
  @responseCount
end

#siteObject

Returns the value of attribute site.



18929
18930
18931
# File 'lib/eBay.rb', line 18929

def site
  @site
end

#startTimeObject

Returns the value of attribute startTime.



18930
18931
18932
# File 'lib/eBay.rb', line 18930

def startTime
  @startTime
end

#titleObject

Returns the value of attribute title.



18932
18933
18934
# File 'lib/eBay.rb', line 18932

def title
  @title
end