—use
strict;
use
warnings;
use
namespace::autoclean;
our
$VERSION
=
'0.006005'
;
# VERSION
use
Moose;
my
$true_false
=
sub
{
my
(
$attr
,
$instance
) =
@_
;
return
$attr
->get_value(
$instance
) ?
'true'
:
'false'
;
};
has
ignore_avs_result
=> (
isa
=>
'Bool'
,
remote_name
=>
'ignoreAVSResult'
,
predicate
=>
'has_ignore_avs_result'
,
traits
=> [
'SetOnce'
],
is
=>
'rw'
,
serializer
=>
$true_false
,
);
has
ignore_cv_result
=> (
isa
=>
'Bool'
,
remote_name
=>
'ignoreCVResult'
,
predicate
=>
'has_ignore_cv_result'
,
traits
=> [
'SetOnce'
],
is
=>
'rw'
,
serializer
=>
$true_false
,
);
has
ignore_dav_result
=> (
isa
=>
'Bool'
,
remote_name
=>
'ignoreDAVResult'
,
predicate
=>
'has_ignore_dav_result'
,
traits
=> [
'SetOnce'
],
is
=>
'rw'
,
serializer
=>
$true_false
,
);
has
ignore_export_result
=> (
isa
=>
'Bool'
,
remote_name
=>
'ignoreExportResult'
,
predicate
=>
'has_ignore_export_result'
,
traits
=> [
'SetOnce'
],
is
=>
'rw'
,
serializer
=>
$true_false
,
);
has
ignore_validate_result
=> (
isa
=>
'Bool'
,
remote_name
=>
'ignoreValidateResult'
,
predicate
=>
'has_ignore_validate_result'
,
traits
=> [
'SetOnce'
],
is
=>
'rw'
,
serializer
=>
$true_false
,
);
has
decline_avs_flags
=> (
isa
=> ArrayRef[AVSResult],
remote_name
=>
'declineAVSFlags'
,
predicate
=>
'has_decline_avs_flags'
,
is
=>
'rw'
,
traits
=> [
'Array'
],
serializer
=>
sub
{
my
(
$attr
,
$instance
) =
@_
;
return
join
' '
, @{
$attr
->get_value(
$instance
) };
},
);
has
score_threshold
=> (
isa
=> NumericCode,
remote_name
=>
'scoreThreshold'
,
predicate
=>
'has_score_threshold'
,
traits
=> [
'SetOnce'
],
is
=>
'rw'
,
);
__PACKAGE__->meta->make_immutable;
1;
# ABSTRACT: Business Rules
__END__
=pod
=head1 NAME
Business::CyberSource::RequestPart::BusinessRules - Business Rules
=head1 VERSION
version 0.006005
=head1 ATTRIBUTES
=head2 ignore_avs_result
Boolean that indicates whether to allow C<ccCaptureService> to run even when the
authorization receives an AVS decline. Used only when both C<ccAuthService> and
C<ccCaptureService> are requested at the same time.
Possible values:
=over
=item true
Ignore the results of AVS checking and run the C<ccCaptureService> service.
=item false (default on remote)
If the authorization receives an AVS decline, do not run the
C<ccCaptureService> service.
=back
If the value of this field is true, the list in the
businessRules_declineAVSFlags field is ignored.
=head2 ignore_cv_result
Flag that indicates whether to allow C<ccCaptureService> to run if the value of
the reply field C<ccAuthReply_cvCode> is D or N. Used only when both
C<ccAuthService>
and C<ccCaptureService> are requested at the same time.
Possible values:
=over
=item true
If the value of C<ccAuthReply_cvCode> is D or N, allow C<ccCaptureService> to
run.
=item false (default on remote)
If the value of C<ccAuthReply_cvCode> is D or N, return a card
verification decline and do not allow C<ccCaptureService> to run.
=back
=head2 ignore_dav_result
=head2 ignore_export_result
=head2 ignore_validate_result
=head2 decline_avs_flags
ArrayRef of AVS flags that cause the request to be declined for AVS reasons.
B<Important> Make sure that you include the value N in the list if you want to
receive declines for the AVS code N.
=head2 score_threshold
=head1 EXTENDS
L<Business::CyberSource::MessagePart>
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
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.
=head1 AUTHOR
Caleb Cushing <xenoterracide@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2012 by Caleb Cushing.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut