File Coverage

blib/lib/Paws/WorkDocs/DocumentVersionMetadata.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::WorkDocs::DocumentVersionMetadata;
2 1     1   670 use Moose;
  1         4  
  1         15  
3             has ContentCreatedTimestamp => (is => 'ro', isa => 'Str');
4             has ContentModifiedTimestamp => (is => 'ro', isa => 'Str');
5             has ContentType => (is => 'ro', isa => 'Str');
6             has CreatedTimestamp => (is => 'ro', isa => 'Str');
7             has CreatorId => (is => 'ro', isa => 'Str');
8             has Id => (is => 'ro', isa => 'Str');
9             has ModifiedTimestamp => (is => 'ro', isa => 'Str');
10             has Name => (is => 'ro', isa => 'Str');
11             has Signature => (is => 'ro', isa => 'Str');
12             has Size => (is => 'ro', isa => 'Int');
13             has Source => (is => 'ro', isa => 'Paws::WorkDocs::DocumentSourceUrlMap');
14             has Status => (is => 'ro', isa => 'Str');
15             has Thumbnail => (is => 'ro', isa => 'Paws::WorkDocs::DocumentThumbnailUrlMap');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::WorkDocs::DocumentVersionMetadata
23              
24             =head1 USAGE
25              
26             This class represents one of two things:
27              
28             =head3 Arguments in a call to a service
29              
30             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
31             Each attribute should be used as a named argument in the calls that expect this type of object.
32              
33             As an example, if Att1 is expected to be a Paws::WorkDocs::DocumentVersionMetadata object:
34              
35             $service_obj->Method(Att1 => { ContentCreatedTimestamp => $value, ..., Thumbnail => $value });
36              
37             =head3 Results returned from an API call
38              
39             Use accessors for each attribute. If Att1 is expected to be an Paws::WorkDocs::DocumentVersionMetadata object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->ContentCreatedTimestamp
43              
44             =head1 DESCRIPTION
45              
46             Describes a version of a document.
47              
48             =head1 ATTRIBUTES
49              
50              
51             =head2 ContentCreatedTimestamp => Str
52              
53             The time stamp when the content of the document was originally created.
54              
55              
56             =head2 ContentModifiedTimestamp => Str
57              
58             The time stamp when the content of the document was modified.
59              
60              
61             =head2 ContentType => Str
62              
63             The content type of the document.
64              
65              
66             =head2 CreatedTimestamp => Str
67              
68             The time stamp when the document was first uploaded.
69              
70              
71             =head2 CreatorId => Str
72              
73             The ID of the creator.
74              
75              
76             =head2 Id => Str
77              
78             The ID of the version.
79              
80              
81             =head2 ModifiedTimestamp => Str
82              
83             The time stamp when the document was last uploaded.
84              
85              
86             =head2 Name => Str
87              
88             The name of the version.
89              
90              
91             =head2 Signature => Str
92              
93             The signature of the document.
94              
95              
96             =head2 Size => Int
97              
98             The size of the document, in bytes.
99              
100              
101             =head2 Source => L<Paws::WorkDocs::DocumentSourceUrlMap>
102              
103             The source of the document.
104              
105              
106             =head2 Status => Str
107              
108             The status of the document.
109              
110              
111             =head2 Thumbnail => L<Paws::WorkDocs::DocumentThumbnailUrlMap>
112              
113             The thumbnail of the document.
114              
115              
116              
117             =head1 SEE ALSO
118              
119             This class forms part of L<Paws>, describing an object used in L<Paws::WorkDocs>
120              
121             =head1 BUGS and CONTRIBUTIONS
122              
123             The source code is located here: https://github.com/pplu/aws-sdk-perl
124              
125             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
126              
127             =cut
128