You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CallResult.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@
20
20
|**end_time**|**String**| End time of the Call (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call did not complete successfully. |[optional]|
21
21
|**duration**|**Integer**| Total length of the Call in seconds. Measures time between startTime and endTime. This value is empty for busy, failed, unanswered or ongoing Calls. |[optional]|
22
22
|**connect_duration**|**Integer**| Length of time that the Call was connected in seconds. Measures time between connectTime and endTime. This value is empty for busy, failed, unanswered or ongoing Calls. |[optional]|
23
+
|**audio_stream_duration**|**Integer**| Length of time that the Call used the audio stream in seconds. This value is empty or zero when the Call did not use the audio stream. |[optional]|
|**subresource_uris**|**Object**| The list of subresources for this Call. These include things like logs and recordings associated with the Call. |[optional]|
call_id ='call_id_example'# String | String that uniquely identifies this call resource.
3273
3273
3274
3274
opts = {
3275
-
date_created:'date_created_example'# String | Only show recordings created on the specified date, in the form *YYYY-MM-DD*.
3275
+
date_created:'date_created_example', # String | Only show recordings created on the specified date, in the form *YYYY-MM-DD*.
3276
+
start_time:'start_time_example', # String | Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss.
3277
+
end_time:'end_time_example'# String | Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss.
3276
3278
}
3277
3279
3278
3280
begin
@@ -3309,6 +3311,8 @@ end
3309
3311
| ---- | ---- | ----------- | ----- |
3310
3312
|**call_id**|**String**| String that uniquely identifies this call resource. ||
3311
3313
|**date_created**|**String**| Only show recordings created on the specified date, in the form *YYYY-MM-DD*. |[optional]|
3314
+
|**start_time**|**String**| Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss. |[optional]|
3315
+
|**end_time**|**String**| Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss. |[optional]|
3312
3316
3313
3317
3314
3318
### Return type
@@ -3344,6 +3348,7 @@ end
3344
3348
api_instance =Freeclimb::DefaultApi.new
3345
3349
3346
3350
opts = {
3351
+
used_audio_stream:true, # Boolean | If usedAudioStream is set to true then all calls that have a audioStreamDuration > 0 will be returned
3347
3352
active:true, # Boolean | If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query.
3348
3353
to:'to_example', # String | Only show Calls to this phone number.
3349
3354
from:'from_example', # String | Only show Calls from this phone number.
@@ -3388,6 +3393,7 @@ end
3388
3393
3389
3394
| Name | Type | Description | Notes |
3390
3395
| ---- | ---- | ----------- | ----- |
3396
+
|**used_audio_stream**|**Boolean**| If usedAudioStream is set to true then all calls that have a audioStreamDuration > 0 will be returned |[optional][default to false]|
3391
3397
|**active**|**Boolean**| If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. |[optional][default to false]|
3392
3398
|**to**|**String**| Only show Calls to this phone number. |[optional]|
3393
3399
|**from**|**String**| Only show Calls from this phone number. |[optional]|
@@ -3436,7 +3442,9 @@ conference_id = 'conference_id_example' # String | Show only Recordings made dur
3436
3442
3437
3443
opts = {
3438
3444
call_id:'call_id_example', # String | Show only Recordings made during the Call with this ID.
3439
-
date_created:'date_created_example'# String | Only show Recordings created on this date, formatted as *YYYY-MM-DD*.
3445
+
date_created:'date_created_example', # String | Only show Recordings created on this date, formatted as *YYYY-MM-DD*.
3446
+
start_time:'start_time_example', # String | Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss.
3447
+
end_time:'end_time_example'# String | Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss.
3440
3448
}
3441
3449
3442
3450
begin
@@ -3474,6 +3482,8 @@ end
3474
3482
|**conference_id**|**String**| Show only Recordings made during the conference with this ID. ||
3475
3483
|**call_id**|**String**| Show only Recordings made during the Call with this ID. |[optional]|
3476
3484
|**date_created**|**String**| Only show Recordings created on this date, formatted as *YYYY-MM-DD*. |[optional]|
3485
+
|**start_time**|**String**| Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss. |[optional]|
3486
+
|**end_time**|**String**| Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss. |[optional]|
# @option opts [Boolean] :used_audio_stream If usedAudioStream is set to true then all calls that have a audioStreamDuration > 0 will be returned (default to false)
3035
3042
# @option opts [Boolean] :active If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. (default to false)
3036
3043
# @option opts [String] :to Only show Calls to this phone number.
3037
3044
# @option opts [String] :from Only show Calls from this phone number.
@@ -3050,6 +3057,7 @@ def list_calls(opts = {})
3050
3057
3051
3058
# List Calls
3052
3059
# @param [Hash] opts the optional parameters
3060
+
# @option opts [Boolean] :used_audio_stream If usedAudioStream is set to true then all calls that have a audioStreamDuration > 0 will be returned
3053
3061
# @option opts [Boolean] :active If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query.
3054
3062
# @option opts [String] :to Only show Calls to this phone number.
3055
3063
# @option opts [String] :from Only show Calls from this phone number.
Copy file name to clipboardExpand all lines: lib/freeclimb/models/call_result.rb
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,9 @@ class CallResult
60
60
# Length of time that the Call was connected in seconds. Measures time between connectTime and endTime. This value is empty for busy, failed, unanswered or ongoing Calls.
61
61
attr_accessor:connect_duration
62
62
63
+
# Length of time that the Call used the audio stream in seconds. This value is empty or zero when the Call did not use the audio stream.
0 commit comments