line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package LINE::Bot::API::Response::Count; |
2
|
46
|
|
|
46
|
|
303
|
use strict; |
|
46
|
|
|
|
|
99
|
|
|
46
|
|
|
|
|
2104
|
|
3
|
46
|
|
|
46
|
|
1129
|
use warnings; |
|
46
|
|
|
|
|
100
|
|
|
46
|
|
|
|
|
1380
|
|
4
|
46
|
|
|
46
|
|
2245
|
use parent 'LINE::Bot::API::Response::Common'; |
|
46
|
|
|
|
|
125
|
|
|
46
|
|
|
|
|
3453
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
LINE::Bot::API::Response::Count |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 DESCRIPTION |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
This class correspond to below. |
12
|
|
|
|
|
|
|
- "Get members in group count" : See also L |
13
|
|
|
|
|
|
|
- "Get members in room count" : See also L |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
2
|
|
|
2
|
0
|
7
|
sub count { $_[0]->{count} } |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |