We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1ab5fd commit 638c7e3Copy full SHA for 638c7e3
src/Request/SmsCampaign/SendSmsCampaignRequest.php
@@ -35,6 +35,9 @@ class SendSmsCampaignRequest extends BaseRequest
35
/** @var string */
36
private $sendAt;
37
38
+ /** @var bool */
39
+ private $simulationMode;
40
+
41
public function __construct()
42
{
43
$this->method = HttpMethodEnum::POST;
@@ -173,4 +176,20 @@ public function setSendAt(string $sendAt): void
173
176
174
177
$this->sendAt = $sendAt;
175
178
}
179
180
+ /**
181
+ * @return bool
182
+ */
183
+ public function getSimulationMode(): bool
184
+ {
185
+ return $this->simulationMode;
186
+ }
187
188
189
+ * @param bool $simulationMode
190
191
+ public function setSimulationMode(bool $simulationMode): void
192
193
+ $this->simulationMode = $simulationMode;
194
195
0 commit comments