Skip to content

Commit 4bd1264

Browse files
1 parent a9e6d79 commit 4bd1264

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/Texttospeech/SynthesisInput.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ class SynthesisInput extends \Google\Model
2121
{
2222
protected $customPronunciationsType = CustomPronunciations::class;
2323
protected $customPronunciationsDataType = '';
24+
/**
25+
* @var string
26+
*/
27+
public $markup;
2428
protected $multiSpeakerMarkupType = MultiSpeakerMarkup::class;
2529
protected $multiSpeakerMarkupDataType = '';
2630
/**
@@ -46,6 +50,20 @@ public function getCustomPronunciations()
4650
{
4751
return $this->customPronunciations;
4852
}
53+
/**
54+
* @param string
55+
*/
56+
public function setMarkup($markup)
57+
{
58+
$this->markup = $markup;
59+
}
60+
/**
61+
* @return string
62+
*/
63+
public function getMarkup()
64+
{
65+
return $this->markup;
66+
}
4967
/**
5068
* @param MultiSpeakerMarkup
5169
*/

0 commit comments

Comments
 (0)