eBay::API::XML::DataType::BiddingSummaryType - eBay::API::XML::DataType::BiddingSummaryType documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::BiddingSummaryType

DESCRIPTION

Top

Contains bidding summary information for the bidder of an item.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::DataType::BiddingSummaryType inherits from the eBay::API::XML::BaseDataType class

Subroutines:

Top

setBidActivityWithSeller()

Percentage of the bidder's total bids that the bidder placed on items that the seller is offering.

# Argument: 'xs:int'

getBidActivityWithSeller()

  Calls: GetAllBidders
  Returned: Conditionally

# Returns: 'xs:int'

setBidRetractions()

The total number of bids that the bidder has retracted.

# Argument: 'xs:int'

getBidRetractions()

  Calls: GetAllBidders
  Returned: Conditionally

# Returns: 'xs:int'

setBidsToUniqueCategories()

For items that the bidder has bid on, the number of unique categories that they belong to.

# Argument: 'xs:int'

getBidsToUniqueCategories()

  Calls: GetAllBidders
  Returned: Conditionally

# Returns: 'xs:int'

setBidsToUniqueSellers()

Number of unique sellers whose items the bidder has placed bids on.

# Argument: 'xs:int'

getBidsToUniqueSellers()

  Calls: GetAllBidders
  Returned: Conditionally

# Returns: 'xs:int'

setItemBidDetails()

Detail bidding information on the items that the bidder has bid on.

# Argument: reference to an array of 'ns:ItemBidDetailsType'

getItemBidDetails()

  Calls: GetAllBidders
  Returned: Conditionally

# Returns: reference to an array of 'ns:ItemBidDetailsType'

setSummaryDays()

The number of days included in the summary. Currently always set to 30 days.

# Argument: 'xs:int'

getSummaryDays()

  Calls: GetAllBidders
  Returned: Conditionally

# Returns: 'xs:int'

setTotalBids()

The total number of bids that the bidder has placed.

# Argument: 'xs:int'

getTotalBids()

  Calls: GetAllBidders
  Returned: Conditionally

# Returns: 'xs:int'


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::BiddingSummaryType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. BiddingSummaryType.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::ItemBidDetailsType;


my @gaProperties = ( [ 'BidActivityWithSeller', 'xs:int', '', '', '' ]
	, [ 'BidRetractions', 'xs:int', '', '', '' ]
	, [ 'BidsToUniqueCategories', 'xs:int', '', '', '' ]
	, [ 'BidsToUniqueSellers', 'xs:int', '', '', '' ]
	, [ 'ItemBidDetails', 'ns:ItemBidDetailsType', '1'
	     ,'eBay::API::XML::DataType::ItemBidDetailsType', '1' ]
	, [ 'SummaryDays', 'xs:int', '', '', '' ]
	, [ 'TotalBids', '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 setBidActivityWithSeller {
  my $self = shift;
  $self->{'BidActivityWithSeller'} = shift
}

sub getBidActivityWithSeller {
  my $self = shift;
  return $self->{'BidActivityWithSeller'};
}


sub setBidRetractions {
  my $self = shift;
  $self->{'BidRetractions'} = shift
}

sub getBidRetractions {
  my $self = shift;
  return $self->{'BidRetractions'};
}


sub setBidsToUniqueCategories {
  my $self = shift;
  $self->{'BidsToUniqueCategories'} = shift
}

sub getBidsToUniqueCategories {
  my $self = shift;
  return $self->{'BidsToUniqueCategories'};
}


sub setBidsToUniqueSellers {
  my $self = shift;
  $self->{'BidsToUniqueSellers'} = shift
}

sub getBidsToUniqueSellers {
  my $self = shift;
  return $self->{'BidsToUniqueSellers'};
}


sub setItemBidDetails {
  my $self = shift;
  $self->{'ItemBidDetails'} = 
		$self->convertArray_To_RefToArrayIfNeeded(@_);
}

sub getItemBidDetails {
  my $self = shift;
  return $self->_getDataTypeArray('ItemBidDetails');
}


sub setSummaryDays {
  my $self = shift;
  $self->{'SummaryDays'} = shift
}

sub getSummaryDays {
  my $self = shift;
  return $self->{'SummaryDays'};
}


sub setTotalBids {
  my $self = shift;
  $self->{'TotalBids'} = shift
}

sub getTotalBids {
  my $self = shift;
  return $self->{'TotalBids'};
}





##  Attribute and Property lists
sub getPropertiesList {
   my $self = shift;
   return \@gaProperties;
}

sub getAttributesList {
   my $self = shift;
   return \@gaAttributes;
}



1;