File Coverage

blib/lib/LINE/Bot/API/Response/AudienceGroupForUploadingUserId.pm
Criterion Covered Total %
statement 9 14 64.2
branch n/a
condition n/a
subroutine 3 8 37.5
pod 0 5 0.0
total 12 27 44.4


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::AudienceGroupForUploadingUserId;
2 9     9   59 use strict;
  9         18  
  9         253  
3 9     9   46 use warnings;
  9         16  
  9         237  
4 9     9   43 use parent 'LINE::Bot::API::Response::Common';
  9         17  
  9         49  
5              
6             =head1 NAME
7              
8             LINE::Bot::API::Response::AudienceGroupForUploadingUserId
9              
10             =head1 DESCRIPTION
11              
12             This class correspond to the "Create audiece for uploading user IDs" response as described in
13             this page : L
14              
15             =cut
16              
17 0     0 0   sub audienceGroupId { $_[0]->{audienceGroupId} }
18 0     0 0   sub type { $_[0]->{type} }
19 0     0 0   sub description { $_[0]->{description} }
20 0     0 0   sub created { $_[0]->{created} }
21              
22             # Aliases
23 0     0 0   sub audience_group_id { $_[0]->{audienceGroupId} }
24              
25             1;
26