line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Business::CyberSource::RequestPart::ShipFrom; |
2
|
4
|
|
|
4
|
|
6651
|
use strict; |
|
4
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
122
|
|
3
|
4
|
|
|
4
|
|
16
|
use warnings; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
108
|
|
4
|
4
|
|
|
4
|
|
394
|
use namespace::autoclean; |
|
4
|
|
|
|
|
6230
|
|
|
4
|
|
|
|
|
26
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.010008'; # VERSION |
7
|
|
|
|
|
|
|
|
8
|
4
|
|
|
4
|
|
724
|
use Moose; |
|
4
|
|
|
|
|
211599
|
|
|
4
|
|
|
|
|
24
|
|
9
|
|
|
|
|
|
|
extends 'Business::CyberSource::MessagePart'; |
10
|
|
|
|
|
|
|
with 'MooseX::RemoteHelper::CompositeSerialization'; |
11
|
|
|
|
|
|
|
|
12
|
4
|
|
|
4
|
|
18814
|
use MooseX::Types::Common::String qw( NonEmptySimpleStr ); |
|
4
|
|
|
|
|
101972
|
|
|
4
|
|
|
|
|
40
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
has postal_code => ( |
15
|
|
|
|
|
|
|
remote_name => 'postalCode', |
16
|
|
|
|
|
|
|
is => 'ro', |
17
|
|
|
|
|
|
|
isa => NonEmptySimpleStr, |
18
|
|
|
|
|
|
|
required => 0, |
19
|
|
|
|
|
|
|
); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
# ABSTRACT: ShipFrom information |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__END__ |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=pod |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=encoding UTF-8 |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 NAME |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Business::CyberSource::RequestPart::ShipFrom - ShipFrom information |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 VERSION |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
version 0.010008 |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 EXTENDS |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
L<Business::CyberSource::MessagePart> |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 postal_code |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=for Pod::Coverage BUILD |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 BUGS |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website |
52
|
|
|
|
|
|
|
https://github.com/hostgator/business-cybersource/issues |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
55
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
56
|
|
|
|
|
|
|
feature. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 AUTHOR |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Caleb Cushing <xenoterracide@gmail.com> |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
This software is Copyright (c) 2017 by Caleb Cushing <xenoterracide@gmail.com>. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
This is free software, licensed under: |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |