Class: Twilio::REST::Studio::V2::FlowContext::FlowTestUserContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Studio::V2::FlowContext::FlowTestUserContext
- Defined in:
- lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb
Instance Method Summary collapse
-
#fetch ⇒ FlowTestUserInstance
Fetch the FlowTestUserInstance.
-
#initialize(version, sid) ⇒ FlowTestUserContext
constructor
Initialize the FlowTestUserContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(test_users: nil) ⇒ FlowTestUserInstance
Update the FlowTestUserInstance.
Constructor Details
#initialize(version, sid) ⇒ FlowTestUserContext
Initialize the FlowTestUserContext
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
#fetch ⇒ FlowTestUserInstance
Fetch the FlowTestUserInstance
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 |
#inspect ⇒ Object
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_s ⇒ Object
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
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 |