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
line/line-openapi#106
Type for `CreateAudienceGroupResponse#expireTimestamp` is not float or
double, but integer actually. This change fixes type.
Co-authored-by: github-actions <[email protected]>
Copy file name to clipboardExpand all lines: lib/line/bot/v2/manage_audience/model/create_audience_group_response.rb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ class CreateAudienceGroupResponse
33
33
# @return [String,nil] ('READ'|'READ_WRITE') Audience's update permission. Audiences linked to the same channel will be READ_WRITE. `READ`: Can use only. `READ_WRITE`: Can use and update.
34
34
attr_accessor:permission
35
35
# @!attribute [rw] expire_timestamp
36
-
# @return [Float,nil] Time of audience expiration. Only returned for specific audiences.
36
+
# @return [Integer,nil] Time of audience expiration. Only returned for specific audiences.
37
37
attr_accessor:expire_timestamp
38
38
# @!attribute [rw] is_ifa_audience
39
39
# @return [Boolean,nil] The value indicating the type of account to be sent, as specified when creating the audience for uploading user IDs. One of: `true`: Accounts are specified with IFAs. `false` (default): Accounts are specified with user IDs.
@@ -45,7 +45,7 @@ class CreateAudienceGroupResponse
45
45
# @param description [String,nil] The audience's name.
46
46
# @param created [Integer,nil] When the audience was created (in UNIX time).
47
47
# @param permission [String,nil] ('READ'|'READ_WRITE') Audience's update permission. Audiences linked to the same channel will be READ_WRITE. `READ`: Can use only. `READ_WRITE`: Can use and update.
48
-
# @param expire_timestamp [Float,nil] Time of audience expiration. Only returned for specific audiences.
48
+
# @param expire_timestamp [Integer,nil] Time of audience expiration. Only returned for specific audiences.
49
49
# @param is_ifa_audience [Boolean,nil] The value indicating the type of account to be sent, as specified when creating the audience for uploading user IDs. One of: `true`: Accounts are specified with IFAs. `false` (default): Accounts are specified with user IDs.
0 commit comments