Class: Twilio::REST::Studio::V1::FlowInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/studio/v1/flow.rb

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, sid: nil) ⇒ FlowInstance

Initialize the FlowInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • sid (String) (defaults to: nil)

    The sid



222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/twilio-ruby/rest/studio/v1/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'],
      '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_sidString

Returns The account_sid.

Returns:

  • (String)

    The account_sid



262
263
264
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 262

def 
  @properties['account_sid']
end

#contextFlowContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



247
248
249
250
251
252
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 247

def context
  unless @instance_context
    @instance_context = FlowContext.new(@version, @params['sid'], )
  end
  @instance_context
end

#date_createdTime

Returns The date_created.

Returns:

  • (Time)

    The date_created



286
287
288
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 286

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The date_updated.

Returns:

  • (Time)

    The date_updated



292
293
294
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 292

def date_updated
  @properties['date_updated']
end

#deleteBoolean

Deletes the FlowInstance

Returns:

  • (Boolean)

    true if delete succeeds, true otherwise



318
319
320
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 318

def delete
  context.delete
end

#engagementsengagements

Access the engagements

Returns:



325
326
327
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 325

def engagements
  context.engagements
end

#fetchFlowInstance

Fetch a FlowInstance

Returns:



311
312
313
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 311

def fetch
  context.fetch
end

#friendly_nameString

Returns The friendly_name.

Returns:

  • (String)

    The friendly_name



268
269
270
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 268

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



338
339
340
341
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 338

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Studio.V1.FlowInstance #{values}>"
end

Returns The links.

Returns:

  • (String)

    The links



304
305
306
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 304

def links
  @properties['links']
end

#sidString

Returns The sid.

Returns:

  • (String)

    The sid



256
257
258
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 256

def sid
  @properties['sid']
end

#statusflow.Status

Returns The status.

Returns:

  • (flow.Status)

    The status



274
275
276
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 274

def status
  @properties['status']
end

#to_sObject

Provide a user friendly representation



331
332
333
334
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 331

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Studio.V1.FlowInstance #{values}>"
end

#urlString

Returns The url.

Returns:

  • (String)

    The url



298
299
300
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 298

def url
  @properties['url']
end

#versionString

Returns The version.

Returns:

  • (String)

    The version



280
281
282
# File 'lib/twilio-ruby/rest/studio/v1/flow.rb', line 280

def version
  @properties['version']
end