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
Copy file name to clipboardExpand all lines: lib/line/bot/v2/insight/model/age_tile.rb
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,14 +13,14 @@ module V2
13
13
moduleInsight
14
14
classAgeTile
15
15
# @!attribute [rw] age
16
-
# @return [String] ('from0to14'|'from15to19'|'from20to24'|'from25to29'|'from30to34'|'from35to39'|'from40to44'|'from45to49'|'from50'|'from50to54'|'from55to59'|'from60to64'|'from65to69'|'from70'|'unknown') users' age
16
+
# @return [String,nil] ('from0to14'|'from15to19'|'from20to24'|'from25to29'|'from30to34'|'from35to39'|'from40to44'|'from45to49'|'from50'|'from50to54'|'from55to59'|'from60to64'|'from65to69'|'from70'|'unknown') users' age
17
17
attr_accessor:age
18
18
# @!attribute [rw] percentage
19
-
# @return [Float] Percentage
19
+
# @return [Float,nil] Percentage
20
20
attr_accessor:percentage
21
21
22
-
# @param age [String] ('from0to14'|'from15to19'|'from20to24'|'from25to29'|'from30to34'|'from35to39'|'from40to44'|'from45to49'|'from50'|'from50to54'|'from55to59'|'from60to64'|'from65to69'|'from70'|'unknown') users' age
23
-
# @param percentage [Float] Percentage
22
+
# @param age [String,nil] ('from0to14'|'from15to19'|'from20to24'|'from25to29'|'from30to34'|'from35to39'|'from40to44'|'from45to49'|'from50'|'from50to54'|'from55to59'|'from60to64'|'from65to69'|'from70'|'unknown') users' age
Copy file name to clipboardExpand all lines: lib/line/bot/v2/insight/model/error_detail.rb
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,14 +13,14 @@ module V2
13
13
moduleInsight
14
14
classErrorDetail
15
15
# @!attribute [rw] message
16
-
# @return [String] Details of the error. Not included in the response under certain situations.
16
+
# @return [String,nil] Details of the error. Not included in the response under certain situations.
17
17
attr_accessor:message
18
18
# @!attribute [rw] property
19
-
# @return [String] Location of where the error occurred. Returns the JSON field name or query parameter name of the request. Not included in the response under certain situations.
19
+
# @return [String,nil] Location of where the error occurred. Returns the JSON field name or query parameter name of the request. Not included in the response under certain situations.
20
20
attr_accessor:property
21
21
22
-
# @param message [String] Details of the error. Not included in the response under certain situations.
23
-
# @param property [String] Location of where the error occurred. Returns the JSON field name or query parameter name of the request. Not included in the response under certain situations.
22
+
# @param message [String,nil] Details of the error. Not included in the response under certain situations.
23
+
# @param property [String,nil] Location of where the error occurred. Returns the JSON field name or query parameter name of the request. Not included in the response under certain situations.
0 commit comments