File Coverage

lib/eBay/API/XML/Call/GetReturnURL.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::GetReturnURL;
4              
5 1     1   2253 use strict;
  1         3  
  1         26  
6 1     1   4 use warnings;
  1         1  
  1         31  
7              
8             ##########################################################################
9             #
10             # Module: ............... eBay/API/XML
11             # File: ................. GetReturnURL.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::GetReturnURL
21              
22             =head1 DESCRIPTION
23              
24              
25              
26             =head1 SYNOPSIS
27              
28             =cut
29              
30              
31             =head1 INHERITANCE
32              
33             eBay::API::XML::Call::GetReturnURL inherits from the L class
34              
35             =cut
36              
37 1     1   38 use eBay::API::XML::BaseCall;
  0            
  0            
38             our @ISA = ("eBay::API::XML::BaseCall");
39              
40             use eBay::API::XML::Call::GetReturnURL::GetReturnURLRequestType;
41             use eBay::API::XML::Call::GetReturnURL::GetReturnURLResponseType;
42              
43              
44             =head1 Subroutines:
45              
46             =cut
47              
48             sub getApiCallName {
49             return 'GetReturnURL';
50             }
51             sub getRequestDataTypeFullPackage {
52             return 'eBay::API::XML::Call::GetReturnURL::GetReturnURLRequestType';
53             }
54             sub getResponseDataTypeFullPackage {
55             return 'eBay::API::XML::Call::GetReturnURL::GetReturnURLResponseType';
56             }
57              
58             #
59             # input properties
60             #
61              
62              
63              
64             #
65             # output properties
66             #
67              
68             =head2 getApplicationDisplayName()
69              
70             Display name for the application. When your application
71             redirects users to eBay to complete the authentication and
72             authorization process, eBay displays this value to identify
73             your application to the user.
74              
75             Returned: Always
76             # Returns: 'xs:string'
77              
78             =cut
79            
80             sub getApplicationDisplayName {
81             my $self = shift;
82             return $self->getResponseDataType()->getApplicationDisplayName();
83             }
84              
85             =head2 getAuthenticationEntryArray()
86              
87             One or more sets of authentication preferences and other data that you
88             have configured for your application (if any). Call SetReturnURL to
89             configure this data.
90              
91             Returned: Conditionally
92             # Returns: 'ns:AuthenticationEntryArrayType'
93              
94             =cut
95            
96             sub getAuthenticationEntryArray {
97             my $self = shift;
98             return $self->getResponseDataType()->getAuthenticationEntryArray();
99             }
100              
101              
102              
103              
104              
105             1;