Class: Twilio::REST::Preview::Understand::AssistantContext::TaskContext::FieldInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/preview/understand/assistant/task/field.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, task_sid: nil, sid: nil) ⇒ FieldInstance

Initialize the FieldInstance



245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 245

def initialize(version, payload, assistant_sid: nil, task_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']),
      'field_type' => payload['field_type'],
      'task_sid' => payload['task_sid'],
      'assistant_sid' => payload['assistant_sid'],
      'sid' => payload['sid'],
      'unique_name' => payload['unique_name'],
      'url' => payload['url'],
  }

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

Instance Method Details

#account_sidString



288
289
290
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 288

def 
  @properties['account_sid']
end

#assistant_sidString



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

def assistant_sid
  @properties['assistant_sid']
end

#contextFieldContext

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



274
275
276
277
278
279
280
281
282
283
284
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 274

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

#date_createdTime



294
295
296
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 294

def date_created
  @properties['date_created']
end

#date_updatedTime



300
301
302
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 300

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Delete the FieldInstance



350
351
352
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 350

def delete
  context.delete
end

#fetchFieldInstance

Fetch the FieldInstance



343
344
345
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 343

def fetch
  context.fetch
end

#field_typeString



306
307
308
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 306

def field_type
  @properties['field_type']
end

#inspectObject

Provide a detailed, user friendly representation



363
364
365
366
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 363

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

#sidString



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

def sid
  @properties['sid']
end

#task_sidString



312
313
314
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 312

def task_sid
  @properties['task_sid']
end

#to_sObject

Provide a user friendly representation



356
357
358
359
# File 'lib/twilio-ruby/rest/preview/understand/assistant/task/field.rb', line 356

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

#unique_nameString



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

def unique_name
  @properties['unique_name']
end

#urlString



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

def url
  @properties['url']
end