twilio-ruby 5.63.1 → 5.64.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@ module Twilio
15
15
  ##
16
16
  # Initialize the ConferenceParticipantList
17
17
  # @param [Version] version Version that contains the resource
18
- # @param [String] conference_sid The conference_sid
18
+ # @param [String] conference_sid The unique SID identifier of the Conference.
19
19
  # @return [ConferenceParticipantList] ConferenceParticipantList
20
20
  def initialize(version, conference_sid: nil)
21
21
  super(version)
@@ -29,9 +29,10 @@ module Twilio
29
29
  # Lists ConferenceParticipantInstance records from the API as a list.
30
30
  # Unlike stream(), this operation is eager and will load `limit` records into
31
31
  # memory before returning.
32
- # @param [String] participant_sid The participant_sid
33
- # @param [String] label The label
34
- # @param [String] events The events
32
+ # @param [String] participant_sid The unique SID identifier of the Participant.
33
+ # @param [String] label User-specified label for a participant.
34
+ # @param [String] events Conference events generated by application or participant
35
+ # activity; e.g. `hold`, `mute`, etc.
35
36
  # @param [Integer] limit Upper limit for the number of records to return. stream()
36
37
  # guarantees to never return more than limit. Default is no limit
37
38
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -53,9 +54,10 @@ module Twilio
53
54
  # Streams ConferenceParticipantInstance records from the API as an Enumerable.
54
55
  # This operation lazily loads records as efficiently as possible until the limit
55
56
  # is reached.
56
- # @param [String] participant_sid The participant_sid
57
- # @param [String] label The label
58
- # @param [String] events The events
57
+ # @param [String] participant_sid The unique SID identifier of the Participant.
58
+ # @param [String] label User-specified label for a participant.
59
+ # @param [String] events Conference events generated by application or participant
60
+ # activity; e.g. `hold`, `mute`, etc.
59
61
  # @param [Integer] limit Upper limit for the number of records to return. stream()
60
62
  # guarantees to never return more than limit. Default is no limit.
61
63
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -93,9 +95,10 @@ module Twilio
93
95
  ##
94
96
  # Retrieve a single page of ConferenceParticipantInstance records from the API.
95
97
  # Request is executed immediately.
96
- # @param [String] participant_sid The participant_sid
97
- # @param [String] label The label
98
- # @param [String] events The events
98
+ # @param [String] participant_sid The unique SID identifier of the Participant.
99
+ # @param [String] label User-specified label for a participant.
100
+ # @param [String] events Conference events generated by application or participant
101
+ # activity; e.g. `hold`, `mute`, etc.
99
102
  # @param [String] page_token PageToken provided by the API
100
103
  # @param [Integer] page_number Page Number, this value is simply for client state
101
104
  # @param [Integer] page_size Number of records to return, defaults to 50
@@ -168,8 +171,8 @@ module Twilio
168
171
  ##
169
172
  # Initialize the ConferenceParticipantContext
170
173
  # @param [Version] version Version that contains the resource
171
- # @param [String] conference_sid The conference_sid
172
- # @param [String] participant_sid The participant_sid
174
+ # @param [String] conference_sid The unique SID identifier of the Conference.
175
+ # @param [String] participant_sid The unique SID identifier of the Participant.
173
176
  # @return [ConferenceParticipantContext] ConferenceParticipantContext
174
177
  def initialize(version, conference_sid, participant_sid)
175
178
  super(version)
@@ -181,8 +184,9 @@ module Twilio
181
184
 
182
185
  ##
183
186
  # Fetch the ConferenceParticipantInstance
184
- # @param [String] events The events
185
- # @param [String] metrics The metrics
187
+ # @param [String] events Conference events generated by application or participant
188
+ # activity; e.g. `hold`, `mute`, etc.
189
+ # @param [String] metrics Object. Contains participant call quality metrics.
186
190
  # @return [ConferenceParticipantInstance] Fetched ConferenceParticipantInstance
187
191
  def fetch(events: :unset, metrics: :unset)
188
192
  params = Twilio::Values.of({'Events' => events, 'Metrics' => metrics, })
@@ -217,8 +221,8 @@ module Twilio
217
221
  # Initialize the ConferenceParticipantInstance
218
222
  # @param [Version] version Version that contains the resource
219
223
  # @param [Hash] payload payload that contains response from Twilio
