Class: Twilio::REST::Bulkexports

Inherits:
BulkexportsBase show all
Defined in:
lib/twilio-ruby/rest/bulkexports.rb,
lib/twilio-ruby/rest/bulkexports/v1.rb,
lib/twilio-ruby/rest/bulkexports/v1/export.rb,
lib/twilio-ruby/rest/bulkexports/v1/export/day.rb,
lib/twilio-ruby/rest/bulkexports/v1/export/job.rb,
lib/twilio-ruby/rest/bulkexports/v1/export_configuration.rb,
lib/twilio-ruby/rest/bulkexports/v1/export/export_custom_job.rb

Defined Under Namespace

Classes: V1

Instance Attribute Summary

Attributes inherited from Domain

#client

Instance Method Summary collapse

Methods inherited from BulkexportsBase

#initialize, #to_s, #v1

Methods inherited from Domain

#absolute_url, #initialize, #request

Constructor Details

This class inherits a constructor from Twilio::REST::BulkexportsBase

Instance Method Details

#export_configuration(resource_type = :unset) ⇒ Twilio::REST::Bulkexports::V1::ExportConfigurationInstance, Twilio::REST::Bulkexports::V1::ExportConfigurationList

Parameters:

  • resource_type (String) (defaults to: :unset)

    The type of communication – Messages, Calls, Conferences, and Participants

Returns:



19
20
21
22
# File 'lib/twilio-ruby/rest/bulkexports.rb', line 19

def export_configuration(resource_type=:unset)
  warn "export_configuration is deprecated. Use v1.export_configuration instead."
  self.v1.export_configuration(resource_type)
end

#exports(resource_type = :unset) ⇒ Twilio::REST::Bulkexports::V1::ExportInstance, Twilio::REST::Bulkexports::V1::ExportList

Parameters:

  • resource_type (String) (defaults to: :unset)

    The type of communication – Messages, Calls, Conferences, and Participants

Returns:



9
10
11
12
# File 'lib/twilio-ruby/rest/bulkexports.rb', line 9

def exports(resource_type=:unset)
  warn "exports is deprecated. Use v1.exports instead."
  self.v1.exports(resource_type)
end