Sha256: 255f8f172350050fe4ffc768e8a3516bffdc40e3070634a63b1a6a7df7d78156

Contents?: true

Size: 1.62 KB

Versions: 7

Compression:

Stored size: 1.62 KB

Contents

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

module Twilio
  module REST
    class Chat
      class V2 < Version
        ##
        # Initialize the V2 version of Chat
        def initialize(domain)
          super
          @version = 'v2'
          @credentials = nil
          @services = nil
        end

        ##
        # @param [String] sid The Twilio-provided string that uniquely identifies the
        #   Credential resource to fetch.
        # @return [Twilio::REST::Chat::V2::CredentialContext] if sid was passed.
        # @return [Twilio::REST::Chat::V2::CredentialList]
        def credentials(sid=:unset)
          if sid.nil?
            raise ArgumentError, 'sid cannot be nil'
          elsif sid == :unset
            @credentials ||= CredentialList.new self
          else
            CredentialContext.new(self, sid)
          end
        end

        ##
        # @param [String] sid The Twilio-provided string that uniquely identifies the
        #   Service resource to fetch.
        # @return [Twilio::REST::Chat::V2::ServiceContext] if sid was passed.
        # @return [Twilio::REST::Chat::V2::ServiceList]
        def services(sid=:unset)
          if sid.nil?
            raise ArgumentError, 'sid cannot be nil'
          elsif sid == :unset
            @services ||= ServiceList.new self
          else
            ServiceContext.new(self, sid)
          end
        end

        ##
        # Provide a user friendly representation
        def to_s
          '<Twilio::REST::Chat::V2>'
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
twilio-ruby-5.25.4 lib/twilio-ruby/rest/chat/v2.rb
twilio-ruby-5.25.3 lib/twilio-ruby/rest/chat/v2.rb
twilio-ruby-5.25.2 lib/twilio-ruby/rest/chat/v2.rb
twilio-ruby-5.25.1 lib/twilio-ruby/rest/chat/v2.rb
twilio-ruby-5.25.0 lib/twilio-ruby/rest/chat/v2.rb
twilio-ruby-5.24.0 lib/twilio-ruby/rest/chat/v2.rb
twilio-ruby-5.23.1 lib/twilio-ruby/rest/chat/v2.rb