220
- # @param [String] conference_sid The conference_sid
221
- # @param [String] participant_sid The participant_sid
224
+ # @param [String] conference_sid The unique SID identifier of the Conference.
225
+ # @param [String] participant_sid The unique SID identifier of the Participant.
222
226
  # @return [ConferenceParticipantInstance] ConferenceParticipantInstance
223
227
  def initialize(version, payload, conference_sid: nil, participant_sid: nil)
224
228
  super(version)
@@ -233,14 +237,12 @@ module Twilio
233
237
  'call_direction' => payload['call_direction'],
234
238
  'from' => payload['from'],
235
239
  'to' => payload['to'],
236
- 'call_state' => payload['call_state'],
240
+ 'call_status' => payload['call_status'],
237
241
  'country_code' => payload['country_code'],
238
242
  'is_moderator' => payload['is_moderator'],
239
243
  'join_time' => Twilio.deserialize_iso8601_datetime(payload['join_time']),
240
244
  'leave_time' => Twilio.deserialize_iso8601_datetime(payload['leave_time']),
241
245
  'duration_seconds' => payload['duration_seconds'] == nil ? payload['duration_seconds'] : payload['duration_seconds'].to_i,
242
- 'whisper' => payload['whisper'],
243
- 'agent_audio' => payload['agent_audio'],
244
246
  'outbound_queue_length' => payload['outbound_queue_length'] == nil ? payload['outbound_queue_length'] : payload['outbound_queue_length'].to_i,
245
247
  'outbound_time_in_queue' => payload['outbound_time_in_queue'] == nil ? payload['outbound_time_in_queue'] : payload['outbound_time_in_queue'].to_i,
246
248
  'jitter_buffer_size' => payload['jitter_buffer_size'],
@@ -249,7 +251,7 @@ module Twilio
249
251
  'participant_region' => payload['participant_region'],
250
252
  'conference_region' => payload['conference_region'],
251
253
  'call_type' => payload['call_type'],
252
- 'quality_issues' => payload['quality_issues'] == nil ? payload['quality_issues'] : payload['quality_issues'].to_i,
254
+ 'processing_state' => payload['processing_state'],
253
255
  'properties' => payload['properties'],
254
256
  'events' => payload['events'],
255
257
  'metrics' => payload['metrics'],
@@ -280,183 +282,172 @@ module Twilio
280
282
  end
281
283
 
282
284
  ##
283
- # @return [String] The participant_sid
285
+ # @return [String] SID for this participant.
284
286
  def participant_sid
285
287
  @properties['participant_sid']
286
288
  end
287
289
 
288
290
  ##
289
- # @return [String] The label
291
+ # @return [String] The user-specified label of this participant.
290
292
  def label
291
293
  @properties['label']
292
294
  end
293
295
 
294
296
  ##
295
- # @return [String] The conference_sid
297
+ # @return [String] Conference SID.
296
298
  def conference_sid
297
299
  @properties['conference_sid']
298
300
  end
299
301
 
300
302
  ##
301
- # @return [String] The call_sid
303
+ # @return [String] Unique SID identifier of the call.
302
304
  def call_sid
303
305
  @properties['call_sid']
304
306
  end
305
307
 
306
308
  ##
307
- # @return [String] The account_sid
309
+ # @return [String] Account SID.
308
310
  def account_sid
309
311
  @properties['account_sid']
310
312
  end
311
313
 
312
314
  ##
313
- # @return [conference_participant.CallDirection] The call_direction
315
+ # @return [conference_participant.CallDirection] Call direction of the participant.
314
316
  def call_direction
315
317
  @properties['call_direction']
316
318
  end
317
319
 
318
320
  ##
319
- # @return [String] The from
321
+ # @return [String] Caller ID of the calling party.
320
322
  def from
321
323
  @properties['from']
322
324
  end
323
325
 
324
326
  ##
325
- # @return [String] The to
327
+ # @return [String] Called party.
326
328
  def to
327
329
  @properties['to']
328
330
  end
329
331
 
330
332
  ##
331
- # @return [conference_participant.CallState] The call_state
332
- def call_state
333
- @properties['call_state']
333
+ # @return [conference_participant.CallStatus] Call status of the call that generated the participant.
334
+ def call_status
335
+ @properties['call_status']
334
336
  end
335
337
 
336
338
  ##
337
- # @return [String] The country_code
339
+ # @return [String] ISO alpha-2 country code of the participant.
338
340
  def country_code
339
341
  @properties['country_code']
340
342
  end
341
343
 
342
344
  ##
