twilio-ruby 5.20.1 → 5.21.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +22 -0
  3. data/README.md +2 -2
  4. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +4 -4
  5. data/lib/twilio-ruby/rest/accounts/v1/credential/aws.rb +21 -20
  6. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +21 -19
  7. data/lib/twilio-ruby/rest/api.rb +8 -7
  8. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +32 -28
  9. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +56 -37
  10. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +27 -27
  11. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +248 -165
  12. data/lib/twilio-ruby/rest/api/v2010/account/conference/recording.rb +35 -35
  13. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +15 -11
  14. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +104 -114
  15. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +4 -4
  16. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +48 -46
  17. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +29 -22
  18. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +36 -28
  19. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +35 -21
  20. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +24 -20
  21. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +27 -27
  22. data/lib/twilio-ruby/rest/authy/v1/service/entity/factor.rb +7 -0
  23. data/lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb +7 -0
  24. data/lib/twilio-ruby/rest/client.rb +8 -7
  25. data/lib/twilio-ruby/rest/fax.rb +2 -1
  26. data/lib/twilio-ruby/rest/fax/v1.rb +2 -1
  27. data/lib/twilio-ruby/rest/fax/v1/fax.rb +85 -75
  28. data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +16 -16
  29. data/lib/twilio-ruby/rest/verify/v1/service.rb +8 -2
  30. data/lib/twilio-ruby/rest/verify/v1/service/verification.rb +120 -3
  31. data/lib/twilio-ruby/rest/video/v1/composition.rb +1 -1
  32. data/lib/twilio-ruby/version.rb +1 -1
  33. data/spec/integration/authy/v1/service/entity/factor/challenge_spec.rb +5 -0
  34. data/spec/integration/authy/v1/service/entity/factor_spec.rb +4 -0
  35. data/spec/integration/verify/v1/service/verification_spec.rb +107 -1
  36. data/spec/integration/video/v1/composition_spec.rb +28 -3
  37. metadata +2 -2
@@ -19,8 +19,8 @@ module Twilio
19
19
  # @param [String] account_sid The SID of the
20
20
  # [Account](https://www.twilio.com/docs/api/rest/account) that created this Media
21
21
  # resource.
22
- # @param [String] message_sid A 34 character string that uniquely identifies this
23
- # resource.
22
+ # @param [String] message_sid The unique string that that we created to identify
23
+ # the Message resource.
24
24
  # @return [MediaList] MediaList
25
25
  def initialize(version, account_sid: nil, message_sid: nil)
26
26
  super(version)
@@ -247,8 +247,8 @@ module Twilio
247
247
  # @param [String] account_sid The SID of the
248
248
  # [Account](https://www.twilio.com/docs/api/rest/account) that created this Media
249
249
  # resource.
250
- # @param [String] message_sid A 34 character string that uniquely identifies this
251
- # resource.
250
+ # @param [String] message_sid The unique string that that we created to identify
251
+ # the Message resource.
252
252
  # @param [String] sid The Twilio-provided string that uniquely identifies the
253
253
  # Media resource to fetch
254
254
  # @return [MediaInstance] MediaInstance
@@ -15,9 +15,9 @@ module Twilio
15
15
  ##
16
16
  # Initialize the RecordingList
17
17
  # @param [Version] version Version that contains the resource
18
- # @param [String] account_sid The unique ID of the
19
- # [Account](https://www.twilio.com/docs/iam/api/account) responsible for this
20
- # recording.
18
+ # @param [String] account_sid The SID of the
19
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
20
+ # Recording resource.
21
21
  # @return [RecordingList] RecordingList
22
22
  def initialize(version, account_sid: nil)
23
23
  super(version)
@@ -31,13 +31,13 @@ module Twilio
31
31
  # Lists RecordingInstance records from the API as a list.
32
32
  # Unlike stream(), this operation is eager and will load `limit` records into
33
33
  # memory before returning.
