eBay::API::XML::DataType::NotificationStatisticsType - eBay::API::XML::DataType::NotificationStatisticsType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::NotificationStatisticsType

DESCRIPTION

Top

Summary information about notifications delivered, failed, errors, queued for a given application ID and time period.

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setDeliveredCount()

Returns the number of notifications delivered successfully during the given time period.

# Argument: 'xs:int'

getDeliveredCount()

  Calls: GetNotificationsUsage
  Returned: Always

# Returns: 'xs:int'

setErrorCount()

Returns the number of notifications for which there were delivery errors during the given time period.

# Argument: 'xs:int'

getErrorCount()

  Calls: GetNotificationsUsage
  Returned: Always

# Returns: 'xs:int'

setExpiredCount()

Returns the number of notifications that permanently failed during the given time period.

# Argument: 'xs:int'

getExpiredCount()

  Calls: GetNotificationsUsage
  Returned: Always

# Returns: 'xs:int'

setQueuedNewCount()

Returns the number of new notifications that were queued during the given time period.

# Argument: 'xs:int'

getQueuedNewCount()

  Calls: GetNotificationsUsage
  Returned: Always

# Returns: 'xs:int'

setQueuedPendingCount()

Returns the number of pending notifications in the queue during the given time period.

# Argument: 'xs:int'

getQueuedPendingCount()

  Calls: GetNotificationsUsage
  Returned: Always

# Returns: 'xs:int'


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

package eBay::API::XML::DataType::NotificationStatisticsType;

use strict;
use warnings;  

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



my @gaProperties = ( [ 'DeliveredCount', 'xs:int', '', '', '' ]
	, [ 'ErrorCount', 'xs:int', '', '', '' ]
	, [ 'ExpiredCount', 'xs:int', '', '', '' ]
	, [ 'QueuedNewCount', 'xs:int', '', '', '' ]
	, [ 'QueuedPendingCount', 'xs:int', '', '', '' ]
                    );
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 setDeliveredCount {
  my $self = shift;
  $self->{'DeliveredCount'} = shift
}

sub getDeliveredCount {
  my $self = shift;
  return $self->{'DeliveredCount'};
}


sub setErrorCount {
  my $self = shift;
  $self->{'ErrorCount'} = shift
}

sub getErrorCount {
  my $self = shift;
  return $self->{'ErrorCount'};
}


sub setExpiredCount {
  my $self = shift;
  $self->{'ExpiredCount'} = shift
}

sub getExpiredCount {
  my $self = shift;
  return $self->{'ExpiredCount'};
}


sub setQueuedNewCount {
  my $self = shift;
  $self->{'QueuedNewCount'} = shift
}

sub getQueuedNewCount {
  my $self = shift;
  return $self->{'QueuedNewCount'};
}


sub setQueuedPendingCount {
  my $self = shift;
  $self->{'QueuedPendingCount'} = shift
}

sub getQueuedPendingCount {
  my $self = shift;
  return $self->{'QueuedPendingCount'};
}





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

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



1;