Sha256: 3abc2853ac8217f46c41bc63eca14316063c0317d38ad7f3653c2b078fcf6217

Contents?: true

Size: 761 Bytes

Versions: 3

Compression:

Stored size: 761 Bytes

Contents

##
# This code was generated by
# \ / _    _  _|   _  _
#  | (_)\/(_)(_|\/| |(/_  v1.0.0
#       /       /       

module Twilio
  module REST
    class Conversations
      class V1 < Version
        ##
        # Initialize the V1 version of Conversations
        def initialize(domain)
          super
          @version = 'v1'
          @conversations = nil
        end
        
        def conversations(sid=:unset)
          if sid == :unset
            @conversations ||= ConversationList.new self
          else
            ConversationContext.new(self, sid)
          end
        end
        
        ##
        # Provide a user friendly representation
        def to_s
          #<Twilio::REST::Conversations::V1>
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
twilio-ruby-5.0.0.rc4 lib/twilio-ruby/rest/conversations/v1.rb
twilio-ruby-5.0.0.rc3 lib/twilio-ruby/rest/conversations/v1.rb
twilio-ruby-5.0.0.rc2 lib/twilio-ruby/rest/conversations/v1.rb