Skip to content

Commit

Permalink
Merge pull request #80 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 committed Mar 21, 2022
2 parents 598f97c + 91cdce4 commit b3db355
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/model/BytesRange.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**from** | **number** | The starting point for the range of bytes for a chunk of a video. | [optional]
**to** | **number** | The ending point for the range of bytes for a chunk of a video. | [optional]
**total** | **number** | The total number of bytes in the provided range. | [optional]
**total** | **number** | The total number of expected bytes. | [optional]



2 changes: 1 addition & 1 deletion doc/model/VideoStatusIngestReceivedParts.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**parts** | **Array<number>** | 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** | **Array<number>** | 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** | **number** | Contains the number of expected parts. The total will be listed as \"null\" until the total number of parts is known. | [optional]


Expand Down
2 changes: 1 addition & 1 deletion src/model/BytesRange.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default class BytesRange {
*/
'to'?: number;
/**
* The total number of bytes in the provided range.
* The total number of expected bytes.
*/
'total'?: number;

Expand Down
2 changes: 1 addition & 1 deletion src/model/VideoStatusIngestReceivedParts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import AttributeType from './AttributeType';

export default class VideoStatusIngestReceivedParts {
/**
* 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].
*/
'parts'?: Array<number>;
/**
Expand Down

0 comments on commit b3db355

Please sign in to comment.