* Set the conversation ID for this scope. * Set to `null` to unset the conversation ID.
(conversationId: string | null | undefined)
| 295 | * Set to `null` to unset the conversation ID. |
| 296 | */ |
| 297 | public setConversationId(conversationId: string | null | undefined): this { |
| 298 | this._conversationId = conversationId || undefined; |
| 299 | this._notifyScopeListeners(); |
| 300 | return this; |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Set an object that will be merged into existing tags on the scope, |
no test coverage detected