eBay::API::XML::DataType::AccountEntriesType - eBay::API::XML::DataType::AccountEntriesType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::AccountEntriesType

DESCRIPTION

Top

Collection of zero, one, or multiple individual detail account entries. Contains one AccountEntry object for each account entry returned. See the schema documentation for AccountEntryType for details on its properties. You can uniquely identify the entries that the GetAccount call returns within the AccountEntries tag. Specifically, the following fields, returned within the AccountEntries tag, can be used in combination as a unique key: AccountEntry.Date, AccountEntry.AccountDetailsEntryType, AccountEntry.ItemID, and AccountEntry.RefNumber.

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setAccountEntry()

Contains the data for one account entry. (See the schema documentation for AccountEntryType for details on its properties.)

# Argument: reference to an array of 'ns:AccountEntryType'

getAccountEntry()

  Calls: GetAccount
  Returned: Conditionally

# Returns: reference to an array of 'ns:AccountEntryType'


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

package eBay::API::XML::DataType::AccountEntriesType;

use strict;
use warnings;  

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


my @gaProperties = ( [ 'AccountEntry', 'ns:AccountEntryType', '1'
	     ,'eBay::API::XML::DataType::AccountEntryType', '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 setAccountEntry {
  my $self = shift;
  $self->{'AccountEntry'} = 
		$self->convertArray_To_RefToArrayIfNeeded(@_);
}

sub getAccountEntry {
  my $self = shift;
  return $self->_getDataTypeArray('AccountEntry');
}





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

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



1;