Sha256: 9667438f4dcea2ed56e20b2e138d96af71a9f4d47957307f6cf21d3a8d120da5

Contents?: true

Size: 1.88 KB

Versions: 4

Compression:

Stored size: 1.88 KB

Contents

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

module Twilio
  module REST
    class Preview
      class BulkExports < Version
        ##
        # Initialize the BulkExports version of Preview
        def initialize(domain)
          super
          @version = 'BulkExports'
          @exports = nil
          @export_configuration = nil
        end

        ##
        # @param [String] resource_type The type of communication – Messages, Calls,
        #   Conferences, and Participants
        # @return [Twilio::REST::Preview::BulkExports::ExportContext] if resource_type was passed.
        # @return [Twilio::REST::Preview::BulkExports::ExportList]
        def exports(resource_type=:unset)
          if resource_type.nil?
            raise ArgumentError, 'resource_type cannot be nil'
          elsif resource_type == :unset
            @exports ||= ExportList.new self
          else
            ExportContext.new(self, resource_type)
          end
        end

        ##
        # @param [String] resource_type The type of communication – Messages, Calls,
        #   Conferences, and Participants
        # @return [Twilio::REST::Preview::BulkExports::ExportConfigurationContext] if resource_type was passed.
        # @return [Twilio::REST::Preview::BulkExports::ExportConfigurationList]
        def export_configuration(resource_type=:unset)
          if resource_type.nil?
            raise ArgumentError, 'resource_type cannot be nil'
          elsif resource_type == :unset
            @export_configuration ||= ExportConfigurationList.new self
          else
            ExportConfigurationContext.new(self, resource_type)
          end
        end

        ##
        # Provide a user friendly representation
        def to_s
          '<Twilio::REST::Preview::BulkExports>'
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
twilio-ruby-5.48.0 lib/twilio-ruby/rest/preview/bulk_exports.rb
twilio-ruby-5.47.0 lib/twilio-ruby/rest/preview/bulk_exports.rb
twilio-ruby-5.46.1 lib/twilio-ruby/rest/preview/bulk_exports.rb
twilio-ruby-5.46.0 lib/twilio-ruby/rest/preview/bulk_exports.rb