Class: Twilio::REST::Preview::Understand::AssistantContext::TaskInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/preview/understand/assistant/task.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

Constructor Details

#initialize(version, payload, assistant_sid: nil, sid: nil) ⇒ TaskInstance

Initialize the TaskInstance



339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 339

def initialize(version, payload, assistant_sid: nil, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'account_sid' => payload['account_sid'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
      'friendly_name' => payload['friendly_name'],
      'links' => payload['links'],
      'assistant_sid' => payload['assistant_sid'],
      'sid' => payload['sid'],
      'unique_name' => payload['unique_name'],
      'actions_url' => payload['actions_url'],
      'url' => payload['url'],
  }

  # Context
  @instance_context = nil
  @params = {'assistant_sid' => assistant_sid, 'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString



374
375
376
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 374

def 
  @properties['account_sid']
end

#actions_urlString



422
423
424
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 422

def actions_url
  @properties['actions_url']
end

#assistant_sidString



404
405
406
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 404

def assistant_sid
  @properties['assistant_sid']
end

#contextTaskContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context



365
366
367
368
369
370
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 365

def context
  unless @instance_context
    @instance_context = TaskContext.new(@version, @params['assistant_sid'], @params['sid'], )
  end
  @instance_context
end

#date_createdTime



380
381
382
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 380

def date_created
  @properties['date_created']
end

#date_updatedTime



386
387
388
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 386

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Deletes the TaskInstance



462
463
464
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 462

def delete
  context.delete
end

#fetchTaskInstance

Fetch a TaskInstance



435
436
437
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 435

def fetch
  context.fetch
end

#fieldsfields

Access the fields



469
470
471
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 469

def fields
  context.fields
end

#friendly_nameString



392
393
394
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 392

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



503
504
505
506
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 503

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Preview.Understand.TaskInstance #{values}>"
end


398
399
400
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 398

def links
  @properties['links']
end

#samplessamples

Access the samples



476
477
478
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 476

def samples
  context.samples
end

#sidString



410
411
412
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 410

def sid
  @properties['sid']
end

#statisticsstatistics

Access the statistics



490
491
492
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 490

def statistics
  context.statistics
end

#task_actionstask_actions

Access the task_actions



483
484
485
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 483

def task_actions
  context.task_actions
end

#to_sObject

Provide a user friendly representation



496
497
498
499
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 496

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Preview.Understand.TaskInstance #{values}>"
end

#unique_nameString



416
417
418
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 416

def unique_name
  @properties['unique_name']
end

#update(friendly_name: :unset, unique_name: :unset, actions: :unset, actions_url: :unset) ⇒ TaskInstance

Update the TaskInstance



450
451
452
453
454
455
456
457
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 450

def update(friendly_name: :unset, unique_name: :unset, actions: :unset, actions_url: :unset)
  context.update(
      friendly_name: friendly_name,
      unique_name: unique_name,
      actions: actions,
      actions_url: actions_url,
  )
end

#urlString



428
429
430
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task.rb', line 428

def url
  @properties['url']
end