File Coverage

blib/lib/Paws/LexModels/GetUtterancesViewResponse.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::LexModels::GetUtterancesViewResponse;
3 1     1   541 use Moose;
  1         3  
  1         7  
4             has BotName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'botName');
5             has Utterances => (is => 'ro', isa => 'ArrayRef[Paws::LexModels::UtteranceList]', traits => ['NameInRequest'], request_name => 'utterances');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::LexModels::GetUtterancesViewResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 BotName => Str
20              
21             The name of the bot for which utterance information was returned.
22              
23              
24             =head2 Utterances => ArrayRef[L<Paws::LexModels::UtteranceList>]
25              
26             An array of objects, each containing a list of objects describing the
27             utterances that were processed by your bot. The response contains a
28             maximum of 100 C<UtteranceData> objects for each version.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35