line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Business::CyberSource::Response::Role::Amount; |
2
|
2
|
|
|
2
|
|
901
|
use strict; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
48
|
|
3
|
2
|
|
|
2
|
|
7
|
use warnings; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
39
|
|
4
|
2
|
|
|
2
|
|
7
|
use namespace::autoclean; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
9
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.010008'; # VERSION |
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
106
|
use Moose::Role; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
9
|
|
9
|
2
|
|
|
2
|
|
6323
|
use MooseX::RemoteHelper; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
10
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has amount => ( |
12
|
|
|
|
|
|
|
isa => 'Num', |
13
|
|
|
|
|
|
|
remote_name => 'amount', |
14
|
|
|
|
|
|
|
is => 'rw', |
15
|
|
|
|
|
|
|
predicate => 'has_amount', |
16
|
|
|
|
|
|
|
); |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
# ABSTRACT: Role for Amount |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=pod |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=encoding UTF-8 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 NAME |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Business::CyberSource::Response::Role::Amount - Role for Amount |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 VERSION |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
version 0.010008 |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 BUGS |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website |
38
|
|
|
|
|
|
|
https://github.com/hostgator/business-cybersource/issues |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
41
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
42
|
|
|
|
|
|
|
feature. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 AUTHOR |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Caleb Cushing <xenoterracide@gmail.com> |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This software is Copyright (c) 2017 by Caleb Cushing <xenoterracide@gmail.com>. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This is free software, licensed under: |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |