Class: Twilio::REST::Preview::Understand::AssistantContext::QueryInstance

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



280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 280

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'],
  }

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

Instance Method Details

#account_sidString



318
319
320
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 318

def 
  @properties['account_sid']
end

#assistant_sidString



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

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



309
310
311
312
313
314
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 309

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

#date_createdTime



324
325
326
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 324

def date_created
  @properties['date_created']
end

#date_updatedTime



330
331
332
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 330

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Delete the QueryInstance



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

def delete
  context.delete
end

#fetchQueryInstance

Fetch the QueryInstance



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

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



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

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

#languageString



342
343
344
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 342

def language
  @properties['language']
end

#model_build_sidString



348
349
350
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 348

def model_build_sid
  @properties['model_build_sid']
end

#queryString



354
355
356
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 354

def query
  @properties['query']
end

#resultsHash



336
337
338
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 336

def results
  @properties['results']
end

#sample_sidString



360
361
362
# File 'lib/twilio-ruby/rest/preview/understand/assistant/query.rb', line 360

def sample_sid
  @properties['sample_sid']
end

#sidString



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

def sid
  @properties['sid']
end

#source_channelString



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

def source_channel
  @properties['source_channel']
end

#statusString



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

def status
  @properties['status']
end

#to_sObject

Provide a user friendly representation



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

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

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

Update the QueryInstance



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

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

#urlString



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

def url
  @properties['url']
end