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 46     46   326 use strict;
  46         95  
  46         1682  
3 46     46   237 use warnings;
  46         97  
  46         1173  
4 46     46   227 use parent 'LINE::Bot::API::Response::Common';
  46         97  
  46         242  
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 8 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;