Class: Twilio::REST::Preview::Understand::AssistantContext::IntentInstance

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

Initialize the IntentInstance



332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 332

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'],
      'url' => payload['url'],
  }

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

Instance Method Details

#account_sidString



366
367
368
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 366

def 
  @properties['account_sid']
end

#assistant_sidString



396
397
398
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 396

def assistant_sid
  @properties['assistant_sid']
end

#contextIntentContext

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



357
358
359
360
361
362
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 357

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

#date_createdTime



372
373
374
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 372

def date_created
  @properties['date_created']
end

#date_updatedTime



378
379
380
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 378

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Deletes the IntentInstance



440
441
442
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 440

def delete
  context.delete
end

#fetchIntentInstance

Fetch a IntentInstance



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

def fetch
  context.fetch
end

#fieldsfields

Access the fields



447
448
449
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 447

def fields
  context.fields
end

#friendly_nameString



384
385
386
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 384

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



481
482
483
484
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 481

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

#intent_actionsintent_actions

Access the intent_actions



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

def intent_actions
  context.intent_actions
end


390
391
392
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 390

def links
  @properties['links']
end

#samplessamples

Access the samples



454
455
456
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 454

def samples
  context.samples
end

#sidString



402
403
404
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 402

def sid
  @properties['sid']
end

#statisticsstatistics

Access the statistics



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

def statistics
  context.statistics
end

#to_sObject

Provide a user friendly representation



474
475
476
477
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 474

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

#unique_nameString



408
409
410
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 408

def unique_name
  @properties['unique_name']
end

#update(friendly_name: :unset, unique_name: :unset, actions: :unset) ⇒ IntentInstance

Update the IntentInstance



433
434
435
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 433

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

#urlString



414
415
416
# File 'lib/twilio-ruby/rest/preview/understand/assistant/intent.rb', line 414

def url
  @properties['url']
end