| 1 | <?php |
||
| 17 | class ChatPostMessagePayloadResponse extends AbstractPayloadResponse |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string|null |
||
| 21 | */ |
||
| 22 | private $ts; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string|null |
||
| 26 | */ |
||
| 27 | private $channel; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return string|null The Slack timestamp on which your message has been posted, or null if the call failed |
||
| 31 | */ |
||
| 32 | 1 | public function getSlackTimestamp() |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @return string|null The Slack channel ID on which your message has been posted, or null if the call failed |
||
| 39 | */ |
||
| 40 | 1 | public function getChannelId() |
|
| 44 | } |
||
| 45 |