343
- # @return [Boolean] The is_moderator
345
+ # @return [Boolean] Boolean. Indicates whether participant had startConferenceOnEnter=true or endConferenceOnExit=true.
344
346
  def is_moderator
345
347
  @properties['is_moderator']
346
348
  end
347
349
 
348
350
  ##
349
- # @return [Time] The join_time
351
+ # @return [Time] ISO 8601 timestamp of participant join event.
350
352
  def join_time
351
353
  @properties['join_time']
352
354
  end
353
355
 
354
356
  ##
355
- # @return [Time] The leave_time
357
+ # @return [Time] ISO 8601 timestamp of participant leave event.
356
358
  def leave_time
357
359
  @properties['leave_time']
358
360
  end
359
361
 
360
362
  ##
361
- # @return [String] The duration_seconds
363
+ # @return [String] Participant durations in seconds.
362
364
  def duration_seconds
363
365
  @properties['duration_seconds']
364
366
  end
365
367
 
366
368
  ##
367
- # @return [String] The whisper
368
- def whisper
369
- @properties['whisper']
370
- end
371
-
372
- ##
373
- # @return [Boolean] The agent_audio
374
- def agent_audio
375
- @properties['agent_audio']
376
- end
377
-
378
- ##
379
- # @return [String] The outbound_queue_length
369
+ # @return [String] Estimated time in queue at call creation.
380
370
  def outbound_queue_length
381
371
  @properties['outbound_queue_length']
382
372
  end
383
373
 
384
374
  ##
385
- # @return [String] The outbound_time_in_queue
375
+ # @return [String] Actual time in queue (seconds).
386
376
  def outbound_time_in_queue
387
377
  @properties['outbound_time_in_queue']
388
378
  end
389
379
 
390
380
  ##
391
- # @return [conference_participant.JitterBufferSize] The jitter_buffer_size
381
+ # @return [conference_participant.JitterBufferSize] The Jitter Buffer Size of this Conference Participant.
392
382
  def jitter_buffer_size
393
383
  @properties['jitter_buffer_size']
394
384
  end
395
385
 
396
386
  ##
397
- # @return [Boolean] The is_coach
387
+ # @return [Boolean] Boolean. Indicated whether participant was a coach.
398
388
  def is_coach
399
389
  @properties['is_coach']
400
390
  end
401
391
 
402
392
  ##
403
- # @return [Array[String]] The coached_participants
393
+ # @return [Array[String]] Call SIDs coached by this participant.
404
394
  def coached_participants
405
395
  @properties['coached_participants']
406
396
  end
407
397
 
408
398
  ##
409
- # @return [conference_participant.Region] The participant_region
399
+ # @return [conference_participant.Region] Twilio region where the participant media originates.
410
400
  def participant_region
411
401
  @properties['participant_region']
412
402
  end
413
403
 
414
404
  ##
415
- # @return [conference_participant.Region] The conference_region
405
+ # @return [conference_participant.Region] The Conference Region of this Conference Participant.
416
406
  def conference_region
417
407
  @properties['conference_region']
418
408
  end
419
409
 
420
410
  ##
421
- # @return [conference_participant.CallType] The call_type
411
+ # @return [conference_participant.CallType] The Call Type of this Conference Participant.
422
412
  def call_type
423
413
  @properties['call_type']
424
414
  end
425
415
 
426
416
  ##
427
- # @return [String] The quality_issues
428
- def quality_issues
429
- @properties['quality_issues']
417
+ # @return [conference_participant.ProcessingState] Processing state of the Participant Summary.
418
+ def processing_state
419
+ @properties['processing_state']
430
420
  end
431
421
 
432
422
  ##
433
- # @return [Hash] The properties
423
+ # @return [Hash] Participant properties and metadata.
434
424
  def properties
435
425
  @properties['properties']
436
426
  end
437
427
 
438
428
  ##
439
- # @return [Hash] The events
429
+ # @return [Hash] Object containing information of actions taken by participants. Nested resource URLs.
440
430
  def events
441
431
  @properties['events']
442
432
  end
443
433
 
444
434
  ##
445
- # @return [Hash] The metrics
435
+ # @return [Hash] Object. Contains participant quality metrics.
446
436
  def metrics
447
437
  @properties['metrics']
448
438
  end
449
439
 
450
440
  ##
451
- # @return [String] The url
441
+ # @return [String] The URL of this resource.
452
442
  def url
453
443
  @properties['url']
454
444
  end
455
445
 
456
446
  ##
457
447
  # Fetch the ConferenceParticipantInstance
