diff --git a/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 b/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256
index 0d7c31a..45ffff2 100644
--- a/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256
+++ b/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256
@@ -1 +1 @@
-82b644869a006f53bab9fce638d82babbcf438d5667b85e39dfd007344f2afd9
\ No newline at end of file
+d5f71186fe3b8eda08bc651966e39edc2245b72f430868c1af68505883c25b30
\ No newline at end of file
diff --git a/docs/VideoClip.md b/docs/VideoClip.md
index 4bbbd57..1b8426a 100644
--- a/docs/VideoClip.md
+++ b/docs/VideoClip.md
@@ -1,11 +1,12 @@
# ApiVideo.Model.VideoClip
+Use this object to create a smaller clip from a video you upload. - You can only create video clips in the same request where you create the video container. - You cannot update the starting or ending timestamps of a video clip after you created the video container. - When you upload a video file into a container where you defined a starting and ending timestamp, the API trims the video according to those timestamps to create a clip.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**StartTimecode** | **string** | | [optional]
-**EndTimecode** | **string** | | [optional]
+**StartTimecode** | **string** | The timestamp that defines the beginning of the video clip you want to create. The value must follow the `HH:MM:SS` format. | [optional]
+**EndTimecode** | **string** | The timestamp that defines the end of the video clip you want to create. The value must follow the `HH:MM:SS` format. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
diff --git a/src/Model/VideoClip.cs b/src/Model/VideoClip.cs
index b3a58a8..48bc12e 100644
--- a/src/Model/VideoClip.cs
+++ b/src/Model/VideoClip.cs
@@ -8,19 +8,21 @@
namespace ApiVideo.Model {
///
- ///
+ /// Use this object to create a smaller clip from a video you upload. - You can only create video clips in the same request where you create the video container. - You cannot update the starting or ending timestamps of a video clip after you created the video container. - When you upload a video file into a container where you defined a starting and ending timestamp, the API trims the video according to those timestamps to create a clip.
///
[DataContract]
public class VideoClip {
///
- /// Gets or Sets StartTimecode
+ /// The timestamp that defines the beginning of the video clip you want to create. The value must follow the `HH:MM:SS` format.
///
+ /// The timestamp that defines the beginning of the video clip you want to create. The value must follow the `HH:MM:SS` format.
[DataMember(Name="startTimecode", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "startTimecode")]
public string starttimecode { get; set; }
///
- /// Gets or Sets EndTimecode
+ /// The timestamp that defines the end of the video clip you want to create. The value must follow the `HH:MM:SS` format.
///
+ /// The timestamp that defines the end of the video clip you want to create. The value must follow the `HH:MM:SS` format.
[DataMember(Name="endTimecode", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "endTimecode")]
public string endtimecode { get; set; }