File Coverage

blib/lib/WebService/VerifyEmail/Response.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             package WebService::VerifyEmail::Response;
2             {
3             $WebService::VerifyEmail::Response::VERSION = '0.02';
4             }
5              
6 1     1   6 use Moo;
  1         2  
  1         10  
7              
8             has authentication_status => (is => 'ro');
9             has limit_status => (is => 'ro');
10             has limit_desc => (is => 'ro');
11             has verify_status => (is => 'ro');
12             has verify_status_desc => (is => 'ro');
13              
14             1;