From c96984b25645d33dae685ee95b6334f1f6dfd4ed Mon Sep 17 00:00:00 2001 From: olivierapivideo Date: Mon, 21 Mar 2022 16:58:22 +0000 Subject: [PATCH] doc(all) fix status endpoint documentation --- .openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 | 2 +- Sources/Models/BytesRange.swift | 2 +- Sources/Models/VideoStatusIngestReceivedParts.swift | 2 +- docs/BytesRange.md | 2 +- docs/VideoStatusIngestReceivedParts.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 b/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 index 2d9d8a4..7c89381 100644 --- a/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 +++ b/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 @@ -1 +1 @@ -9402dcbb261e63fd443daa901acbbb4b479e70ba02ef2aacefa0e69869615971 \ No newline at end of file +22e891b821930ab6525b8670650977016a99c64bb0b2f7982ae2d181260da225 \ No newline at end of file diff --git a/Sources/Models/BytesRange.swift b/Sources/Models/BytesRange.swift index 4a6665c..8e1af54 100644 --- a/Sources/Models/BytesRange.swift +++ b/Sources/Models/BytesRange.swift @@ -16,7 +16,7 @@ public struct BytesRange: Codable, Hashable { public var from: Int? /** The ending point for the range of bytes for a chunk of a video. */ public var to: Int? - /** The total number of bytes in the provided range. */ + /** The total number of expected bytes. */ public var total: Int? public init(from: Int? = nil, to: Int? = nil, total: Int? = nil) { diff --git a/Sources/Models/VideoStatusIngestReceivedParts.swift b/Sources/Models/VideoStatusIngestReceivedParts.swift index 197d190..098faf2 100644 --- a/Sources/Models/VideoStatusIngestReceivedParts.swift +++ b/Sources/Models/VideoStatusIngestReceivedParts.swift @@ -12,7 +12,7 @@ import AnyCodable public struct VideoStatusIngestReceivedParts: Codable, Hashable { - /** The parts that are have been uploaded, ordered. For example, if part 2 was sent before part 1, and both have been uploaded, the output will be [1, 2]. */ + /** The parts that have been uploaded, ordered. For example, if part 2 was sent before part 1, and both have been uploaded, the output will be [1, 2]. */ public var parts: [Int]? /** Contains the number of expected parts. The total will be listed as \"null\" until the total number of parts is known. */ public var total: Int? diff --git a/docs/BytesRange.md b/docs/BytesRange.md index 6ca1aeb..67bec3d 100644 --- a/docs/BytesRange.md +++ b/docs/BytesRange.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **from** | **Int** | The starting point for the range of bytes for a chunk of a video. | [optional] **to** | **Int** | The ending point for the range of bytes for a chunk of a video. | [optional] -**total** | **Int** | The total number of bytes in the provided range. | [optional] +**total** | **Int** | The total number of expected bytes. | [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/docs/VideoStatusIngestReceivedParts.md b/docs/VideoStatusIngestReceivedParts.md index b959de1..942200a 100644 --- a/docs/VideoStatusIngestReceivedParts.md +++ b/docs/VideoStatusIngestReceivedParts.md @@ -3,7 +3,7 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**parts** | **[Int]** | The parts that are have been uploaded, ordered. For example, if part 2 was sent before part 1, and both have been uploaded, the output will be [1, 2]. | [optional] +**parts** | **[Int]** | The parts that have been uploaded, ordered. For example, if part 2 was sent before part 1, and both have been uploaded, the output will be [1, 2]. | [optional] **total** | **Int** | Contains the number of expected parts. The total will be listed as \"null\" until the total number of parts is known. | [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)