File Coverage

blib/lib/LINE/Bot/API/Response/GroupSummary.pm
Criterion Covered Total %
statement 14 15 93.3
branch n/a
condition n/a
subroutine 8 9 88.8
pod 0 6 0.0
total 22 30 73.3


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::GroupSummary;
2 52     52   305 use strict;
  52         120  
  52         2064  
3 52     52   259 use warnings;
  52         112  
  52         3910  
4 52     52   289 use parent 'LINE::Bot::API::Response::Common';
  52         97  
  52         280  
5              
6             =head1 NAME
7              
8             LINE::Bot::API::Response::GroupSummary
9              
10             =head1 DESCRIPTION
11              
12             This class correspond to the "Get group summary" response as described in
13             this page : L
14              
15             =cut
16              
17 1     1 0 5 sub groupId { $_[0]->{groupId} }
18 1     1 0 5 sub groupName { $_[0]->{groupName} }
19 2     2 0 11 sub pictureUrl { $_[0]->{pictureUrl} }
20              
21             # Aliases
22 1     1 0 6 sub group_id { $_[0]->{groupId} }
23 1     1 0 7 sub group_name { $_[0]->{groupName} }
24 0     0 0   sub picture_url { $_[0]->{pictureUrl} }
25              
26             1;