class Twilio::REST::Conversations::V1::ServiceContext::ConfigurationContext::NotificationList

Public Class Methods

new(version, chat_service_sid: nil) click to toggle source

Initialize the NotificationList @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 [NotificationList] NotificationList

Calls superclass method Twilio::REST::ListResource::new
   # File lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb
22 def initialize(version, chat_service_sid: nil)
23   super(version)
24 
25   # Path Solution
26   @solution = {chat_service_sid: chat_service_sid}
27 end

Public Instance Methods

to_s() click to toggle source

Provide a user friendly representation

   # File lib/twilio-ruby/rest/conversations/v1/service/configuration/notification.rb
31 def to_s
32   '#<Twilio.Conversations.V1.NotificationList>'
33 end