@@ -203,7 +203,7 @@ final class BurninDestinationSettings
203203 *
204204 * @var int|null
205205 */
206- private $ shadowXoffset ;
206+ private $ shadowXOffset ;
207207
208208 /**
209209 * Specify the vertical offset of the shadow relative to the captions in pixels. A value of -2 would result in a shadow
@@ -212,7 +212,7 @@ final class BurninDestinationSettings
212212 *
213213 * @var int|null
214214 */
215- private $ shadowYoffset ;
215+ private $ shadowYOffset ;
216216
217217 /**
218218 * To use the available style, color, and position information from your input captions: Set Style passthrough to
@@ -243,7 +243,7 @@ final class BurninDestinationSettings
243243 *
244244 * @var int|null
245245 */
246- private $ xposition ;
246+ private $ xPosition ;
247247
248248 /**
249249 * Specify the vertical position of the captions, relative to the top of the output in pixels. A value of 10 would
@@ -252,7 +252,7 @@ final class BurninDestinationSettings
252252 *
253253 * @var int|null
254254 */
255- private $ yposition ;
255+ private $ yPosition ;
256256
257257 /**
258258 * @param array{
@@ -306,12 +306,12 @@ public function __construct(array $input)
306306 $ this ->removeRubyReserveAttributes = $ input ['RemoveRubyReserveAttributes ' ] ?? null ;
307307 $ this ->shadowColor = $ input ['ShadowColor ' ] ?? null ;
308308 $ this ->shadowOpacity = $ input ['ShadowOpacity ' ] ?? null ;
309- $ this ->shadowXoffset = $ input ['ShadowXOffset ' ] ?? null ;
310- $ this ->shadowYoffset = $ input ['ShadowYOffset ' ] ?? null ;
309+ $ this ->shadowXOffset = $ input ['ShadowXOffset ' ] ?? null ;
310+ $ this ->shadowYOffset = $ input ['ShadowYOffset ' ] ?? null ;
311311 $ this ->stylePassthrough = $ input ['StylePassthrough ' ] ?? null ;
312312 $ this ->teletextSpacing = $ input ['TeletextSpacing ' ] ?? null ;
313- $ this ->xposition = $ input ['XPosition ' ] ?? null ;
314- $ this ->yposition = $ input ['YPosition ' ] ?? null ;
313+ $ this ->xPosition = $ input ['XPosition ' ] ?? null ;
314+ $ this ->yPosition = $ input ['YPosition ' ] ?? null ;
315315 }
316316
317317 /**
@@ -476,14 +476,14 @@ public function getShadowOpacity(): ?int
476476 return $ this ->shadowOpacity ;
477477 }
478478
479- public function getShadowXoffset (): ?int
479+ public function getShadowXOffset (): ?int
480480 {
481- return $ this ->shadowXoffset ;
481+ return $ this ->shadowXOffset ;
482482 }
483483
484- public function getShadowYoffset (): ?int
484+ public function getShadowYOffset (): ?int
485485 {
486- return $ this ->shadowYoffset ;
486+ return $ this ->shadowYOffset ;
487487 }
488488
489489 /**
@@ -502,14 +502,14 @@ public function getTeletextSpacing(): ?string
502502 return $ this ->teletextSpacing ;
503503 }
504504
505- public function getXposition (): ?int
505+ public function getXPosition (): ?int
506506 {
507- return $ this ->xposition ;
507+ return $ this ->xPosition ;
508508 }
509509
510- public function getYposition (): ?int
510+ public function getYPosition (): ?int
511511 {
512- return $ this ->yposition ;
512+ return $ this ->yPosition ;
513513 }
514514
515515 /**
@@ -605,10 +605,10 @@ public function requestBody(): array
605605 if (null !== $ v = $ this ->shadowOpacity ) {
606606 $ payload ['shadowOpacity ' ] = $ v ;
607607 }
608- if (null !== $ v = $ this ->shadowXoffset ) {
608+ if (null !== $ v = $ this ->shadowXOffset ) {
609609 $ payload ['shadowXOffset ' ] = $ v ;
610610 }
611- if (null !== $ v = $ this ->shadowYoffset ) {
611+ if (null !== $ v = $ this ->shadowYOffset ) {
612612 $ payload ['shadowYOffset ' ] = $ v ;
613613 }
614614 if (null !== $ v = $ this ->stylePassthrough ) {
@@ -623,10 +623,10 @@ public function requestBody(): array
623623 }
624624 $ payload ['teletextSpacing ' ] = $ v ;
625625 }
626- if (null !== $ v = $ this ->xposition ) {
626+ if (null !== $ v = $ this ->xPosition ) {
627627 $ payload ['xPosition ' ] = $ v ;
628628 }
629- if (null !== $ v = $ this ->yposition ) {
629+ if (null !== $ v = $ this ->yPosition ) {
630630 $ payload ['yPosition ' ] = $ v ;
631631 }
632632
0 commit comments