lib/twilio-ruby/rest/authy/v1/service/entity.rb in twilio-ruby-5.20.0 vs lib/twilio-ruby/rest/authy/v1/service/entity.rb in twilio-ruby-5.20.1
- old
+ new
@@ -237,9 +237,16 @@
# Provide a user friendly representation
def to_s
context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
"#<Twilio.Authy.V1.EntityContext #{context}>"
end
+
+ ##
+ # Provide a detailed, user friendly representation
+ def inspect
+ context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
+ "#<Twilio.Authy.V1.EntityContext #{context}>"
+ end
end
##
# PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
class EntityInstance < InstanceResource
\ No newline at end of file