line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paymill::REST::Transactions; |
2
|
|
|
|
|
|
|
|
3
|
9
|
|
|
9
|
|
6117
|
use Moose; |
|
9
|
|
|
|
|
23
|
|
|
9
|
|
|
|
|
87
|
|
4
|
|
|
|
|
|
|
with 'Paymill::REST::Base'; |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has '+type' => (default => 'transaction'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
__END__ |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=encoding utf-8 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paymill::REST::Transactions - Item factory for transactions |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 AVAILABLE OPERATIONS |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=over 4 |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=item create |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
L<Paymill::REST::Operations::Create> |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=item find |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
L<Paymill::REST::Operations::Find> |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=item list |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
L<Paymill::REST::Operations::List> |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=back |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 SEE ALSO |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
L<Paymill::REST> for more documentation. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 AUTHOR |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Matthias Dietrich E<lt>perl@rainboxx.deE<gt> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 COPYRIGHT |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Copyright 2013 - Matthias Dietrich |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 LICENSE |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
51
|
|
|
|
|
|
|
it under the same terms as Perl itself. |