File Coverage

lib/eBay/API/XML/Call/SetReturnURL.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::SetReturnURL;
4              
5 1     1   2524 use strict;
  1         3  
  1         31  
6 1     1   3 use warnings;
  1         3  
  1         26  
7              
8             ##########################################################################
9             #
10             # Module: ............... eBay/API/XML
11             # File: ................. SetReturnURL.pm
12             # Generated by: ......... genEBayApiDataTypes.pl
13             # Last Generated: ....... 07/07/2008 17:42
14             # API Release Number: ... 571
15             #
16             ##########################################################################
17              
18             =head1 NAME
19              
20             eBay::API::XML::Call::SetReturnURL
21              
22             =head1 DESCRIPTION
23              
24              
25              
26             =head1 SYNOPSIS
27              
28             =cut
29              
30              
31             =head1 INHERITANCE
32              
33             eBay::API::XML::Call::SetReturnURL inherits from the L class
34              
35             =cut
36              
37 1     1   34 use eBay::API::XML::BaseCall;
  0            
  0            
38             our @ISA = ("eBay::API::XML::BaseCall");
39              
40             use eBay::API::XML::Call::SetReturnURL::SetReturnURLRequestType;
41             use eBay::API::XML::Call::SetReturnURL::SetReturnURLResponseType;
42              
43              
44             =head1 Subroutines:
45              
46             =cut
47              
48             sub getApiCallName {
49             return 'SetReturnURL';
50             }
51             sub getRequestDataTypeFullPackage {
52             return 'eBay::API::XML::Call::SetReturnURL::SetReturnURLRequestType';
53             }
54             sub getResponseDataTypeFullPackage {
55             return 'eBay::API::XML::Call::SetReturnURL::SetReturnURLResponseType';
56             }
57              
58             #
59             # input properties
60             #
61              
62             =head2 setAction()
63              
64             Specifies whether the authentication entry is being added, deleted, or
65             modified.
66              
67             SeeLink: URL: http://developer.ebay.com/DevZone/XML/docs/WebHelp/index.htm?context=eBay_XML_API&topic=AuthNAuth
68             Title: Authentication & Authorization
69              
70             RequiredInput: Yes
71             # Argument: 'ns:ModifyActionCodeType'
72              
73             =cut
74            
75             sub setAction {
76             my $self = shift;
77             my $sAction = shift;
78             $self->getRequestDataType()->setAction($sAction);
79             }
80              
81             =head2 setApplicationDisplayName()
82              
83             Sets an application display name for the eBay sign-in page.
84             Need not be set with every call. Optional.
85              
86             SeeLink: URL: http://developer.ebay.com/DevZone/XML/docs/WebHelp/index.htm?context=eBay_XML_API&topic=AuthNAuth
87             Title: Authentication & Authorization
88              
89             RequiredInput: No
90             # Argument: 'xs:string'
91              
92             =cut
93            
94             sub setApplicationDisplayName {
95             my $self = shift;
96             my $sApplicationDisplayName = shift;
97             $self->getRequestDataType()->setApplicationDisplayName($sApplicationDisplayName);
98             }
99              
100             =head2 setAuthenticationEntry()
101              
102             The authentication preferences and other data that you are
103             adding, deleting, or modifying.
104              
105             SeeLink: URL: http://developer.ebay.com/DevZone/XML/docs/WebHelp/index.htm?context=eBay_XML_API&topic=AuthNAuth
106             Title: Authentication & Authorization
107              
108             RequiredInput: Yes
109             # Argument: 'ns:AuthenticationEntryType'
110              
111             =cut
112            
113             sub setAuthenticationEntry {
114             my $self = shift;
115             my $pAuthenticationEntry = shift;
116             $self->getRequestDataType()->setAuthenticationEntry($pAuthenticationEntry);
117             }
118              
119              
120              
121             #
122             # output properties
123             #
124              
125              
126              
127              
128              
129             1;