@@ -61,9 +61,7 @@ class SayStandardEngine implements ModelInterface, ArrayAccess, \JsonSerializabl
6161 */
6262 protected static $ openAPITypes = [
6363 'name ' => 'string ' ,
64- 'voice ' => '\FreeClimb\Api\Model\SayStandardVoice ' ,
65- 'culture ' => '\FreeClimb\Api\Model\SayStandardCulture ' ,
66- 'content_type ' => '\FreeClimb\Api\Model\SayStandardContentType '
64+ 'parameters ' => '\FreeClimb\Api\Model\SayStandardEngineParameters '
6765 ];
6866
6967 /**
@@ -75,9 +73,7 @@ class SayStandardEngine implements ModelInterface, ArrayAccess, \JsonSerializabl
7573 */
7674 protected static $ openAPIFormats = [
7775 'name ' => null ,
78- 'voice ' => null ,
79- 'culture ' => null ,
80- 'content_type ' => null
76+ 'parameters ' => null
8177 ];
8278
8379 /**
@@ -87,9 +83,7 @@ class SayStandardEngine implements ModelInterface, ArrayAccess, \JsonSerializabl
8783 */
8884 protected static array $ openAPINullables = [
8985 'name ' => false ,
90- 'voice ' => false ,
91- 'culture ' => false ,
92- 'content_type ' => false
86+ 'parameters ' => false
9387 ];
9488
9589 /**
@@ -179,9 +173,7 @@ public function isNullableSetToNull(string $property): bool
179173 */
180174 protected static $ attributeMap = [
181175 'name ' => 'name ' ,
182- 'voice ' => 'Voice ' ,
183- 'culture ' => 'Culture ' ,
184- 'content_type ' => 'Content-Type '
176+ 'parameters ' => 'parameters '
185177 ];
186178
187179 /**
@@ -191,9 +183,7 @@ public function isNullableSetToNull(string $property): bool
191183 */
192184 protected static $ setters = [
193185 'name ' => 'setName ' ,
194- 'voice ' => 'setVoice ' ,
195- 'culture ' => 'setCulture ' ,
196- 'content_type ' => 'setContentType '
186+ 'parameters ' => 'setParameters '
197187 ];
198188
199189 /**
@@ -203,9 +193,7 @@ public function isNullableSetToNull(string $property): bool
203193 */
204194 protected static $ getters = [
205195 'name ' => 'getName ' ,
206- 'voice ' => 'getVoice ' ,
207- 'culture ' => 'getCulture ' ,
208- 'content_type ' => 'getContentType '
196+ 'parameters ' => 'getParameters '
209197 ];
210198
211199 /**
@@ -266,9 +254,7 @@ public function getModelName()
266254 public function __construct (?array $ data = null )
267255 {
268256 $ this ->setIfExists ('name ' , $ data ?? [], 'freeclimb.standard ' );
269- $ this ->setIfExists ('voice ' , $ data ?? [], null );
270- $ this ->setIfExists ('culture ' , $ data ?? [], null );
271- $ this ->setIfExists ('content_type ' , $ data ?? [], null );
257+ $ this ->setIfExists ('parameters ' , $ data ?? [], null );
272258 }
273259
274260 /**
@@ -341,82 +327,28 @@ public function setName($name)
341327 }
342328
343329 /**
344- * Gets voice
330+ * Gets parameters
345331 *
346- * @return \FreeClimb\Api\Model\SayStandardVoice |null
332+ * @return \FreeClimb\Api\Model\SayStandardEngineParameters |null
347333 */
348- public function getVoice ()
334+ public function getParameters ()
349335 {
350- return $ this ->container ['voice ' ];
336+ return $ this ->container ['parameters ' ];
351337 }
352338
353339 /**
354- * Sets voice
340+ * Sets parameters
355341 *
356- * @param \FreeClimb\Api\Model\SayStandardVoice |null $voice voice
342+ * @param \FreeClimb\Api\Model\SayStandardEngineParameters |null $parameters parameters
357343 *
358344 * @return self
359345 */
360- public function setVoice ( $ voice )
346+ public function setParameters ( $ parameters )
361347 {
362- if (is_null ($ voice )) {
363- throw new \InvalidArgumentException ('non-nullable voice cannot be null ' );
348+ if (is_null ($ parameters )) {
349+ throw new \InvalidArgumentException ('non-nullable parameters cannot be null ' );
364350 }
365- $ this ->container ['voice ' ] = $ voice ;
366-
367- return $ this ;
368- }
369-
370- /**
371- * Gets culture
372- *
373- * @return \FreeClimb\Api\Model\SayStandardCulture|null
374- */
375- public function getCulture ()
376- {
377- return $ this ->container ['culture ' ];
378- }
379-
380- /**
381- * Sets culture
382- *
383- * @param \FreeClimb\Api\Model\SayStandardCulture|null $culture culture
384- *
385- * @return self
386- */
387- public function setCulture ($ culture )
388- {
389- if (is_null ($ culture )) {
390- throw new \InvalidArgumentException ('non-nullable culture cannot be null ' );
391- }
392- $ this ->container ['culture ' ] = $ culture ;
393-
394- return $ this ;
395- }
396-
397- /**
398- * Gets content_type
399- *
400- * @return \FreeClimb\Api\Model\SayStandardContentType|null
401- */
402- public function getContentType ()
403- {
404- return $ this ->container ['content_type ' ];
405- }
406-
407- /**
408- * Sets content_type
409- *
410- * @param \FreeClimb\Api\Model\SayStandardContentType|null $content_type content_type
411- *
412- * @return self
413- */
414- public function setContentType ($ content_type )
415- {
416- if (is_null ($ content_type )) {
417- throw new \InvalidArgumentException ('non-nullable content_type cannot be null ' );
418- }
419- $ this ->container ['content_type ' ] = $ content_type ;
351+ $ this ->container ['parameters ' ] = $ parameters ;
420352
421353 return $ this ;
422354 }
0 commit comments