Class: SellingSummaryType

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

Overview

urn:ebay:apis:eBLBaseComponentsSellingSummaryType

Constant Summary collapse

@@schema_type =
"SellingSummaryType"
@@schema_ns =
"urn:ebay:apis:eBLBaseComponents"
@@schema_element =
[
  ["activeAuctionCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "ActiveAuctionCount")]],
  ["auctionSellingCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "AuctionSellingCount")]],
  ["auctionBidCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "AuctionBidCount")]],
  ["totalAuctionSellingValue", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "TotalAuctionSellingValue")]],
  ["totalSoldCount", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "TotalSoldCount")]],
  ["totalSoldValue", ["AmountType", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "TotalSoldValue")]],
  ["soldDurationInDays", ["SOAP::SOAPInt", XSD::QName.new("urn:ebay:apis:eBLBaseComponents", "SoldDurationInDays")]]
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(activeAuctionCount = nil, auctionSellingCount = nil, auctionBidCount = nil, totalAuctionSellingValue = nil, totalSoldCount = nil, totalSoldValue = nil, soldDurationInDays = nil) ⇒ SellingSummaryType

Returns a new instance of SellingSummaryType.



19780
19781
19782
19783
19784
19785
19786
19787
19788
# File 'lib/eBay.rb', line 19780

def initialize(activeAuctionCount = nil, auctionSellingCount = nil, auctionBidCount = nil, totalAuctionSellingValue = nil, totalSoldCount = nil, totalSoldValue = nil, soldDurationInDays = nil)
  @activeAuctionCount = activeAuctionCount
  @auctionSellingCount = auctionSellingCount
  @auctionBidCount = auctionBidCount
  @totalAuctionSellingValue = totalAuctionSellingValue
  @totalSoldCount = totalSoldCount
  @totalSoldValue = totalSoldValue
  @soldDurationInDays = soldDurationInDays
end

Instance Attribute Details

#activeAuctionCountObject

Returns the value of attribute activeAuctionCount.



19772
19773
19774
# File 'lib/eBay.rb', line 19772

def activeAuctionCount
  @activeAuctionCount
end

#auctionBidCountObject

Returns the value of attribute auctionBidCount.



19774
19775
19776
# File 'lib/eBay.rb', line 19774

def auctionBidCount
  @auctionBidCount
end

#auctionSellingCountObject

Returns the value of attribute auctionSellingCount.



19773
19774
19775
# File 'lib/eBay.rb', line 19773

def auctionSellingCount
  @auctionSellingCount
end

#soldDurationInDaysObject

Returns the value of attribute soldDurationInDays.



19778
19779
19780
# File 'lib/eBay.rb', line 19778

def soldDurationInDays
  @soldDurationInDays
end

#totalAuctionSellingValueObject

Returns the value of attribute totalAuctionSellingValue.



19775
19776
19777
# File 'lib/eBay.rb', line 19775

def totalAuctionSellingValue
  @totalAuctionSellingValue
end

#totalSoldCountObject

Returns the value of attribute totalSoldCount.



19776
19777
19778
# File 'lib/eBay.rb', line 19776

def totalSoldCount
  @totalSoldCount
end

#totalSoldValueObject

Returns the value of attribute totalSoldValue.



19777
19778
19779
# File 'lib/eBay.rb', line 19777

def totalSoldValue
  @totalSoldValue
end