File Coverage

blib/lib/Paymill/REST/Refunds.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


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