File Coverage

blib/lib/LINE/Bot/API/Response/AudienceGroupForClickRetargeting.pm
Criterion Covered Total %
statement 9 18 50.0
branch n/a
condition n/a
subroutine 3 12 25.0
pod 0 9 0.0
total 12 39 30.7


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::AudienceGroupForClickRetargeting;
2 9     9   56 use strict;
  9         23  
  9         250  
3 9     9   48 use warnings;
  9         16  
  9         216  
4 9     9   43 use parent 'LINE::Bot::API::Response::Common';
  9         19  
  9         50  
5              
6             =head1 NAME
7              
8             LINE::Bot::API::Response::AudienceGroupForClickRetargeting
9              
10             =head1 DESCRIPTION
11              
12             This class correspond to the "Create audience for click-based retargeting" response as described in
13             this page : L
14              
15             =cut
16              
17              
18 0     0 0   sub audienceGroupId { $_[0]->{audienceGroupId} }
19 0     0 0   sub type { $_[0]->{type} }
20 0     0 0   sub description { $_[0]->{description} }
21 0     0 0   sub created { $_[0]->{created} }
22 0     0 0   sub requestId { $_[0]->{requestId} }
23 0     0 0   sub clickUrl { $_[0]->{clickUrl} }
24              
25              
26             #Aliases
27 0     0 0   sub audience_group_id { $_[0]->{audienceGroupId} }
28 0     0 0   sub request_id { $_[0]->{requestId} }
29 0     0 0   sub click_url { $_[0]->{clickUrl} }
30              
31             1;