Class: Twilio::REST::Bulkexports::V1::ExportInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Bulkexports::V1::ExportInstance
- Defined in:
- lib/twilio-ruby/rest/bulkexports/v1/export.rb
Instance Method Summary collapse
-
#context ⇒ ExportContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#days ⇒ days
Access the days.
-
#export_custom_jobs ⇒ export_custom_jobs
Access the export_custom_jobs.
-
#fetch ⇒ ExportInstance
Fetch the ExportInstance.
-
#initialize(version, payload, resource_type: nil) ⇒ ExportInstance
constructor
Initialize the ExportInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ Hash
Contains a dictionary of URL links to nested resources of this Export.
-
#resource_type ⇒ String
The type of communication – Messages, Calls, Conferences, and Participants.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, resource_type: nil) ⇒ ExportInstance
Initialize the ExportInstance
177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 177 def initialize(version, payload , resource_type: nil) super(version) # Marshaled Properties @properties = { 'resource_type' => payload['resource_type'], 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = { 'resource_type' => resource_type || @properties['resource_type'] , } end |
Instance Method Details
#context ⇒ ExportContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
196 197 198 199 200 201 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 196 def context unless @instance_context @instance_context = ExportContext.new(@version , @params['resource_type']) end @instance_context end |
#days ⇒ days
Access the days
239 240 241 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 239 def days context.days end |
#export_custom_jobs ⇒ export_custom_jobs
Access the export_custom_jobs
232 233 234 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 232 def export_custom_jobs context.export_custom_jobs end |
#fetch ⇒ ExportInstance
Fetch the ExportInstance
224 225 226 227 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 224 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
252 253 254 255 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 252 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Bulkexports.V1.ExportInstance #{values}>" end |
#links ⇒ Hash
Returns Contains a dictionary of URL links to nested resources of this Export.
217 218 219 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 217 def links @properties['links'] end |
#resource_type ⇒ String
Returns The type of communication – Messages, Calls, Conferences, and Participants.
205 206 207 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 205 def resource_type @properties['resource_type'] end |
#to_s ⇒ Object
Provide a user friendly representation
245 246 247 248 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 245 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Bulkexports.V1.ExportInstance #{values}>" end |
#url ⇒ String
Returns The URL of this resource.
211 212 213 |
# File 'lib/twilio-ruby/rest/bulkexports/v1/export.rb', line 211 def url @properties['url'] end |