piped_dart/doc/Comment.md

27 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2022-06-25 09:55:47 +00:00
# piped_api.model.Comment
## Load the model package
```dart
import 'package:piped_api/api.dart';
```
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**author** | **String** | The name of the author of the comment. | [optional]
**thumbnail** | **String** | The thumbnail/avatar of the author of the comment. | [optional]
**commentId** | **String** | The ID of the comment. | [optional]
**commentText** | **String** | The text of the comment. | [optional]
**commentedTime** | **String** | The relative time the comment was made. | [optional]
**commentorUrl** | **String** | The relative URL of the author of the comment. | [optional]
**repliesPage** | **String** | The parameter used as the nextpage to fetch replies for this comment. | [optional]
**likeCount** | **int** | The number of likes the comment has. | [optional]
**replyCount** | **int** | The number of replies the comment has. | [optional]
2022-06-25 09:55:47 +00:00
**hearted** | **bool** | Whether the comment was hearted by the video's uploader. | [optional]
**pinned** | **bool** | Whether the comment was pinned by the video's uploader. | [optional]
**verified** | **bool** | Whether the author of the comment is verified. | [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)