34
- # @param [Time] date_created_before Filter by date created
35
- # @param [Time] date_created Filter by date created
36
- # @param [Time] date_created_after Filter by date created
37
- # @param [String] call_sid Only show recordings made during the call indicated by
38
- # this call SID
39
- # @param [String] conference_sid The unique ID for the conference associated with
40
- # the recording, if the recording is of a conference.
34
+ # @param [Time] date_created_before The `YYYY-MM-DD` value of the resources to read
35
+ # @param [Time] date_created The `YYYY-MM-DD` value of the resources to read
36
+ # @param [Time] date_created_after The `YYYY-MM-DD` value of the resources to read
37
+ # @param [String] call_sid The [Call](https://www.twilio.com/docs/api/voice/call)
38
+ # SID of the resources to read.
39
+ # @param [String] conference_sid The Conference SID that identifies the conference
40
+ # associated with the recording to read.
41
41
  # @param [Integer] limit Upper limit for the number of records to return. stream()
42
42
  # guarantees to never return more than limit. Default is no limit
43
43
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -61,13 +61,13 @@ module Twilio
61
61
  # Streams RecordingInstance records from the API as an Enumerable.
62
62
  # This operation lazily loads records as efficiently as possible until the limit
63
63
  # is reached.
64
- # @param [Time] date_created_before Filter by date created
65
- # @param [Time] date_created Filter by date created
66
- # @param [Time] date_created_after Filter by date created
67
- # @param [String] call_sid Only show recordings made during the call indicated by
68
- # this call SID
69
- # @param [String] conference_sid The unique ID for the conference associated with
70
- # the recording, if the recording is of a conference.
64
+ # @param [Time] date_created_before The `YYYY-MM-DD` value of the resources to read
65
+ # @param [Time] date_created The `YYYY-MM-DD` value of the resources to read
66
+ # @param [Time] date_created_after The `YYYY-MM-DD` value of the resources to read
67
+ # @param [String] call_sid The [Call](https://www.twilio.com/docs/api/voice/call)
68
+ # SID of the resources to read.
69
+ # @param [String] conference_sid The Conference SID that identifies the conference
70
+ # associated with the recording to read.
71
71
  # @param [Integer] limit Upper limit for the number of records to return. stream()
72
72
  # guarantees to never return more than limit. Default is no limit.
73
73
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -107,13 +107,13 @@ module Twilio
107
107
  ##
108
108
  # Retrieve a single page of RecordingInstance records from the API.
109
109
  # Request is executed immediately.
110
- # @param [Time] date_created_before Filter by date created
111
- # @param [Time] date_created Filter by date created
112
- # @param [Time] date_created_after Filter by date created
113
- # @param [String] call_sid Only show recordings made during the call indicated by
114
- # this call SID
115
- # @param [String] conference_sid The unique ID for the conference associated with
116
- # the recording, if the recording is of a conference.
110
+ # @param [Time] date_created_before The `YYYY-MM-DD` value of the resources to read
111
+ # @param [Time] date_created The `YYYY-MM-DD` value of the resources to read
112
+ # @param [Time] date_created_after The `YYYY-MM-DD` value of the resources to read
113
+ # @param [String] call_sid The [Call](https://www.twilio.com/docs/api/voice/call)
114
+ # SID of the resources to read.
115
+ # @param [String] conference_sid The Conference SID that identifies the conference
116
+ # associated with the recording to read.
117
117
  # @param [String] page_token PageToken provided by the API
118
118
  # @param [Integer] page_number Page Number, this value is simply for client state
119
119
  # @param [Integer] page_size Number of records to return, defaults to 50
@@ -190,10 +190,11 @@ module Twilio
190
190
  ##
191
191
  # Initialize the RecordingContext
192
192
  # @param [Version] version Version that contains the resource
193
- # @param [String] account_sid The unique ID of the
194
- # [Account](https://www.twilio.com/docs/api/rest/account) responsible for this
195
- # recording.
196
- # @param [String] sid The unique recording SID that identifies this resource
193
+ # @param [String] account_sid The SID of the
194
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
195
+ # Recording resource to fetch.
196
+ # @param [String] sid The Twilio-provided string that uniquely identifies the
197
+ # Recording resource to fetch.
197
198
  # @return [RecordingContext] RecordingContext