458
- # @param [String] events The events
459
- # @param [String] metrics The metrics
448
+ # @param [String] events Conference events generated by application or participant
449
+ # activity; e.g. `hold`, `mute`, etc.
450
+ # @param [String] metrics Object. Contains participant call quality metrics.
460
451
  # @return [ConferenceParticipantInstance] Fetched ConferenceParticipantInstance
461
452
  def fetch(events: :unset, metrics: :unset)
462
453
  context.fetch(events: events, metrics: metrics, )
@@ -27,16 +27,23 @@ module Twilio
27
27
  # Lists ConferenceInstance records from the API as a list.
28
28
  # Unlike stream(), this operation is eager and will load `limit` records into
29
29
  # memory before returning.
30
- # @param [String] conference_sid The conference_sid
31
- # @param [String] friendly_name The friendly_name
32
- # @param [String] status The status
33
- # @param [String] created_after The created_after
34
- # @param [String] created_before The created_before
35
- # @param [String] mixer_region The mixer_region
36
- # @param [String] tags The tags
37
- # @param [String] subaccount The subaccount
38
- # @param [String] detected_issues The detected_issues
39
- # @param [String] end_reason The end_reason
30
+ # @param [String] conference_sid The SID of the conference.
31
+ # @param [String] friendly_name Custom label for the conference resource, up to 64
32
+ # characters.
33
+ # @param [String] status Conference status.
34
+ # @param [String] created_after Conferences created after the provided timestamp
35
+ # specified in ISO 8601 format
36
+ # @param [String] created_before Conferences created before the provided timestamp
37
+ # specified in ISO 8601 format.
38
+ # @param [String] mixer_region Twilio region where the conference media was mixed.
39
+ # @param [String] tags Tags applied by Twilio for common potential configuration,
40
+ # quality, or performance issues.
41
+ # @param [String] subaccount Account SID for the subaccount whose resources you
42
+ # wish to retrieve.
43
+ # @param [String] detected_issues Potential configuration, behavior, or
44
+ # performance issues detected during the conference.
45
+ # @param [String] end_reason Conference end reason; e.g. last participant left,
46
+ # modified by API, etc.
40
47
  # @param [Integer] limit Upper limit for the number of records to return. stream()
41
48
  # guarantees to never return more than limit. Default is no limit
42
49
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -65,16 +72,23 @@ module Twilio
65
72
  # Streams ConferenceInstance records from the API as an Enumerable.
66
73
  # This operation lazily loads records as efficiently as possible until the limit
67
74
  # is reached.
68
- # @param [String] conference_sid The conference_sid
69
- # @param [String] friendly_name The friendly_name
70
- # @param [String] status The status
71
- # @param [String] created_after The created_after
72
- # @param [String] created_before The created_before
73
- # @param [String] mixer_region The mixer_region
74
- # @param [String] tags The tags
75
- # @param [String] subaccount The subaccount
76
- # @param [String] detected_issues The detected_issues
77
- # @param [String] end_reason The end_reason
75
+ # @param [String] conference_sid The SID of the conference.
76
+ # @param [String] friendly_name Custom label for the conference resource, up to 64
77
+ # characters.
78
+ # @param [String] status Conference status.
79
+ # @param [String] created_after Conferences created after the provided timestamp
80
+ # specified in ISO 8601 format
81
+ # @param [String] created_before Conferences created before the provided timestamp
82
+ # specified in ISO 8601 format.
83
+ # @param [String] mixer_region Twilio region where the conference media was mixed.
84
+ # @param [String] tags Tags applied by Twilio for common potential configuration,
85
+ # quality, or performance issues.
86
+ # @param [String] subaccount Account SID for the subaccount whose resources you
87
+ # wish to retrieve.
88
+ # @param [String] detected_issues Potential configuration, behavior, or
89
+ # performance issues detected during the conference.
90
+ # @param [String] end_reason Conference end reason; e.g. last participant left,
91
+ # modified by API, etc.
78
92
  # @param [Integer] limit Upper limit for the number of records to return. stream()
79
93
  # guarantees to never return more than limit. Default is no limit.
80
94
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -119,16 +133,23 @@ module Twilio
119
133
  ##
120
134
  # Retrieve a single page of ConferenceInstance records from the API.
121
135
  # Request is executed immediately.
