Class: Twilio::REST::Autopilot::V1::AssistantContext::QueryInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Autopilot::V1::AssistantContext::QueryInstance
- 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
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#assistant_sid ⇒ String
The SID of the Assistant that is the parent of the resource.
-
#context ⇒ QueryContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The RFC 2822 date and time in GMT when the resource was created.
-
#date_updated ⇒ Time
The RFC 2822 date and time in GMT when the resource was last updated.
-
#delete ⇒ Boolean
Deletes the QueryInstance.
-
#dialogue_sid ⇒ String
The SID of the [Dialogue](www.twilio.com/docs/autopilot/api/dialogue).
-
#fetch ⇒ QueryInstance
Fetch a QueryInstance.
-
#initialize(version, payload, assistant_sid: nil, sid: nil) ⇒ QueryInstance
constructor
Initialize the QueryInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#language ⇒ String
The ISO language-country string that specifies the language used by the Query.
-
#model_build_sid ⇒ String
The SID of the [Model Build](www.twilio.com/docs/autopilot/api/model-build) queried.
-
#query ⇒ String
The end-user’s natural language input.
-
#results ⇒ Hash
The natural language analysis results that include the Task recognized and a list of identified Fields.
-
#sample_sid ⇒ String
The SID of an optional reference to the Sample created from the query.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#source_channel ⇒ String
The communication channel from where the end-user input came.
-
#status ⇒ String
The status of the Query.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(sample_sid: :unset, status: :unset) ⇒ QueryInstance
Update the QueryInstance.
-
#url ⇒ String
The absolute URL of the Query resource.
Constructor Details
#initialize(version, payload, assistant_sid: nil, sid: nil) ⇒ QueryInstance
Initialize the QueryInstance
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 314 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_sid ⇒ String
Returns The SID of the Account that created the resource.
353 354 355 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 353 def account_sid @properties['account_sid'] end |
#assistant_sid ⇒ String
Returns The SID of the Assistant that is the parent of the resource.
401 402 403 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 401 def assistant_sid @properties['assistant_sid'] end |
#context ⇒ QueryContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
344 345 346 347 348 349 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 344 def context unless @instance_context @instance_context = QueryContext.new(@version, @params['assistant_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The RFC 2822 date and time in GMT when the resource was created.
359 360 361 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 359 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The RFC 2822 date and time in GMT when the resource was last updated.
365 366 367 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 365 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the QueryInstance
457 458 459 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 457 def delete context.delete end |
#dialogue_sid ⇒ String
Returns The SID of the [Dialogue](www.twilio.com/docs/autopilot/api/dialogue).
431 432 433 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 431 def dialogue_sid @properties['dialogue_sid'] end |
#fetch ⇒ QueryInstance
Fetch a QueryInstance
438 439 440 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 438 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
470 471 472 473 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 470 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.QueryInstance #{values}>" end |
#language ⇒ String
Returns The ISO language-country string that specifies the language used by the Query.
377 378 379 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 377 def language @properties['language'] end |
#model_build_sid ⇒ String
Returns The SID of the [Model Build](www.twilio.com/docs/autopilot/api/model-build) queried.
383 384 385 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 383 def model_build_sid @properties['model_build_sid'] end |
#query ⇒ String
Returns The end-user’s natural language input.
389 390 391 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 389 def query @properties['query'] end |
#results ⇒ Hash
Returns The natural language analysis results that include the Task recognized and a list of identified Fields.
371 372 373 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 371 def results @properties['results'] end |
#sample_sid ⇒ String
Returns The SID of an optional reference to the Sample created from the query.
395 396 397 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 395 def sample_sid @properties['sample_sid'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
407 408 409 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 407 def sid @properties['sid'] end |
#source_channel ⇒ String
Returns The communication channel from where the end-user input came.
425 426 427 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 425 def source_channel @properties['source_channel'] end |
#status ⇒ String
Returns The status of the Query.
413 414 415 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 413 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
463 464 465 466 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 463 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
450 451 452 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 450 def update(sample_sid: :unset, status: :unset) context.update(sample_sid: sample_sid, status: status, ) end |
#url ⇒ String
Returns The absolute URL of the Query resource.
419 420 421 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 419 def url @properties['url'] end |