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

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

Instance Method Summary collapse

Constructor Details

#initialize(version, resource_type, day) ⇒ DayContext

Initialize the DayContext

Parameters:

  • version (Version)

    Version that contains the resource

  • resource_type (String)

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

  • day (String)

    The ISO 8601 format date of the resources in the file, for a UTC day



135
136
137
138
139
140
141
142
143
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 135

def initialize(version, resource_type, day)
    super(version)

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

    
end

Instance Method Details

#fetchDayInstance

Fetch the DayInstance

Returns:



147
148
149
150
151
152
153
154
155
156
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 147

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



168
169
170
171
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 168

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

#to_sObject

Provide a user friendly representation



161
162
163
164
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 161

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