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   310 use strict;
  46         102  
  46         1246  
3 46     46   215 use warnings;
  46         96  
  46         1090  
4 46     46   215 use utf8;
  46         81  
  46         213  
5 46     46   1096 use parent 'LINE::Bot::API::Response::Common';
  46         151  
  46         231  
6              
7 2     2 0 10 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 5 sub key_id { $_[0]->{key_id} }
11              
12 1     1 0 8 sub key_ids { $_[0]->{key_ids}}
13              
14             1;