| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::LiveAuctionApprovalStatusType
The approval status of a user who wants to bid on a live auction.
eBay::API::XML::DataType::LiveAuctionApprovalStatusType inherits from the eBay::API::XML::BaseDataType class
The bidder's approval status. Possible values are Approvied, Denied, or a message indicating a problem that prevented the bidder from being approved (or denied), such as an invalid ApproveBiddingLimit value.
# Argument: 'xs:string'
Calls: ApproveLiveAuctionBidders Returned: Always
# Returns: 'xs:string'
User ID of the bidder.
# Argument: 'ns:UserIDType'
Calls: ApproveLiveAuctionBidders Returned: Always
# Returns: 'ns:UserIDType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::LiveAuctionApprovalStatusType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. LiveAuctionApprovalStatusType.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::UserIDType; my @gaProperties = ( [ 'Status', 'xs:string', '', '', '' ] , [ 'UserID', 'ns:UserIDType', '' ,'eBay::API::XML::DataType::UserIDType', '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 setStatus { my $self = shift; $self->{'Status'} = shift }
sub getStatus { my $self = shift; return $self->{'Status'}; }
sub setUserID { my $self = shift; $self->{'UserID'} = shift }
sub getUserID { my $self = shift; return $self->_getDataTypeInstance( 'UserID' ,'eBay::API::XML::DataType::UserIDType'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;