Skip to content

Commit

Permalink
Merge pull request #124 from apivideo/update-video-status-endpoint-de…
Browse files Browse the repository at this point in the history
…scription

Update VideoStatusIngest enum descriptions
  • Loading branch information
bot-api-video authored Feb 19, 2024
2 parents 26ded34 + 36ec3da commit f6af497
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 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 @@
09cba6da28969c86b96778e25dab3f892246709c244e97aa0d53300dbebe1467
5678c55d78ebee898e89b47215b59cb855d1997cdda9202292548ec786d8e9f5
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All changes to this project will be documented in this file.

## [1.3.1] - 2024-02-19
- Update VideoStatusIngest enum

## [1.3.0] - 2023-06-28
- Introducing new live streams restream feature
- Introducing new analytics endpoints
Expand Down
2 changes: 1 addition & 1 deletion docs/VideoStatusIngest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Details about the capturing, transferring, and storing of your video for use imm

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Status** | **string** | There are three possible ingest statuses. missing - you are missing information required to ingest the video. uploading - the video is in the process of being uploaded. uploaded - the video is ready for use. | [optional]
**Status** | **string** | There are four possible statuses depending on how you provide a video file: - `uploading` - the API is gathering the video source file from an upload. - `uploaded` - the video file is fully uploaded. - `ingesting` - the API is gathering the video source file from either a URL, or from cloning. - `ingested` - the video file is fully stored. | [optional]
**Filesize** | **int?** | The size of your file in bytes. | [optional]
**ReceivedBytes** | [**List<BytesRange>**](BytesRange.md) | The total number of bytes received, listed for each chunk of the upload. | [optional]
**ReceivedParts** | [**VideoStatusIngestReceivedParts**](VideoStatusIngestReceivedParts.md) | | [optional]
Expand Down
2 changes: 1 addition & 1 deletion src/ApiVideo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The version of the OpenAPI document: 1
<FileAlignment>512</FileAlignment>
<PackOnBuild>true</PackOnBuild>
<PackageId>ApiVideo</PackageId>
<PackageVersion>1.3.0</PackageVersion>
<PackageVersion>1.3.1</PackageVersion>
<Authors>api.video</Authors>
<Description>api.video csharp API client</Description>
<DevelopmentDependency>true</DevelopmentDependency>
Expand Down
2 changes: 1 addition & 1 deletion src/Client/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public ApiClient(string apiKey,string basePath): this(basePath) {
/// <param name="client">a RestClient instance used to make API call</param>
public ApiClient(RestClient client) {
this.RestClient = client;
setName("AV-Origin-Client", "csharp", "1.3.0");
setName("AV-Origin-Client", "csharp", "1.3.1");
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/Model/VideoStatusIngest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ namespace ApiVideo.Model {
[DataContract]
public class VideoStatusIngest {
/// <summary>
/// There are three possible ingest statuses. missing - you are missing information required to ingest the video. uploading - the video is in the process of being uploaded. uploaded - the video is ready for use.
/// There are four possible statuses depending on how you provide a video file: - `uploading` - the API is gathering the video source file from an upload. - `uploaded` - the video file is fully uploaded. - `ingesting` - the API is gathering the video source file from either a URL, or from cloning. - `ingested` - the video file is fully stored.
/// </summary>
/// <value>There are three possible ingest statuses. missing - you are missing information required to ingest the video. uploading - the video is in the process of being uploaded. uploaded - the video is ready for use.</value>
/// <value>There are four possible statuses depending on how you provide a video file: - `uploading` - the API is gathering the video source file from an upload. - `uploaded` - the video file is fully uploaded. - `ingesting` - the API is gathering the video source file from either a URL, or from cloning. - `ingested` - the video file is fully stored. </value>
[DataMember(Name="status", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "status")]
public string status { get; set; }
Expand Down

0 comments on commit f6af497

Please sign in to comment.