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.



15864
15865
15866
15867
15868
15869
15870
15871
15872
# File 'lib/eBay.rb', line 15864

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.



15862
15863
15864
# File 'lib/eBay.rb', line 15862

def bestOfferCount
  @bestOfferCount
end

#biddingCountObject

Returns the value of attribute biddingCount.



15856
15857
15858
# File 'lib/eBay.rb', line 15856

def biddingCount
  @biddingCount
end

#totalWinningCostObject

Returns the value of attribute totalWinningCost.



15858
15859
15860
# File 'lib/eBay.rb', line 15858

def totalWinningCost
  @totalWinningCost
end

#totalWonCostObject

Returns the value of attribute totalWonCost.



15860
15861
15862
# File 'lib/eBay.rb', line 15860

def totalWonCost
  @totalWonCost
end

#winningCountObject

Returns the value of attribute winningCount.



15857
15858
15859
# File 'lib/eBay.rb', line 15857

def winningCount
  @winningCount
end

#wonCountObject

Returns the value of attribute wonCount.



15859
15860
15861
# File 'lib/eBay.rb', line 15859

def wonCount
  @wonCount
end

#wonDurationInDaysObject

Returns the value of attribute wonDurationInDays.



15861
15862
15863
# File 'lib/eBay.rb', line 15861

def wonDurationInDays
  @wonDurationInDays
end