File Coverage

blib/lib/WebService/Async/Onfido/Base/Photo.pm
Criterion Covered Total %
statement 14 19 73.6
branch 1 2 50.0
condition n/a
subroutine 6 11 54.5
pod 6 8 75.0
total 27 40 67.5


line stmt bran cond sub pod time code
1             package WebService::Async::Onfido::Base::Photo;
2              
3 2     2   905 use strict;
  2         6  
  2         71  
4 2     2   12 use warnings;
  2         4  
  2         67  
5              
6 2     2   11 use utf8;
  2         4  
  2         9  
7              
8             our $VERSION = '0.006'; # VERSION
9              
10             =head1 NAME
11              
12             WebService::Async::Onfido::Base::Photo - represents data for Onfido
13              
14             =head1 DESCRIPTION
15              
16             This is autogenerated from the documentation in L<https://documentation.onfido.com>.
17              
18             =cut
19              
20             sub new {
21 3     3 0 43 my ($class, %args) = @_;
22 3 50       29 Scalar::Util::weaken($args{onfido}) if $args{onfido};
23 3         75 return bless \%args, $class;
24             }
25              
26             =head1 METHODS
27             =head2 id
28              
29             The unique identifier of the live photo.
30              
31             =cut
32              
33 2     2 0 3878 sub id : method { return shift->{id} }
34              
35             =head2 created_at
36              
37             The date and time at which the live photo was uploaded.
38              
39             =cut
40              
41 0     0 1 0 sub created_at : method { return shift->{created_at} }
42              
43             =head2 href
44              
45             The URI of this resource.
46              
47             =cut
48              
49 0     0 1 0 sub href : method { return shift->{href} }
50              
51             =head2 download_href
52              
53             The URI that can be used to download the live photo.
54              
55             =cut
56              
57 0     0 1 0 sub download_href : method { return shift->{download_href} }
58              
59             =head2 file_name
60              
61             The name of the uploaded file.
62              
63             =cut
64              
65 1     1 1 2704 sub file_name : method { return shift->{file_name} }
66              
67             =head2 file_type
68              
69             The file type of the uploaded file.
70              
71             =cut
72              
73 0     0 1   sub file_type : method { return shift->{file_type} }
74              
75             =head2 file_size
76              
77             The size of the file in bytes.
78              
79             =cut
80              
81 0     0 1   sub file_size : method { return shift->{file_size} }
82              
83             1;
84              
85             __END__
86              
87             =head1 AUTHOR
88              
89             deriv.com C<< DERIV@cpan.org >>
90              
91             =head1 LICENSE
92              
93             Copyright deriv.com 2019. Licensed under the same terms as Perl itself.
94