class Twilio::REST::Conversations::V1::ServiceContext::ConfigurationList
Public Class Methods
new(version, chat_service_sid: nil)
click to toggle source
Initialize the ConfigurationList
@param [Version] version Version
that contains the resource @param [String] chat_service_sid The unique string that we created to identify
the Service configuration resource.
@return [ConfigurationList] ConfigurationList
Calls superclass method
Twilio::REST::ListResource::new
# File lib/twilio-ruby/rest/conversations/v1/service/configuration.rb 21 def initialize(version, chat_service_sid: nil) 22 super(version) 23 24 # Path Solution 25 @solution = {chat_service_sid: chat_service_sid} 26 end
Public Instance Methods
to_s()
click to toggle source
Provide a user friendly representation
# File lib/twilio-ruby/rest/conversations/v1/service/configuration.rb 30 def to_s 31 '#<Twilio.Conversations.V1.ConfigurationList>' 32 end