@@ -35,7 +35,7 @@ class TranscribeRecordingRequest < BaseModel
3535
3636 # TODO: Write general description for this method
3737 # @return [Boolean]
38- attr_accessor :detect_Language
38+ attr_accessor :detect_language
3939
4040 # A mapping from model property names to API property names.
4141 def self . names
@@ -46,7 +46,7 @@ def self.names
4646 @_hash [ 'password' ] = 'password'
4747 @_hash [ 'tag' ] = 'tag'
4848 @_hash [ 'callback_timeout' ] = 'callbackTimeout'
49- @_hash [ 'detect_Language ' ] = 'detectLanguage'
49+ @_hash [ 'detect_language ' ] = 'detectLanguage'
5050 @_hash
5151 end
5252
@@ -82,15 +82,15 @@ def initialize(callback_url = nil,
8282 username = nil ,
8383 password = nil ,
8484 tag = nil ,
85- detect_Language = nil ,
85+ detect_language = nil ,
8686 callback_timeout = nil )
8787 @callback_url = callback_url unless callback_url == SKIP
8888 @callback_method = callback_method unless callback_method == SKIP
8989 @username = username unless username == SKIP
9090 @password = password unless password == SKIP
9191 @tag = tag unless tag == SKIP
9292 @callback_timeout = callback_timeout unless callback_timeout == SKIP
93- @detect_Language = detect_Language unless detect_Language == SKIP
93+ @detect_language = detect_language unless detect_language == SKIP
9494 end
9595
9696 # Creates an instance of the object from a hash.
@@ -106,7 +106,7 @@ def self.from_hash(hash)
106106 tag = hash . key? ( 'tag' ) ? hash [ 'tag' ] : SKIP
107107 callback_timeout =
108108 hash . key? ( 'callbackTimeout' ) ? hash [ 'callbackTimeout' ] : SKIP
109- detect_Language =
109+ detect_language =
110110 hash . key? ( 'detectLanguage' ) ? hash [ 'detectLanguage' ] : SKIP
111111
112112 # Create object from extracted values.
@@ -115,7 +115,7 @@ def self.from_hash(hash)
115115 username ,
116116 password ,
117117 tag ,
118- detect_Language ,
118+ detect_language ,
119119 callback_timeout )
120120 end
121121 end
0 commit comments