Class: Twilio::REST::Autopilot::V1::AssistantContext::FieldTypeContext::FieldValueInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb

Instance Method Summary collapse

Constructor Details

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

Initialize the FieldValueInstance

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 FieldValue resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 258

def initialize(version, payload , assistant_sid: nil, field_type_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_sid' => payload['field_type_sid'],
        'language' => payload['language'],
        'assistant_sid' => payload['assistant_sid'],
        'sid' => payload['sid'],
        'value' => payload['value'],
        'url' => payload['url'],
        'synonym_of' => payload['synonym_of'],
    }

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

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the FieldValue resource.

Returns:



293
294
295
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 293

def 
    @properties['account_sid']
end

#assistant_sidString

Returns The SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the FieldType associated with the resource.

Returns:



323
324
325
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 323

def assistant_sid
    @properties['assistant_sid']
end

#contextFieldValueContext

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

Returns:



284
285
286
287
288
289
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 284

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

#date_createdTime

Returns The date and time in GMT when the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



299
300
301
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 299

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date and time in GMT when the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.

Returns:



305
306
307
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 305

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the FieldValueInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



354
355
356
357
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 354

def delete

    context.delete
end

#fetchFieldValueInstance

Fetch the FieldValueInstance

Returns:



362
363
364
365
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 362

def fetch

    context.fetch
end

#field_type_sidString

Returns The SID of the Field Type associated with the Field Value.

Returns:

  • (String)

    The SID of the Field Type associated with the Field Value.



311
312
313
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 311

def field_type_sid
    @properties['field_type_sid']
end

#inspectObject

Provide a detailed, user friendly representation



376
377
378
379
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 376

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

#languageString

Returns The [ISO language-country](docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html) tag that specifies the language of the value. Currently supported tags: ‘en-US`.

Returns:



317
318
319
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 317

def language
    @properties['language']
end

#sidString

Returns The unique string that we created to identify the FieldValue resource.

Returns:

  • (String)

    The unique string that we created to identify the FieldValue resource.



329
330
331
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 329

def sid
    @properties['sid']
end

#synonym_ofString

Returns The word for which the field value is a synonym of.

Returns:

  • (String)

    The word for which the field value is a synonym of.



347
348
349
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 347

def synonym_of
    @properties['synonym_of']
end

#to_sObject

Provide a user friendly representation



369
370
371
372
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 369

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

#urlString

Returns The absolute URL of the FieldValue resource.

Returns:

  • (String)

    The absolute URL of the FieldValue resource.



341
342
343
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 341

def url
    @properties['url']
end

#valueString

Returns The Field Value data.

Returns:

  • (String)

    The Field Value data.



335
336
337
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 335

def value
    @properties['value']
end