@@ -71,6 +71,16 @@ class SlackMessage implements Arrayable
71
71
*/
72
72
protected ?string $ username = null ;
73
73
74
+ /**
75
+ * Unique, per-channel, timestamp for each message. If provided, send message as a thread reply to this message.
76
+ */
77
+ protected ?string $ threadTs = null ;
78
+
79
+ /**
80
+ * If sending message as reply to thread, whether to 'broadcast' a reference to the thread reply to the parent conversation.
81
+ */
82
+ protected ?bool $ broadcastReply = null ;
83
+
74
84
/**
75
85
* Set the Slack channel the message should be sent to.
76
86
*/
@@ -238,6 +248,26 @@ public function username(string $username): self
238
248
return $ this ;
239
249
}
240
250
251
+ /**
252
+ * Set the thread timestamp (message ID) to send as reply to thread.
253
+ */
254
+ public function threadTimestamp (?string $ threadTimestamp ): self
255
+ {
256
+ $ this ->threadTs = $ threadTimestamp ;
257
+
258
+ return $ this ;
259
+ }
260
+
261
+ /**
262
+ * Only applicable if threadTimestamp is set. Broadcasts a reference to the threaded reply to the parent conversation.
263
+ */
264
+ public function broadcastReply (?bool $ broadcastReply = true ): self
265
+ {
266
+ $ this ->broadcastReply = $ broadcastReply ;
267
+
268
+ return $ this ;
269
+ }
270
+
241
271
/**
242
272
* Get the instance as an array.
243
273
*/
@@ -258,6 +288,8 @@ public function toArray(): array
258
288
'icon_url ' => $ this ->image ,
259
289
'metadata ' => $ this ->metaData ?->toArray(),
260
290
'mrkdwn ' => $ this ->mrkdwn ,
291
+ 'thread_ts ' => $ this ->threadTs ,
292
+ 'reply_broadcast ' => $ this ->broadcastReply ,
261
293
'unfurl_links ' => $ this ->unfurlLinks ,
262
294
'unfurl_media ' => $ this ->unfurlMedia ,
263
295
'username ' => $ this ->username ,
0 commit comments