line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package LINE::Bot::API::Response::AudienceGroupForImpressionRetargeting; |
2
|
9
|
|
|
9
|
|
57
|
use strict; |
|
9
|
|
|
|
|
17
|
|
|
9
|
|
|
|
|
254
|
|
3
|
9
|
|
|
9
|
|
43
|
use warnings; |
|
9
|
|
|
|
|
16
|
|
|
9
|
|
|
|
|
197
|
|
4
|
9
|
|
|
9
|
|
55
|
use parent 'LINE::Bot::API::Response::Common'; |
|
9
|
|
|
|
|
33
|
|
|
9
|
|
|
|
|
80
|
|
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; |