Class: Infrawrench::ChatConversationsNamespace
- Inherits:
-
Object
- Object
- Infrawrench::ChatConversationsNamespace
- Defined in:
- lib/infrawrench/client.rb,
sig/infrawrench/sdk.rbs
Overview
client.chat.conversations
Instance Attribute Summary collapse
-
#pending ⇒ ChatConversationsPendingNamespace
readonly
client.chat.conversations.pending. -
#secret_requests ⇒ ChatConversationsSecretRequestsNamespace
readonly
client.chat.conversations.secret_requests.
Instance Method Summary collapse
-
#initialize(transport) ⇒ ChatConversationsNamespace
constructor
private
A new instance of ChatConversationsNamespace.
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.
3717 3718 3719 3720 3721 |
# File 'lib/infrawrench/client.rb', line 3717 def initialize(transport) @transport = transport @pending = ChatConversationsPendingNamespace.new(@transport) @secret_requests = ChatConversationsSecretRequestsNamespace.new(@transport) end |
Instance Attribute Details
#pending ⇒ ChatConversationsPendingNamespace (readonly)
Returns client.chat.conversations.pending.
3711 3712 3713 |
# File 'lib/infrawrench/client.rb', line 3711 def pending @pending end |
#secret_requests ⇒ ChatConversationsSecretRequestsNamespace (readonly)
Returns client.chat.conversations.secret_requests.
3713 3714 3715 |
# File 'lib/infrawrench/client.rb', line 3713 def secret_requests @secret_requests end |