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.



22318
22319
22320
22321
22322
22323
22324
22325
22326
# File 'lib/eBay.rb', line 22318

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.



22310
22311
22312
# File 'lib/eBay.rb', line 22310

def activeAuctionCount
  @activeAuctionCount
end

#auctionBidCountObject

Returns the value of attribute auctionBidCount.



22312
22313
22314
# File 'lib/eBay.rb', line 22312

def auctionBidCount
  @auctionBidCount
end

#auctionSellingCountObject

Returns the value of attribute auctionSellingCount.



22311
22312
22313
# File 'lib/eBay.rb', line 22311

def auctionSellingCount
  @auctionSellingCount
end

#soldDurationInDaysObject

Returns the value of attribute soldDurationInDays.



22316
22317
22318
# File 'lib/eBay.rb', line 22316

def soldDurationInDays
  @soldDurationInDays
end

#totalAuctionSellingValueObject

Returns the value of attribute totalAuctionSellingValue.



22313
22314
22315
# File 'lib/eBay.rb', line 22313

def totalAuctionSellingValue
  @totalAuctionSellingValue
end

#totalSoldCountObject

Returns the value of attribute totalSoldCount.



22314
22315
22316
# File 'lib/eBay.rb', line 22314

def totalSoldCount
  @totalSoldCount
end

#totalSoldValueObject

Returns the value of attribute totalSoldValue.



22315
22316
22317
# File 'lib/eBay.rb', line 22315

def totalSoldValue
  @totalSoldValue
end