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 SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the resource to update.

  • sid (String)

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



190
191
192
193
194
195
196
197
198
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 190

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

Delete the QueryInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



202
203
204
205
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 202

def delete

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

#fetchQueryInstance

Fetch the QueryInstance

Returns:



210
211
212
213
214
215
216
217
218
219
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 210

def fetch

    payload = @version.fetch('GET', @uri)
    QueryInstance.new(
        @version,
        payload,
        assistant_sid: @solution[:assistant_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



255
256
257
258
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 255

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

#to_sObject

Provide a user friendly representation



248
249
250
251
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/query.rb', line 248

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 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:



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

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