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 46     46   297 use strict;
  46         163  
  46         1267  
3 46     46   223 use warnings;
  46         91  
  46         1058  
4 46     46   224 use utf8;
  46         97  
  46         229  
5 46     46   1093 use parent 'LINE::Bot::API::Response::Common';
  46         116  
  46         288  
6              
7 2     2 0 11 sub access_token { $_[0]->{access_token} }
8             sub expires_in { $_[0]->{expires_in} }
9 2     2 0 12 sub token_type { $_[0]->{token_type} }
10              
11 2     2 0 9 sub expires_in { $_[0]->{expires_in} }
12 1     1 0 6 sub key_id { $_[0]->{key_id} }
13              
14 1     1 0 8 sub key_ids { $_[0]->{key_ids}}
15              
16             1;