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
50 51 52 53 54 55 56 57 58 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 50 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
62 63 64 65 66 67 68 69 70 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 62 def fetch payload = @version.fetch('GET', @uri) FlowTestUserInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
102 103 104 105 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 102 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Studio.V2.FlowTestUserContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
95 96 97 98 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 95 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
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/twilio-ruby/rest/studio/v2/flow/flow_test_user.rb', line 76 def update( test_users: nil ) data = Twilio::Values.of({ 'TestUsers' => Twilio.serialize_list(test_users) { |e| e }, }) payload = @version.update('POST', @uri, data: data) FlowTestUserInstance.new( @version, payload, sid: @solution[:sid], ) end |