| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::RemindersType
Specifies the type of reminders for which you want information.
eBay::API::XML::DataType::RemindersType inherits from the eBay::API::XML::BaseDataType class
The number of reminders to the seller on declined shipping time extension requests by the buyer
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders advising the buyer to send documents for credit card processing.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders that feedback has not yet been received by the buyer or seller.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally
# Returns: 'xs:int'
The number of reminders that feedback has not yet been sent by the buyer or seller.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally
# Returns: 'xs:int'
The number of reminders to the seller on item receipt confirmation pending from buyer
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders requesting the Buyer to confirm item receipt to seller.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders advising the buyer that the buyer has been outbid.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: BuyingReminders
# Returns: 'xs:int'
The number of reminders that the seller has not yet received a payment.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders requesting that the buyer send payment.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: BuyingReminders
# Returns: 'xs:int'
The number of reminders to the seller on pending shipping time extension requests with the buyer
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders requesting the buyer to process request time extension submitted by the seller.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders to the buyer on refund cancelled.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders to the seller on refunds initiated
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders to the buyer on refund on hold.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders advising the seller that relisting is needed.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders requesting that the seller review second chance offers.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders requesting the seller to provide shipping details
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of reminders advising the seller that shipping is needed.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
The number of new leads the seller has recieved.
# Argument: 'xs:int'
Calls: GetMyeBayReminders Returned: Conditionally Context: SellingReminders
# Returns: 'xs:int'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::RemindersType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. RemindersType.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 = ( [ 'DeclinedRTERequestCount', 'xs:int', '', '', '' ] , [ 'DocsForCCProcessingToSendCount', 'xs:int', '', '', '' ] , [ 'FeedbackToReceiveCount', 'xs:int', '', '', '' ] , [ 'FeedbackToSendCount', 'xs:int', '', '', '' ] , [ 'ItemReceiptConfirmationToReceiveCount', 'xs:int', '', '', '' ] , [ 'ItemReceiptToConfirmCount', 'xs:int', '', '', '' ] , [ 'OutbidCount', 'xs:int', '', '', '' ] , [ 'PaymentToReceiveCount', 'xs:int', '', '', '' ] , [ 'PaymentToSendCount', 'xs:int', '', '', '' ] , [ 'PendingRTERequestCount', 'xs:int', '', '', '' ] , [ 'RTEToProcessCount', 'xs:int', '', '', '' ] , [ 'RefundCancelledCount', 'xs:int', '', '', '' ] , [ 'RefundInitiatedCount', 'xs:int', '', '', '' ] , [ 'RefundOnHoldCount', 'xs:int', '', '', '' ] , [ 'RelistingNeededCount', 'xs:int', '', '', '' ] , [ 'SecondChanceOfferCount', 'xs:int', '', '', '' ] , [ 'ShippingDetailsToBeProvidedCount', 'xs:int', '', '', '' ] , [ 'ShippingNeededCount', 'xs:int', '', '', '' ] , [ 'TotalNewLeadsCount', '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 setDeclinedRTERequestCount { my $self = shift; $self->{'DeclinedRTERequestCount'} = shift }
sub getDeclinedRTERequestCount { my $self = shift; return $self->{'DeclinedRTERequestCount'}; }
sub setDocsForCCProcessingToSendCount { my $self = shift; $self->{'DocsForCCProcessingToSendCount'} = shift }
sub getDocsForCCProcessingToSendCount { my $self = shift; return $self->{'DocsForCCProcessingToSendCount'}; }
sub setFeedbackToReceiveCount { my $self = shift; $self->{'FeedbackToReceiveCount'} = shift }
sub getFeedbackToReceiveCount { my $self = shift; return $self->{'FeedbackToReceiveCount'}; }
sub setFeedbackToSendCount { my $self = shift; $self->{'FeedbackToSendCount'} = shift }
sub getFeedbackToSendCount { my $self = shift; return $self->{'FeedbackToSendCount'}; }
sub setItemReceiptConfirmationToReceiveCount { my $self = shift; $self->{'ItemReceiptConfirmationToReceiveCount'} = shift }
sub getItemReceiptConfirmationToReceiveCount { my $self = shift; return $self->{'ItemReceiptConfirmationToReceiveCount'}; }
sub setItemReceiptToConfirmCount { my $self = shift; $self->{'ItemReceiptToConfirmCount'} = shift }
sub getItemReceiptToConfirmCount { my $self = shift; return $self->{'ItemReceiptToConfirmCount'}; }
sub setOutbidCount { my $self = shift; $self->{'OutbidCount'} = shift }
sub getOutbidCount { my $self = shift; return $self->{'OutbidCount'}; }
sub setPaymentToReceiveCount { my $self = shift; $self->{'PaymentToReceiveCount'} = shift }
sub getPaymentToReceiveCount { my $self = shift; return $self->{'PaymentToReceiveCount'}; }
sub setPaymentToSendCount { my $self = shift; $self->{'PaymentToSendCount'} = shift }
sub getPaymentToSendCount { my $self = shift; return $self->{'PaymentToSendCount'}; }
sub setPendingRTERequestCount { my $self = shift; $self->{'PendingRTERequestCount'} = shift }
sub getPendingRTERequestCount { my $self = shift; return $self->{'PendingRTERequestCount'}; }
sub setRTEToProcessCount { my $self = shift; $self->{'RTEToProcessCount'} = shift }
sub getRTEToProcessCount { my $self = shift; return $self->{'RTEToProcessCount'}; }
sub setRefundCancelledCount { my $self = shift; $self->{'RefundCancelledCount'} = shift }
sub getRefundCancelledCount { my $self = shift; return $self->{'RefundCancelledCount'}; }
sub setRefundInitiatedCount { my $self = shift; $self->{'RefundInitiatedCount'} = shift }
sub getRefundInitiatedCount { my $self = shift; return $self->{'RefundInitiatedCount'}; }
sub setRefundOnHoldCount { my $self = shift; $self->{'RefundOnHoldCount'} = shift }
sub getRefundOnHoldCount { my $self = shift; return $self->{'RefundOnHoldCount'}; }
sub setRelistingNeededCount { my $self = shift; $self->{'RelistingNeededCount'} = shift }
sub getRelistingNeededCount { my $self = shift; return $self->{'RelistingNeededCount'}; }
sub setSecondChanceOfferCount { my $self = shift; $self->{'SecondChanceOfferCount'} = shift }
sub getSecondChanceOfferCount { my $self = shift; return $self->{'SecondChanceOfferCount'}; }
sub setShippingDetailsToBeProvidedCount { my $self = shift; $self->{'ShippingDetailsToBeProvidedCount'} = shift }
sub getShippingDetailsToBeProvidedCount { my $self = shift; return $self->{'ShippingDetailsToBeProvidedCount'}; }
sub setShippingNeededCount { my $self = shift; $self->{'ShippingNeededCount'} = shift }
sub getShippingNeededCount { my $self = shift; return $self->{'ShippingNeededCount'}; }
sub setTotalNewLeadsCount { my $self = shift; $self->{'TotalNewLeadsCount'} = shift }
sub getTotalNewLeadsCount { my $self = shift; return $self->{'TotalNewLeadsCount'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;