Class: Twilio::REST::Video::V1::RecordingInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/video/v1/recording.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, sid: nil) ⇒ RecordingInstance

Initialize the RecordingInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • sid (String) (defaults to: nil)

    The SID of the Recording resource to fetch.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 256

def initialize(version, payload, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'account_sid' => payload['account_sid'],
      'status' => payload['status'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'sid' => payload['sid'],
      'source_sid' => payload['source_sid'],
      'size' => payload['size'].to_i,
      'url' => payload['url'],
      'type' => payload['type'],
      'duration' => payload['duration'] == nil ? payload['duration'] : payload['duration'].to_i,
      'container_format' => payload['container_format'],
      'codec' => payload['codec'],
      'grouping_sids' => payload['grouping_sids'],
      'track_name' => payload['track_name'],
      'offset' => payload['offset'].to_i,
      'media_external_location' => payload['media_external_location'],
      'links' => payload['links'],
  }

  # Context
  @instance_context = nil
  @params = {'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString

Returns The SID of the Account that created the resource.

Returns:

  • (String)

    The SID of the Account that created the resource



297
298
299
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 297

def 
  @properties['account_sid']
end

#codecrecording.Codec

Returns The codec used to encode the track.

Returns:

  • (recording.Codec)

    The codec used to encode the track



357
358
359
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 357

def codec
  @properties['codec']
end

#container_formatrecording.Format

Returns The file format for the recording.

Returns:

  • (recording.Format)

    The file format for the recording



351
352
353
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 351

def container_format
  @properties['container_format']
end

#contextRecordingContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



288
289
290
291
292
293
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 288

def context
  unless @instance_context
    @instance_context = RecordingContext.new(@version, @params['sid'], )
  end
  @instance_context
end

#date_createdTime

Returns The ISO 8601 date and time in GMT when the resource was created.

Returns:

  • (Time)

    The ISO 8601 date and time in GMT when the resource was created



309
310
311
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 309

def date_created
  @properties['date_created']
end

#deleteBoolean

Delete the RecordingInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



401
402
403
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 401

def delete
  context.delete
end

#durationString

Returns The duration of the recording in seconds.

Returns:

  • (String)

    The duration of the recording in seconds



345
346
347
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 345

def duration
  @properties['duration']
end

#fetchRecordingInstance

Fetch the RecordingInstance

Returns:



394
395
396
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 394

def fetch
  context.fetch
end

#grouping_sidsHash

Returns A list of SIDs related to the recording.

Returns:

  • (Hash)

    A list of SIDs related to the recording



363
364
365
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 363

def grouping_sids
  @properties['grouping_sids']
end

#inspectObject

Provide a detailed, user friendly representation



414
415
416
417
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 414

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Video.V1.RecordingInstance #{values}>"
end

Returns The URLs of related resources.

Returns:

  • (String)

    The URLs of related resources



387
388
389
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 387

def links
  @properties['links']
end

#media_external_locationString

Returns The URL of the media file associated with the recording when stored externally.

Returns:

  • (String)

    The URL of the media file associated with the recording when stored externally



381
382
383
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 381

def media_external_location
  @properties['media_external_location']
end

#offsetString

Returns The number of milliseconds between a point in time that is common to all rooms in a group and when the source room of the recording started.

Returns:

  • (String)

    The number of milliseconds between a point in time that is common to all rooms in a group and when the source room of the recording started



375
376
377
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 375

def offset
  @properties['offset']
end

#sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    The unique string that identifies the resource



315
316
317
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 315

def sid
  @properties['sid']
end

#sizeString

Returns The size of the recorded track, in bytes.

Returns:

  • (String)

    The size of the recorded track, in bytes



327
328
329
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 327

def size
  @properties['size']
end

#source_sidString

Returns The SID of the recording source.

Returns:

  • (String)

    The SID of the recording source



321
322
323
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 321

def source_sid
  @properties['source_sid']
end

#statusrecording.Status

Returns The status of the recording.

Returns:

  • (recording.Status)

    The status of the recording



303
304
305
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 303

def status
  @properties['status']
end

#to_sObject

Provide a user friendly representation



407
408
409
410
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 407

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Video.V1.RecordingInstance #{values}>"
end

#track_nameString

Returns The name that was given to the source track of the recording.

Returns:

  • (String)

    The name that was given to the source track of the recording



369
370
371
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 369

def track_name
  @properties['track_name']
end

#typerecording.Type

Returns The recording’s media type.

Returns:

  • (recording.Type)

    The recording’s media type



339
340
341
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 339

def type
  @properties['type']
end

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource



333
334
335
# File 'lib/twilio-ruby/rest/video/v1/recording.rb', line 333

def url
  @properties['url']
end