Class: Twilio::REST::Studio::V2::FlowContext::FlowTestUserContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ FlowTestUserContext

Initialize the FlowTestUserContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    Unique identifier of the flow.



51
52
53
54
55
56
57
58
59
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 51

def initialize(version, sid)
    super(version)

    # Path Solution
    @solution = { sid: sid,  }
    @uri = "/Flows/#{@solution[:sid]}/TestUsers"

    
end

Instance Method Details

#fetchFlowTestUserInstance

Fetch the FlowTestUserInstance

Returns:



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 63

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    FlowTestUserInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



115
116
117
118
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 115

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Studio.V2.FlowTestUserContext #{context}>"
end

#to_sObject

Provide a user friendly representation



108
109
110
111
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 108

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Studio.V2.FlowTestUserContext #{context}>"
end

#update(test_users: nil) ⇒ FlowTestUserInstance

Update the FlowTestUserInstance

Parameters:

  • test_users (Array[String]) (defaults to: nil)

    List of test user identities that can test draft versions of the flow.

Returns:



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 83

def update(
    test_users: nil
)

    data = Twilio::Values.of({
        'TestUsers' => Twilio.serialize_list(test_users) { |e| e },
    })

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.update('POST', @uri, data: data, headers: headers)
    FlowTestUserInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end