File Coverage

blib/lib/LINE/Bot/API/Response/Token.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 0 5 0.0
total 26 31 83.8


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::Token;
2 52     52   743 use strict;
  52         480  
  52         2161  
3 52     52   254 use warnings;
  52         312  
  52         2472  
4 52     52   308 use utf8;
  52         126  
  52         279  
5 52     52   1993 use parent 'LINE::Bot::API::Response::Common';
  52         135  
  52         356  
6              
7 2     2 0 9 sub access_token { $_[0]->{access_token} }
8 2     2 0 8 sub expires_in { $_[0]->{expires_in} }
9 2     2 0 10 sub token_type { $_[0]->{token_type} }
10 1     1 0 4 sub key_id { $_[0]->{key_id} }
11              
12 1     1 0 7 sub key_ids { $_[0]->{key_ids}}
13              
14             1;