NAME
Business::CyberSource::Request::Sale - Sale Request Object
VERSION
version v0.4.2
SYNOPSIS
use Business::CyberSource::Request::Sale;
my $req
= Business::CyberSource::Request::Sale->new({
username => 'merchantID',
password => 'transaction key',
reference_code => 't601',
first_name => 'Caleb',
last_name => 'Cushing',
street => 'somewhere',
city => 'Houston',
state => 'TX',
zip => '77064',
country => 'US',
email => 'xenoterracide@gmail.com',
total => 3000.00,
currency => 'USD',
credit_card => '4111-1111-1111-1111',
cc_exp_month => '09',
cc_exp_year => '2025',
production => 0,
});
my $res = $req->submit;
DESCRIPTION
A sale is a bundled authorization and capture. You can use a sale instead of a separate authorization and capture if there is no delay between taking a customer's order and shipping the goods. A sale is typically used for electronic goods and for services that you can turn on immediately.
ATTRIBUTES
foreign_amount
Reader: foreign_amount
Type: MooseX::Types::Common::Numeric::PositiveOrZeroNum
ignore_cv_result
Reader: ignore_cv_result
Type: Bool
client_env
Reader: client_env
Type: Str
Additional documentation: provided by the library
cybs_wsdl
Reader: cybs_wsdl
Type: MooseX::Types::Path::Class::File
Additional documentation: provided by the library
state
Reader: state
Type: MooseX::Types::Varchar::Varchar[2]
Additional documentation: State or province of the billing address. Use the two-character codes. alias: province
trace
Reader: trace
Writer: _trace
Type: XML::Compile::SOAP::Trace
Reader: email
Type: MooseX::Types::Email::EmailAddress
This attribute is required.
Additional documentation: Customer's email address, including the full domain name
password
Reader: password
Type: MooseX::Types::Common::String::NonEmptyStr
This attribute is required.
Additional documentation: your SOAP transaction key
postal_code
Reader: postal_code
Type: MooseX::Types::Varchar::Varchar[10]
Additional documentation: Postal code for the billing address. The postal code must consist of 5 to 9 digits. Required if country
is "US" or "CA"alias: postal_code
cybs_api_version
Reader: cybs_api_version
Type: Str
Additional documentation: provided by the library
ignore_export_result
Reader: ignore_export_result
Type: Bool
cvn
Reader: cvn
Type: MooseX::Types::CreditCard::CardSecurityCode
Additional documentation: Card Verification Numbers
phone_number
Reader: phone_number
Type: MooseX::Types::Varchar::Varchar[20]
total
Reader: total
Type: MooseX::Types::Common::Numeric::PositiveOrZeroNum
Additional documentation: Grand total for the order. You must include either this field or item_#_unitPrice in your request
cc_exp_month
Reader: cc_exp_month
Type: MooseX::Types::Varchar::Varchar[2]
This attribute is required.
Additional documentation: Two-digit month that the credit card expires in. Format: MM.
username
Reader: username
Type: MooseX::Types::Varchar::Varchar[30]
This attribute is required.
Additional documentation: Your CyberSource merchant ID. Use the same merchantID for evaluation, testing, and production
credit_card
Reader: credit_card
Type: MooseX::Types::CreditCard::CreditCard
This attribute is required.
Additional documentation: Customer's credit card number
card_type
Reader: card_type
Type: MooseX::Types::CyberSource::CardTypeCode
Additional documentation: Type of card to authorize
street2
Reader: street2
Type: MooseX::Types::Varchar::Varchar[60]
Additional documentation: Second line of the billing street address.
reference_code
Reader: reference_code
Type: MooseX::Types::Varchar::Varchar[50]
This attribute is required.
street3
Reader: street3
Type: MooseX::Types::Varchar::Varchar[60]
Additional documentation: Third line of the billing street address.
score_threshold
Type: Int
ignore_avs_result
Reader: ignore_avs_result
Type: Bool
last_name
Reader: last_name
Type: MooseX::Types::Varchar::Varchar[60]
This attribute is required.
Additional documentation: Customer's last name. The value should be the same as the one that is on the card.
cv_indicator
Reader: cv_indicator
Type: MooseX::Types::CyberSource::CvIndicator
Additional documentation: Flag that indicates whether a CVN code was sent
currency
Reader: currency
Type: MooseX::Types::Locale::Currency::CurrencyCode
This attribute is required.
city
Reader: city
Type: MooseX::Types::Varchar::Varchar[50]
This attribute is required.
Additional documentation: City of the billing address.
production
Reader: production
Type: Bool
This attribute is required.
Additional documentation: 0: test server. 1: production server
street4
Reader: street4
Type: MooseX::Types::Varchar::Varchar[60]
Additional documentation: Fourth line of the billing street address.
ip_address
Reader: ip_address
Type: MooseX::Types::NetAddr::IP::NetAddrIPv4
Additional documentation: Customer's IP address. alias: ip_address
country
Reader: country
Type: MooseX::Types::CyberSource::CountryCode
This attribute is required.
Additional documentation: ISO 2 character country code (as it would apply to a credit card billing statement)
exchange_rate
Reader: exchange_rate
Type: MooseX::Types::Common::Numeric::PositiveOrZeroNum
exchange_rate_timestamp
Reader: exchange_rate_timestamp
Type: Str
ignore_validate_result
Reader: ignore_validate_result
Type: Bool
full_name
Reader: full_name
Type: MooseX::Types::Varchar::Varchar[60]
street1
Reader: street1
Type: MooseX::Types::Varchar::Varchar[60]
This attribute is required.
Additional documentation: First line of the billing street address as it appears on the credit card issuer's records. alias: street1
cc_exp_year
Reader: cc_exp_year
Type: MooseX::Types::Varchar::Varchar[4]
This attribute is required.
Additional documentation: Four-digit year that the credit card expires in. Format: YYYY.
cybs_xsd
Reader: cybs_xsd
Type: MooseX::Types::Path::Class::File
Additional documentation: provided by the library
dcc_indicator
Reader: dcc_indicator
Type: MooseX::Types::CyberSource::DCCIndicator
foreign_currency
Reader: foreign_currency
Type: MooseX::Types::Locale::Currency::CurrencyCode
Additional documentation: Billing currency returned by the DCC service. For the possible values, see the ISO currency codes
ignore_dav_result
Reader: ignore_dav_result
Type: Bool
client_name
Reader: client_name
Type: Str
Additional documentation: provided by the library
decline_avs_flags
Type: ArrayRef[MooseX::Types::CyberSource::AVSResult]
client_version
Reader: client_version
Type: Str
items
Reader: items
Type: ArrayRef[MooseX::Types::CyberSource::Item]
first_name
Reader: first_name
Type: MooseX::Types::Varchar::Varchar[60]
This attribute is required.
Additional documentation: Customer's first name.The value should be the same as the one that is on the card.
SEE ALSO
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)