Class: Twilio::REST::Studio::V2::FlowContext::ExecutionContext::ExecutionContextInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.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, flow_sid: nil, execution_sid: nil) ⇒ ExecutionContextInstance

Initialize the ExecutionContextInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • flow_sid (String) (defaults to: nil)

    The SID of the Flow.

  • execution_sid (String) (defaults to: nil)

    The SID of the context’s Execution resource.



131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 131

def initialize(version, payload, flow_sid: nil, execution_sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'account_sid' => payload['account_sid'],
      'context' => payload['context'],
      'flow_sid' => payload['flow_sid'],
      'execution_sid' => payload['execution_sid'],
      'url' => payload['url'],
  }

  # Context
  @instance_context = nil
  @params = {'flow_sid' => flow_sid, 'execution_sid' => execution_sid, }
end

Instance Method Details

#account_sidString

Returns The SID of the Account that created the resource.

Returns:

  • (String)

    The SID of the Account that created the resource



165
166
167
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 165

def 
  @properties['account_sid']
end

#contextHash

Returns The current state of the flow.

Returns:

  • (Hash)

    The current state of the flow



152
153
154
155
156
157
158
159
160
161
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 152

def context
  unless @instance_context
    @instance_context = ExecutionContextContext.new(
        @version,
        @params['flow_sid'],
        @params['execution_sid'],
    )
  end
  @instance_context
end

#execution_sidString

Returns The SID of the Execution.

Returns:

  • (String)

    The SID of the Execution



183
184
185
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 183

def execution_sid
  @properties['execution_sid']
end

#fetchExecutionContextInstance

Fetch the ExecutionContextInstance

Returns:



196
197
198
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 196

def fetch
  context.fetch
end

#flow_sidString

Returns The SID of the Flow.

Returns:

  • (String)

    The SID of the Flow



177
178
179
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 177

def flow_sid
  @properties['flow_sid']
end

#inspectObject

Provide a detailed, user friendly representation



209
210
211
212
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 209

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

#to_sObject

Provide a user friendly representation



202
203
204
205
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 202

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

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource



189
190
191
# File 'lib/twilio-ruby/rest/studio/v2/flow/execution/execution_context.rb', line 189

def url
  @properties['url']
end