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.



12575
12576
12577
12578
12579
12580
12581
12582
12583
# File 'lib/eBay.rb', line 12575

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.



12573
12574
12575
# File 'lib/eBay.rb', line 12573

def bestOfferCount
  @bestOfferCount
end

#biddingCountObject

Returns the value of attribute biddingCount.



12567
12568
12569
# File 'lib/eBay.rb', line 12567

def biddingCount
  @biddingCount
end

#totalWinningCostObject

Returns the value of attribute totalWinningCost.



12569
12570
12571
# File 'lib/eBay.rb', line 12569

def totalWinningCost
  @totalWinningCost
end

#totalWonCostObject

Returns the value of attribute totalWonCost.



12571
12572
12573
# File 'lib/eBay.rb', line 12571

def totalWonCost
  @totalWonCost
end

#winningCountObject

Returns the value of attribute winningCount.



12568
12569
12570
# File 'lib/eBay.rb', line 12568

def winningCount
  @winningCount
end

#wonCountObject

Returns the value of attribute wonCount.



12570
12571
12572
# File 'lib/eBay.rb', line 12570

def wonCount
  @wonCount
end

#wonDurationInDaysObject

Returns the value of attribute wonDurationInDays.



12572
12573
12574
# File 'lib/eBay.rb', line 12572

def wonDurationInDays
  @wonDurationInDays
end