Sha256: 74ab458626ccac2473c2e4c10f161c76d52683f424d775cb2311d19908c150a8
Contents?: true
Size: 1.84 KB
Versions: 4
Compression:
Stored size: 1.84 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Bulkexports class V1 < Version ## # Initialize the V1 version of Bulkexports def initialize(domain) super @version = 'v1' @exports = nil @export_configuration = nil end ## # @param [String] resource_type The type of communication – Messages, Calls, # Conferences, and Participants # @return [Twilio::REST::Bulkexports::V1::ExportContext] if resource_type was passed. # @return [Twilio::REST::Bulkexports::V1::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::Bulkexports::V1::ExportConfigurationContext] if resource_type was passed. # @return [Twilio::REST::Bulkexports::V1::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::Bulkexports::V1>' end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems