File Coverage

blib/lib/LINE/Bot/API/Response/AudienceAuthorityLevel.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


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