Class: Twilio::REST::Api::V2010::AccountContext::ConferenceContext::RecordingInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::ConferenceContext::RecordingInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#api_version ⇒ String
The API version used to create the recording.
-
#call_sid ⇒ String
The SID of the Call the resource is associated with.
-
#channels ⇒ String
The number of channels in the final recording file as an integer.
-
#conference_sid ⇒ String
The Conference SID that identifies the conference associated with the recording.
-
#context ⇒ RecordingContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The RFC 2822 date and time in GMT that the resource was created.
-
#date_updated ⇒ Time
The RFC 2822 date and time in GMT that the resource was last updated.
-
#delete ⇒ Boolean
Deletes the RecordingInstance.
-
#duration ⇒ String
The length of the recording in seconds.
-
#encryption_details ⇒ Hash
How to decrypt the recording.
-
#error_code ⇒ String
More information about why the recording is missing, if status is ‘absent`.
-
#fetch ⇒ RecordingInstance
Fetch a RecordingInstance.
-
#initialize(version, payload, account_sid: nil, conference_sid: nil, sid: nil) ⇒ RecordingInstance
constructor
Initialize the RecordingInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#price ⇒ String
The one-time cost of creating the recording.
-
#price_unit ⇒ String
The currency used in the price property.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#source ⇒ recording.Source
How the recording was created.
-
#start_time ⇒ Time
The start time of the recording, given in RFC 2822 format.
-
#status ⇒ recording.Status
The status of the recording.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(status: nil, pause_behavior: :unset) ⇒ RecordingInstance
Update the RecordingInstance.
-
#uri ⇒ String
The URI of the resource, relative to ‘api.twilio.com`.
Constructor Details
#initialize(version, payload, account_sid: nil, conference_sid: nil, sid: nil) ⇒ RecordingInstance
Initialize the RecordingInstance
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 283 def initialize(version, payload, account_sid: nil, conference_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'api_version' => payload['api_version'], 'call_sid' => payload['call_sid'], 'conference_sid' => payload['conference_sid'], 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), 'start_time' => Twilio.deserialize_rfc2822(payload['start_time']), 'duration' => payload['duration'], 'sid' => payload['sid'], 'price' => payload['price'].to_f, 'price_unit' => payload['price_unit'], 'status' => payload['status'], 'channels' => payload['channels'].to_i, 'source' => payload['source'], 'error_code' => payload['error_code'] == nil ? payload['error_code'] : payload['error_code'].to_i, 'encryption_details' => payload['encryption_details'], 'uri' => payload['uri'], } # Context @instance_context = nil @params = { 'account_sid' => account_sid, 'conference_sid' => conference_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
334 335 336 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 334 def account_sid @properties['account_sid'] end |
#api_version ⇒ String
Returns The API version used to create the recording.
340 341 342 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 340 def api_version @properties['api_version'] end |
#call_sid ⇒ String
Returns The SID of the Call the resource is associated with.
346 347 348 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 346 def call_sid @properties['call_sid'] end |
#channels ⇒ String
Returns The number of channels in the final recording file as an integer.
406 407 408 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 406 def channels @properties['channels'] end |
#conference_sid ⇒ String
Returns The Conference SID that identifies the conference associated with the recording.
352 353 354 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 352 def conference_sid @properties['conference_sid'] end |
#context ⇒ RecordingContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
320 321 322 323 324 325 326 327 328 329 330 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 320 def context unless @instance_context @instance_context = RecordingContext.new( @version, @params['account_sid'], @params['conference_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The RFC 2822 date and time in GMT that the resource was created.
358 359 360 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 358 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The RFC 2822 date and time in GMT that the resource was last updated.
364 365 366 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 364 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the RecordingInstance
458 459 460 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 458 def delete context.delete end |
#duration ⇒ String
Returns The length of the recording in seconds.
376 377 378 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 376 def duration @properties['duration'] end |
#encryption_details ⇒ Hash
Returns How to decrypt the recording.
424 425 426 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 424 def encryption_details @properties['encryption_details'] end |
#error_code ⇒ String
Returns More information about why the recording is missing, if status is ‘absent`.
418 419 420 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 418 def error_code @properties['error_code'] end |
#fetch ⇒ RecordingInstance
Fetch a RecordingInstance
451 452 453 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 451 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
471 472 473 474 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 471 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.RecordingInstance #{values}>" end |
#price ⇒ String
Returns The one-time cost of creating the recording.
388 389 390 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 388 def price @properties['price'] end |
#price_unit ⇒ String
Returns The currency used in the price property.
394 395 396 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 394 def price_unit @properties['price_unit'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
382 383 384 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 382 def sid @properties['sid'] end |
#source ⇒ recording.Source
Returns How the recording was created.
412 413 414 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 412 def source @properties['source'] end |
#start_time ⇒ Time
Returns The start time of the recording, given in RFC 2822 format.
370 371 372 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 370 def start_time @properties['start_time'] end |
#status ⇒ recording.Status
Returns The status of the recording.
400 401 402 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 400 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
464 465 466 467 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 464 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.RecordingInstance #{values}>" end |
#update(status: nil, pause_behavior: :unset) ⇒ RecordingInstance
Update the RecordingInstance
444 445 446 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 444 def update(status: nil, pause_behavior: :unset) context.update(status: status, pause_behavior: pause_behavior, ) end |
#uri ⇒ String
Returns The URI of the resource, relative to ‘api.twilio.com`.
430 431 432 |
# File 'lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb', line 430 def uri @properties['uri'] end |