File Coverage

blib/lib/Paws/Organizations/ListHandshakesForOrganizationResponse.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              
2             package Paws::Organizations::ListHandshakesForOrganizationResponse;
3 1     1   548 use Moose;
  1         4  
  1         8  
4             has Handshakes => (is => 'ro', isa => 'ArrayRef[Paws::Organizations::Handshake]');
5             has NextToken => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Organizations::ListHandshakesForOrganizationResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Handshakes => ArrayRef[L<Paws::Organizations::Handshake>]
19              
20             A list of Handshake objects with details about each of the handshakes
21             that are associated with an organization.
22              
23              
24             =head2 NextToken => Str
25              
26             If present, this value indicates that there is more output available
27             than is included in the current response. Use this value in the
28             C<NextToken> request parameter in a subsequent call to the operation to
29             get the next part of the output. You should repeat this until the
30             C<NextToken> response element comes back as C<null>.
31              
32              
33             =head2 _request_id => Str
34              
35              
36             =cut
37              
38             1;