line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Business::Giropay::Request::Status; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Business::Giropay::Request::Status - transaction data of past transactions |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=cut |
8
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
3
|
use Business::Giropay::Types qw/Int Str/; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
10
|
1
|
|
|
1
|
|
329
|
use Moo; |
|
1
|
|
|
|
|
10
|
|
|
1
|
|
|
|
|
5
|
|
11
|
|
|
|
|
|
|
with 'Business::Giropay::Role::Request'; |
12
|
1
|
|
|
1
|
|
195
|
use namespace::clean; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
4
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
See L for attributes common to |
17
|
|
|
|
|
|
|
all request classes. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 reference |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Unique GiroCheckout transaction id. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=cut |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
has reference => ( |
26
|
|
|
|
|
|
|
is => 'ro', |
27
|
|
|
|
|
|
|
isa => Int, |
28
|
|
|
|
|
|
|
required => 1, |
29
|
|
|
|
|
|
|
); |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 response_class |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The response class to use. Defaults to L. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
has response_class => ( |
38
|
|
|
|
|
|
|
is => 'ro', |
39
|
|
|
|
|
|
|
isa => Str, |
40
|
|
|
|
|
|
|
default => "Business::Giropay::Response::Status", |
41
|
|
|
|
|
|
|
); |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 METHODS |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
See L in addition to the following: |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 parameters |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Returns additional parameters for the request. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=cut |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
sub parameters { |
54
|
0
|
|
|
0
|
1
|
|
return ['reference']; |
55
|
|
|
|
|
|
|
} |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 uri |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Returns the URI to be appended to L |
60
|
|
|
|
|
|
|
to construct the appropriate URL for the request. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=cut |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
sub uri { |
65
|
0
|
|
|
0
|
1
|
|
return 'transaction/status'; |
66
|
|
|
|
|
|
|
} |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
1; |