File Coverage

blib/lib/Business/CyberSource/RequestPart/Service/Auth.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::RequestPart::Service::Auth;
2 2     2   944 use strict;
  2         3  
  2         49  
3 2     2   6 use warnings;
  2         2  
  2         41  
4 2     2   6 use namespace::autoclean;
  2         2  
  2         16  
5              
6             our $VERSION = '0.010007'; # VERSION
7              
8 2     2   139 use Moose;
  2         2  
  2         11  
9             extends 'Business::CyberSource::RequestPart::Service';
10              
11 2     2   8540 use MooseX::Types::CyberSource qw( CommerceIndicator );
  2         3  
  2         18  
12              
13             has commerce_indicator => (
14             isa => CommerceIndicator,
15             remote_name => 'commerceIndicator',
16             predicate => 'has_commerce_indicator',
17             is => 'rw',
18             );
19              
20             __PACKAGE__->meta->make_immutable;
21             1;
22              
23             # ABSTRACT: Auth
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             Business::CyberSource::RequestPart::Service::Auth - Auth
34              
35             =head1 VERSION
36              
37             version 0.010007
38              
39             =head1 ATTRIBUTES
40              
41             =head2 commerce_indicator
42              
43             The L<commerce_indicator|Business::CyberSource::Response/"commerce_indicator">
44             for the authorization that you are performing.
45              
46             =head1 BUGS
47              
48             Please report any bugs or feature requests on the bugtracker website
49             https://github.com/xenoterracide/business-cybersource/issues
50              
51             When submitting a bug or request, please include a test-file or a
52             patch to an existing test-file that illustrates the bug or desired
53             feature.
54              
55             =head1 AUTHOR
56              
57             Caleb Cushing <xenoterracide@gmail.com>
58              
59             =head1 COPYRIGHT AND LICENSE
60              
61             This software is Copyright (c) 2016 by Caleb Cushing <xenoterracide@gmail.com>.
62              
63             This is free software, licensed under:
64              
65             The Artistic License 2.0 (GPL Compatible)
66              
67             =cut