Class: Twilio::REST::Autopilot::V1::AssistantContext::QueryInstance

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

Initialize the QueryInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • assistant_sid (String) (defaults to: nil)

    The SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the resource.

  • sid (String) (defaults to: nil)

    The Twilio-provided string that uniquely identifies the Query resource to fetch.



305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 305

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']),
      'results' => payload['results'],
      'language' => payload['language'],
      'model_build_sid' => payload['model_build_sid'],
      'query' => payload['query'],
      'sample_sid' => payload['sample_sid'],
      'assistant_sid' => payload['assistant_sid'],
      'sid' => payload['sid'],
      'status' => payload['status'],
      'url' => payload['url'],
      'source_channel' => payload['source_channel'],
      'dialogue_sid' => payload['dialogue_sid'],
  }

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

Instance Method Details

#account_sidString

Returns The SID of the Account that created the resource.

Returns:

  • (String)

    The SID of the Account that created the resource



344
345
346
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 344

def 
  @properties['account_sid']
end

#assistant_sidString

Returns The SID of the Assistant that is the parent of the resource.

Returns:

  • (String)

    The SID of the Assistant that is the parent of the resource



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

def assistant_sid
  @properties['assistant_sid']
end

#contextQueryContext

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

Returns:



335
336
337
338
339
340
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 335

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

#date_createdTime

Returns The RFC 2822 date and time in GMT when the resource was created.

Returns:

  • (Time)

    The RFC 2822 date and time in GMT when the resource was created



350
351
352
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 350

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The RFC 2822 date and time in GMT when the resource was last updated.

Returns:

  • (Time)

    The RFC 2822 date and time in GMT when the resource was last updated



356
357
358
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 356

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Deletes the QueryInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



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

def delete
  context.delete
end

#dialogue_sidString

Returns The SID of the [Dialogue](www.twilio.com/docs/autopilot/api/dialogue).

Returns:



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

def dialogue_sid
  @properties['dialogue_sid']
end

#fetchQueryInstance

Fetch a QueryInstance

Returns:



429
430
431
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 429

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



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

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

#languageString

Returns The ISO language-country string that specifies the language used by the Query.

Returns:

  • (String)

    The ISO language-country string that specifies the language used by the Query



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

def language
  @properties['language']
end

#model_build_sidString

Returns The SID of the [Model Build](www.twilio.com/docs/autopilot/api/model-build) queried.

Returns:



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

def model_build_sid
  @properties['model_build_sid']
end

#queryString

Returns The end-user’s natural language input.

Returns:

  • (String)

    The end-user’s natural language input



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

def query
  @properties['query']
end

#resultsHash

Returns The natural language analysis results that include the Task recognized and a list of identified Fields.

Returns:

  • (Hash)

    The natural language analysis results that include the Task recognized and a list of identified Fields



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

def results
  @properties['results']
end

#sample_sidString

Returns The SID of an optional reference to the Sample created from the query.

Returns:

  • (String)

    The SID of an optional reference to the Sample created from the query



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

def sample_sid
  @properties['sample_sid']
end

#sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    The unique string that identifies the resource



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

def sid
  @properties['sid']
end

#source_channelString

Returns The communication channel from where the end-user input came.

Returns:

  • (String)

    The communication channel from where the end-user input came



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

def source_channel
  @properties['source_channel']
end

#statusString

Returns The status of the Query.

Returns:

  • (String)

    The status of the Query



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

def status
  @properties['status']
end

#to_sObject

Provide a user friendly representation



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

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

#update(sample_sid: :unset, status: :unset) ⇒ QueryInstance

Update the QueryInstance

Parameters:

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

    The SID of an optional reference to the [Sample](www.twilio.com/docs/autopilot/api/task-sample) created from the query.

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

    The new status of the resource. Can be: ‘pending-review`, `reviewed`, or `discarded`

Returns:



441
442
443
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 441

def update(sample_sid: :unset, status: :unset)
  context.update(sample_sid: sample_sid, status: status, )
end

#urlString

Returns The absolute URL of the Query resource.

Returns:

  • (String)

    The absolute URL of the Query resource



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

def url
  @properties['url']
end