Class: Infrawrench::ChatNamespace
- Inherits:
-
Object
- Object
- Infrawrench::ChatNamespace
- Defined in:
- lib/infrawrench/client.rb,
sig/infrawrench/sdk.rbs
Overview
client.chat
Instance Attribute Summary collapse
-
#conversations ⇒ ChatConversationsNamespace
readonly
client.chat.conversations.
Instance Method Summary collapse
-
#initialize(transport) ⇒ ChatNamespace
constructor
private
A new instance of ChatNamespace.
Constructor Details
#initialize(transport) ⇒ ChatNamespace
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of ChatNamespace.
3609 3610 3611 3612 |
# File 'lib/infrawrench/client.rb', line 3609 def initialize(transport) @transport = transport @conversations = ChatConversationsNamespace.new(@transport) end |
Instance Attribute Details
#conversations ⇒ ChatConversationsNamespace (readonly)
Returns client.chat.conversations.
3605 3606 3607 |
# File 'lib/infrawrench/client.rb', line 3605 def conversations @conversations end |