Class: BuyingSummaryType

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

Overview

urn:ebay:apis:eBLBaseComponentsBuyingSummaryType

Constant Summary collapse

@@schema_type =
"BuyingSummaryType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["biddingCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BiddingCount")]],
  ["winningCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "WinningCount")]],
  ["totalWinningCost", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "TotalWinningCost")]],
  ["wonCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "WonCount")]],
  ["totalWonCost", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "TotalWonCost")]],
  ["wonDurationInDays", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "WonDurationInDays")]],
  ["bestOfferCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "BestOfferCount")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(biddingCount = nil, winningCount = nil, totalWinningCost = nil, wonCount = nil, totalWonCost = nil, wonDurationInDays = nil, bestOfferCount = nil) ⇒ BuyingSummaryType

Returns a new instance of BuyingSummaryType.



14192
14193
14194
14195
14196
14197
14198
14199
14200
# File 'lib/eBay.rb', line 14192

def initialize(biddingCount = nil, winningCount = nil, totalWinningCost = nil, wonCount = nil, totalWonCost = nil, wonDurationInDays = nil, bestOfferCount = nil)
  @biddingCount = biddingCount
  @winningCount = winningCount
  @totalWinningCost = totalWinningCost
  @wonCount = wonCount
  @totalWonCost = totalWonCost
  @wonDurationInDays = wonDurationInDays
  @bestOfferCount = bestOfferCount
end

Instance Attribute Details

#bestOfferCountObject

Returns the value of attribute bestOfferCount.



14190
14191
14192
# File 'lib/eBay.rb', line 14190

def bestOfferCount
  @bestOfferCount
end

#biddingCountObject

Returns the value of attribute biddingCount.



14184
14185
14186
# File 'lib/eBay.rb', line 14184

def biddingCount
  @biddingCount
end

#totalWinningCostObject

Returns the value of attribute totalWinningCost.



14186
14187
14188
# File 'lib/eBay.rb', line 14186

def totalWinningCost
  @totalWinningCost
end

#totalWonCostObject

Returns the value of attribute totalWonCost.



14188
14189
14190
# File 'lib/eBay.rb', line 14188

def totalWonCost
  @totalWonCost
end

#winningCountObject

Returns the value of attribute winningCount.



14185
14186
14187
# File 'lib/eBay.rb', line 14185

def winningCount
  @winningCount
end

#wonCountObject

Returns the value of attribute wonCount.



14187
14188
14189
# File 'lib/eBay.rb', line 14187

def wonCount
  @wonCount
end

#wonDurationInDaysObject

Returns the value of attribute wonDurationInDays.



14189
14190
14191
# File 'lib/eBay.rb', line 14189

def wonDurationInDays
  @wonDurationInDays
end