lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb in twilio-ruby-5.20.0 vs lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb in twilio-ruby-5.20.1
- old
+ new
@@ -245,9 +245,16 @@
# Provide a user friendly representation
def to_s
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
"#<Twilio.Chat.V2.InviteContext #{context}>"
end
+
+ ##
+ # Provide a detailed, user friendly representation
+ def inspect
+ context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
+ "#<Twilio.Chat.V2.InviteContext #{context}>"
+ end
end
class InviteInstance < InstanceResource
##
# Initialize the InviteInstance
\ No newline at end of file