Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update VideoStatusIngest enum descriptions #124

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
/// <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 Expand Up @@ -274,10 +274,10 @@

class ApiExceptionResponse
{
public string type;

Check warning on line 277 in src/Client/ApiClient.cs

View workflow job for this annotation

GitHub Actions / test (3.1.x)

Field 'ApiClient.ApiExceptionResponse.type' is never assigned to, and will always have its default value null
public string title;

Check warning on line 278 in src/Client/ApiClient.cs

View workflow job for this annotation

GitHub Actions / test (3.1.x)

Field 'ApiClient.ApiExceptionResponse.title' is never assigned to, and will always have its default value null
public string name;

Check warning on line 279 in src/Client/ApiClient.cs

View workflow job for this annotation

GitHub Actions / test (3.1.x)

Field 'ApiClient.ApiExceptionResponse.name' is never assigned to, and will always have its default value null
public int status;

Check warning on line 280 in src/Client/ApiClient.cs

View workflow job for this annotation

GitHub Actions / test (3.1.x)

Field 'ApiClient.ApiExceptionResponse.status' is never assigned to, and will always have its default value 0
}

/// <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
Loading