Regenerate and update.

This commit is contained in:
Kavin 2022-06-05 09:34:50 +01:00
parent 4ab4098c9a
commit 8d3d6d14b0
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
21 changed files with 2130 additions and 83 deletions

View file

@ -14,7 +14,7 @@ Name | Type | Description | Notes
**id** | **String** | The ID of the channel. | [optional]
**name** | **String** | The name of the channel. | [optional]
**nextpage** | **String** | The parameter used to get the next page of related videos. | [optional]
**relatedStreams** | [**BuiltList<StreamItem>**](StreamItem.md) | | [optional]
**relatedStreams** | [**BuiltList<StreamItem>**](StreamItem.md) | | [optional]
**subscriberCount** | **int** | The number of subscribers the channel has. | [optional]
**verified** | **bool** | Whether the channel is verified. | [optional]

View file

@ -27,13 +27,13 @@ Gets all available Channel information about a channel.
```dart
import 'package:piped_api/api.dart';
final api = PipedApi().getUnauthenticatedApi();
final String channelId = UCs6KfncB4OV6Vug4o_bzijg; // String | The channel ID of the YouTube channel you want to get information about.
var api_instance = new UnauthenticatedApi();
var channelId = UCs6KfncB4OV6Vug4o_bzijg; // String | The channel ID of the YouTube channel you want to get information about.
try {
final response = api.channelInfoId(channelId);
print(response);
} catch on DioError (e) {
var result = api_instance.channelInfoId(channelId);
print(result);
} catch (e) {
print('Exception when calling UnauthenticatedApi->channelInfoId: $e\n');
}
```
@ -70,13 +70,13 @@ Gets all available Channel information about a channel.
```dart
import 'package:piped_api/api.dart';
final api = PipedApi().getUnauthenticatedApi();
final String name = Dream; // String | The name of the YouTube channel you want to get information about.
var api_instance = new UnauthenticatedApi();
var name = Dream; // String | The name of the YouTube channel you want to get information about.
try {
final response = api.channelInfoName(name);
print(response);
} catch on DioError (e) {
var result = api_instance.channelInfoName(name);
print(result);
} catch (e) {
print('Exception when calling UnauthenticatedApi->channelInfoName: $e\n');
}
```
@ -113,13 +113,13 @@ Gets all available Channel information about a channel.
```dart
import 'package:piped_api/api.dart';
final api = PipedApi().getUnauthenticatedApi();
final String username = DreamTraps; // String | The username of the YouTube channel you want to get information about.
var api_instance = new UnauthenticatedApi();
var username = DreamTraps; // String | The username of the YouTube channel you want to get information about.
try {
final response = api.channelInfoUsername(username);
print(response);
} catch on DioError (e) {
var result = api_instance.channelInfoUsername(username);
print(result);
} catch (e) {
print('Exception when calling UnauthenticatedApi->channelInfoUsername: $e\n');
}
```
@ -156,13 +156,13 @@ Gets all available Stream information about a video.
```dart
import 'package:piped_api/api.dart';
final api = PipedApi().getUnauthenticatedApi();
final String videoId = dQw4w9WgXcQ; // String | The video ID of the YouTube video you want to get information about.
var api_instance = new UnauthenticatedApi();
var videoId = dQw4w9WgXcQ; // String | The video ID of the YouTube video you want to get information about.
try {
final response = api.streamInfo(videoId);
print(response);
} catch on DioError (e) {
var result = api_instance.streamInfo(videoId);
print(result);
} catch (e) {
print('Exception when calling UnauthenticatedApi->streamInfo: $e\n');
}
```
@ -199,13 +199,13 @@ Gets all Trending Videos in the requested country.
```dart
import 'package:piped_api/api.dart';
final api = PipedApi().getUnauthenticatedApi();
final Regions region = US; // Regions | The Region to get trending videos from.
var api_instance = new UnauthenticatedApi();
var region = US; // Regions | The Region to get trending videos from.
try {
final response = api.trending(region);
print(response);
} catch on DioError (e) {
var result = api_instance.trending(region);
print(result);
} catch (e) {
print('Exception when calling UnauthenticatedApi->trending: $e\n');
}
```
@ -218,7 +218,7 @@ Name | Type | Description | Notes
### Return type
[**BuiltList&lt;StreamItem&gt;**](StreamItem.md)
[**BuiltList<StreamItem>**](StreamItem.md)
### Authorization

View file

@ -8,8 +8,8 @@ import 'package:piped_api/api.dart';
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**audioStreams** | [**BuiltList&lt;Stream&gt;**](Stream.md) | | [optional]
**videoStreams** | [**BuiltList&lt;Stream&gt;**](Stream.md) | | [optional]
**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]
@ -18,7 +18,7 @@ Name | Type | Description | Notes
**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&lt;Subtitle&gt;**](Subtitle.md) | | [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]
@ -27,7 +27,7 @@ Name | Type | Description | Notes
**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&lt;StreamItem&gt;**](StreamItem.md) | | [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)