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