File Coverage

blib/lib/Paws/LexModels/GetBuiltinIntentResponse.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::GetBuiltinIntentResponse;
3 1     1   559 use Moose;
  1         2  
  1         8  
4             has Signature => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'signature');
5             has Slots => (is => 'ro', isa => 'ArrayRef[Paws::LexModels::BuiltinIntentSlot]', traits => ['NameInRequest'], request_name => 'slots');
6             has SupportedLocales => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'supportedLocales');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::LexModels::GetBuiltinIntentResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Signature => Str
21              
22             The unique identifier for a built-in intent.
23              
24              
25             =head2 Slots => ArrayRef[L<Paws::LexModels::BuiltinIntentSlot>]
26              
27             An array of C<BuiltinIntentSlot> objects, one entry for each slot type
28             in the intent.
29              
30              
31             =head2 SupportedLocales => ArrayRef[Str|Undef]
32              
33             A list of locales that the intent supports.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40