File Coverage

blib/lib/Paws/LexModels/PutSlotTypeResponse.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::PutSlotTypeResponse;
3 1     1   561 use Moose;
  1         2  
  1         8  
4             has Checksum => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'checksum');
5             has CreatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdDate');
6             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description');
7             has EnumerationValues => (is => 'ro', isa => 'ArrayRef[Paws::LexModels::EnumerationValue]', traits => ['NameInRequest'], request_name => 'enumerationValues');
8             has LastUpdatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lastUpdatedDate');
9             has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name');
10             has Version => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'version');
11              
12             has _request_id => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::LexModels::PutSlotTypeResponse
20              
21             =head1 ATTRIBUTES
22              
23              
24             =head2 Checksum => Str
25              
26             Checksum of the C<$LATEST> version of the slot type.
27              
28              
29             =head2 CreatedDate => Str
30              
31             The date that the slot type was created.
32              
33              
34             =head2 Description => Str
35              
36             A description of the slot type.
37              
38              
39             =head2 EnumerationValues => ArrayRef[L<Paws::LexModels::EnumerationValue>]
40              
41             A list of C<EnumerationValue> objects that defines the values that the
42             slot type can take.
43              
44              
45             =head2 LastUpdatedDate => Str
46              
47             The date that the slot type was updated. When you create a slot type,
48             the creation date and last update date are the same.
49              
50              
51             =head2 Name => Str
52              
53             The name of the slot type.
54              
55              
56             =head2 Version => Str
57              
58             The version of the slot type. For a new slot type, the version is
59             always C<$LATEST>.
60              
61              
62             =head2 _request_id => Str
63              
64              
65             =cut
66