File Coverage

blib/lib/Paws/SimpleWorkflow/PendingTaskCount.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::PendingTaskCount;
3 1     1   615 use Moose;
  1         4  
  1         10  
4             has Count => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'count' , required => 1);
5             has Truncated => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'truncated' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::SimpleWorkflow::PendingTaskCount
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 B<REQUIRED> Count => Int
19              
20             The number of tasks in the task list.
21              
22              
23             =head2 Truncated => Bool
24              
25             If set to true, indicates that the actual count was more than the
26             maximum supported by this API and the count returned is the truncated
27             value.
28              
29              
30             =head2 _request_id => Str
31              
32              
33             =cut
34              
35             1;