File Coverage

lib/eBay/API/XML/Call/GetMyeBayReminders.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2              
3             package eBay::API::XML::Call::GetMyeBayReminders;
4              
5 1     1   2560 use strict;
  1         1  
  1         32  
6 1     1   7 use warnings;
  1         3  
  1         32  
7              
8             ##########################################################################
9             #
10             # Module: ............... eBay/API/XML
11             # File: ................. GetMyeBayReminders.pm
12             # Generated by: ......... genEBayApiDataTypes.pl
13             # Last Generated: ....... 08/24/2008 16:44
14             # API Release Number: ... 579
15             #
16             ##########################################################################
17              
18             =head1 NAME
19              
20             eBay::API::XML::Call::GetMyeBayReminders
21              
22             =head1 DESCRIPTION
23              
24              
25              
26             =head1 SYNOPSIS
27              
28             =cut
29              
30              
31             =head1 INHERITANCE
32              
33             eBay::API::XML::Call::GetMyeBayReminders inherits from the L class
34              
35             =cut
36              
37 1     1   44 use eBay::API::XML::BaseCall;
  0            
  0            
38             our @ISA = ("eBay::API::XML::BaseCall");
39              
40             use eBay::API::XML::Call::GetMyeBayReminders::GetMyeBayRemindersRequestType;
41             use eBay::API::XML::Call::GetMyeBayReminders::GetMyeBayRemindersResponseType;
42              
43              
44             =head1 Subroutines:
45              
46             =cut
47              
48             sub getApiCallName {
49             return 'GetMyeBayReminders';
50             }
51             sub getRequestDataTypeFullPackage {
52             return 'eBay::API::XML::Call::GetMyeBayReminders::GetMyeBayRemindersRequestType';
53             }
54             sub getResponseDataTypeFullPackage {
55             return 'eBay::API::XML::Call::GetMyeBayReminders::GetMyeBayRemindersResponseType';
56             }
57              
58             #
59             # input properties
60             #
61              
62             =head2 setBuyingReminders()
63              
64             Specifies the type of buying reminders for which you want information.
65              
66             RequiredInput: No
67             # Argument: 'ns:ReminderCustomizationType'
68              
69             =cut
70            
71             sub setBuyingReminders {
72             my $self = shift;
73             my $pBuyingReminders = shift;
74             $self->getRequestDataType()->setBuyingReminders($pBuyingReminders);
75             }
76              
77             =head2 setSellingReminders()
78              
79             Specifies the type of selling reminders for which you want information.
80              
81             RequiredInput: No
82             # Argument: 'ns:ReminderCustomizationType'
83              
84             =cut
85            
86             sub setSellingReminders {
87             my $self = shift;
88             my $pSellingReminders = shift;
89             $self->getRequestDataType()->setSellingReminders($pSellingReminders);
90             }
91              
92              
93              
94             #
95             # output properties
96             #
97              
98             =head2 getBuyingReminders()
99              
100             Contains the buying reminders in the user's My eBay account that match
101             the request criteria.
102              
103             Returned: Conditionally
104             # Returns: 'ns:RemindersType'
105              
106             =cut
107            
108             sub getBuyingReminders {
109             my $self = shift;
110             return $self->getResponseDataType()->getBuyingReminders();
111             }
112              
113             =head2 getSellingReminders()
114              
115             Contains the selling reminders in the user's My eBay account that match
116             the request criteria.
117              
118             Returned: Conditionally
119             # Returns: 'ns:RemindersType'
120              
121             =cut
122            
123             sub getSellingReminders {
124             my $self = shift;
125             return $self->getResponseDataType()->getSellingReminders();
126             }
127              
128              
129              
130              
131              
132             1;