line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::WorkDocs::DescribeUsersResponse; |
3
|
1
|
|
|
1
|
|
542
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has TotalNumberOfUsers => (is => 'ro', isa => 'Int'); |
6
|
|
|
|
|
|
|
has Users => (is => 'ro', isa => 'ArrayRef[Paws::WorkDocs::User]'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::WorkDocs::DescribeUsersResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 Marker => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The marker to use when requesting the next set of results. If there are |
23
|
|
|
|
|
|
|
no additional results, the string is empty. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 TotalNumberOfUsers => Int |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The total number of users included in the results. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 Users => ArrayRef[L<Paws::WorkDocs::User>] |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The users. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 _request_id => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|