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



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

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)


108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 108

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:



97
98
99
100
101
102
103
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 97

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:



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 77

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    ExportInstance.new(
        @version,
        payload,
        resource_type: @solution[:resource_type],
    )
end

#inspectObject

Provide a detailed, user friendly representation



133
134
135
136
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 133

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

#to_sObject

Provide a user friendly representation



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

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