Skip to content

Commit 9f3ee73

Browse files
1 parent 1055c71 commit 9f3ee73

2 files changed

Lines changed: 84 additions & 0 deletions

File tree

src/HangoutsChat/GoogleAppsCardV1DecoratedText.php

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ class GoogleAppsCardV1DecoratedText extends \Google\Model
2323
* @var string
2424
*/
2525
public $bottomLabel;
26+
protected $bottomLabelTextType = GoogleAppsCardV1TextParagraph::class;
27+
protected $bottomLabelTextDataType = '';
2628
protected $buttonType = GoogleAppsCardV1Button::class;
2729
protected $buttonDataType = '';
30+
protected $contentTextType = GoogleAppsCardV1TextParagraph::class;
31+
protected $contentTextDataType = '';
2832
protected $endIconType = GoogleAppsCardV1Icon::class;
2933
protected $endIconDataType = '';
3034
protected $iconType = GoogleAppsCardV1Icon::class;
@@ -33,6 +37,10 @@ class GoogleAppsCardV1DecoratedText extends \Google\Model
3337
protected $onClickDataType = '';
3438
protected $startIconType = GoogleAppsCardV1Icon::class;
3539
protected $startIconDataType = '';
40+
/**
41+
* @var string
42+
*/
43+
public $startIconVerticalAlignment;
3644
protected $switchControlType = GoogleAppsCardV1SwitchControl::class;
3745
protected $switchControlDataType = '';
3846
/**
@@ -43,6 +51,8 @@ class GoogleAppsCardV1DecoratedText extends \Google\Model
4351
* @var string
4452
*/
4553
public $topLabel;
54+
protected $topLabelTextType = GoogleAppsCardV1TextParagraph::class;
55+
protected $topLabelTextDataType = '';
4656
/**
4757
* @var bool
4858
*/
@@ -62,6 +72,20 @@ public function getBottomLabel()
6272
{
6373
return $this->bottomLabel;
6474
}
75+
/**
76+
* @param GoogleAppsCardV1TextParagraph
77+
*/
78+
public function setBottomLabelText(GoogleAppsCardV1TextParagraph $bottomLabelText)
79+
{
80+
$this->bottomLabelText = $bottomLabelText;
81+
}
82+
/**
83+
* @return GoogleAppsCardV1TextParagraph
84+
*/
85+
public function getBottomLabelText()
86+
{
87+
return $this->bottomLabelText;
88+
}
6589
/**
6690
* @param GoogleAppsCardV1Button
6791
*/
@@ -76,6 +100,20 @@ public function getButton()
76100
{
77101
return $this->button;
78102
}
103+
/**
104+
* @param GoogleAppsCardV1TextParagraph
105+
*/
106+
public function setContentText(GoogleAppsCardV1TextParagraph $contentText)
107+
{
108+
$this->contentText = $contentText;
109+
}
110+
/**
111+
* @return GoogleAppsCardV1TextParagraph
112+
*/
113+
public function getContentText()
114+
{
115+
return $this->contentText;
116+
}
79117
/**
80118
* @param GoogleAppsCardV1Icon
81119
*/
@@ -132,6 +170,20 @@ public function getStartIcon()
132170
{
133171
return $this->startIcon;
134172
}
173+
/**
174+
* @param string
175+
*/
176+
public function setStartIconVerticalAlignment($startIconVerticalAlignment)
177+
{
178+
$this->startIconVerticalAlignment = $startIconVerticalAlignment;
179+
}
180+
/**
181+
* @return string
182+
*/
183+
public function getStartIconVerticalAlignment()
184+
{
185+
return $this->startIconVerticalAlignment;
186+
}
135187
/**
136188
* @param GoogleAppsCardV1SwitchControl
137189
*/
@@ -174,6 +226,20 @@ public function getTopLabel()
174226
{
175227
return $this->topLabel;
176228
}
229+
/**
230+
* @param GoogleAppsCardV1TextParagraph
231+
*/
232+
public function setTopLabelText(GoogleAppsCardV1TextParagraph $topLabelText)
233+
{
234+
$this->topLabelText = $topLabelText;
235+
}
236+
/**
237+
* @return GoogleAppsCardV1TextParagraph
238+
*/
239+
public function getTopLabelText()
240+
{
241+
return $this->topLabelText;
242+
}
177243
/**
178244
* @param bool
179245
*/

src/HangoutsChat/GoogleAppsCardV1TextParagraph.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ class GoogleAppsCardV1TextParagraph extends \Google\Model
2727
* @var string
2828
*/
2929
public $text;
30+
/**
31+
* @var string
32+
*/
33+
public $textSyntax;
3034

3135
/**
3236
* @param int
@@ -56,6 +60,20 @@ public function getText()
5660
{
5761
return $this->text;
5862
}
63+
/**
64+
* @param string
65+
*/
66+
public function setTextSyntax($textSyntax)
67+
{
68+
$this->textSyntax = $textSyntax;
69+
}
70+
/**
71+
* @return string
72+
*/
73+
public function getTextSyntax()
74+
{
75+
return $this->textSyntax;
76+
}
5977
}
6078

6179
// Adding a class alias for backwards compatibility with the previous class name.

0 commit comments

Comments
 (0)