198
199
  def initialize(version, account_sid, sid)
199
200
  super(version)
@@ -293,10 +294,11 @@ module Twilio
293
294
  # Initialize the RecordingInstance
294
295
  # @param [Version] version Version that contains the resource
295
296
  # @param [Hash] payload payload that contains response from Twilio
296
- # @param [String] account_sid The unique ID of the
297
- # [Account](https://www.twilio.com/docs/iam/api/account) responsible for this
298
- # recording.
299
- # @param [String] sid The unique recording SID that identifies this resource
297
+ # @param [String] account_sid The SID of the
298
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
299
+ # Recording resource.
300
+ # @param [String] sid The Twilio-provided string that uniquely identifies the
301
+ # Recording resource to fetch.
300
302
  # @return [RecordingInstance] RecordingInstance
301
303
  def initialize(version, payload, account_sid: nil, sid: nil)
302
304
  super(version)
@@ -340,19 +342,19 @@ module Twilio
340
342
  end
341
343
 
342
344
  ##
343
- # @return [String] The unique SID that identifies this account
345
+ # @return [String] The SID of the Account that created the resource
344
346
  def account_sid
345
347
  @properties['account_sid']
346
348
  end
347
349
 
348
350
  ##
349
- # @return [String] The version of the API in use during the recording.
351
+ # @return [String] The API version used during the recording.
350
352
  def api_version
351
353
  @properties['api_version']
352
354
  end
353
355
 
354
356
  ##
355
- # @return [String] The unique ID for the call leg that corresponds to the recording.
357
+ # @return [String] The SID of the Call the resource is associated with
356
358
  def call_sid
357
359
  @properties['call_sid']
358
360
  end
@@ -364,19 +366,19 @@ module Twilio
364
366
  end
365
367
 
366
368
  ##
367
- # @return [Time] The date this resource was created
369
+ # @return [Time] The RFC 2822 date and time in GMT that the resource was created
368
370
  def date_created
369
371
  @properties['date_created']
370
372
  end
371
373
 
372
374
  ##
373
- # @return [Time] The date this resource was last updated
375
+ # @return [Time] The RFC 2822 date and time in GMT that the resource was last updated
374
376
  def date_updated
375
377
  @properties['date_updated']
376
378
  end
377
379
 
378
380
  ##
379
- # @return [Time] The start time of the recording, in RFC 2822 format.
381
+ # @return [Time] The start time of the recording, given in RFC 2822 format
380
382
  def start_time
381
383
  @properties['start_time']
382
384
  end
@@ -388,19 +390,19 @@ module Twilio
388
390
  end
389
391
 
390
392
  ##
391
- # @return [String] A string that uniquely identifies this recording
393
+ # @return [String] The unique string that identifies the resource
392
394
  def sid
393
395
  @properties['sid']
394
396
  end
395
397
 
396
398
  ##
397
- # @return [String] The one-time cost of creating this recording.
399
+ # @return [String] The one-time cost of creating the recording.
398
400
  def price
399
401
  @properties['price']
400
402
  end
401
403
 
402
404
  ##
403
- # @return [String] The currency used in the Price property.
405
+ # @return [String] The currency used in the price property.
404
406
  def price_unit
405
407
  @properties['price_unit']
406
408
  end
@@ -418,31 +420,31 @@ module Twilio
418
420
  end
419
421
 
420
422
  ##
421
- # @return [recording.Source] The way in which this recording was created.
423
+ # @return [recording.Source] How the recording was created
422
424
  def source
423
425
  @properties['source']
424
426
  end
425
427
 
426
428
  ##
427
- # @return [String] More information about why the recording is missing, if Status is `absent`.
429
+ # @return [String] More information about why the recording is missing, if status is `absent`.
428
430
  def error_code
429
431
  @properties['error_code']
430
432
  end
431
433
 
432
434
  ##
433
- # @return [String] The URI for this resource
435
+ # @return [String] The URI of the resource, relative to `https://api.twilio.com`
434
436
  def uri
