You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Gets data for more than one audience, including those shared by the Business Manager.
479
+
#
480
+
# @param page The page to return when getting (paginated) results. Must be 1 or higher.
481
+
# @param description The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion.
482
+
# @param status The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion.
483
+
# @param size The number of audiences per page. Default: 20 Max: 40
484
+
# @param create_route How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API.
# Gets data for more than one audience, including those shared by the Business Manager.
522
+
#
523
+
# @param page The page to return when getting (paginated) results. Must be 1 or higher.
524
+
# @param description The name of the audience(s) to return. You can search for partial matches. This is case-insensitive, meaning AUDIENCE and audience are considered identical. If omitted, the name of the audience(s) will not be used as a search criterion.
525
+
# @param status The status of the audience(s) to return. If omitted, the status of the audience(s) will not be used as a search criterion.
526
+
# @param size The number of audiences per page. Default: 20 Max: 40
527
+
# @param create_route How the audience was created. If omitted, all audiences are included. `OA_MANAGER`: Return only audiences created with LINE Official Account Manager (opens new window). `MESSAGING_API`: Return only audiences created with Messaging API.
Copy file name to clipboardExpand all lines: lib/line/bot/v2/manage_audience/model/get_audience_data_response.rb
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,17 @@ module ManageAudience
16
16
classGetAudienceDataResponse
17
17
attr_accessor:audience_group
18
18
attr_accessor:jobs# An array of jobs. This array is used to keep track of each attempt to add new user IDs or IFAs to an audience for uploading user IDs. Empty array is returned for any other type of audience. Max: 50
attr_accessor:jobs# An array of jobs. This array is used to keep track of each attempt to add new user IDs or IFAs to an audience for uploading user IDs. Empty array is returned for any other type of audience. Max: 50
attr_accessor:audience_groups# An array of audience data. If there are no audiences that match the specified filter, an empty array will be returned.
18
+
attr_accessor:has_next_page# true when this is not the last page.
19
+
attr_accessor:total_count# The total number of audiences that can be returned with the specified filter.
20
+
attr_accessor:read_write_audience_group_total_count# Of the audiences you can get with the specified filter, the number of audiences with the update permission set to READ_WRITE.
21
+
attr_accessor:page# The current page number.
22
+
attr_accessor:size# The maximum number of audiences on the current page.
0 commit comments