docs/ConferenceRecordingMetadata.md in bandwidth-sdk-13.0.0 vs docs/ConferenceRecordingMetadata.md in bandwidth-sdk-13.1.0
- old
+ new
@@ -13,10 +13,11 @@
| **start_time** | **Time** | Time the call was started, in ISO 8601 format. | [optional] |
| **end_time** | **Time** | The time that the recording ended in ISO-8601 format | [optional] |
| **file_format** | [**FileFormatEnum**](FileFormatEnum.md) | | [optional] |
| **status** | **String** | The current status of the process. For recording, current possible values are 'processing', 'partial', 'complete', 'deleted', and 'error'. For transcriptions, current possible values are 'none', 'processing', 'available', 'error', 'timeout', 'file-size-too-big', and 'file-size-too-small'. Additional states may be added in the future, so your application must be tolerant of unknown values. | [optional] |
| **media_url** | **String** | The URL that can be used to download the recording. Only present if the recording is finished and may be downloaded. | [optional] |
+| **recording_name** | **String** | A name to identify this recording. | [optional] |
## Example
```ruby
require 'bandwidth-sdk'
@@ -30,9 +31,10 @@
channels: 1,
start_time: 2022-06-17T22:19:40.375Z,
end_time: 2022-06-17T22:20Z,
file_format: null,
status: completed,
- media_url: https://voice.bandwidth.com/api/v2/accounts/9900000/conferences/conf-fe23a767-a75a5b77-20c5-4cca-b581-cbbf0776eca9/recordings/r-fbe05094-9fd2afe9-bf5b-4c68-820a-41a01c1c5833/media
+ media_url: https://voice.bandwidth.com/api/v2/accounts/9900000/conferences/conf-fe23a767-a75a5b77-20c5-4cca-b581-cbbf0776eca9/recordings/r-fbe05094-9fd2afe9-bf5b-4c68-820a-41a01c1c5833/media,
+ recording_name: my-recording-name
)
```