| Name |
Type |
Description |
Notes |
| id |
str |
YouTube channel id (`UCxxx`). |
|
| title |
str |
|
|
| description |
str |
|
|
| avatar_url |
str |
|
|
| banner_url |
str |
|
|
| subscriber_count |
float |
|
|
| video_count |
float |
|
|
| view_count |
float |
|
|
| country |
str |
|
|
| is_verified |
bool |
|
|
| created_at |
str |
Source creation date string (passed through). |
|
from unifapi.models.you_tube_channel import YouTubeChannel
# TODO update the JSON string below
json = "{}"
# create an instance of YouTubeChannel from a JSON string
you_tube_channel_instance = YouTubeChannel.from_json(json)
# print the JSON string representation of the object
print(YouTubeChannel.to_json())
# convert the object into a dict
you_tube_channel_dict = you_tube_channel_instance.to_dict()
# create an instance of YouTubeChannel from a dict
you_tube_channel_from_dict = YouTubeChannel.from_dict(you_tube_channel_dict)
[Back to Model list] [Back to API list] [Back to README]