Skip to content

Commit cfb12b9

Browse files
committed
Run generate-code.py
1 parent b81fa5d commit cfb12b9

File tree

262 files changed

+562
-300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+562
-300
lines changed

lib/line/bot/v2/channel_access_token/model/channel_access_token_key_ids_response.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ def initialize(
4343
# @param args [Hash] Hash containing all the required attributes
4444
# @return [Line::Bot::V2::ChannelAccessToken::ChannelAccessTokenKeyIdsResponse] Instance of the class
4545
def self.create(args) # steep:ignore
46-
return new(**args) # steep:ignore
46+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
47+
return new(**symbolized_args) # steep:ignore
4748
end
4849

4950
# @param other [Object] Object to compare

lib/line/bot/v2/channel_access_token/model/error_response.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ def initialize(
4848
# @param args [Hash] Hash containing all the required attributes
4949
# @return [Line::Bot::V2::ChannelAccessToken::ErrorResponse] Instance of the class
5050
def self.create(args) # steep:ignore
51-
return new(**args) # steep:ignore
51+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
52+
return new(**symbolized_args) # steep:ignore
5253
end
5354

5455
# @param other [Object] Object to compare

lib/line/bot/v2/channel_access_token/model/issue_channel_access_token_response.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ def initialize(
6161
# @param args [Hash] Hash containing all the required attributes
6262
# @return [Line::Bot::V2::ChannelAccessToken::IssueChannelAccessTokenResponse] Instance of the class
6363
def self.create(args) # steep:ignore
64-
return new(**args) # steep:ignore
64+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
65+
return new(**symbolized_args) # steep:ignore
6566
end
6667

6768
# @param other [Object] Object to compare

lib/line/bot/v2/channel_access_token/model/issue_short_lived_channel_access_token_response.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def initialize(
5555
# @param args [Hash] Hash containing all the required attributes
5656
# @return [Line::Bot::V2::ChannelAccessToken::IssueShortLivedChannelAccessTokenResponse] Instance of the class
5757
def self.create(args) # steep:ignore
58-
return new(**args) # steep:ignore
58+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
59+
return new(**symbolized_args) # steep:ignore
5960
end
6061

6162
# @param other [Object] Object to compare

lib/line/bot/v2/channel_access_token/model/issue_stateless_channel_access_token_response.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def initialize(
5555
# @param args [Hash] Hash containing all the required attributes
5656
# @return [Line::Bot::V2::ChannelAccessToken::IssueStatelessChannelAccessTokenResponse] Instance of the class
5757
def self.create(args) # steep:ignore
58-
return new(**args) # steep:ignore
58+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
59+
return new(**symbolized_args) # steep:ignore
5960
end
6061

6162
# @param other [Object] Object to compare

lib/line/bot/v2/channel_access_token/model/verify_channel_access_token_response.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def initialize(
5454
# @param args [Hash] Hash containing all the required attributes
5555
# @return [Line::Bot::V2::ChannelAccessToken::VerifyChannelAccessTokenResponse] Instance of the class
5656
def self.create(args) # steep:ignore
57-
return new(**args) # steep:ignore
57+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
58+
return new(**symbolized_args) # steep:ignore
5859
end
5960

6061
# @param other [Object] Object to compare

lib/line/bot/v2/insight/model/age_tile.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def initialize(
4747
# @param args [Hash] Hash containing all the required attributes
4848
# @return [Line::Bot::V2::Insight::AgeTile] Instance of the class
4949
def self.create(args) # steep:ignore
50-
return new(**args) # steep:ignore
50+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
51+
return new(**symbolized_args) # steep:ignore
5152
end
5253

5354
# @param other [Object] Object to compare

lib/line/bot/v2/insight/model/app_type_tile.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def initialize(
4747
# @param args [Hash] Hash containing all the required attributes
4848
# @return [Line::Bot::V2::Insight::AppTypeTile] Instance of the class
4949
def self.create(args) # steep:ignore
50-
return new(**args) # steep:ignore
50+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
51+
return new(**symbolized_args) # steep:ignore
5152
end
5253

5354
# @param other [Object] Object to compare

lib/line/bot/v2/insight/model/area_tile.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def initialize(
4747
# @param args [Hash] Hash containing all the required attributes
4848
# @return [Line::Bot::V2::Insight::AreaTile] Instance of the class
4949
def self.create(args) # steep:ignore
50-
return new(**args) # steep:ignore
50+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
51+
return new(**symbolized_args) # steep:ignore
5152
end
5253

5354
# @param other [Object] Object to compare

lib/line/bot/v2/insight/model/error_detail.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def initialize(
4747
# @param args [Hash] Hash containing all the required attributes
4848
# @return [Line::Bot::V2::Insight::ErrorDetail] Instance of the class
4949
def self.create(args) # steep:ignore
50-
return new(**args) # steep:ignore
50+
symbolized_args = Line::Bot::V2::Utils.deep_symbolize(args)
51+
return new(**symbolized_args) # steep:ignore
5152
end
5253

5354
# @param other [Object] Object to compare

0 commit comments

Comments
 (0)