Class: Twilio::REST::Studio::V2::FlowInstance

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

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

  • account_sid (String)

    The SID of the Account that created this Flow resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 608

def initialize(version, payload , sid: 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'],
        'warnings' => payload['warnings'],
        'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
        'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
        'webhook_url' => payload['webhook_url'],
        'url' => payload['url'],
        'links' => payload['links'],
    }

    # Context
    @instance_context = nil
    @params = { 'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Flow resource.

Returns:



655
656
657
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 655

def 
    @properties['account_sid']
end

#commit_messageString

Returns Description of change made in the revision.

Returns:

  • (String)

    Description of change made in the revision.



685
686
687
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 685

def commit_message
    @properties['commit_message']
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:



640
641
642
643
644
645
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 640

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

#date_createdTime

Returns The date and time in GMT when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



709
710
711
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 709

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date and time in GMT when the resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



715
716
717
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 715

def date_updated
    @properties['date_updated']
end

#definitionHash

Returns JSON representation of flow definition.

Returns:

  • (Hash)

    JSON representation of flow definition.



667
668
669
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 667

def definition
    @properties['definition']
end

#deleteBoolean

Delete the FlowInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



740
741
742
743
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 740

def delete

    context.delete
end

#errorsArray<Hash>

Returns List of error in the flow definition.

Returns:

  • (Array<Hash>)

    List of error in the flow definition.



697
698
699
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 697

def errors
    @properties['errors']
end

#executionsexecutions

Access the executions

Returns:



778
779
780
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 778

def executions
    context.executions
end

#fetchFlowInstance

Fetch the FlowInstance

Returns:



748
749
750
751
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 748

def fetch

    context.fetch
end

#friendly_nameString

Returns The string that you assigned to describe the Flow.

Returns:

  • (String)

    The string that you assigned to describe the Flow.



661
662
663
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 661

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



805
806
807
808
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 805

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

Returns The URLs of the Flow’s nested resources.

Returns:

  • (Hash)

    The URLs of the Flow’s nested resources.



733
734
735
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 733

def links
    @properties['links']
end

#revisionString

Returns The latest revision number of the Flow’s definition.

Returns:

  • (String)

    The latest revision number of the Flow’s definition.



679
680
681
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 679

def revision
    @properties['revision']
end

#revisionsrevisions

Access the revisions

Returns:



792
793
794
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 792

def revisions
    context.revisions
end

#sidString

Returns The unique string that we created to identify the Flow resource.

Returns:

  • (String)

    The unique string that we created to identify the Flow resource.



649
650
651
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 649

def sid
    @properties['sid']
end

#statusStatus

Returns:

  • (Status)


673
674
675
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 673

def status
    @properties['status']
end

#test_userstest_users

Access the test_users

Returns:



785
786
787
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 785

def test_users
    context.test_users
end

#to_sObject

Provide a user friendly representation



798
799
800
801
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 798

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

#update(status: nil, friendly_name: :unset, definition: :unset, commit_message: :unset) ⇒ FlowInstance

Update the FlowInstance

Parameters:

  • status (Status) (defaults to: nil)
  • friendly_name (String) (defaults to: :unset)

    The string that you assigned to describe the Flow.

  • definition (Object) (defaults to: :unset)

    JSON representation of flow definition.

  • commit_message (String) (defaults to: :unset)

    Description of change made in the revision.

Returns:



760
761
762
763
764
765
766
767
768
769
770
771
772
773
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 760

def update(
    status: nil, 
    friendly_name: :unset, 
    definition: :unset, 
    commit_message: :unset
)

    context.update(
        status: status, 
        friendly_name: friendly_name, 
        definition: definition, 
        commit_message: commit_message, 
    )
end

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource.



727
728
729
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 727

def url
    @properties['url']
end

#validBoolean

Returns Boolean if the flow definition is valid.

Returns:

  • (Boolean)

    Boolean if the flow definition is valid.



691
692
693
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 691

def valid
    @properties['valid']
end

#warningsArray<Hash>

Returns List of warnings in the flow definition.

Returns:

  • (Array<Hash>)

    List of warnings in the flow definition.



703
704
705
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 703

def warnings
    @properties['warnings']
end

#webhook_urlString

Returns:

  • (String)


721
722
723
# File 'lib/twilio-ruby/rest/studio/v2/flow.rb', line 721

def webhook_url
    @properties['webhook_url']
end