diff --git a/docs/model/VideoClip.md b/docs/model/VideoClip.md index e7238bb..3668c05 100644 --- a/docs/model/VideoClip.md +++ b/docs/model/VideoClip.md @@ -1,12 +1,13 @@ # 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] diff --git a/package-lock.json b/package-lock.json index b1f706c..e778959 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1954,9 +1954,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001547", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001547.tgz", - "integrity": "sha512-W7CrtIModMAxobGhz8iXmDfuJiiKg1WADMO/9x7/CLNin5cpSbuBjooyoIUVB5eyCc36QuTVlkVa1iB2S5+/eA==", + "version": "1.0.30001549", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001549.tgz", + "integrity": "sha512-qRp48dPYSCYaP+KurZLhDYdVE+yEyht/3NlmcJgVQ2VMGt6JL36ndQ/7rgspdZsJuxDPFIo/OzBT2+GmIJ53BA==", "dev": true, "funding": [ { diff --git a/src/model/VideoClip.ts b/src/model/VideoClip.ts index 323d8d0..49c717f 100644 --- a/src/model/VideoClip.ts +++ b/src/model/VideoClip.ts @@ -11,8 +11,17 @@ import AttributeType from './AttributeType.js'; +/** + * 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. + */ export default class VideoClip { + /** + * The timestamp that defines the beginning of the video clip you want to create. The value must follow the `HH:MM:SS` format. + */ 'startTimecode'?: string; + /** + * The timestamp that defines the end of the video clip you want to create. The value must follow the `HH:MM:SS` format. + */ 'endTimecode'?: string; static readonly discriminator?: string = undefined;