File Coverage

blib/lib/Paws/ElasticTranscoder/TestRoleResponse.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::ElasticTranscoder::TestRoleResponse;
3 1     1   836 use Moose;
  1         4  
  1         16  
4             has Messages => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
5             has Success => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::ElasticTranscoder::TestRoleResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Messages => ArrayRef[Str|Undef]
20              
21             If the C<Success> element contains C<false>, this value is an array of
22             one or more error messages that were generated during the test process.
23              
24              
25             =head2 Success => Str
26              
27             If the operation is successful, this value is C<true>; otherwise, the
28             value is C<false>.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35