File Coverage

blib/lib/LINE/Bot/API/Response/AudienceGroupForImpressionRetargeting.pm
Criterion Covered Total %
statement 9 16 56.2
branch n/a
condition n/a
subroutine 3 10 30.0
pod 0 7 0.0
total 12 33 36.3


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::AudienceGroupForImpressionRetargeting;
2 9     9   60 use strict;
  9         22  
  9         247  
3 9     9   44 use warnings;
  9         28  
  9         224  
4 9     9   52 use parent 'LINE::Bot::API::Response::Common';
  9         19  
  9         55  
5              
6             =head1 NAME
7              
8             LINE::Bot::API::Response::AudienceGroupForImpressionRetargeting
9              
10             =head1 DESCRIPTION
11              
12             This class correspond to the "Create audience for impression-based retargeting" 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 0     0 0   sub requestId { $_[0]->{requestId} }
22              
23             #Aliases
24 0     0 0   sub audience_group_id { $_[0]->{audienceGroupId} }
25 0     0 0   sub request_id { $_[0]->{requestId} }
26              
27             1;