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/Sources/Models/VideoClip.swift b/Sources/Models/VideoClip.swift index 9abd578..ce0806a 100644 --- a/Sources/Models/VideoClip.swift +++ b/Sources/Models/VideoClip.swift @@ -10,9 +10,12 @@ import Foundation import AnyCodable #endif +/** 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. */ public struct VideoClip: Codable, Hashable { + /** The timestamp that defines the beginning of the video clip you want to create. The value must follow the `HH:MM:SS` format. */ public var 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. */ public var endTimecode: String? public init(startTimecode: String? = nil, endTimecode: String? = nil) { diff --git a/docs/VideoClip.md b/docs/VideoClip.md index b6acbec..9cf2c07 100644 --- a/docs/VideoClip.md +++ b/docs/VideoClip.md @@ -3,8 +3,8 @@ ## 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)