| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::BuyingSummaryType
eBay::API::XML::DataType::BuyingSummaryType inherits from the eBay::API::XML::BaseDataType class
The number of items the user has made best offers on.
# Argument: 'xs:int'
Calls: GetMyeBayBuying Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The number of items the user has bid on.
# Argument: 'xs:int'
Calls: GetMyeBayBuying Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The total cost of items the user is presently winning.
# Argument: 'ns:AmountType'
Calls: GetMyeBayBuying Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'ns:AmountType'
The total cost of items the user has bid on and won.
# Argument: 'ns:AmountType'
Calls: GetMyeBayBuying Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'ns:AmountType'
The number of items the user has bid on and is winning, but that have not yet ended.
# Argument: 'xs:int'
Calls: GetMyeBayBuying Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The number of items the user has bid on and won.
# Argument: 'xs:int'
Calls: GetMyeBayBuying Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
The time period for which won items are displayed. Default is 31 days.
# Argument: 'xs:int'
Calls: GetMyeBayBuying Returned: Always Details: DetailLevel: none, ReturnSummary, ReturnAll
# Returns: 'xs:int'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::BuyingSummaryType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. BuyingSummaryType.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 = ( [ 'BestOfferCount', 'xs:int', '', '', '' ] , [ 'BiddingCount', 'xs:int', '', '', '' ] , [ 'TotalWinningCost', 'ns:AmountType', '' ,'eBay::API::XML::DataType::AmountType', '1' ] , [ 'TotalWonCost', 'ns:AmountType', '' ,'eBay::API::XML::DataType::AmountType', '1' ] , [ 'WinningCount', 'xs:int', '', '', '' ] , [ 'WonCount', 'xs:int', '', '', '' ] , [ 'WonDurationInDays', 'xs:int', '', '', '' ] ); 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 setBestOfferCount { my $self = shift; $self->{'BestOfferCount'} = shift }
sub getBestOfferCount { my $self = shift; return $self->{'BestOfferCount'}; }
sub setBiddingCount { my $self = shift; $self->{'BiddingCount'} = shift }
sub getBiddingCount { my $self = shift; return $self->{'BiddingCount'}; }
sub setTotalWinningCost { my $self = shift; $self->{'TotalWinningCost'} = shift }
sub getTotalWinningCost { my $self = shift; return $self->_getDataTypeInstance( 'TotalWinningCost' ,'eBay::API::XML::DataType::AmountType'); }
sub setTotalWonCost { my $self = shift; $self->{'TotalWonCost'} = shift }
sub getTotalWonCost { my $self = shift; return $self->_getDataTypeInstance( 'TotalWonCost' ,'eBay::API::XML::DataType::AmountType'); }
sub setWinningCount { my $self = shift; $self->{'WinningCount'} = shift }
sub getWinningCount { my $self = shift; return $self->{'WinningCount'}; }
sub setWonCount { my $self = shift; $self->{'WonCount'} = shift }
sub getWonCount { my $self = shift; return $self->{'WonCount'}; }
sub setWonDurationInDays { my $self = shift; $self->{'WonDurationInDays'} = shift }
sub getWonDurationInDays { my $self = shift; return $self->{'WonDurationInDays'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;