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.



21439
21440
21441
21442
21443
21444
21445
21446
21447
# File 'lib/eBay.rb', line 21439

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.



21431
21432
21433
# File 'lib/eBay.rb', line 21431

def categoryID
  @categoryID
end

#descriptionObject

Returns the value of attribute description.



21432
21433
21434
# File 'lib/eBay.rb', line 21432

def description
  @description
end

#postIDObject

Returns the value of attribute postID.



21433
21434
21435
# File 'lib/eBay.rb', line 21433

def postID
  @postID
end

#responseCountObject

Returns the value of attribute responseCount.



21436
21437
21438
# File 'lib/eBay.rb', line 21436

def responseCount
  @responseCount
end

#siteObject

Returns the value of attribute site.



21434
21435
21436
# File 'lib/eBay.rb', line 21434

def site
  @site
end

#startTimeObject

Returns the value of attribute startTime.



21435
21436
21437
# File 'lib/eBay.rb', line 21435

def startTime
  @startTime
end

#titleObject

Returns the value of attribute title.



21437
21438
21439
# File 'lib/eBay.rb', line 21437

def title
  @title
end