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