File Coverage

blib/lib/Business/CyberSource/Response/Role/ReconciliationID.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


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