NAME

MooseX::Types::CyberSource - Moose Types specific to CyberSource

VERSION

version v0.2.2

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

  • Decision

    Base Type: C<enum>
    
    CyberSource Response Decision

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/xenoterracide/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) 2011 by Caleb Cushing.

This is free software, licensed under:

The Artistic License 2.0 (GPL Compatible)