Class: Infrawrench::ChatNamespace

Inherits:
Object
  • Object
show all
Defined in:
lib/infrawrench/client.rb,
sig/infrawrench/sdk.rbs

Overview

client.chat

Instance Attribute Summary collapse

Instance Method Summary collapse

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.

Parameters:



3137
3138
3139
3140
# File 'lib/infrawrench/client.rb', line 3137

def initialize(transport)
  @transport = transport
  @conversations = ChatConversationsNamespace.new(@transport)
end

Instance Attribute Details

#conversationsChatConversationsNamespace (readonly)

Returns client.chat.conversations.

Returns:



3133
3134
3135
# File 'lib/infrawrench/client.rb', line 3133

def conversations
  @conversations
end