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 50     50   339 use strict;
  50         102  
  50         1849  
3 50     50   257 use warnings;
  50         95  
  50         1252  
4 50     50   353 use parent 'LINE::Bot::API::Response::Common';
  50         112  
  50         283  
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 7 sub groupId { $_[0]->{groupId} }
18 1     1 0 6 sub groupName { $_[0]->{groupName} }
19 2     2 0 9 sub pictureUrl { $_[0]->{pictureUrl} }
20              
21             # Aliases
22 1     1 0 4 sub group_id { $_[0]->{groupId} }
23 1     1 0 4 sub group_name { $_[0]->{groupName} }
24 0     0 0   sub picture_url { $_[0]->{pictureUrl} }
25              
26             1;