| 1 | <?php |
||
| 5 | class TotalVoiceSmsMessage extends TotalVoiceMessage |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var bool |
||
| 9 | */ |
||
| 10 | public $multi_part = false; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var null|\DateTime |
||
| 14 | */ |
||
| 15 | public $scheduled_datetime = null; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Set the multi-part message option. |
||
| 19 | * |
||
| 20 | * @param bool $multi_part |
||
| 21 | * @return $this |
||
| 22 | */ |
||
| 23 | 2 | public function multipart($multi_part) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * Set the scheleduled datetime message option in Datetime Format. |
||
| 32 | * |
||
| 33 | * @param \DateTime $scheduled_datetime |
||
| 34 | * @return $this |
||
| 35 | */ |
||
| 36 | 2 | public function scheledule(\DateTime $scheduled_datetime) |
|
| 42 | } |
||
| 43 |