File Coverage

blib/lib/Paws/WorkDocs/DocumentThumbnailUrlMap.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Paws::WorkDocs::DocumentThumbnailUrlMap;
2 1     1   738 use Moose;
  1         3  
  1         12  
3             with 'Paws::API::MapParser';
4              
5 1     1   5316 use MooseX::ClassAttribute;
  1         4  
  1         11  
6             class_has xml_keys =>(is => 'ro', default => 'key');
7             class_has xml_values =>(is => 'ro', default => 'value');
8              
9             has LARGE => (is => 'ro', isa => 'Str');
10             has SMALL => (is => 'ro', isa => 'Str');
11             has SMALL_HQ => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::WorkDocs::DocumentThumbnailUrlMap
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::WorkDocs::DocumentThumbnailUrlMap object:
30              
31             $service_obj->Method(Att1 => { LARGE => $value, ..., SMALL_HQ => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::WorkDocs::DocumentThumbnailUrlMap object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->LARGE
39              
40             =head1 DESCRIPTION
41              
42             This class has no description
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 LARGE => Str
48              
49              
50             =head2 SMALL => Str
51              
52              
53             =head2 SMALL_HQ => Str
54              
55              
56              
57             =head1 SEE ALSO
58              
59             This class forms part of L<Paws>, describing an object used in L<Paws::WorkDocs>
60              
61             =head1 BUGS and CONTRIBUTIONS
62              
63             The source code is located here: https://github.com/pplu/aws-sdk-perl
64              
65             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
66              
67             =cut
68