Skip to content

Commit

Permalink
Update VideoStatusIngest enum descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
szekelyzol authored Feb 16, 2024
1 parent 96122a9 commit 129bd20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions apivideo/model/video_status_ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ class VideoStatusIngest(ModelNormal):

allowed_values = {
('status',): {
'MISSING': "missing",
'UPLOADING': "uploading",
'UPLOADED': "uploaded",
'INGESTING': "ingesting",
'INGESTED': "ingested",
},
}

Expand Down Expand Up @@ -147,7 +148,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
status (str): 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] # noqa: E501
status (str): 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] # noqa: E501
filesize (int, none_type): The size of your file in bytes.. [optional] # noqa: E501
received_bytes ([BytesRange]): The total number of bytes received, listed for each chunk of the upload.. [optional] # noqa: E501
received_parts (VideoStatusIngestReceivedParts): [optional] # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion docs/VideoStatusIngest.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Details about the capturing, transferring, and storing of your video for use imm
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **str** | 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** | **str** | 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, none_type** | The size of your file in bytes. | [optional]
**received_bytes** | [**[BytesRange]**](BytesRange.md) | The total number of bytes received, listed for each chunk of the upload. | [optional]
**received_parts** | [**VideoStatusIngestReceivedParts**](VideoStatusIngestReceivedParts.md) | | [optional]
Expand Down

0 comments on commit 129bd20

Please sign in to comment.