Class: Twilio::REST::Preview::Studio::FlowInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Preview::Studio::FlowInstance
- Defined in:
- lib/twilio-ruby/rest/preview/studio/flow.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
Account Sid.
-
#context ⇒ FlowContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date this Flow was created.
-
#date_updated ⇒ Time
The date this Flow was updated.
-
#debug ⇒ Boolean
Toggle extra logging.
-
#delete ⇒ Boolean
Deletes the FlowInstance.
-
#engagements ⇒ engagements
Access the engagements.
-
#fetch ⇒ FlowInstance
Fetch a FlowInstance.
-
#friendly_name ⇒ String
A human readable description of this resource.
-
#initialize(version, payload, sid: nil) ⇒ FlowInstance
constructor
Initialize the FlowInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ String
Nested resource URLs.
-
#sid ⇒ String
A string that uniquely identifies this Flow.
-
#status ⇒ flow.Status
The Status of this Flow.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The URL of this resource.
-
#version ⇒ String
The latest version number of this Flow’s definition.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ FlowInstance
Initialize the FlowInstance
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 222 def initialize(version, payload, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'friendly_name' => payload['friendly_name'], 'status' => payload['status'], 'debug' => payload['debug'], 'version' => payload['version'].to_i, 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = {'sid' => sid || @properties['sid']} end |
Instance Method Details
#account_sid ⇒ String
Returns Account Sid.
263 264 265 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 263 def account_sid @properties['account_sid'] end |
#context ⇒ FlowContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
248 249 250 251 252 253 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 248 def context unless @instance_context @instance_context = FlowContext.new(@version, @params['sid']) end @instance_context end |
#date_created ⇒ Time
Returns The date this Flow was created.
293 294 295 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 293 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date this Flow was updated.
299 300 301 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 299 def date_updated @properties['date_updated'] end |
#debug ⇒ Boolean
Returns Toggle extra logging.
281 282 283 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 281 def debug @properties['debug'] end |
#delete ⇒ Boolean
Deletes the FlowInstance
325 326 327 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 325 def delete context.delete end |
#engagements ⇒ engagements
Access the engagements
332 333 334 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 332 def engagements context.engagements end |
#fetch ⇒ FlowInstance
Fetch a FlowInstance
318 319 320 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 318 def fetch context.fetch end |
#friendly_name ⇒ String
Returns A human readable description of this resource.
269 270 271 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 269 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
345 346 347 348 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 345 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Studio.FlowInstance #{values}>" end |
#links ⇒ String
Returns Nested resource URLs.
311 312 313 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 311 def links @properties['links'] end |
#sid ⇒ String
Returns A string that uniquely identifies this Flow.
257 258 259 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 257 def sid @properties['sid'] end |
#status ⇒ flow.Status
Returns The Status of this Flow.
275 276 277 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 275 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
338 339 340 341 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 338 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Studio.FlowInstance #{values}>" end |
#url ⇒ String
Returns The URL of this resource.
305 306 307 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 305 def url @properties['url'] end |
#version ⇒ String
Returns The latest version number of this Flow’s definition.
287 288 289 |
# File 'lib/twilio-ruby/rest/preview/studio/flow.rb', line 287 def version @properties['version'] end |