line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::LexModels::GetUtterancesViewResponse; |
3
|
1
|
|
|
1
|
|
463
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
8
|
|
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 UtteranceList objects, each containing a list of |
27
|
|
|
|
|
|
|
UtteranceData objects describing the utterances that were processed by |
28
|
|
|
|
|
|
|
your bot. The response contains a maximum of 100 C<UtteranceData> |
29
|
|
|
|
|
|
|
objects for each version. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 _request_id => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|