122
- # @param [String] conference_sid The conference_sid
123
- # @param [String] friendly_name The friendly_name
124
- # @param [String] status The status
125
- # @param [String] created_after The created_after
126
- # @param [String] created_before The created_before
127
- # @param [String] mixer_region The mixer_region
128
- # @param [String] tags The tags
129
- # @param [String] subaccount The subaccount
130
- # @param [String] detected_issues The detected_issues
131
- # @param [String] end_reason The end_reason
136
+ # @param [String] conference_sid The SID of the conference.
137
+ # @param [String] friendly_name Custom label for the conference resource, up to 64
138
+ # characters.
139
+ # @param [String] status Conference status.
140
+ # @param [String] created_after Conferences created after the provided timestamp
141
+ # specified in ISO 8601 format
142
+ # @param [String] created_before Conferences created before the provided timestamp
143
+ # specified in ISO 8601 format.
144
+ # @param [String] mixer_region Twilio region where the conference media was mixed.
145
+ # @param [String] tags Tags applied by Twilio for common potential configuration,
146
+ # quality, or performance issues.
147
+ # @param [String] subaccount Account SID for the subaccount whose resources you
148
+ # wish to retrieve.
149
+ # @param [String] detected_issues Potential configuration, behavior, or
150
+ # performance issues detected during the conference.
151
+ # @param [String] end_reason Conference end reason; e.g. last participant left,
152
+ # modified by API, etc.
132
153
  # @param [String] page_token PageToken provided by the API
133
154
  # @param [Integer] page_number Page Number, this value is simply for client state
134
155
  # @param [Integer] page_size Number of records to return, defaults to 50
@@ -208,7 +229,7 @@ module Twilio
208
229
  ##
209
230
  # Initialize the ConferenceContext
210
231
  # @param [Version] version Version that contains the resource
211
- # @param [String] conference_sid The conference_sid
232
+ # @param [String] conference_sid The unique SID identifier of the Conference.
212
233
  # @return [ConferenceContext] ConferenceContext
213
234
  def initialize(version, conference_sid)
214
235
  super(version)
@@ -271,7 +292,7 @@ module Twilio
271
292
  # Initialize the ConferenceInstance
272
293
  # @param [Version] version Version that contains the resource
273
294
  # @param [Hash] payload payload that contains response from Twilio
274
- # @param [String] conference_sid The conference_sid
295
+ # @param [String] conference_sid The unique SID identifier of the Conference.
275
296
  # @return [ConferenceInstance] ConferenceInstance
276
297
  def initialize(version, payload, conference_sid: nil)
277
298
  super(version)
@@ -298,6 +319,7 @@ module Twilio
298
319
  'detected_issues' => payload['detected_issues'],
299
320
  'tags' => payload['tags'],
300
321
  'tag_info' => payload['tag_info'],
322
+ 'processing_state' => payload['processing_state'],
301
323
  'url' => payload['url'],
302
324
  'links' => payload['links'],
303
325
  }
@@ -319,133 +341,139 @@ module Twilio
319
341
  end
320
342
 
321
343
  ##
322
- # @return [String] The conference_sid
344
+ # @return [String] Conference SID.
323
345
  def conference_sid
324
346
  @properties['conference_sid']
325
347
  end
326
348
 
327
349
  ##
328
- # @return [String] The account_sid
350
+ # @return [String] Account SID.
329
351
  def account_sid
330
352
  @properties['account_sid']
331
353
  end
332
354
 
333
355
  ##
334
- # @return [String] The friendly_name
356
+ # @return [String] Custom label for the conference.
335
357
  def friendly_name
336
358
  @properties['friendly_name']
337
359
  end
338
360
 
339
361
  ##
340
- # @return [Time] The create_time
362
+ # @return [Time] Conference creation date/time.
341
363
  def create_time
342
364
  @properties['create_time']
343
365
  end
344
366
 
345
367
  ##
346
- # @return [Time] The start_time
368
+ # @return [Time] Timestamp in ISO 8601 format when the conference started.
347
369
  def start_time
348
370
  @properties['start_time']
349
371
  end
350
372
 
351
373
  ##
352
- # @return [Time] The end_time
374
+ # @return [Time] Conference end date/time.
353
375
  def end_time
354
376
  @properties['end_time']
355
377
  end
356
378
 
357
379
  ##
358
- # @return [String] The duration_seconds
380
+ # @return [String] Conference duration in seconds.
359
381
  def duration_seconds
360
382
  @properties['duration_seconds']
361
383
  end
362
384
 
363
385
  ##
364
- # @return [String] The connect_duration_seconds
386
+ # @return [String] Duration of the conference in seconds.
365
387
  def connect_duration_seconds
