| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::AuthenticationEntryArrayType
Container for a list of AuthenticationEntries. Can contain zero, one, or multiple AuthenticationEntryType objects.
eBay::API::XML::DataType::AuthenticationEntryArrayType inherits from the eBay::API::XML::BaseDataType class
Contains the data properties that define one authentication entry. Multiple AuthenticationEntry fields can be returned.
# Argument: reference to an array of 'ns:AuthenticationEntryType'
Calls: GetReturnURL Returned: Conditionally
# Returns: reference to an array of 'ns:AuthenticationEntryType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::AuthenticationEntryArrayType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. AuthenticationEntryArrayType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 07/07/2008 17:42 # API Release Number: ... 571 # ##########################################################################
use eBay::API::XML::BaseDataType; our @ISA = ("eBay::API::XML::BaseDataType"); use eBay::API::XML::DataType::AuthenticationEntryType; my @gaProperties = ( [ 'AuthenticationEntry', 'ns:AuthenticationEntryType', '1' ,'eBay::API::XML::DataType::AuthenticationEntryType', '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 setAuthenticationEntry { my $self = shift; $self->{'AuthenticationEntry'} = $self->convertArray_To_RefToArrayIfNeeded(@_); }
sub getAuthenticationEntry { my $self = shift; return $self->_getDataTypeArray('AuthenticationEntry'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;