435
437
  @properties['uri']
436
438
  end
437
439
 
438
440
  ##
439
- # @return [Hash] Details for how to decrypt the recording.
441
+ # @return [Hash] How to decrypt the recording.
440
442
  def encryption_details
441
443
  @properties['encryption_details']
442
444
  end
443
445
 
444
446
  ##
445
- # @return [String] A dictionary of URIs for related resources
447
+ # @return [String] A list of related resources identified by their relative URIs
446
448
  def subresource_uris
447
449
  @properties['subresource_uris']
448
450
  end
@@ -16,10 +16,11 @@ module Twilio
16
16
  ##
17
17
  # Initialize the AddOnResultList
18
18
  # @param [Version] version Version that contains the resource
19
- # @param [String] account_sid The unique id of the Account responsible for this
20
- # recording.
21
- # @param [String] reference_sid A 34 character string that uniquely identifies the
22
- # recording to which this result belongs.
19
+ # @param [String] account_sid The SID of the
20
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
21
+ # Recording AddOnResult resource.
22
+ # @param [String] reference_sid The SID of the recording to which the AddOnResult
23
+ # resource belongs.
23
24
  # @return [AddOnResultList] AddOnResultList
24
25
  def initialize(version, account_sid: nil, reference_sid: nil)
25
26
  super(version)
@@ -156,9 +157,13 @@ module Twilio
156
157
  ##
157
158
  # Initialize the AddOnResultContext
158
159
  # @param [Version] version Version that contains the resource
159
- # @param [String] account_sid The account_sid
160
- # @param [String] reference_sid The reference_sid
161
- # @param [String] sid The result Sid that uniquely identifies this resource
160
+ # @param [String] account_sid The SID of the
161
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
162
+ # Recording AddOnResult resource to fetch.
163
+ # @param [String] reference_sid The SID of the recording to which the result to
164
+ # fetch belongs.
165
+ # @param [String] sid The Twilio-provided string that uniquely identifies the
166
+ # Recording AddOnResult resource to fetch.
162
167
  # @return [AddOnResultContext] AddOnResultContext
163
168
  def initialize(version, account_sid, reference_sid, sid)
164
169
  super(version)
@@ -248,11 +253,13 @@ module Twilio
248
253
  # Initialize the AddOnResultInstance
249
254
  # @param [Version] version Version that contains the resource
250
255
  # @param [Hash] payload payload that contains response from Twilio
251
- # @param [String] account_sid The unique id of the Account responsible for this
252
- # recording.
253
- # @param [String] reference_sid A 34 character string that uniquely identifies the
254
- # recording to which this result belongs.
255
- # @param [String] sid The result Sid that uniquely identifies this resource
256
+ # @param [String] account_sid The SID of the
257
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
258
+ # Recording AddOnResult resource.
259
+ # @param [String] reference_sid The SID of the recording to which the AddOnResult
260
+ # resource belongs.
261
+ # @param [String] sid The Twilio-provided string that uniquely identifies the
262
+ # Recording AddOnResult resource to fetch.
256
263
  # @return [AddOnResultInstance] AddOnResultInstance
257
264
  def initialize(version, payload, account_sid: nil, reference_sid: nil, sid: nil)
258
265
  super(version)
@@ -297,61 +304,61 @@ module Twilio
297
304
  end
298
305
 
299
306
  ##
300
- # @return [String] A string that uniquely identifies this result
307
+ # @return [String] The unique string that identifies the resource
301
308
  def sid
302
309
  @properties['sid']
303
310
  end
304
311
 
305
312
  ##
306
- # @return [String] The unique sid that identifies this account
313
+ # @return [String] The SID of the Account that created the resource
307
314
  def account_sid
308
315
  @properties['account_sid']
309
316
  end
310
317
 
311
318
  ##
312
- # @return [add_on_result.Status] The status of this result.
319
+ # @return [add_on_result.Status] The status of the result
313
320
  def status
314
321
  @properties['status']
315
322
  end
316
323
 
317
324
  ##
