File Coverage

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