This commit is contained in:
FireMasterK 2022-02-07 13:25:54 +00:00
parent a8612fdad7
commit 8097805f0e
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
9 changed files with 484 additions and 8 deletions

18
doc/Subtitle.md Normal file
View file

@ -0,0 +1,18 @@
# piped_api.model.Subtitle
## Load the model package
```dart
import 'package:piped_api/api.dart';
```
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**autoGenerated** | **bool** | Whether the subtitle is auto generated. | [optional]
**code** | **String** | The language code of the subtitle. | [optional]
**mimeType** | **String** | The mime type of the subtitle. | [optional]
**url** | **String** | The URL of the subtitle. | [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)

View file

@ -9,6 +9,24 @@ import 'package:piped_api/api.dart';
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**audioStreams** | [**BuiltList<Stream>**](Stream.md) | | [optional]
**videoStreams** | [**BuiltList<Stream>**](Stream.md) | | [optional]
**description** | **String** | The video's description. | [optional]
**dislikes** | **int** | The number of dislikes the video has. | [optional]
**duration** | **int** | The video's duration in seconds. | [optional]
**hls** | **String** | The stream of the video in a HLS manifest. | [optional]
**lbryId** | **String** | The LBRY ID of the video. | [optional]
**likes** | **int** | The number of likes the video has. | [optional]
**livestream** | **bool** | Whether the video is a livestream. | [optional]
**proxyUrl** | **String** | The base URL of the backend instance's proxy. | [optional]
**subtitles** | [**BuiltList<Subtitle>**](Subtitle.md) | | [optional]
**dash** | **String** | The URL of the DASH manifest. | [optional]
**thumbnailUrl** | **String** | The URL of the video's thumbnail. | [optional]
**title** | **String** | The video's title. | [optional]
**uploadDate** | **String** | The date the video was uploaded. | [optional]
**uploader** | **String** | The video's uploader. | [optional]
**uploaderAvatar** | **String** | The URL of the video's uploader's avatar. | [optional]
**uploaderUrl** | **String** | The relative URL of the video's uploader. | [optional]
**uploaderVerified** | **bool** | Whether the video's uploader is verified. | [optional]
**relatedStreams** | [**BuiltList<StreamItem>**](StreamItem.md) | | [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)