| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::SellingSummaryType
Contains summary information about the items the seller is selling.
eBay::API::XML::DataType::SellingSummaryType inherits from the eBay::API::XML::BaseDataType class
The number of currently active auctions that will sell. That is, there is at least one bidder, and any reserve price has been met. Equivalent to the "Will Sell" value in My eBay.
# Argument: 'xs:int'
Calls: GetMyeBaySelling Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The total number of bids made on the seller's active listings.
# Argument: 'xs:int'
Calls: GetMyeBaySelling Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The total number of currently active auctions for a given seller. Note that this does not include listings that are FixedPriceItem or StoresFixedPrice. Equivalent to the "Auction Quantity" value in My eBay.
# Argument: 'xs:int'
Calls: GetMyeBaySelling Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The average duration, in days, of all items sold.
# Argument: 'xs:int'
Calls: GetMyeBaySelling Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The total value of all items the seller has for sale in all listings.
# Argument: 'ns:AmountType'
Calls: GetMyeBaySelling Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'ns:AmountType'
The total number of items the seller has sold.
SeeLink: URL: https://ebay.custhelp.com/cgi-bin/ebay.cfg/php/enduser/std_adp.php?p_faqid=1111 Title: Discrepancies Between Results of GetMyeBaySelling and GetSellerTransactions
# Argument: 'xs:int'
Calls: GetMyeBaySelling Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The total monetary value of the items the seller has sold.
SeeLink: URL: https://ebay.custhelp.com/cgi-bin/ebay.cfg/php/enduser/std_adp.php?p_faqid=1111 Title: Discrepancies Between Results of GetMyeBaySelling and GetSellerTransactions
# Argument: 'ns:AmountType'
Calls: GetMyeBaySelling Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'ns:AmountType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::SellingSummaryType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SellingSummaryType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseDataType; our @ISA = ("eBay::API::XML::BaseDataType"); use eBay::API::XML::DataType::AmountType; my @gaProperties = ( [ 'ActiveAuctionCount', 'xs:int', '', '', '' ] , [ 'AuctionBidCount', 'xs:int', '', '', '' ] , [ 'AuctionSellingCount', 'xs:int', '', '', '' ] , [ 'SoldDurationInDays', 'xs:int', '', '', '' ] , [ 'TotalAuctionSellingValue', 'ns:AmountType', '' ,'eBay::API::XML::DataType::AmountType', '1' ] , [ 'TotalSoldCount', 'xs:int', '', '', '' ] , [ 'TotalSoldValue', 'ns:AmountType', '' ,'eBay::API::XML::DataType::AmountType', '1' ] ); push @gaProperties, @{eBay::API::XML::BaseDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::BaseDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setActiveAuctionCount { my $self = shift; $self->{'ActiveAuctionCount'} = shift }
sub getActiveAuctionCount { my $self = shift; return $self->{'ActiveAuctionCount'}; }
sub setAuctionBidCount { my $self = shift; $self->{'AuctionBidCount'} = shift }
sub getAuctionBidCount { my $self = shift; return $self->{'AuctionBidCount'}; }
sub setAuctionSellingCount { my $self = shift; $self->{'AuctionSellingCount'} = shift }
sub getAuctionSellingCount { my $self = shift; return $self->{'AuctionSellingCount'}; }
sub setSoldDurationInDays { my $self = shift; $self->{'SoldDurationInDays'} = shift }
sub getSoldDurationInDays { my $self = shift; return $self->{'SoldDurationInDays'}; }
sub setTotalAuctionSellingValue { my $self = shift; $self->{'TotalAuctionSellingValue'} = shift }
sub getTotalAuctionSellingValue { my $self = shift; return $self->_getDataTypeInstance( 'TotalAuctionSellingValue' ,'eBay::API::XML::DataType::AmountType'); }
sub setTotalSoldCount { my $self = shift; $self->{'TotalSoldCount'} = shift }
sub getTotalSoldCount { my $self = shift; return $self->{'TotalSoldCount'}; }
sub setTotalSoldValue { my $self = shift; $self->{'TotalSoldValue'} = shift }
sub getTotalSoldValue { my $self = shift; return $self->_getDataTypeInstance( 'TotalSoldValue' ,'eBay::API::XML::DataType::AmountType'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;