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.
-
#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
154 155 156 157 158 159 160 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 154 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
165 166 167 168 169 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 165 def fetch payload = @version.fetch('GET', @uri) DayInstance.new(@version, payload, resource_type: @solution[:resource_type], day: @solution[:day], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
180 181 182 183 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 180 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Bulkexports.V1.DayContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
173 174 175 176 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export/day.rb', line 173 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Bulkexports.V1.DayContext #{context}>" end |