| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::BidApprovalArrayType
Mulitple bidders can be approved with one call.
eBay::API::XML::DataType::BidApprovalArrayType inherits from the eBay::API::XML::BaseDataType class
The settings the seller specifies about one user when approving or denying that user's request to bid on items in the seller's Live Auctions catalog.
Calls: ApproveLiveAuctionBidders RequiredInput: No
# Argument: reference to an array of 'ns:BidApprovalType'
# Returns: reference to an array of 'ns:BidApprovalType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::BidApprovalArrayType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. BidApprovalArrayType.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::BidApprovalType; my @gaProperties = ( [ 'LiveAuctionBid', 'ns:BidApprovalType', '1' ,'eBay::API::XML::DataType::BidApprovalType', '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 setLiveAuctionBid { my $self = shift; $self->{'LiveAuctionBid'} = $self->convertArray_To_RefToArrayIfNeeded(@_); }
sub getLiveAuctionBid { my $self = shift; return $self->_getDataTypeArray('LiveAuctionBid'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;