366
388
  @properties['connect_duration_seconds']
367
389
  end
368
390
 
369
391
  ##
370
- # @return [conference.ConferenceStatus] The status
392
+ # @return [conference.ConferenceStatus] Status of conference
371
393
  def status
372
394
  @properties['status']
373
395
  end
374
396
 
375
397
  ##
376
- # @return [String] The max_participants
398
+ # @return [String] Max participants specified in config.
377
399
  def max_participants
378
400
  @properties['max_participants']
379
401
  end
380
402
 
381
403
  ##
382
- # @return [String] The max_concurrent_participants
404
+ # @return [String] Actual maximum concurrent participants.
383
405
  def max_concurrent_participants
384
406
  @properties['max_concurrent_participants']
385
407
  end
386
408
 
387
409
  ##
388
- # @return [String] The unique_participants
410
+ # @return [String] Unique conference participants.
389
411
  def unique_participants
390
412
  @properties['unique_participants']
391
413
  end
392
414
 
393
415
  ##
394
- # @return [conference.ConferenceEndReason] The end_reason
416
+ # @return [conference.ConferenceEndReason] Conference end reason.
395
417
  def end_reason
396
418
  @properties['end_reason']
397
419
  end
398
420
 
399
421
  ##
400
- # @return [String] The ended_by
422
+ # @return [String] Call SID that ended the conference.
401
423
  def ended_by
402
424
  @properties['ended_by']
403
425
  end
404
426
 
405
427
  ##
406
- # @return [conference.Region] The mixer_region
428
+ # @return [conference.Region] Region where the conference was mixed.
407
429
  def mixer_region
408
430
  @properties['mixer_region']
409
431
  end
410
432
 
411
433
  ##
412
- # @return [conference.Region] The mixer_region_requested
434
+ # @return [conference.Region] Configuration-requested conference mixer region.
413
435
  def mixer_region_requested
414
436
  @properties['mixer_region_requested']
415
437
  end
416
438
 
417
439
  ##
418
- # @return [Boolean] The recording_enabled
440
+ # @return [Boolean] Boolean. Indicates whether recording was enabled.
419
441
  def recording_enabled
420
442
  @properties['recording_enabled']
421
443
  end
422
444
 
423
445
  ##
424
- # @return [Hash] The detected_issues
446
+ # @return [Hash] Potential issues detected during the conference.
425
447
  def detected_issues
426
448
  @properties['detected_issues']
427
449
  end
428
450
 
429
451
  ##
430
- # @return [Array[conference.Tag]] The tags
452
+ # @return [Array[conference.Tag]] Tags for detected conference conditions and participant behaviors.
431
453
  def tags
432
454
  @properties['tags']
433
455
  end
434
456
 
435
457
  ##
436
- # @return [Hash] The tag_info
458
+ # @return [Hash] Object. Contains details about conference tags.
437
459
  def tag_info
438
460
  @properties['tag_info']
439
461
  end
440
462
 
441
463
  ##
442
- # @return [String] The url
464
+ # @return [conference.ProcessingState] Processing state for the Conference Summary resource.
465
+ def processing_state
466
+ @properties['processing_state']
467
+ end
468
+
469
+ ##
470
+ # @return [String] The URL of this resource.
443
471
  def url
444
472
  @properties['url']
445
473
  end
446
474
 
447
475
  ##
448
- # @return [String] The links
476
+ # @return [String] Nested resource URLs.
449
477
  def links
450
478
  @properties['links']
451
479
  end
@@ -50,7 +50,7 @@ module Twilio
50
50
  end
51
51
 
52
52
  ##
53
- # @param [String] conference_sid The conference_sid
53
+ # @param [String] conference_sid The unique SID identifier of the Conference.
54
54
  # @return [Twilio::REST::Insights::V1::ConferenceContext] if conference_sid was passed.
55
55
  # @return [Twilio::REST::Insights::V1::ConferenceList]
56
56
  def conferences(conference_sid=:unset)
@@ -49,7 +49,7 @@ module Twilio
49
49
  end
50
50
 
51
51
  ##
52
- # @param [String] conference_sid The conference_sid
52
+ # @param [String] conference_sid The unique SID identifier of the Conference.
53
53
  # @return [Twilio::REST::Insights::V1::ConferenceInstance] if conference_sid was passed.
54
54
  # @return [Twilio::REST::Insights::V1::ConferenceList]
55
55
  def conferences(conference_sid=:unset)