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.
3137 3138 3139 3140 |
# File 'lib/infrawrench/client.rb', line 3137 def initialize(transport) @transport = transport @conversations = ChatConversationsNamespace.new(@transport) end |
Instance Attribute Details
#conversations ⇒ ChatConversationsNamespace (readonly)
Returns client.chat.conversations.
3133 3134 3135 |
# File 'lib/infrawrench/client.rb', line 3133 def conversations @conversations end |