Class: Twilio::REST::Autopilot::V1::AssistantContext::TaskInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/autopilot/v1/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

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • assistant_sid (String) (defaults to: nil)

    The unique ID of the Assistant.

  • sid (String) (defaults to: nil)

    The sid



326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 326

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

Returns The unique ID of the Account that created this Task.

Returns:

  • (String)

    The unique ID of the Account that created this Task.



361
362
363
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 361

def 
  @properties['account_sid']
end

#actions_urlString

Returns User-provided HTTP endpoint where the assistant can fetch actions.

Returns:

  • (String)

    User-provided HTTP endpoint where the assistant can fetch actions.



409
410
411
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 409

def actions_url
  @properties['actions_url']
end

#assistant_sidString

Returns The unique ID of the Assistant.

Returns:

  • (String)

    The unique ID of the Assistant.



391
392
393
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 391

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

Returns:



352
353
354
355
356
357
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 352

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

#date_createdTime

Returns The date that this resource was created.

Returns:

  • (Time)

    The date that this resource was created



367
368
369
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 367

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The date that this resource was last updated.

Returns:

  • (Time)

    The date that this resource was last updated



373
374
375
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 373

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Deletes the TaskInstance

Returns:

  • (Boolean)

    true if delete succeeds, true otherwise



447
448
449
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 447

def delete
  context.delete
end

#fetchTaskInstance

Fetch a TaskInstance

Returns:



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

def fetch
  context.fetch
end

#fieldsfields

Access the fields

Returns:



454
455
456
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 454

def fields
  context.fields
end

#friendly_nameString

Returns A user-provided string that identifies this resource. It is non-unique and can be up to 255 characters long.

Returns:

  • (String)

    A user-provided string that identifies this resource. It is non-unique and can be up to 255 characters long.



379
380
381
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 379

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



488
489
490
491
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 488

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

Returns The links.

Returns:

  • (String)

    The links



385
386
387
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 385

def links
  @properties['links']
end

#samplessamples

Access the samples

Returns:



461
462
463
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 461

def samples
  context.samples
end

#sidString

Returns A 34 character string that uniquely identifies this resource.

Returns:

  • (String)

    A 34 character string that uniquely identifies this resource.



397
398
399
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 397

def sid
  @properties['sid']
end

#statisticsstatistics

Access the statistics

Returns:



475
476
477
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 475

def statistics
  context.statistics
end

#task_actionstask_actions

Access the task_actions

Returns:



468
469
470
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 468

def task_actions
  context.task_actions
end

#to_sObject

Provide a user friendly representation



481
482
483
484
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 481

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

#unique_nameString

Returns A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.

Returns:

  • (String)

    A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.



403
404
405
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 403

def unique_name
  @properties['unique_name']
end

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

Update the TaskInstance

Parameters:

  • friendly_name (String) (defaults to: :unset)

    A user-provided string that identifies this resource. It is non-unique and can be up to 255 characters long.

  • unique_name (String) (defaults to: :unset)

    A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.

  • actions (Hash) (defaults to: :unset)

    The actions

  • actions_url (String) (defaults to: :unset)

    The actions_url

Returns:



435
436
437
438
439
440
441
442
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 435

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

Returns The url.

Returns:

  • (String)

    The url



415
416
417
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task.rb', line 415

def url
  @properties['url']
end