@@ -239,6 +239,22 @@ def set_callback_method(self, value):
239239 self .callback_method = value
240240 return self
241241
242+ @property
243+ def record_channel_type (self ):
244+ return self .__record_channel_type
245+
246+ @record_channel_type .setter
247+ def record_channel_type (self , value ):
248+ self .__record_channel_type = six .text_type (
249+ value ) if value is not None else None
250+
251+ @validate_args (
252+ value = [of_type (six .text_type )],
253+ )
254+ def set_record_channel_type (self , value ):
255+ self .record_channel_type = value
256+ return self
257+
242258 def __init__ (
243259 self ,
244260 action = None ,
@@ -256,6 +272,7 @@ def __init__(
256272 transcription_method = None ,
257273 callback_url = None ,
258274 callback_method = None ,
275+ record_channel_type = None
259276 ):
260277 super (RecordElement , self ).__init__ ()
261278
@@ -274,6 +291,7 @@ def __init__(
274291 self .transcription_method = transcription_method
275292 self .callback_url = callback_url
276293 self .callback_method = callback_method
294+ self .record_channel_type = record_channel_type
277295
278296 def to_dict (self ):
279297 d = {
@@ -292,6 +310,7 @@ def to_dict(self):
292310 'transcriptionMethod' : self .transcription_method ,
293311 'callbackUrl' : self .callback_url ,
294312 'callbackMethod' : self .callback_method ,
313+ 'recordChannelType' : self .record_channel_type
295314 }
296315 return {
297316 k : six .text_type (map_type (v ))
0 commit comments