318
- # @return [String] A string that uniquely identifies the Add-on.
325
+ # @return [String] The SID of the Add-on to which the result belongs
319
326
  def add_on_sid
320
327
  @properties['add_on_sid']
321
328
  end
322
329
 
323
330
  ##
324
- # @return [String] A string that uniquely identifies the Add-on configuration.
331
+ # @return [String] The SID of the Add-on configuration
325
332
  def add_on_configuration_sid
326
333
  @properties['add_on_configuration_sid']
327
334
  end
328
335
 
329
336
  ##
330
- # @return [Time] The date this resource was created
337
+ # @return [Time] The RFC 2822 date and time in GMT that the resource was created
331
338
  def date_created
332
339
  @properties['date_created']
333
340
  end
334
341
 
335
342
  ##
336
- # @return [Time] The date this resource was last updated
343
+ # @return [Time] The RFC 2822 date and time in GMT that the resource was last updated
337
344
  def date_updated
338
345
  @properties['date_updated']
339
346
  end
340
347
 
341
348
  ##
342
- # @return [Time] The date this result was completed.
349
+ # @return [Time] The date and time in GMT that the result was completed
343
350
  def date_completed
344
351
  @properties['date_completed']
345
352
  end
346
353
 
347
354
  ##
348
- # @return [String] A string that uniquely identifies the recording.
355
+ # @return [String] The SID of the recording to which the AddOnResult resource belongs
349
356
  def reference_sid
350
357
  @properties['reference_sid']
351
358
  end
352
359
 
353
360
  ##
354
- # @return [String] A dictionary of URIs for related resources
361
+ # @return [String] A list of related resources identified by their relative URIs
355
362
  def subresource_uris
356
363
  @properties['subresource_uris']
357
364
  end
@@ -17,12 +17,13 @@ module Twilio
17
17
  ##
18
18
  # Initialize the PayloadList
19
19
  # @param [Version] version Version that contains the resource
20
- # @param [String] account_sid The unique id of the Account responsible for the
21
- # recording.
22
- # @param [String] reference_sid A 34 character string that uniquely identifies the
23
- # recording to which this payload belongs.
24
- # @param [String] add_on_result_sid A 34 character string that uniquely identifies
25
- # this result to which this payload belongs.
20
+ # @param [String] account_sid The SID of the
21
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
22
+ # Recording AddOnResult Payload resource.
23
+ # @param [String] reference_sid The SID of the recording to which the AddOnResult
24
+ # resource that contains the payload belongs.
25
+ # @param [String] add_on_result_sid The SID of the AddOnResult to which the
26
+ # payload belongs.
26
27
  # @return [PayloadList] PayloadList
27
28
  def initialize(version, account_sid: nil, reference_sid: nil, add_on_result_sid: nil)
28
29
  super(version)
@@ -164,10 +165,15 @@ module Twilio
164
165
  ##
165
166
  # Initialize the PayloadContext
166
167
  # @param [Version] version Version that contains the resource
167
- # @param [String] account_sid The account_sid
168
- # @param [String] reference_sid The reference_sid
169
- # @param [String] add_on_result_sid The add_on_result_sid
170
- # @param [String] sid The paylod Sid that uniquely identifies this resource
168
+ # @param [String] account_sid The SID of the
169
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
170
+ # Recording AddOnResult Payload resource to fetch.
171
+ # @param [String] reference_sid The SID of the recording to which the AddOnResult
172
+ # resource that contains the payload to fetch belongs.
173
+ # @param [String] add_on_result_sid The SID of the AddOnResult to which the
174
+ # payload to fetch belongs.
175
+ # @param [String] sid The Twilio-provided string that uniquely identifies the
176
+ # Recording AddOnResult Payload resource to fetch.
171
177
  # @return [PayloadContext] PayloadContext
172
178
  def initialize(version, account_sid, reference_sid, add_on_result_sid, sid)
173
179
  super(version)
@@ -231,13 +237,15 @@ module Twilio
231
237
  # Initialize the PayloadInstance
232
238
  # @param [Version] version Version that contains the resource
