Sha256: a7a370db650e41b56aead461fcf5307cd486089576068b7de46068cdf8ebc2ef

Contents?: true

Size: 1.66 KB

Versions: 54

Compression:

Stored size: 1.66 KB

Contents

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

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

        ##
        # @param [String] sid The Twilio-provided string that uniquely identifies the
        #   Credential resource to fetch.
        # @return [Twilio::REST::Notify::V1::CredentialContext] if sid was passed.
        # @return [Twilio::REST::Notify::V1::CredentialList]
        def credentials(sid=:unset)
          if sid.nil?
              raise ArgumentError, 'sid cannot be nil'
          end
          if 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::Notify::V1::ServiceContext] if sid was passed.
        # @return [Twilio::REST::Notify::V1::ServiceList]
        def services(sid=:unset)
          if sid.nil?
              raise ArgumentError, 'sid cannot be nil'
          end
          if sid == :unset
              @services ||= ServiceList.new self
          else
              ServiceContext.new(self, sid)
          end
        end

        ##
        # Provide a user friendly representation
        def to_s
          '<Twilio::REST::Notify::V1>'
        end
      end
    end
  end
end

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
twilio-ruby-5.77.0 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.76.0 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.75.0 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.74.5 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.74.4 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.74.3 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.74.2 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.74.1 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.74.0 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.73.4 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.73.3 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.73.2 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.73.1 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.73.0 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.72.1 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.72.0 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.71.0 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.70.1 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.70.0 lib/twilio-ruby/rest/notify/v1.rb
twilio-ruby-5.69.0 lib/twilio-ruby/rest/notify/v1.rb