line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
7
|
|
|
7
|
|
35
|
use strict; |
|
7
|
|
|
|
|
15
|
|
|
7
|
|
|
|
|
171
|
|
2
|
7
|
|
|
7
|
|
33
|
use warnings; |
|
7
|
|
|
|
|
16
|
|
|
7
|
|
|
|
|
180
|
|
3
|
7
|
|
|
7
|
|
31
|
use MRO::Compat 'c3'; |
|
7
|
|
|
|
|
15
|
|
|
7
|
|
|
|
|
360
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package WebService::Shippo::CustomsDeclarations; |
6
|
|
|
|
|
|
|
require WebService::Shippo::CustomsDeclaration; |
7
|
7
|
|
|
|
|
1194
|
use base qw( |
8
|
|
|
|
|
|
|
WebService::Shippo::Collection |
9
|
|
|
|
|
|
|
WebService::Shippo::Create |
10
|
|
|
|
|
|
|
WebService::Shippo::Fetch |
11
|
7
|
|
|
7
|
|
32
|
); |
|
7
|
|
|
|
|
13
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub item_class () { 'WebService::Shippo::CustomsDeclaration' } |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub collection_class () { __PACKAGE__ } |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
BEGIN { |
18
|
7
|
|
|
7
|
|
35
|
no warnings 'once'; |
|
7
|
|
|
|
|
18
|
|
|
7
|
|
|
|
|
249
|
|
19
|
7
|
|
|
7
|
|
188
|
*Shippo::CustomsDeclarations:: = *WebService::Shippo::CustomsDeclarations::; |
20
|
|
|
|
|
|
|
} |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=pod |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=encoding utf8 |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 NAME |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
WebService::Shippo::CustomsDeclarations - Customs Declaration collection class |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 VERSION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
version 0.0.19 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 DESCRIPTION |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
Customs declarations are relevant information, including one or |
39
|
|
|
|
|
|
|
multiple customs items, you need to provide for customs clearance |
40
|
|
|
|
|
|
|
for your international shipments. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 API DOCUMENTATION |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
For more information about Customs Declarations, consult the Shippo API |
45
|
|
|
|
|
|
|
documentation: |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=over 2 |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item * L |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=back |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 REPOSITORY |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=over 2 |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=item * L |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=item * L |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=back |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head1 AUTHOR |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Iain Campbell |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
This software is copyright (c) 2015 by Iain Campbell. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
You may distribute this software under the terms of either the GNU General |
72
|
|
|
|
|
|
|
Public License or the Artistic License, as specified in the Perl README |
73
|
|
|
|
|
|
|
file. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=cut |