line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package LINE::Bot::API::Response::AudienceGroupForUploadingUserId; |
2
|
9
|
|
|
9
|
|
63
|
use strict; |
|
9
|
|
|
|
|
19
|
|
|
9
|
|
|
|
|
261
|
|
3
|
9
|
|
|
9
|
|
47
|
use warnings; |
|
9
|
|
|
|
|
17
|
|
|
9
|
|
|
|
|
223
|
|
4
|
9
|
|
|
9
|
|
47
|
use parent 'LINE::Bot::API::Response::Common'; |
|
9
|
|
|
|
|
19
|
|
|
9
|
|
|
|
|
47
|
|
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
|
|
|
|
|
|
|
|