Class: Twilio::REST::Autopilot::V1::AssistantContext::FieldTypeContext::FieldValueInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Autopilot::V1::AssistantContext::FieldTypeContext::FieldValueInstance
- Defined in:
- lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the FieldValue resource.
-
#assistant_sid ⇒ String
The SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the FieldType associated with the resource.
-
#context ⇒ FieldValueContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date and time in GMT when the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#date_updated ⇒ Time
The date and time in GMT when the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#delete ⇒ Boolean
Delete the FieldValueInstance.
-
#fetch ⇒ FieldValueInstance
Fetch the FieldValueInstance.
-
#field_type_sid ⇒ String
The SID of the Field Type associated with the Field Value.
-
#initialize(version, payload, assistant_sid: nil, field_type_sid: nil, sid: nil) ⇒ FieldValueInstance
constructor
Initialize the FieldValueInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#language ⇒ String
The [ISO language-country](docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html) tag that specifies the language of the value.
-
#sid ⇒ String
The unique string that we created to identify the FieldValue resource.
-
#synonym_of ⇒ String
The word for which the field value is a synonym of.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the FieldValue resource.
-
#value ⇒ String
The Field Value data.
Constructor Details
#initialize(version, payload, assistant_sid: nil, field_type_sid: nil, sid: nil) ⇒ FieldValueInstance
Initialize the FieldValueInstance
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_sid ⇒ String
Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the FieldValue resource.
293 294 295 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 293 def account_sid @properties['account_sid'] end |
#assistant_sid ⇒ String
Returns The SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the FieldType associated with the resource.
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 |
#context ⇒ FieldValueContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
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_created ⇒ Time
Returns The date and time in GMT when the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
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_updated ⇒ Time
Returns The date and time in GMT when the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
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 |
#delete ⇒ Boolean
Delete the FieldValueInstance
354 355 356 357 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 354 def delete context.delete end |
#fetch ⇒ FieldValueInstance
Fetch the FieldValueInstance
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_sid ⇒ String
Returns 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 |
#inspect ⇒ Object
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 |
#language ⇒ String
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`.
317 318 319 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/field_type/field_value.rb', line 317 def language @properties['language'] end |
#sid ⇒ String
Returns 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_of ⇒ String
Returns 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_s ⇒ Object
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 |
#url ⇒ String
Returns 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 |
#value ⇒ String
Returns 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 |