Class: Twilio::REST::Bulkexports::V1::ExportContext

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

Defined Under Namespace

Classes: DayContext, DayInstance, DayList, DayPage, ExportCustomJobInstance, ExportCustomJobList, ExportCustomJobPage

Instance Method Summary collapse

Constructor Details

#initialize(version, resource_type) ⇒ ExportContext

Initialize the ExportContext

Parameters:

  • version (Version)

    Version that contains the resource

  • resource_type (String)

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



62
63
64
65
66
67
68
69
70
71
72
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 62

def initialize(version, resource_type)
    super(version)

    # Path Solution
    @solution = { resource_type: resource_type,  }
    @uri = "/Exports/#{@solution[:resource_type]}"

    # Dependents
    @export_custom_jobs = nil
    @days = nil
end

Instance Method Details

#days(day = :unset) ⇒ DayList, DayContext

Access the days

Returns:

Raises:

  • (ArgumentError)


101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 101

def days(day=:unset)

    raise ArgumentError, 'day cannot be nil' if day.nil?

    if day != :unset
        return DayContext.new(@version, @solution[:resource_type],day )
    end

    unless @days
        @days = DayList.new(
            @version, resource_type: @solution[:resource_type], )
    end

 @days
end

#export_custom_jobsExportCustomJobList, ExportCustomJobContext

Access the export_custom_jobs

Returns:



90
91
92
93
94
95
96
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 90

def export_custom_jobs
  unless @export_custom_jobs
    @export_custom_jobs = ExportCustomJobList.new(
            @version, resource_type: @solution[:resource_type], )
  end
  @export_custom_jobs
end

#fetchExportInstance

Fetch the ExportInstance

Returns:



76
77
78
79
80
81
82
83
84
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 76

def fetch

    payload = @version.fetch('GET', @uri)
    ExportInstance.new(
        @version,
        payload,
        resource_type: @solution[:resource_type],
    )
end

#inspectObject

Provide a detailed, user friendly representation



126
127
128
129
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 126

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Bulkexports.V1.ExportContext #{context}>"
end

#to_sObject

Provide a user friendly representation



119
120
121
122
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 119

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Bulkexports.V1.ExportContext #{context}>"
end