Sha256: 22f08ec805ec1b1a360445506d2e66e967260d7be164e05601e7f617dc76e284
Contents?: true
Size: 1.46 KB
Versions: 58
Compression:
Stored size: 1.46 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Bulkexports < Domain ## # Initialize the Bulkexports Domain def initialize(twilio) super @base_url = 'https://bulkexports.twilio.com' @host = 'bulkexports.twilio.com' @port = 443 # Versions @v1 = nil end ## # Version v1 of bulkexports def v1 @v1 ||= V1.new self end ## # @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) 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) self.v1.export_configuration(resource_type) end ## # Provide a user friendly representation def to_s '#<Twilio::REST::Bulkexports>' end end end end
Version data entries
58 entries across 58 versions & 1 rubygems