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.
3731 3732 3733 3734 |
# File 'lib/infrawrench/client.rb', line 3731 def initialize(transport) @transport = transport @conversations = ChatConversationsNamespace.new(@transport) end |
Instance Attribute Details
#conversations ⇒ ChatConversationsNamespace (readonly)
Returns client.chat.conversations.
3727 3728 3729 |
# File 'lib/infrawrench/client.rb', line 3727 def conversations @conversations end |