NAME
MooseX::Types::CyberSource - Moose Types specific to CyberSource
VERSION
version 0.010008
SYNOPSIS
{
package My::CyberSource::Response;
use Moose;
use MooseX::Types::CyberSource qw( Decision );
has decision => (
is => 'ro',
isa => Decision,
);
__PACKAGE__->meta->make_immutable;
}
my $response = My::CyberSource::Response->new({
decison => 'ACCEPT'
});
DESCRIPTION
This module provides CyberSource specific Moose Types.
TYPES
ClientDecisionBase Type:
enumCyberSource Response Decision
CardTypeCodeBase Type:
enumNumeric codes that specify Card types. Codes denoted with an asterisk* are automatically detected when using
CommerceIndicatorBase Type:
enumValid strings for for use in in the commerceIndicator field.
CvResultsBase Type:
enumSingle character code that defines the result of having sent a CVN. See CyberSource's Documentation on Card Verification Results for more information.
AVSResultsBase Type:
enumSingle character code that defines the result of having sent a CVN. See CyberSource's Documentation on AVS Results for more information.
DCCIndicatorBase Type:
enumSingle character code that defines the DCC status
1Converted - DCC is being used.
2Non-convertible - DCC cannot be used.
3Declined - DCC could be used, but the customer declined it.
BUGS
Please report any bugs or feature requests on the bugtracker website https://github.com/hostgator/business-cybersource/issues
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
AUTHOR
Caleb Cushing <xenoterracide@gmail.com>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2017 by Caleb Cushing <xenoterracide@gmail.com>.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)