Class: Twilio::REST::Preview::Understand::AssistantContext::TaskContext::TaskActionsInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Preview::Understand::AssistantContext::TaskContext::TaskActionsInstance
- Defined in:
- lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb
Overview
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected]
Instance Method Summary collapse
-
#account_sid ⇒ String
The unique ID of the Account that created this Field.
-
#assistant_sid ⇒ String
The unique ID of the parent Assistant.
-
#context ⇒ TaskActionsContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#data ⇒ Hash
The data.
-
#fetch ⇒ TaskActionsInstance
Fetch the TaskActionsInstance.
-
#initialize(version, payload, assistant_sid: nil, task_sid: nil) ⇒ TaskActionsInstance
constructor
Initialize the TaskActionsInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#task_sid ⇒ String
The unique ID of the Task.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(actions: :unset) ⇒ TaskActionsInstance
Update the TaskActionsInstance.
-
#url ⇒ String
The url.
Constructor Details
#initialize(version, payload, assistant_sid: nil, task_sid: nil) ⇒ TaskActionsInstance
Initialize the TaskActionsInstance
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 148 def initialize(version, payload, assistant_sid: nil, task_sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'assistant_sid' => payload['assistant_sid'], 'task_sid' => payload['task_sid'], 'url' => payload['url'], 'data' => payload['data'], } # Context @instance_context = nil @params = {'assistant_sid' => assistant_sid, 'task_sid' => task_sid, } end |
Instance Method Details
#account_sid ⇒ String
Returns The unique ID of the Account that created this Field.
178 179 180 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 178 def account_sid @properties['account_sid'] end |
#assistant_sid ⇒ String
Returns The unique ID of the parent Assistant.
184 185 186 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 184 def assistant_sid @properties['assistant_sid'] end |
#context ⇒ TaskActionsContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
169 170 171 172 173 174 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 169 def context unless @instance_context @instance_context = TaskActionsContext.new(@version, @params['assistant_sid'], @params['task_sid'], ) end @instance_context end |
#data ⇒ Hash
Returns The data.
202 203 204 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 202 def data @properties['data'] end |
#fetch ⇒ TaskActionsInstance
Fetch the TaskActionsInstance
209 210 211 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 209 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
231 232 233 234 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 231 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Understand.TaskActionsInstance #{values}>" end |
#task_sid ⇒ String
Returns The unique ID of the Task.
190 191 192 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 190 def task_sid @properties['task_sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
224 225 226 227 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 224 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Understand.TaskActionsInstance #{values}>" end |
#update(actions: :unset) ⇒ TaskActionsInstance
Update the TaskActionsInstance
218 219 220 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 218 def update(actions: :unset) context.update(actions: actions, ) end |
#url ⇒ String
Returns The url.
196 197 198 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/task_actions.rb', line 196 def url @properties['url'] end |