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.



24221
24222
24223
24224
24225
24226
24227
24228
24229
# File 'lib/eBay.rb', line 24221

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.



24213
24214
24215
# File 'lib/eBay.rb', line 24213

def categoryID
  @categoryID
end

#descriptionObject

Returns the value of attribute description.



24214
24215
24216
# File 'lib/eBay.rb', line 24214

def description
  @description
end

#postIDObject

Returns the value of attribute postID.



24215
24216
24217
# File 'lib/eBay.rb', line 24215

def postID
  @postID
end

#responseCountObject

Returns the value of attribute responseCount.



24218
24219
24220
# File 'lib/eBay.rb', line 24218

def responseCount
  @responseCount
end

#siteObject

Returns the value of attribute site.



24216
24217
24218
# File 'lib/eBay.rb', line 24216

def site
  @site
end

#startTimeObject

Returns the value of attribute startTime.



24217
24218
24219
# File 'lib/eBay.rb', line 24217

def startTime
  @startTime
end

#titleObject

Returns the value of attribute title.



24219
24220
24221
# File 'lib/eBay.rb', line 24219

def title
  @title
end