File Coverage

blib/lib/Paws/WorkDocs/User.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::User;
2 1     1   619 use Moose;
  1         5  
  1         13  
3             has CreatedTimestamp => (is => 'ro', isa => 'Str');
4             has EmailAddress => (is => 'ro', isa => 'Str');
5             has GivenName => (is => 'ro', isa => 'Str');
6             has Id => (is => 'ro', isa => 'Str');
7             has Locale => (is => 'ro', isa => 'Str');
8             has ModifiedTimestamp => (is => 'ro', isa => 'Str');
9             has OrganizationId => (is => 'ro', isa => 'Str');
10             has RecycleBinFolderId => (is => 'ro', isa => 'Str');
11             has RootFolderId => (is => 'ro', isa => 'Str');
12             has Status => (is => 'ro', isa => 'Str');
13             has Storage => (is => 'ro', isa => 'Paws::WorkDocs::UserStorageMetadata');
14             has Surname => (is => 'ro', isa => 'Str');
15             has TimeZoneId => (is => 'ro', isa => 'Str');
16             has Type => (is => 'ro', isa => 'Str');
17             has Username => (is => 'ro', isa => 'Str');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::WorkDocs::User
25              
26             =head1 USAGE
27              
28             This class represents one of two things:
29              
30             =head3 Arguments in a call to a service
31              
32             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
33             Each attribute should be used as a named argument in the calls that expect this type of object.
34              
35             As an example, if Att1 is expected to be a Paws::WorkDocs::User object:
36              
37             $service_obj->Method(Att1 => { CreatedTimestamp => $value, ..., Username => $value });
38              
39             =head3 Results returned from an API call
40              
41             Use accessors for each attribute. If Att1 is expected to be an Paws::WorkDocs::User object:
42              
43             $result = $service_obj->Method(...);
44             $result->Att1->CreatedTimestamp
45              
46             =head1 DESCRIPTION
47              
48             Describes a user.
49              
50             =head1 ATTRIBUTES
51              
52              
53             =head2 CreatedTimestamp => Str
54              
55             The time when the user was created.
56              
57              
58             =head2 EmailAddress => Str
59              
60             The email address of the user.
61              
62              
63             =head2 GivenName => Str
64              
65             The given name of the user.
66              
67              
68             =head2 Id => Str
69              
70             The ID of the user.
71              
72              
73             =head2 Locale => Str
74              
75             The locale of the user.
76              
77              
78             =head2 ModifiedTimestamp => Str
79              
80             The time when the user was modified.
81              
82              
83             =head2 OrganizationId => Str
84              
85             The ID of the organization.
86              
87              
88             =head2 RecycleBinFolderId => Str
89              
90             The ID of the recycle bin folder.
91              
92              
93             =head2 RootFolderId => Str
94              
95             The ID of the root folder.
96              
97              
98             =head2 Status => Str
99              
100             The status of the user.
101              
102              
103             =head2 Storage => L<Paws::WorkDocs::UserStorageMetadata>
104              
105             The storage for the user.
106              
107              
108             =head2 Surname => Str
109              
110             The surname of the user.
111              
112              
113             =head2 TimeZoneId => Str
114              
115             The time zone ID of the user.
116              
117              
118             =head2 Type => Str
119              
120             The type of user.
121              
122              
123             =head2 Username => Str
124              
125             The login name of the user.
126              
127              
128              
129             =head1 SEE ALSO
130              
131             This class forms part of L<Paws>, describing an object used in L<Paws::WorkDocs>
132              
133             =head1 BUGS and CONTRIBUTIONS
134              
135             The source code is located here: https://github.com/pplu/aws-sdk-perl
136              
137             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
138              
139             =cut
140