| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::NotificationStatisticsType
Summary information about notifications delivered, failed, errors, queued for a given application ID and time period.
eBay::API::XML::DataType::NotificationStatisticsType inherits from the eBay::API::XML::BaseDataType class
Returns the number of notifications delivered successfully during the given time period.
# Argument: 'xs:int'
Calls: GetNotificationsUsage Returned: Always
# Returns: 'xs:int'
Returns the number of notifications for which there were delivery errors during the given time period.
# Argument: 'xs:int'
Calls: GetNotificationsUsage Returned: Always
# Returns: 'xs:int'
Returns the number of notifications that permanently failed during the given time period.
# Argument: 'xs:int'
Calls: GetNotificationsUsage Returned: Always
# Returns: 'xs:int'
Returns the number of new notifications that were queued during the given time period.
# Argument: 'xs:int'
Calls: GetNotificationsUsage Returned: Always
# Returns: 'xs:int'
Returns the number of pending notifications in the queue during the given time period.
# Argument: 'xs:int'
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;