233
239
  # @param [Hash] payload payload that contains response from Twilio
234
- # @param [String] account_sid The unique id of the Account responsible for the
235
- # recording.
236
- # @param [String] reference_sid A 34 character string that uniquely identifies the
237
- # recording to which this payload belongs.
238
- # @param [String] add_on_result_sid A 34 character string that uniquely identifies
239
- # this result to which this payload belongs.
240
- # @param [String] sid The paylod Sid that uniquely identifies this resource
240
+ # @param [String] account_sid The SID of the
241
+ # [Account](https://www.twilio.com/docs/api/rest/account) that created the
242
+ # Recording AddOnResult Payload resource.
243
+ # @param [String] reference_sid The SID of the recording to which the AddOnResult
244
+ # resource that contains the payload belongs.
245
+ # @param [String] add_on_result_sid The SID of the AddOnResult to which the
246
+ # payload belongs.
247
+ # @param [String] sid The Twilio-provided string that uniquely identifies the
248
+ # Recording AddOnResult Payload resource to fetch.
241
249
  # @return [PayloadInstance] PayloadInstance
242
250
  def initialize(version, payload, account_sid: nil, reference_sid: nil, add_on_result_sid: nil, sid: nil)
243
251
  super(version)
@@ -285,67 +293,67 @@ module Twilio
285
293
  end
286
294
 
287
295
  ##
288
- # @return [String] A string that uniquely identifies this payload
296
+ # @return [String] The unique string that identifies the resource
289
297
  def sid
290
298
  @properties['sid']
291
299
  end
292
300
 
293
301
  ##
294
- # @return [String] A string that uniquely identifies the result
302
+ # @return [String] The SID of the AddOnResult to which the payload belongs
295
303
  def add_on_result_sid
296
304
  @properties['add_on_result_sid']
297
305
  end
298
306
 
299
307
  ##
300
- # @return [String] The unique sid that identifies this account
308
+ # @return [String] The SID of the Account that created the resource
301
309
  def account_sid
302
310
  @properties['account_sid']
303
311
  end
304
312
 
305
313
  ##
306
- # @return [String] A string that describes the payload.
314
+ # @return [String] The string that describes the payload
307
315
  def label
308
316
  @properties['label']
309
317
  end
310
318
 
311
319
  ##
312
- # @return [String] A string that uniquely identifies the Add-on.
320
+ # @return [String] The SID of the Add-on to which the result belongs
313
321
  def add_on_sid
314
322
  @properties['add_on_sid']
315
323
  end
316
324
 
317
325
  ##
318
- # @return [String] A string that uniquely identifies the Add-on configuration.
326
+ # @return [String] The SID of the Add-on configuration
319
327
  def add_on_configuration_sid
320
328
  @properties['add_on_configuration_sid']
321
329
  end
322
330
 
323
331
  ##
324
- # @return [String] The MIME type of the payload.
332
+ # @return [String] The MIME type of the payload
325
333
  def content_type
326
334
  @properties['content_type']
327
335
  end
328
336
 
329
337
  ##
330
- # @return [Time] The date this resource was created
338
+ # @return [Time] The RFC 2822 date and time in GMT that the resource was created
331
339
  def date_created
332
340
  @properties['date_created']
333
341
  end
334
342
 
335
343
  ##
336
- # @return [Time] The date this resource was last updated
344
+ # @return [Time] The RFC 2822 date and time in GMT that the resource was last updated
337
345
  def date_updated
338
346
  @properties['date_updated']
339
347
  end
340
348
 
341
349
  ##
342
- # @return [String] A string that uniquely identifies the recording.
350
+ # @return [String] The SID of the recording to which the AddOnResult resource that contains the payload belongs
343
351
  def reference_sid
344
352
  @properties['reference_sid']
345
353
  end
346
354
 
347
355
  ##
348
- # @return [String] A dictionary of URIs for related resources
356
+ # @return [String] A list of related resources identified by their relative URIs
349
357
  def subresource_uris
350
358
  @properties['subresource_uris']
351
359
  end