line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package LINE::Bot::API::Response::AudienceGroupForClickRetargeting; |
2
|
9
|
|
|
9
|
|
55
|
use strict; |
|
9
|
|
|
|
|
18
|
|
|
9
|
|
|
|
|
237
|
|
3
|
9
|
|
|
9
|
|
41
|
use warnings; |
|
9
|
|
|
|
|
17
|
|
|
9
|
|
|
|
|
200
|
|
4
|
9
|
|
|
9
|
|
52
|
use parent 'LINE::Bot::API::Response::Common'; |
|
9
|
|
|
|
|
16
|
|
|
9
|
|
|
|
|
43
|
|
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; |