eBay::API::XML::Call::ApproveLiveAuctionBidders::ApproveLiveAuctionBiddersResponseType - eBay::API::XML::Call::ApproveLiveAuctionBidders::ApproveLiveAuctionBiddersResponseType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::ApproveLiveAuctionBidders::ApproveLiveAuctionBiddersResponseType

DESCRIPTION

Top

Provides the Live Auction sellers with the ability to approve, decline, and set the bidding limit of the bidders that have signed up for a catalog.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::ApproveLiveAuctionBidders::ApproveLiveAuctionBiddersResponseType inherits from the eBay::API::XML::ResponseDataType class

Subroutines:

Top

setBidderUpdateStatus()

Contains the results of the request for each item. Mulitple bidders can be approved with one call.

# Argument: 'ns:LiveAuctionApprovalStatusArrayType'

getBidderUpdateStatus()

  Returned: Always
#    Returns: 'ns:LiveAuctionApprovalStatusArrayType'


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

package eBay::API::XML::Call::ApproveLiveAuctionBidders::ApproveLiveAuctionBiddersResponseType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. ApproveLiveAuctionBiddersResponseType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  

use eBay::API::XML::ResponseDataType;
our @ISA = ("eBay::API::XML::ResponseDataType");

use eBay::API::XML::DataType::LiveAuctionApprovalStatusArrayType;


my @gaProperties = ( [ 'BidderUpdateStatus', 'ns:LiveAuctionApprovalStatusArrayType', ''
	     ,'eBay::API::XML::DataType::LiveAuctionApprovalStatusArrayType', '1' ]
                    );
push @gaProperties, @{eBay::API::XML::ResponseDataType::getPropertiesList()};

my @gaAttributes = ( 
                    );
push @gaAttributes, @{eBay::API::XML::ResponseDataType::getAttributesList()};

sub new {
  my $classname = shift;
  my %args = @_;
  my $self = $classname->SUPER::new(%args);
  return $self;
}

sub isScalar {
   return 0; 
}



sub setBidderUpdateStatus {
  my $self = shift;
  $self->{'BidderUpdateStatus'} = shift
}

sub getBidderUpdateStatus {
  my $self = shift;
  return $self->_getDataTypeInstance( 'BidderUpdateStatus'
		,'eBay::API::XML::DataType::LiveAuctionApprovalStatusArrayType');
}





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

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



1;