line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paymill::REST::Webhooks; |
2
|
|
|
|
|
|
|
|
3
|
9
|
|
|
9
|
|
6213
|
use Moose; |
|
9
|
|
|
|
|
28
|
|
|
9
|
|
|
|
|
141
|
|
4
|
|
|
|
|
|
|
with 'Paymill::REST::Base'; |
5
|
|
|
|
|
|
|
with 'Paymill::REST::Operations::Delete'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has '+type' => (default => 'webhook'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
__END__ |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=encoding utf-8 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paymill::REST::Webhooks - Item factory for webhooks |
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. |