Skip to content

Commit

Permalink
Merge pull request #23 from apivideo/add-received-parts-in-status
Browse files Browse the repository at this point in the history
doc(all) fix status endpoint documentation
  • Loading branch information
bot-api-video authored Mar 21, 2022
2 parents 901a821 + c96984b commit da2978e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .openapi-generator/oas_apivideo.yaml-defaut-cli.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9402dcbb261e63fd443daa901acbbb4b479e70ba02ef2aacefa0e69869615971
22e891b821930ab6525b8670650977016a99c64bb0b2f7982ae2d181260da225
2 changes: 1 addition & 1 deletion Sources/Models/BytesRange.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion Sources/Models/VideoStatusIngestReceivedParts.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down
2 changes: 1 addition & 1 deletion docs/BytesRange.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion docs/VideoStatusIngestReceivedParts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit da2978e

Please sign in to comment.