Class: Twilio::REST::Autopilot::V1::AssistantContext::TaskContext::FieldInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Autopilot::V1::AssistantContext::TaskContext::FieldInstance
- Defined in:
- lib/twilio-ruby/rest/autopilot/v1/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
-
#account_sid ⇒ String
The unique ID of the Account that created this Field.
-
#assistant_sid ⇒ String
The unique ID of the parent Assistant.
-
#context ⇒ FieldContext
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
Deletes the FieldInstance.
-
#fetch ⇒ FieldInstance
Fetch a FieldInstance.
-
#field_type ⇒ String
The Field Type of this field.
-
#initialize(version, payload, assistant_sid: nil, task_sid: nil, sid: nil) ⇒ FieldInstance
constructor
Initialize the FieldInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sid ⇒ String
A 34 character string that uniquely identifies this resource.
-
#task_sid ⇒ String
The unique ID of the Task associated with this Field.
-
#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.
-
#url ⇒ String
The url.
Constructor Details
#initialize(version, payload, assistant_sid: nil, task_sid: nil, sid: nil) ⇒ FieldInstance
Initialize the FieldInstance
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 249 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_sid ⇒ String
Returns The unique ID of the Account that created this Field.
292 293 294 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 292 def account_sid @properties['account_sid'] end |
#assistant_sid ⇒ String
Returns The unique ID of the parent Assistant.
322 323 324 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 322 def assistant_sid @properties['assistant_sid'] end |
#context ⇒ FieldContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
278 279 280 281 282 283 284 285 286 287 288 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 278 def context unless @instance_context @instance_context = FieldContext.new( @version, @params['assistant_sid'], @params['task_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date that this resource was created.
298 299 300 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 298 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date that this resource was last updated.
304 305 306 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 304 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the FieldInstance
354 355 356 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 354 def delete context.delete end |
#fetch ⇒ FieldInstance
Fetch a FieldInstance
347 348 349 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 347 def fetch context.fetch end |
#field_type ⇒ String
Returns The Field Type of this field. It can be any Built-in Field Type or unique_name or the Field Type sid of a custom Field Type.
310 311 312 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 310 def field_type @properties['field_type'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
367 368 369 370 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 367 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.FieldInstance #{values}>" end |
#sid ⇒ String
Returns A 34 character string that uniquely identifies this resource.
328 329 330 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 328 def sid @properties['sid'] end |
#task_sid ⇒ String
Returns The unique ID of the Task associated with this Field.
316 317 318 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 316 def task_sid @properties['task_sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
360 361 362 363 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 360 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.FieldInstance #{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.
334 335 336 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 334 def unique_name @properties['unique_name'] end |
#url ⇒ String
Returns The url.
340 341 342 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 340 def url @properties['url'] end |