Class: Twilio::REST::Studio::V2::FlowContext::FlowRevisionInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Studio::V2::FlowContext::FlowRevisionInstance
- Defined in:
- lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Flow resource.
-
#commit_message ⇒ String
Description of change made in the revision.
-
#context ⇒ FlowRevisionContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date and time in GMT when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#date_updated ⇒ Time
The date and time in GMT when the resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#definition ⇒ Hash
JSON representation of flow definition.
-
#errors ⇒ Array<Hash>
List of error in the flow definition.
-
#fetch ⇒ FlowRevisionInstance
Fetch the FlowRevisionInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the Flow.
-
#initialize(version, payload, sid: nil, revision: nil) ⇒ FlowRevisionInstance
constructor
Initialize the FlowRevisionInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#revision ⇒ String
The latest revision number of the Flow’s definition.
-
#sid ⇒ String
The unique string that we created to identify the Flow resource.
- #status ⇒ Status
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the resource.
-
#valid ⇒ Boolean
Boolean if the flow definition is valid.
Constructor Details
#initialize(version, payload, sid: nil, revision: nil) ⇒ FlowRevisionInstance
Initialize the FlowRevisionInstance
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 222 def initialize(version, payload , sid: nil, revision: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'friendly_name' => payload['friendly_name'], 'definition' => payload['definition'], 'status' => payload['status'], 'revision' => payload['revision'] == nil ? payload['revision'] : payload['revision'].to_i, 'commit_message' => payload['commit_message'], 'valid' => payload['valid'], 'errors' => payload['errors'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], } # Context @instance_context = nil @params = { 'sid' => sid || @properties['sid'] ,'revision' => revision || @properties['revision'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Flow resource.
265 266 267 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 265 def account_sid @properties['account_sid'] end |
#commit_message ⇒ String
Returns Description of change made in the revision.
295 296 297 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 295 def @properties['commit_message'] end |
#context ⇒ FlowRevisionContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
250 251 252 253 254 255 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 250 def context unless @instance_context @instance_context = FlowRevisionContext.new(@version , @params['sid'], @params['revision']) end @instance_context end |
#date_created ⇒ Time
Returns The date and time in GMT when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
313 314 315 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 313 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT when the resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
319 320 321 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 319 def date_updated @properties['date_updated'] end |
#definition ⇒ Hash
Returns JSON representation of flow definition.
277 278 279 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 277 def definition @properties['definition'] end |
#errors ⇒ Array<Hash>
Returns List of error in the flow definition.
307 308 309 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 307 def errors @properties['errors'] end |
#fetch ⇒ FlowRevisionInstance
Fetch the FlowRevisionInstance
332 333 334 335 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 332 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the Flow.
271 272 273 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 271 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
346 347 348 349 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 346 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Studio.V2.FlowRevisionInstance #{values}>" end |
#revision ⇒ String
Returns The latest revision number of the Flow’s definition.
289 290 291 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 289 def revision @properties['revision'] end |
#sid ⇒ String
Returns The unique string that we created to identify the Flow resource.
259 260 261 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 259 def sid @properties['sid'] end |
#status ⇒ Status
283 284 285 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 283 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
339 340 341 342 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 339 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Studio.V2.FlowRevisionInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the resource.
325 326 327 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 325 def url @properties['url'] end |
#valid ⇒ Boolean
Returns Boolean if the flow definition is valid.
301 302 303 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_revision.rb', line 301 def valid @properties['valid'] end |