Class: Twilio::REST::Autopilot::V1::AssistantContext::QueryContext

Inherits:
InstanceContext
  • 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, assistant_sid, sid) ⇒ QueryContext

Initialize the QueryContext

Parameters:

  • version (Version)

    Version that contains the resource

  • assistant_sid (String)

    The assistant_sid

  • sid (String)

    The sid



221
222
223
224
225
226
227
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 221

def initialize(version, assistant_sid, sid)
  super(version)

  # Path Solution
  @solution = {assistant_sid: assistant_sid, sid: sid, }
  @uri = "/Assistants/#{@solution[:assistant_sid]}/Queries/#{@solution[:sid]}"
end

Instance Method Details

#deleteBoolean

Deletes the QueryInstance

Returns:

  • (Boolean)

    true if delete succeeds, true otherwise



265
266
267
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 265

def delete
  @version.delete('delete', @uri)
end

#fetchQueryInstance

Fetch a QueryInstance

Returns:



232
233
234
235
236
237
238
239
240
241
242
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 232

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  QueryInstance.new(@version, payload, assistant_sid: @solution[:assistant_sid], sid: @solution[:sid], )
end

#to_sObject

Provide a user friendly representation



271
272
273
274
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 271

def to_s
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Autopilot.V1.QueryContext #{context}>"
end

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

Update the QueryInstance

Parameters:

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

    The sample_sid

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

    A string that described the query status. The values can be: ‘pending_review`, `reviewed`, `discarded`

Returns:



250
251
252
253
254
255
256
257
258
259
260
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 250

def update(sample_sid: :unset, status: :unset)
  data = Twilio::Values.of({'SampleSid' => sample_sid, 'Status' => status, })

  payload = @version.update(
      'POST',
      @uri,
      data: data,
  )

  QueryInstance.new(@version, payload, assistant_sid: @solution[:assistant_sid], sid: @solution[:sid], )
end