eBay::API::XML::DataType::BidRangeType - eBay::API::XML::DataType::BidRangeType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::BidRangeType

DESCRIPTION

Top

Contains fields for limiting a call response to items with a minimum or maximum number of bids. You also can specify a bid range by specifying both a minimum and maximum number of bids in one call.

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setMaximumBidCount()

Limits the results to items with a maximum number of bids.

  Calls: GetSearchResults
  RequiredInput: No

# Argument: 'xs:int'

getMaximumBidCount()

# Returns: 'xs:int'

setMinimumBidCount()

Limits the results to items with a minimum number of bids.

  Calls: GetSearchResults
  RequiredInput: No

# Argument: 'xs:int'

getMinimumBidCount()

# Returns: 'xs:int'


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

package eBay::API::XML::DataType::BidRangeType;

use strict;
use warnings;  

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



my @gaProperties = ( [ 'MaximumBidCount', 'xs:int', '', '', '' ]
	, [ 'MinimumBidCount', '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 setMaximumBidCount {
  my $self = shift;
  $self->{'MaximumBidCount'} = shift
}

sub getMaximumBidCount {
  my $self = shift;
  return $self->{'MaximumBidCount'};
}


sub setMinimumBidCount {
  my $self = shift;
  $self->{'MinimumBidCount'} = shift
}

sub getMinimumBidCount {
  my $self = shift;
  return $self->{'MinimumBidCount'};
}





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

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



1;