Skip to content

Commit da2978e

Browse files
Merge pull request #23 from apivideo/add-received-parts-in-status
doc(all) fix status endpoint documentation
2 parents 901a821 + c96984b commit da2978e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9402dcbb261e63fd443daa901acbbb4b479e70ba02ef2aacefa0e69869615971
1+
22e891b821930ab6525b8670650977016a99c64bb0b2f7982ae2d181260da225

Sources/Models/BytesRange.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public struct BytesRange: Codable, Hashable {
1616
public var from: Int?
1717
/** The ending point for the range of bytes for a chunk of a video. */
1818
public var to: Int?
19-
/** The total number of bytes in the provided range. */
19+
/** The total number of expected bytes. */
2020
public var total: Int?
2121

2222
public init(from: Int? = nil, to: Int? = nil, total: Int? = nil) {

Sources/Models/VideoStatusIngestReceivedParts.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import AnyCodable
1212

1313
public struct VideoStatusIngestReceivedParts: Codable, Hashable {
1414

15-
/** 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]. */
15+
/** 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]. */
1616
public var parts: [Int]?
1717
/** Contains the number of expected parts. The total will be listed as \"null\" until the total number of parts is known. */
1818
public var total: Int?

docs/BytesRange.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**from** | **Int** | The starting point for the range of bytes for a chunk of a video. | [optional]
77
**to** | **Int** | The ending point for the range of bytes for a chunk of a video. | [optional]
8-
**total** | **Int** | The total number of bytes in the provided range. | [optional]
8+
**total** | **Int** | The total number of expected bytes. | [optional]
99

1010
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1111

docs/VideoStatusIngestReceivedParts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**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]
6+
**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]
77
**total** | **Int** | Contains the number of expected parts. The total will be listed as \"null\" until the total number of parts is known. | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

0 commit comments

Comments
 (0)