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:



3083
3084
3085
3086
# File 'lib/infrawrench/client.rb', line 3083

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

Instance Attribute Details

#conversationsChatConversationsNamespace (readonly)

Returns client.chat.conversations.

Returns:



3079
3080
3081
# File 'lib/infrawrench/client.rb', line 3079

def conversations
  @conversations
end