Class: Infrawrench::ChatConversationsNamespace

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

Overview

client.chat.conversations

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(transport) ⇒ ChatConversationsNamespace

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 ChatConversationsNamespace.

Parameters:



3595
3596
3597
3598
3599
# File 'lib/infrawrench/client.rb', line 3595

def initialize(transport)
  @transport = transport
  @pending = ChatConversationsPendingNamespace.new(@transport)
  @secret_requests = ChatConversationsSecretRequestsNamespace.new(@transport)
end

Instance Attribute Details

#pendingChatConversationsPendingNamespace (readonly)

Returns client.chat.conversations.pending.

Returns:



3589
3590
3591
# File 'lib/infrawrench/client.rb', line 3589

def pending
  @pending
end

#secret_requestsChatConversationsSecretRequestsNamespace (readonly)

Returns client.chat.conversations.secret_requests.

Returns:



3591
3592
3593
# File 'lib/infrawrench/client.rb', line 3591

def secret_requests
  @secret_requests
end