Class: Twilio::REST::Preview::Understand::AssistantContext::FieldTypeInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Preview::Understand::AssistantContext::FieldTypeInstance
- Defined in:
- lib/twilio-ruby/rest/preview/understand/assistant/field_type.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
-
#account_sid ⇒ String
The unique ID of the Account that created this Field Type.
-
#assistant_sid ⇒ String
The unique ID of the Assistant.
-
#context ⇒ FieldTypeContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date that this resource was created.
-
#date_updated ⇒ Time
The date that this resource was last updated.
-
#delete ⇒ Boolean
Delete the FieldTypeInstance.
-
#fetch ⇒ FieldTypeInstance
Fetch the FieldTypeInstance.
-
#field_values ⇒ field_values
Access the field_values.
-
#friendly_name ⇒ String
A user-provided string that identifies this resource.
-
#initialize(version, payload, assistant_sid: nil, sid: nil) ⇒ FieldTypeInstance
constructor
Initialize the FieldTypeInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ String
The links.
-
#sid ⇒ String
A 34 character string that uniquely identifies this resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#unique_name ⇒ String
A user-provided string that uniquely identifies this resource as an alternative to the sid.
-
#update(friendly_name: :unset, unique_name: :unset) ⇒ FieldTypeInstance
Update the FieldTypeInstance.
-
#url ⇒ String
The url.
Constructor Details
#initialize(version, payload, assistant_sid: nil, sid: nil) ⇒ FieldTypeInstance
Initialize the FieldTypeInstance
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 271 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, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The unique ID of the Account that created this Field Type.
305 306 307 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 305 def account_sid @properties['account_sid'] end |
#assistant_sid ⇒ String
Returns The unique ID of the Assistant.
335 336 337 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 335 def assistant_sid @properties['assistant_sid'] end |
#context ⇒ FieldTypeContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
296 297 298 299 300 301 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 296 def context unless @instance_context @instance_context = FieldTypeContext.new(@version, @params['assistant_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date that this resource was created.
311 312 313 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 311 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date that this resource was last updated.
317 318 319 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 317 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the FieldTypeInstance
378 379 380 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 378 def delete context.delete end |
#fetch ⇒ FieldTypeInstance
Fetch the FieldTypeInstance
360 361 362 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 360 def fetch context.fetch end |
#field_values ⇒ field_values
Access the field_values
385 386 387 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 385 def field_values context.field_values end |
#friendly_name ⇒ String
Returns A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.
323 324 325 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 323 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
398 399 400 401 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 398 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Understand.FieldTypeInstance #{values}>" end |
#links ⇒ String
Returns The links.
329 330 331 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 329 def links @properties['links'] end |
#sid ⇒ String
Returns A 34 character string that uniquely identifies this resource.
341 342 343 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 341 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
391 392 393 394 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 391 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Understand.FieldTypeInstance #{values}>" end |
#unique_name ⇒ String
Returns A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
347 348 349 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 347 def unique_name @properties['unique_name'] end |
#update(friendly_name: :unset, unique_name: :unset) ⇒ FieldTypeInstance
Update the FieldTypeInstance
371 372 373 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 371 def update(friendly_name: :unset, unique_name: :unset) context.update(friendly_name: friendly_name, unique_name: unique_name, ) end |
#url ⇒ String
Returns The url.
353 354 355 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/field_type.rb', line 353 def url @properties['url'] end |