File Coverage

blib/lib/Paws/IoT/DescribeThingTypeResponse.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::IoT::DescribeThingTypeResponse;
3 1     1   421 use Moose;
  1         3  
  1         10  
4             has ThingTypeMetadata => (is => 'ro', isa => 'Paws::IoT::ThingTypeMetadata', traits => ['NameInRequest'], request_name => 'thingTypeMetadata');
5             has ThingTypeName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'thingTypeName');
6             has ThingTypeProperties => (is => 'ro', isa => 'Paws::IoT::ThingTypeProperties', traits => ['NameInRequest'], request_name => 'thingTypeProperties');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::IoT::DescribeThingTypeResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 ThingTypeMetadata => L<Paws::IoT::ThingTypeMetadata>
21              
22             The ThingTypeMetadata contains additional information about the thing
23             type including: creation date and time, a value indicating whether the
24             thing type is deprecated, and a date and time when it was deprecated.
25              
26              
27             =head2 ThingTypeName => Str
28              
29             The name of the thing type.
30              
31              
32             =head2 ThingTypeProperties => L<Paws::IoT::ThingTypeProperties>
33              
34             The ThingTypeProperties contains information about the thing type
35             including description, and a list of searchable thing attribute names.
36              
37              
38             =head2 _request_id => Str
39              
40              
41             =cut
42