Sha256: b5bc73bcbe8af81d457119d1cfef636f4e4088d4db5b31bb50f246ede6ea3576
Contents?: true
Size: 1.02 KB
Versions: 53
Compression:
Stored size: 1.02 KB
Contents
module Twilio module REST class Bulkexports < BulkexportsBase ## # @param [String] resource_type The type of communication – Messages, Calls, # Conferences, and Participants # @return [Twilio::REST::Bulkexports::V1::ExportInstance] if resource_type was passed. # @return [Twilio::REST::Bulkexports::V1::ExportList] def exports(resource_type=:unset) warn "exports is deprecated. Use v1.exports instead." self.v1.exports(resource_type) end ## # @param [String] resource_type The type of communication – Messages, Calls, # Conferences, and Participants # @return [Twilio::REST::Bulkexports::V1::ExportConfigurationInstance] if resource_type was passed. # @return [Twilio::REST::Bulkexports::V1::ExportConfigurationList] def export_configuration(resource_type=:unset) warn "export_configuration is deprecated. Use v1.export_configuration instead." self.v1.export_configuration(resource_type) end end end end
Version data entries
53 entries across 53 versions & 2 rubygems