Class: Twilio::REST::Bulkexports::V1::ExportContext::DayContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Bulkexports::V1::ExportContext::DayContext
- Defined in:
- lib/twilio-ruby/rest/bulkexports/v1/export/day.rb
Instance Method Summary collapse
-
#fetch ⇒ DayInstance
Fetch the DayInstance.
-
#fetch_with_metadata ⇒ DayInstance
Fetch the DayInstanceMetadata.
-
#initialize(version, resource_type, day) ⇒ DayContext
constructor
Initialize the DayContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, resource_type, day) ⇒ DayContext
Initialize the DayContext
162 163 164 165 166 167 168 169 170 171 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 162 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
#fetch ⇒ DayInstance
Fetch the DayInstance
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 175 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) DayInstance.new( @version, payload, resource_type: @solution[:resource_type], day: @solution[:day], ) end |
#fetch_with_metadata ⇒ DayInstance
Fetch the DayInstanceMetadata
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 195 def headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('GET', @uri, headers: headers) day_instance = DayInstance.new( @version, response.body, resource_type: @solution[:resource_type], day: @solution[:day], ) DayInstanceMetadata.new( @version, day_instance, response.headers, response.status_code ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
228 229 230 231 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 228 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Bulkexports.V1.DayContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
221 222 223 224 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 221 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Bulkexports.V1.DayContext #{context}>" end |