Class: Twilio::REST::Preview::Understand::AssistantContext::FieldTypeInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, assistant_sid: nil, sid: nil) ⇒ FieldTypeInstance

Initialize the FieldTypeInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this FieldType resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 290

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']),
        'friendly_name' => payload['friendly_name'],
        'links' => payload['links'],
        '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  || @properties['assistant_sid']  ,'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

Returns The unique ID of the Account that created this Field Type.

Returns:

  • (String)

    The unique ID of the Account that created this Field Type.



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

def 
    @properties['account_sid']
end

#assistant_sidString

Returns The unique ID of the Assistant.

Returns:

  • (String)

    The unique ID of the Assistant.



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

def assistant_sid
    @properties['assistant_sid']
end

#contextFieldTypeContext

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

Returns:



315
316
317
318
319
320
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 315

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

#date_createdTime

Returns The date that this resource was created.

Returns:

  • (Time)

    The date that this resource was created



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

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date that this resource was last updated.

Returns:

  • (Time)

    The date that this resource was last updated



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

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the FieldTypeInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



379
380
381
382
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 379

def delete

    context.delete
end

#fetchFieldTypeInstance

Fetch the FieldTypeInstance

Returns:



387
388
389
390
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 387

def fetch

    context.fetch
end

#field_valuesfield_values

Access the field_values

Returns:



411
412
413
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 411

def field_values
    context.field_values
end

#friendly_nameString

Returns A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.

Returns:

  • (String)

    A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.



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

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



424
425
426
427
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 424

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

Returns:

  • (Hash)


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

def links
    @properties['links']
end

#sidString

Returns A 34 character string that uniquely identifies this resource.

Returns:

  • (String)

    A 34 character string that uniquely identifies this resource.



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

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



417
418
419
420
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 417

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

#unique_nameString

Returns A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.

Returns:

  • (String)

    A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.



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

def unique_name
    @properties['unique_name']
end

#update(friendly_name: :unset, unique_name: :unset) ⇒ FieldTypeInstance

Update the FieldTypeInstance

Parameters:

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

    A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.

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

    A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.

Returns:



397
398
399
400
401
402
403
404
405
406
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 397

def update(
    friendly_name: :unset, 
    unique_name: :unset
)

    context.update(
        friendly_name: friendly_name, 
        unique_name: unique_name, 
    )
end

#urlString

Returns:

  • (String)


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

def url
    @properties['url']
end