line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package LINE::Bot::API::Response::AudienceAuthorityLevel; |
2
|
9
|
|
|
9
|
|
62
|
use strict; |
|
9
|
|
|
|
|
20
|
|
|
9
|
|
|
|
|
267
|
|
3
|
9
|
|
|
9
|
|
47
|
use warnings; |
|
9
|
|
|
|
|
20
|
|
|
9
|
|
|
|
|
224
|
|
4
|
9
|
|
|
9
|
|
47
|
use parent 'LINE::Bot::API::Response::Common'; |
|
9
|
|
|
|
|
17
|
|
|
9
|
|
|
|
|
46
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
LINE::Bot::API::Response::AudienceAuthorityLevel |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 DESCRIPTION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
This class correspond to the "Get the authority level of the audience" response as described in |
13
|
|
|
|
|
|
|
this page : L |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
1
|
|
|
1
|
0
|
6
|
sub authorityLevel { $_[0]->{authorityLevel} } |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# Aliases |
20
|
1
|
|
|
1
|
0
|
5
|
sub authority_level { $_[0]->{authorityLevel} } |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
|