File Coverage

blib/lib/Paws/SimpleWorkflow/WorkflowTypeInfos.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::SimpleWorkflow::WorkflowTypeInfos;
3 1     1   477 use Moose;
  1         5  
  1         14  
4             has NextPageToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextPageToken' );
5             has TypeInfos => (is => 'ro', isa => 'ArrayRef[Paws::SimpleWorkflow::WorkflowTypeInfo]', traits => ['NameInRequest'], request_name => 'typeInfos' , required => 1);
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::SimpleWorkflow::WorkflowTypeInfos
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextPageToken => Str
19              
20             If a C<NextPageToken> was returned by a previous call, there are more
21             results available. To retrieve the next page of results, make the call
22             again using the returned token in C<nextPageToken>. Keep all other
23             arguments unchanged.
24              
25             The configured C<maximumPageSize> determines how many results can be
26             returned in a single call.
27              
28              
29             =head2 B<REQUIRED> TypeInfos => ArrayRef[L<Paws::SimpleWorkflow::WorkflowTypeInfo>]
30              
31             The list of workflow type information.
32              
33              
34             =head2 _request_id => Str
35              
36              
37             =cut
38              
39             1;