Sha256: f4bafd79ac24343c4c79af667e8024975f76ed282ccc91b127e21c5f4ba96352

Contents?: true

Size: 1.28 KB

Versions: 3

Compression:

Stored size: 1.28 KB

Contents

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

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

        ##
        # @param [String] sid The Twilio-provided string that uniquely identifies the
        #   Content resource to fetch.
        # @return [Twilio::REST::Content::V1::ContentContext] if sid was passed.
        # @return [Twilio::REST::Content::V1::ContentList]
        def contents(sid=:unset)
          if sid.nil?
              raise ArgumentError, 'sid cannot be nil'
          end
          if sid == :unset
              @contents ||= ContentList.new self
          else
              ContentContext.new(self, sid)
          end
        end

        ##
        # @return [Twilio::REST::Content::V1::LegacyContentContext]
        def legacy_contents
          @legacy_contents ||= LegacyContentList.new self
        end

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
twilio-ruby-5.74.5 lib/twilio-ruby/rest/content/v1.rb
twilio-ruby-5.74.4 lib/twilio-ruby/rest/content/v1.rb
twilio-ruby-5.74.3 lib/twilio-ruby/rest/content/v1.rb