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 SID of the Account that created the resource.
-
#assistant_sid ⇒ String
The SID of the Assistant that is the parent of the Task associated with the resource.
-
#context ⇒ FieldContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The RFC 2822 date and time in GMT when the resource was created.
-
#date_updated ⇒ Time
The RFC 2822 date and time in GMT when the resource was last updated.
-
#delete ⇒ Boolean
Delete the FieldInstance.
-
#fetch ⇒ FieldInstance
Fetch the FieldInstance.
-
#field_type ⇒ String
The Field Type of the 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
The unique string that identifies the resource.
-
#task_sid ⇒ String
The SID of the Task resource associated with this Field.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#unique_name ⇒ String
An application-defined string that uniquely identifies the resource.
-
#url ⇒ String
The absolute URL of the Field resource.
Constructor Details
#initialize(version, payload, assistant_sid: nil, task_sid: nil, sid: nil) ⇒ FieldInstance
Initialize the FieldInstance
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 258 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 SID of the Account that created the resource.
301 302 303 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 301 def account_sid @properties['account_sid'] end |
#assistant_sid ⇒ String
Returns The SID of the Assistant that is the parent of the Task associated with the resource.
331 332 333 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 331 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
287 288 289 290 291 292 293 294 295 296 297 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 287 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 RFC 2822 date and time in GMT when the resource was created.
307 308 309 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 307 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The RFC 2822 date and time in GMT when the resource was last updated.
313 314 315 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 313 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the FieldInstance
363 364 365 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 363 def delete context.delete end |
#fetch ⇒ FieldInstance
Fetch the FieldInstance
356 357 358 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 356 def fetch context.fetch end |
#field_type ⇒ String
Returns The Field Type of the field.
319 320 321 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 319 def field_type @properties['field_type'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
376 377 378 379 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 376 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.FieldInstance #{values}>" end |
#sid ⇒ String
Returns The unique string that identifies the resource.
337 338 339 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 337 def sid @properties['sid'] end |
#task_sid ⇒ String
Returns The SID of the Task resource associated with this Field.
325 326 327 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 325 def task_sid @properties['task_sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
369 370 371 372 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 369 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.FieldInstance #{values}>" end |
#unique_name ⇒ String
Returns An application-defined string that uniquely identifies the resource.
343 344 345 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 343 def unique_name @properties['unique_name'] end |
#url ⇒ String
Returns The absolute URL of the Field resource.
349 350 351 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/field.rb', line 349 def url @properties['url'] end |