eBay::API::XML::DataType::NotificationDetailsArrayType - eBay::API::XML::DataType::NotificationDetailsArrayType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::NotificationDetailsArrayType

DESCRIPTION

Top

Returns information about notifications sent to the given application for the given ItemID. It will only be returned if ItemID was specified in the input parameters.

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setNotificationDetails()

List of notifications, if there are any, for the given ItemID and given time period.

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

getNotificationDetails()

  Calls: GetNotificationsUsage
  Returned: Conditionally

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


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

package eBay::API::XML::DataType::NotificationDetailsArrayType;

use strict;
use warnings;  

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


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

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





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

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



1;