Compare commits

...

2 commits

Author SHA1 Message Date
9aafb84e0f feat: add verification to channel model
- clean up response models
- change verification status serialization
2022-10-18 11:45:51 +02:00
4d80dffcd5 refactor: make response models crate-private 2022-10-17 23:55:03 +02:00
43 changed files with 677 additions and 669 deletions

View file

@ -300,6 +300,7 @@ fn map_channel<T>(
.subscriber_count_text .subscriber_count_text
.and_then(|txt| util::parse_large_numstr(&txt, lang)), .and_then(|txt| util::parse_large_numstr(&txt, lang)),
avatar: header.avatar.into(), avatar: header.avatar.into(),
verification: header.badges.into(),
description: metadata.description, description: metadata.description,
tags: microformat.microformat_data_renderer.tags, tags: microformat.microformat_data_renderer.tags,
vanity_url, vanity_url,
@ -333,6 +334,7 @@ fn map_channel<T>(
.and_then(|txt| util::parse_large_numstr(txt, lang)) .and_then(|txt| util::parse_large_numstr(txt, lang))
}), }),
avatar: hdata.map(|hdata| hdata.1.into()).unwrap_or_default(), avatar: hdata.map(|hdata| hdata.1.into()).unwrap_or_default(),
verification: crate::model::Verification::None,
description: metadata.description, description: metadata.description,
tags: microformat.microformat_data_renderer.tags, tags: microformat.microformat_data_renderer.tags,
vanity_url, vanity_url,

View file

@ -12,7 +12,7 @@ use crate::serializer::{text::Text, MapResult, VecLogError};
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Channel { pub(crate) struct Channel {
#[serde(default)] #[serde(default)]
#[serde_as(as = "DefaultOnError")] #[serde_as(as = "DefaultOnError")]
pub header: Option<Header>, pub header: Option<Header>,
@ -25,7 +25,7 @@ pub struct Channel {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Contents { pub(crate) struct Contents {
pub two_column_browse_results_renderer: TabsRenderer, pub two_column_browse_results_renderer: TabsRenderer,
} }
@ -34,21 +34,21 @@ pub struct Contents {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct TabsRenderer { pub(crate) struct TabsRenderer {
#[serde_as(as = "VecSkipError<_>")] #[serde_as(as = "VecSkipError<_>")]
pub tabs: Vec<TabRendererWrap>, pub tabs: Vec<TabRendererWrap>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct TabRendererWrap { pub(crate) struct TabRendererWrap {
pub tab_renderer: ContentRenderer<TabContent>, pub tab_renderer: ContentRenderer<TabContent>,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct TabContent { pub(crate) struct TabContent {
#[serde(default)] #[serde(default)]
#[serde_as(as = "DefaultOnError")] #[serde_as(as = "DefaultOnError")]
pub section_list_renderer: Option<SectionListRenderer>, pub section_list_renderer: Option<SectionListRenderer>,
@ -60,7 +60,7 @@ pub struct TabContent {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct SectionListRenderer { pub(crate) struct SectionListRenderer {
pub contents: Vec<ItemSectionRendererWrap>, pub contents: Vec<ItemSectionRendererWrap>,
/// - **Videos**: browse-feedUC2DjFE7Xf11URZqWBigcVOQvideos (...) /// - **Videos**: browse-feedUC2DjFE7Xf11URZqWBigcVOQvideos (...)
/// - **Playlists**: browse-feedUC2DjFE7Xf11URZqWBigcVOQplaylists104 (...) /// - **Playlists**: browse-feedUC2DjFE7Xf11URZqWBigcVOQplaylists104 (...)
@ -72,7 +72,7 @@ pub struct SectionListRenderer {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct RichGridRenderer { pub(crate) struct RichGridRenderer {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
pub contents: MapResult<Vec<YouTubeListItem>>, pub contents: MapResult<Vec<YouTubeListItem>>,
/// - **Videos**: browse-feedUC2DjFE7Xf11URZqWBigcVOQvideos (...) /// - **Videos**: browse-feedUC2DjFE7Xf11URZqWBigcVOQvideos (...)
@ -83,14 +83,14 @@ pub struct RichGridRenderer {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ItemSectionRendererWrap { pub(crate) struct ItemSectionRendererWrap {
pub item_section_renderer: ContentsRenderer<ChannelContent>, pub item_section_renderer: ContentsRenderer<ChannelContent>,
} }
#[serde_as] #[serde_as]
#[derive(Default, Debug, Deserialize)] #[derive(Default, Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub enum ChannelContent { pub(crate) enum ChannelContent {
GridRenderer { GridRenderer {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
items: MapResult<Vec<YouTubeListItem>>, items: MapResult<Vec<YouTubeListItem>>,
@ -103,7 +103,7 @@ pub enum ChannelContent {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub enum Header { pub(crate) enum Header {
C4TabbedHeaderRenderer(HeaderRenderer), C4TabbedHeaderRenderer(HeaderRenderer),
/// Used for special channels like YouTube Music /// Used for special channels like YouTube Music
CarouselHeaderRenderer(ContentsRenderer<CarouselHeaderRendererItem>), CarouselHeaderRenderer(ContentsRenderer<CarouselHeaderRendererItem>),
@ -112,7 +112,7 @@ pub enum Header {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct HeaderRenderer { pub(crate) struct HeaderRenderer {
/// Approximate subscriber count (e.g. `880K subscribers`), depends on language. /// Approximate subscriber count (e.g. `880K subscribers`), depends on language.
/// ///
/// `None` if the subscriber count is hidden. /// `None` if the subscriber count is hidden.
@ -120,8 +120,9 @@ pub struct HeaderRenderer {
pub subscriber_count_text: Option<String>, pub subscriber_count_text: Option<String>,
#[serde(default)] #[serde(default)]
pub avatar: Thumbnails, pub avatar: Thumbnails,
#[serde_as(as = "Option<VecSkipError<_>>")] #[serde(default)]
pub badges: Option<Vec<ChannelBadge>>, #[serde_as(as = "VecSkipError<_>")]
pub badges: Vec<ChannelBadge>,
#[serde(default)] #[serde(default)]
pub banner: Thumbnails, pub banner: Thumbnails,
#[serde(default)] #[serde(default)]
@ -134,7 +135,7 @@ pub struct HeaderRenderer {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub enum CarouselHeaderRendererItem { pub(crate) enum CarouselHeaderRendererItem {
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
TopicChannelDetailsRenderer { TopicChannelDetailsRenderer {
#[serde_as(as = "Option<Text>")] #[serde_as(as = "Option<Text>")]
@ -148,13 +149,13 @@ pub enum CarouselHeaderRendererItem {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Metadata { pub(crate) struct Metadata {
pub channel_metadata_renderer: ChannelMetadataRenderer, pub channel_metadata_renderer: ChannelMetadataRenderer,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ChannelMetadataRenderer { pub(crate) struct ChannelMetadataRenderer {
pub title: String, pub title: String,
/// Channel ID /// Channel ID
pub external_id: String, pub external_id: String,
@ -164,13 +165,13 @@ pub struct ChannelMetadataRenderer {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Microformat { pub(crate) struct Microformat {
pub microformat_data_renderer: MicroformatDataRenderer, pub microformat_data_renderer: MicroformatDataRenderer,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MicroformatDataRenderer { pub(crate) struct MicroformatDataRenderer {
#[serde(default)] #[serde(default)]
pub tags: Vec<String>, pub tags: Vec<String>,
} }
@ -178,7 +179,7 @@ pub struct MicroformatDataRenderer {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ChannelFullMetadata { pub(crate) struct ChannelFullMetadata {
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub joined_date_text: String, pub joined_date_text: String,
#[serde_as(as = "Option<Text>")] #[serde_as(as = "Option<Text>")]
@ -191,7 +192,7 @@ pub struct ChannelFullMetadata {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PrimaryLink { pub(crate) struct PrimaryLink {
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub title: String, pub title: String,
pub navigation_endpoint: NavigationEndpoint, pub navigation_endpoint: NavigationEndpoint,

View file

@ -4,7 +4,7 @@ use serde::Deserialize;
use super::Thumbnail; use super::Thumbnail;
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct ChannelRss { pub(crate) struct ChannelRss {
#[serde(rename = "$unflatten=yt:channelId")] #[serde(rename = "$unflatten=yt:channelId")]
pub channel_id: String, pub channel_id: String,
#[serde(rename = "$unflatten=title")] #[serde(rename = "$unflatten=title")]
@ -15,7 +15,7 @@ pub struct ChannelRss {
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct Entry { pub(crate) struct Entry {
#[serde(rename = "$unflatten=yt:videoId")] #[serde(rename = "$unflatten=yt:videoId")]
pub video_id: String, pub video_id: String,
#[serde(rename = "$unflatten=title")] #[serde(rename = "$unflatten=title")]
@ -29,7 +29,7 @@ pub struct Entry {
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct MediaGroup { pub(crate) struct MediaGroup {
#[serde(rename = "$unflatten=media:thumbnail")] #[serde(rename = "$unflatten=media:thumbnail")]
pub thumbnail: Thumbnail, pub thumbnail: Thumbnail,
#[serde(rename = "$unflatten=media:description")] #[serde(rename = "$unflatten=media:description")]
@ -39,7 +39,7 @@ pub struct MediaGroup {
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct Community { pub(crate) struct Community {
#[serde(rename = "$unflatten=media:starRating")] #[serde(rename = "$unflatten=media:starRating")]
pub rating: Rating, pub rating: Rating,
#[serde(rename = "$unflatten=media:statistics")] #[serde(rename = "$unflatten=media:statistics")]
@ -47,12 +47,12 @@ pub struct Community {
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct Rating { pub(crate) struct Rating {
pub count: u64, pub count: u64,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct Statistics { pub(crate) struct Statistics {
pub views: u64, pub views: u64,
} }

View file

@ -1,58 +1,55 @@
pub mod channel; pub(crate) mod channel;
pub mod player; pub(crate) mod player;
pub mod playlist; pub(crate) mod playlist;
pub mod playlist_music; // pub(crate) mod playlist_music;
pub mod search; pub(crate) mod search;
pub mod trends; pub(crate) mod trends;
pub mod url_endpoint; pub(crate) mod url_endpoint;
pub mod video_details; pub(crate) mod video_details;
pub mod video_item; pub(crate) mod video_item;
pub use channel::Channel; pub(crate) use channel::Channel;
pub use player::Player; pub(crate) use player::Player;
pub use playlist::Playlist; pub(crate) use playlist::Playlist;
pub use playlist::PlaylistCont; pub(crate) use playlist::PlaylistCont;
pub use playlist_music::PlaylistMusic; // pub(crate) use playlist_music::PlaylistMusic;
pub use search::Search; pub(crate) use search::Search;
pub use trends::Startpage; pub(crate) use trends::Startpage;
pub use trends::Trending; pub(crate) use trends::Trending;
pub use url_endpoint::ResolvedUrl; pub(crate) use url_endpoint::ResolvedUrl;
pub use video_details::VideoComments; pub(crate) use video_details::VideoComments;
pub use video_details::VideoDetails; pub(crate) use video_details::VideoDetails;
pub use video_item::YouTubeListItem; pub(crate) use video_item::YouTubeListItem;
pub use video_item::YouTubeListMapper; pub(crate) use video_item::YouTubeListMapper;
#[cfg(feature = "rss")] #[cfg(feature = "rss")]
pub mod channel_rss; pub(crate) mod channel_rss;
#[cfg(feature = "rss")] #[cfg(feature = "rss")]
pub use channel_rss::ChannelRss; pub(crate) use channel_rss::ChannelRss;
use serde::Deserialize; use serde::Deserialize;
use serde_with::{json::JsonString, serde_as, DefaultOnError, VecSkipError}; use serde_with::{json::JsonString, serde_as, VecSkipError};
use crate::error::ExtractionError; use crate::error::ExtractionError;
use crate::serializer::MapResult; use crate::serializer::MapResult;
use crate::serializer::{ use crate::serializer::{text::Text, VecLogError};
text::{Text, TextComponent},
VecLogError,
};
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ContentRenderer<T> { pub(crate) struct ContentRenderer<T> {
pub content: T, pub content: T,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ContentsRenderer<T> { pub(crate) struct ContentsRenderer<T> {
#[serde(alias = "tabs")] #[serde(alias = "tabs")]
pub contents: Vec<T>, pub contents: Vec<T>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ThumbnailsWrap { pub(crate) struct ThumbnailsWrap {
#[serde(default)] #[serde(default)]
pub thumbnail: Thumbnails, pub thumbnail: Thumbnails,
} }
@ -61,14 +58,14 @@ pub struct ThumbnailsWrap {
/// Not only used for thumbnails, but also for avatars and banners. /// Not only used for thumbnails, but also for avatars and banners.
#[derive(Default, Debug, Deserialize)] #[derive(Default, Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Thumbnails { pub(crate) struct Thumbnails {
#[serde(default)] #[serde(default)]
pub thumbnails: Vec<Thumbnail>, pub thumbnails: Vec<Thumbnail>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Thumbnail { pub(crate) struct Thumbnail {
pub url: String, pub url: String,
pub width: u32, pub width: u32,
pub height: u32, pub height: u32,
@ -76,32 +73,32 @@ pub struct Thumbnail {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ContinuationItemRenderer { pub(crate) struct ContinuationItemRenderer {
pub continuation_endpoint: ContinuationEndpoint, pub continuation_endpoint: ContinuationEndpoint,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ContinuationEndpoint { pub(crate) struct ContinuationEndpoint {
pub continuation_command: ContinuationCommand, pub continuation_command: ContinuationCommand,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ContinuationCommand { pub(crate) struct ContinuationCommand {
pub token: String, pub token: String,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Icon { pub(crate) struct Icon {
pub icon_type: IconType, pub icon_type: IconType,
} }
#[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)] #[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")] #[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum IconType { pub(crate) enum IconType {
/// Checkmark for verified channels /// Checkmark for verified channels
Check, Check,
/// Music note for verified artists /// Music note for verified artists
@ -112,52 +109,33 @@ pub enum IconType {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoOwner { pub(crate) struct ChannelBadge {
pub video_owner_renderer: VideoOwnerRenderer,
}
#[serde_as]
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct VideoOwnerRenderer {
pub title: TextComponent,
pub thumbnail: Thumbnails,
#[serde_as(as = "Option<Text>")]
pub subscriber_count_text: Option<String>,
#[serde(default)]
#[serde_as(as = "VecSkipError<_>")]
pub badges: Vec<ChannelBadge>,
}
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct ChannelBadge {
pub metadata_badge_renderer: ChannelBadgeRenderer, pub metadata_badge_renderer: ChannelBadgeRenderer,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ChannelBadgeRenderer { pub(crate) struct ChannelBadgeRenderer {
pub style: ChannelBadgeStyle, pub style: ChannelBadgeStyle,
} }
#[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)] #[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")] #[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum ChannelBadgeStyle { pub(crate) enum ChannelBadgeStyle {
BadgeStyleTypeVerified, BadgeStyleTypeVerified,
BadgeStyleTypeVerifiedArtist, BadgeStyleTypeVerifiedArtist,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Alert { pub(crate) struct Alert {
pub alert_renderer: AlertRenderer, pub alert_renderer: AlertRenderer,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct AlertRenderer { pub(crate) struct AlertRenderer {
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub text: String, pub text: String,
} }
@ -167,7 +145,7 @@ pub struct AlertRenderer {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Continuation { pub(crate) struct Continuation {
/// Number of search results /// Number of search results
#[serde_as(as = "Option<JsonString>")] #[serde_as(as = "Option<JsonString>")]
pub estimated_results: Option<u64>, pub estimated_results: Option<u64>,
@ -181,30 +159,31 @@ pub struct Continuation {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ContinuationActionWrap { pub(crate) struct ContinuationActionWrap {
pub append_continuation_items_action: ContinuationAction, pub append_continuation_items_action: ContinuationAction,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ContinuationAction { pub(crate) struct ContinuationAction {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
pub continuation_items: MapResult<Vec<YouTubeListItem>>, pub continuation_items: MapResult<Vec<YouTubeListItem>>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ResponseContext { pub(crate) struct ResponseContext {
pub visitor_data: Option<String>, pub visitor_data: Option<String>,
} }
// YouTube Music // YouTube Music
/*
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MusicItem { pub(crate) struct MusicItem {
pub thumbnail: MusicThumbnailRenderer, pub thumbnail: MusicThumbnailRenderer,
#[serde(default)] #[serde(default)]
#[serde_as(deserialize_as = "DefaultOnError")] #[serde_as(deserialize_as = "DefaultOnError")]
@ -217,28 +196,28 @@ pub struct MusicItem {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MusicThumbnailRenderer { pub(crate) struct MusicThumbnailRenderer {
#[serde(alias = "croppedSquareThumbnailRenderer")] #[serde(alias = "croppedSquareThumbnailRenderer")]
pub music_thumbnail_renderer: ThumbnailsWrap, pub music_thumbnail_renderer: ThumbnailsWrap,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistItemData { pub(crate) struct PlaylistItemData {
pub video_id: String, pub video_id: String,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MusicContentsRenderer<T> { pub(crate) struct MusicContentsRenderer<T> {
pub contents: Vec<T>, pub contents: Vec<T>,
#[serde_as(as = "Option<VecSkipError<_>>")] #[serde_as(as = "Option<VecSkipError<_>>")]
pub continuations: Option<Vec<MusicContinuation>>, pub continuations: Option<Vec<MusicContinuation>>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct MusicColumn { pub(crate) struct MusicColumn {
#[serde( #[serde(
rename = "musicResponsiveListItemFlexColumnRenderer", rename = "musicResponsiveListItemFlexColumnRenderer",
alias = "musicResponsiveListItemFixedColumnRenderer" alias = "musicResponsiveListItemFixedColumnRenderer"
@ -248,19 +227,20 @@ pub struct MusicColumn {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct MusicColumnRenderer { pub(crate) struct MusicColumnRenderer {
pub text: TextComponent, pub text: TextComponent,
} }
*/
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MusicContinuation { pub(crate) struct MusicContinuation {
pub next_continuation_data: MusicContinuationData, pub next_continuation_data: MusicContinuationData,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MusicContinuationData { pub(crate) struct MusicContinuationData {
pub continuation: String, pub continuation: String,
} }
@ -312,7 +292,7 @@ impl From<Icon> for crate::model::Verification {
} }
} }
pub fn alerts_to_err(alerts: Option<Vec<Alert>>) -> ExtractionError { pub(crate) fn alerts_to_err(alerts: Option<Vec<Alert>>) -> ExtractionError {
match alerts { match alerts {
Some(alerts) => ExtractionError::ContentUnavailable( Some(alerts) => ExtractionError::ContentUnavailable(
alerts alerts

View file

@ -9,7 +9,7 @@ use crate::serializer::{text::Text, MapResult, VecLogError};
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Player { pub(crate) struct Player {
pub playability_status: PlayabilityStatus, pub playability_status: PlayabilityStatus,
pub streaming_data: Option<StreamingData>, pub streaming_data: Option<StreamingData>,
pub captions: Option<Captions>, pub captions: Option<Captions>,
@ -18,7 +18,7 @@ pub struct Player {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(tag = "status", rename_all = "SCREAMING_SNAKE_CASE")] #[serde(tag = "status", rename_all = "SCREAMING_SNAKE_CASE")]
pub enum PlayabilityStatus { pub(crate) enum PlayabilityStatus {
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
Ok { live_streamability: Option<Empty> }, Ok { live_streamability: Option<Empty> },
/// Video cant be played because of DRM / Geoblock /// Video cant be played because of DRM / Geoblock
@ -35,12 +35,12 @@ pub enum PlayabilityStatus {
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
pub struct Empty {} pub(crate) struct Empty {}
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct StreamingData { pub(crate) struct StreamingData {
#[serde_as(as = "JsonString")] #[serde_as(as = "JsonString")]
pub expires_in_seconds: u32, pub expires_in_seconds: u32,
#[serde(default)] #[serde(default)]
@ -58,7 +58,7 @@ pub struct StreamingData {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Format { pub(crate) struct Format {
pub itag: u32, pub itag: u32,
pub url: Option<String>, pub url: Option<String>,
@ -94,8 +94,6 @@ pub struct Format {
pub audio_quality: Option<AudioQuality>, pub audio_quality: Option<AudioQuality>,
#[serde_as(as = "Option<JsonString>")] #[serde_as(as = "Option<JsonString>")]
pub audio_sample_rate: Option<u32>, pub audio_sample_rate: Option<u32>,
pub audio_channels: Option<u8>,
pub loudness_db: Option<f64>,
pub audio_track: Option<AudioTrack>, pub audio_track: Option<AudioTrack>,
pub signature_cipher: Option<String>, pub signature_cipher: Option<String>,
@ -119,7 +117,7 @@ impl Format {
#[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] #[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[serde(rename_all = "lowercase")] #[serde(rename_all = "lowercase")]
pub enum Quality { pub(crate) enum Quality {
Tiny, Tiny,
Small, Small,
Medium, Medium,
@ -132,7 +130,7 @@ pub enum Quality {
} }
#[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)] #[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum AudioQuality { pub(crate) enum AudioQuality {
#[serde(rename = "AUDIO_QUALITY_LOW", alias = "low")] #[serde(rename = "AUDIO_QUALITY_LOW", alias = "low")]
Low, Low,
#[serde(rename = "AUDIO_QUALITY_MEDIUM", alias = "medium")] #[serde(rename = "AUDIO_QUALITY_MEDIUM", alias = "medium")]
@ -143,7 +141,7 @@ pub enum AudioQuality {
#[derive(Default, Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)] #[derive(Default, Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")] #[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum FormatType { pub(crate) enum FormatType {
#[default] #[default]
Default, Default,
/// This stream only works via DASH and not via progressive HTTP. /// This stream only works via DASH and not via progressive HTTP.
@ -152,13 +150,13 @@ pub enum FormatType {
#[derive(Default, Debug, Deserialize)] #[derive(Default, Debug, Deserialize)]
#[serde(default, rename_all = "camelCase")] #[serde(default, rename_all = "camelCase")]
pub struct ColorInfo { pub(crate) struct ColorInfo {
pub primaries: Primaries, pub primaries: Primaries,
} }
#[derive(Default, Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)] #[derive(Default, Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")] #[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum Primaries { pub(crate) enum Primaries {
#[default] #[default]
ColorPrimariesBt709, ColorPrimariesBt709,
ColorPrimariesBt2020, ColorPrimariesBt2020,
@ -166,7 +164,7 @@ pub enum Primaries {
#[derive(Default, Debug, Deserialize)] #[derive(Default, Debug, Deserialize)]
#[serde(default, rename_all = "camelCase")] #[serde(default, rename_all = "camelCase")]
pub struct AudioTrack { pub(crate) struct AudioTrack {
pub id: String, pub id: String,
pub display_name: String, pub display_name: String,
pub audio_is_default: bool, pub audio_is_default: bool,
@ -174,20 +172,20 @@ pub struct AudioTrack {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Captions { pub(crate) struct Captions {
pub player_captions_tracklist_renderer: PlayerCaptionsTracklistRenderer, pub player_captions_tracklist_renderer: PlayerCaptionsTracklistRenderer,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlayerCaptionsTracklistRenderer { pub(crate) struct PlayerCaptionsTracklistRenderer {
pub caption_tracks: Vec<CaptionTrack>, pub caption_tracks: Vec<CaptionTrack>,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CaptionTrack { pub(crate) struct CaptionTrack {
pub base_url: String, pub base_url: String,
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub name: String, pub name: String,
@ -197,7 +195,7 @@ pub struct CaptionTrack {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoDetails { pub(crate) struct VideoDetails {
pub video_id: String, pub video_id: String,
pub title: String, pub title: String,
#[serde_as(as = "JsonString")] #[serde_as(as = "JsonString")]

View file

@ -12,7 +12,7 @@ use super::{
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Playlist { pub(crate) struct Playlist {
pub contents: Option<Contents>, pub contents: Option<Contents>,
pub header: Option<Header>, pub header: Option<Header>,
pub sidebar: Option<Sidebar>, pub sidebar: Option<Sidebar>,
@ -23,7 +23,7 @@ pub struct Playlist {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistCont { pub(crate) struct PlaylistCont {
#[serde(default)] #[serde(default)]
#[serde_as(as = "VecSkipError<_>")] #[serde_as(as = "VecSkipError<_>")]
pub on_response_received_actions: Vec<OnResponseReceivedAction>, pub on_response_received_actions: Vec<OnResponseReceivedAction>,
@ -31,52 +31,52 @@ pub struct PlaylistCont {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Contents { pub(crate) struct Contents {
pub two_column_browse_results_renderer: ContentsRenderer<Tab>, pub two_column_browse_results_renderer: ContentsRenderer<Tab>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Tab { pub(crate) struct Tab {
pub tab_renderer: ContentRenderer<SectionList>, pub tab_renderer: ContentRenderer<SectionList>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct SectionList { pub(crate) struct SectionList {
pub section_list_renderer: ContentsRenderer<ItemSection>, pub section_list_renderer: ContentsRenderer<ItemSection>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ItemSection { pub(crate) struct ItemSection {
pub item_section_renderer: ContentsRenderer<PlaylistVideoListRenderer>, pub item_section_renderer: ContentsRenderer<PlaylistVideoListRenderer>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistVideoListRenderer { pub(crate) struct PlaylistVideoListRenderer {
pub playlist_video_list_renderer: PlaylistVideoList, pub playlist_video_list_renderer: PlaylistVideoList,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistVideoList { pub(crate) struct PlaylistVideoList {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
pub contents: MapResult<Vec<PlaylistItem>>, pub contents: MapResult<Vec<PlaylistItem>>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Header { pub(crate) struct Header {
pub playlist_header_renderer: HeaderRenderer, pub playlist_header_renderer: HeaderRenderer,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct HeaderRenderer { pub(crate) struct HeaderRenderer {
pub playlist_id: String, pub playlist_id: String,
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub title: String, pub title: String,
@ -95,48 +95,48 @@ pub struct HeaderRenderer {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistHeaderBanner { pub(crate) struct PlaylistHeaderBanner {
pub hero_playlist_thumbnail_renderer: ThumbnailsWrap, pub hero_playlist_thumbnail_renderer: ThumbnailsWrap,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Byline { pub(crate) struct Byline {
pub playlist_byline_renderer: BylineRenderer, pub playlist_byline_renderer: BylineRenderer,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct BylineRenderer { pub(crate) struct BylineRenderer {
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub text: String, pub text: String,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Sidebar { pub(crate) struct Sidebar {
pub playlist_sidebar_renderer: SidebarRenderer, pub playlist_sidebar_renderer: SidebarRenderer,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct SidebarRenderer { pub(crate) struct SidebarRenderer {
#[serde_as(as = "VecSkipError<_>")] #[serde_as(as = "VecSkipError<_>")]
pub items: Vec<SidebarItemPrimary>, pub items: Vec<SidebarItemPrimary>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct SidebarItemPrimary { pub(crate) struct SidebarItemPrimary {
pub playlist_sidebar_primary_info_renderer: SidebarPrimaryInfoRenderer, pub playlist_sidebar_primary_info_renderer: SidebarPrimaryInfoRenderer,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct SidebarPrimaryInfoRenderer { pub(crate) struct SidebarPrimaryInfoRenderer {
pub thumbnail_renderer: PlaylistThumbnailRenderer, pub thumbnail_renderer: PlaylistThumbnailRenderer,
/// - `"495", " videos"` /// - `"495", " videos"`
/// - `"3,310,996 views"` /// - `"3,310,996 views"`
@ -147,7 +147,7 @@ pub struct SidebarPrimaryInfoRenderer {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistThumbnailRenderer { pub(crate) struct PlaylistThumbnailRenderer {
// the alternative field name is used by YTM playlists // the alternative field name is used by YTM playlists
#[serde(alias = "playlistCustomThumbnailRenderer")] #[serde(alias = "playlistCustomThumbnailRenderer")]
pub playlist_video_thumbnail_renderer: ThumbnailsWrap, pub playlist_video_thumbnail_renderer: ThumbnailsWrap,
@ -156,7 +156,7 @@ pub struct PlaylistThumbnailRenderer {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub enum PlaylistItem { pub(crate) enum PlaylistItem {
/// Video in playlist /// Video in playlist
PlaylistVideoRenderer(PlaylistVideoRenderer), PlaylistVideoRenderer(PlaylistVideoRenderer),
/// Continauation items are located at the end of a list /// Continauation items are located at the end of a list
@ -174,7 +174,7 @@ pub enum PlaylistItem {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistVideoRenderer { pub(crate) struct PlaylistVideoRenderer {
pub video_id: String, pub video_id: String,
pub thumbnail: Thumbnails, pub thumbnail: Thumbnails,
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
@ -203,14 +203,14 @@ impl TryFrom<PlaylistVideoRenderer> for crate::model::PlaylistVideo {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct OnResponseReceivedAction { pub(crate) struct OnResponseReceivedAction {
pub append_continuation_items_action: AppendAction, pub append_continuation_items_action: AppendAction,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct AppendAction { pub(crate) struct AppendAction {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
pub continuation_items: MapResult<Vec<PlaylistItem>>, pub continuation_items: MapResult<Vec<PlaylistItem>>,
} }

View file

@ -11,33 +11,33 @@ use super::{
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistMusic { pub(crate) struct PlaylistMusic {
pub contents: Contents, pub contents: Contents,
pub header: Header, pub header: Header,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Contents { pub(crate) struct Contents {
pub single_column_browse_results_renderer: ContentsRenderer<Tab>, pub single_column_browse_results_renderer: ContentsRenderer<Tab>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Tab { pub(crate) struct Tab {
pub tab_renderer: ContentRenderer<SectionList>, pub tab_renderer: ContentRenderer<SectionList>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct SectionList { pub(crate) struct SectionList {
/// Includes a continuation token for fetching recommendations /// Includes a continuation token for fetching recommendations
pub section_list_renderer: MusicContentsRenderer<ItemSection>, pub section_list_renderer: MusicContentsRenderer<ItemSection>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ItemSection { pub(crate) struct ItemSection {
#[serde(alias = "musicPlaylistShelfRenderer")] #[serde(alias = "musicPlaylistShelfRenderer")]
pub music_shelf_renderer: MusicShelf, pub music_shelf_renderer: MusicShelf,
} }
@ -45,7 +45,7 @@ pub struct ItemSection {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MusicShelf { pub(crate) struct MusicShelf {
/// Playlist ID (only for playlists) /// Playlist ID (only for playlists)
pub playlist_id: Option<String>, pub playlist_id: Option<String>,
#[serde_as(as = "VecSkipError<_>")] #[serde_as(as = "VecSkipError<_>")]
@ -57,20 +57,20 @@ pub struct MusicShelf {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistMusicItem { pub(crate) struct PlaylistMusicItem {
pub music_responsive_list_item_renderer: MusicItem, pub music_responsive_list_item_renderer: MusicItem,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Header { pub(crate) struct Header {
pub music_detail_header_renderer: HeaderRenderer, pub music_detail_header_renderer: HeaderRenderer,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct HeaderRenderer { pub(crate) struct HeaderRenderer {
#[serde_as(as = "crate::serializer::text::Text")] #[serde_as(as = "crate::serializer::text::Text")]
pub title: String, pub title: String,
/// Content type + Channel/Artist + Year. /// Content type + Channel/Artist + Year.

View file

@ -6,7 +6,7 @@ use super::video_item::YouTubeListRendererWrap;
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Search { pub(crate) struct Search {
#[serde_as(as = "Option<JsonString>")] #[serde_as(as = "Option<JsonString>")]
pub estimated_results: Option<u64>, pub estimated_results: Option<u64>,
pub contents: Contents, pub contents: Contents,
@ -14,12 +14,12 @@ pub struct Search {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Contents { pub(crate) struct Contents {
pub two_column_search_results_renderer: TwoColumnSearchResultsRenderer, pub two_column_search_results_renderer: TwoColumnSearchResultsRenderer,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct TwoColumnSearchResultsRenderer { pub(crate) struct TwoColumnSearchResultsRenderer {
pub primary_contents: YouTubeListRendererWrap, pub primary_contents: YouTubeListRendererWrap,
} }

View file

@ -5,33 +5,33 @@ use super::{video_item::YouTubeListRendererWrap, ContentRenderer, ResponseContex
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Startpage { pub(crate) struct Startpage {
pub contents: Contents, pub contents: Contents,
pub response_context: ResponseContext, pub response_context: ResponseContext,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Trending { pub(crate) struct Trending {
pub contents: Contents, pub contents: Contents,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Contents { pub(crate) struct Contents {
pub two_column_browse_results_renderer: BrowseResults, pub two_column_browse_results_renderer: BrowseResults,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct BrowseResults { pub(crate) struct BrowseResults {
#[serde_as(as = "VecSkipError<_>")] #[serde_as(as = "VecSkipError<_>")]
pub tabs: Vec<Tab<YouTubeListRendererWrap>>, pub tabs: Vec<Tab<YouTubeListRendererWrap>>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Tab<T> { pub(crate) struct Tab<T> {
pub tab_renderer: ContentRenderer<T>, pub tab_renderer: ContentRenderer<T>,
} }

View file

@ -6,14 +6,14 @@ use crate::model::UrlTarget;
/// navigation/resolve_url response model /// navigation/resolve_url response model
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ResolvedUrl { pub(crate) struct ResolvedUrl {
pub endpoint: NavigationEndpoint, pub endpoint: NavigationEndpoint,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize, Default)] #[derive(Debug, Deserialize, Default)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct NavigationEndpoint { pub(crate) struct NavigationEndpoint {
#[serde(default)] #[serde(default)]
#[serde_as(deserialize_as = "DefaultOnError")] #[serde_as(deserialize_as = "DefaultOnError")]
pub watch_endpoint: Option<WatchEndpoint>, pub watch_endpoint: Option<WatchEndpoint>,
@ -30,7 +30,7 @@ pub struct NavigationEndpoint {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct WatchEndpoint { pub(crate) struct WatchEndpoint {
pub video_id: String, pub video_id: String,
#[serde(default)] #[serde(default)]
pub start_time_seconds: u32, pub start_time_seconds: u32,
@ -38,43 +38,43 @@ pub struct WatchEndpoint {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct BrowseEndpoint { pub(crate) struct BrowseEndpoint {
pub browse_id: String, pub browse_id: String,
pub browse_endpoint_context_supported_configs: Option<BrowseEndpointConfig>, pub browse_endpoint_context_supported_configs: Option<BrowseEndpointConfig>,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct UrlEndpoint { pub(crate) struct UrlEndpoint {
pub url: String, pub url: String,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct BrowseEndpointConfig { pub(crate) struct BrowseEndpointConfig {
pub browse_endpoint_context_music_config: BrowseEndpointMusicConfig, pub browse_endpoint_context_music_config: BrowseEndpointMusicConfig,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct BrowseEndpointMusicConfig { pub(crate) struct BrowseEndpointMusicConfig {
pub page_type: PageType, pub page_type: PageType,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommandMetadata { pub(crate) struct CommandMetadata {
pub web_command_metadata: WebCommandMetadata, pub web_command_metadata: WebCommandMetadata,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct WebCommandMetadata { pub(crate) struct WebCommandMetadata {
pub web_page_type: PageType, pub web_page_type: PageType,
} }
#[derive(Debug, Clone, Copy, Deserialize, PartialEq, Eq)] #[derive(Debug, Clone, Copy, Deserialize, PartialEq, Eq)]
pub enum PageType { pub(crate) enum PageType {
#[serde(rename = "MUSIC_PAGE_TYPE_ARTIST")] #[serde(rename = "MUSIC_PAGE_TYPE_ARTIST")]
Artist, Artist,
#[serde(rename = "MUSIC_PAGE_TYPE_ALBUM")] #[serde(rename = "MUSIC_PAGE_TYPE_ALBUM")]
@ -89,7 +89,7 @@ pub enum PageType {
} }
impl PageType { impl PageType {
pub fn to_url_target(self, id: String) -> UrlTarget { pub(crate) fn to_url_target(self, id: String) -> UrlTarget {
match self { match self {
PageType::Artist => UrlTarget::Channel { id }, PageType::Artist => UrlTarget::Channel { id },
PageType::Album => UrlTarget::Playlist { id }, PageType::Album => UrlTarget::Playlist { id },

View file

@ -4,6 +4,7 @@ use serde::Deserialize;
use serde_with::serde_as; use serde_with::serde_as;
use serde_with::{DefaultOnError, VecSkipError}; use serde_with::{DefaultOnError, VecSkipError};
use crate::serializer::text::TextComponent;
use crate::serializer::{ use crate::serializer::{
ignore_any, ignore_any,
text::{AccessibilityText, AttributedText, Text, TextComponents}, text::{AccessibilityText, AttributedText, Text, TextComponents},
@ -12,9 +13,9 @@ use crate::serializer::{
use super::{ use super::{
url_endpoint::BrowseEndpoint, ContinuationEndpoint, ContinuationItemRenderer, Icon, url_endpoint::BrowseEndpoint, ContinuationEndpoint, ContinuationItemRenderer, Icon,
MusicContinuation, Thumbnails, VideoOwner, MusicContinuation, Thumbnails,
}; };
use super::{ResponseContext, YouTubeListItem}; use super::{ChannelBadge, ResponseContext, YouTubeListItem};
/* /*
#VIDEO DETAILS #VIDEO DETAILS
@ -24,7 +25,7 @@ use super::{ResponseContext, YouTubeListItem};
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoDetails { pub(crate) struct VideoDetails {
/// Video metadata + recommended videos /// Video metadata + recommended videos
pub contents: Option<Contents>, pub contents: Option<Contents>,
/// Video ID /// Video ID
@ -38,13 +39,13 @@ pub struct VideoDetails {
/// Video details main object, contains video metadata and recommended videos /// Video details main object, contains video metadata and recommended videos
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Contents { pub(crate) struct Contents {
pub two_column_watch_next_results: TwoColumnWatchNextResults, pub two_column_watch_next_results: TwoColumnWatchNextResults,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct TwoColumnWatchNextResults { pub(crate) struct TwoColumnWatchNextResults {
/// Metadata about the video /// Metadata about the video
pub results: VideoResultsWrap, pub results: VideoResultsWrap,
/// Video recommendations /// Video recommendations
@ -56,7 +57,7 @@ pub struct TwoColumnWatchNextResults {
/// Metadata about the video /// Metadata about the video
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoResultsWrap { pub(crate) struct VideoResultsWrap {
pub results: VideoResults, pub results: VideoResults,
} }
@ -64,7 +65,7 @@ pub struct VideoResultsWrap {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoResults { pub(crate) struct VideoResults {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
pub contents: MapResult<Vec<VideoResultsItem>>, pub contents: MapResult<Vec<VideoResultsItem>>,
} }
@ -73,7 +74,7 @@ pub struct VideoResults {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub enum VideoResultsItem { pub(crate) enum VideoResultsItem {
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
VideoPrimaryInfoRenderer { VideoPrimaryInfoRenderer {
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
@ -107,14 +108,14 @@ pub enum VideoResultsItem {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ViewCount { pub(crate) struct ViewCount {
pub video_view_count_renderer: ViewCountRenderer, pub video_view_count_renderer: ViewCountRenderer,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ViewCountRenderer { pub(crate) struct ViewCountRenderer {
/// View count (`232,975,196 views`) /// View count (`232,975,196 views`)
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub view_count: String, pub view_count: String,
@ -125,7 +126,7 @@ pub struct ViewCountRenderer {
/// Like/Dislike buttons /// Like/Dislike buttons
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoActions { pub(crate) struct VideoActions {
pub menu_renderer: VideoActionsMenu, pub menu_renderer: VideoActionsMenu,
} }
@ -133,7 +134,7 @@ pub struct VideoActions {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoActionsMenu { pub(crate) struct VideoActionsMenu {
#[serde_as(as = "VecSkipError<_>")] #[serde_as(as = "VecSkipError<_>")]
pub top_level_buttons: Vec<TopLevelButton>, pub top_level_buttons: Vec<TopLevelButton>,
} }
@ -146,7 +147,7 @@ pub struct VideoActionsMenu {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub enum TopLevelButton { pub(crate) enum TopLevelButton {
ToggleButtonRenderer(ToggleButton), ToggleButtonRenderer(ToggleButton),
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
SegmentedLikeDislikeButtonRenderer { SegmentedLikeDislikeButtonRenderer {
@ -157,7 +158,7 @@ pub enum TopLevelButton {
/// Like/Dislike button /// Like/Dislike button
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ToggleButtonWrap { pub(crate) struct ToggleButtonWrap {
pub toggle_button_renderer: ToggleButton, pub toggle_button_renderer: ToggleButton,
} }
@ -165,7 +166,7 @@ pub struct ToggleButtonWrap {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ToggleButton { pub(crate) struct ToggleButton {
/// Icon type: `LIKE` / `DISLIKE` /// Icon type: `LIKE` / `DISLIKE`
pub default_icon: Icon, pub default_icon: Icon,
/// Number of likes (`like this video along with 4,010,156 other people`) /// Number of likes (`like this video along with 4,010,156 other people`)
@ -175,11 +176,32 @@ pub struct ToggleButton {
pub accessibility_data: String, pub accessibility_data: String,
} }
/// Video channel information
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct VideoOwner {
pub video_owner_renderer: VideoOwnerRenderer,
}
/// Video channel information
#[serde_as]
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct VideoOwnerRenderer {
pub title: TextComponent,
pub thumbnail: Thumbnails,
#[serde_as(as = "Option<Text>")]
pub subscriber_count_text: Option<String>,
#[serde(default)]
#[serde_as(as = "VecSkipError<_>")]
pub badges: Vec<ChannelBadge>,
}
/// Shows additional video metadata. Its only known use is for /// Shows additional video metadata. Its only known use is for
/// the Creative Commonse License. /// the Creative Commonse License.
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MetadataRowContainer { pub(crate) struct MetadataRowContainer {
pub metadata_row_container_renderer: MetadataRowContainerRenderer, pub metadata_row_container_renderer: MetadataRowContainerRenderer,
} }
@ -187,14 +209,14 @@ pub struct MetadataRowContainer {
/// the Creative Commonse License. /// the Creative Commonse License.
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MetadataRowContainerRenderer { pub(crate) struct MetadataRowContainerRenderer {
pub rows: Vec<MetadataRow>, pub rows: Vec<MetadataRow>,
} }
/// Additional video metadata item (Creative Commons License) /// Additional video metadata item (Creative Commons License)
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MetadataRow { pub(crate) struct MetadataRow {
pub metadata_row_renderer: MetadataRowRenderer, pub metadata_row_renderer: MetadataRowRenderer,
} }
@ -202,7 +224,7 @@ pub struct MetadataRow {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MetadataRowRenderer { pub(crate) struct MetadataRowRenderer {
// `License` // `License`
// #[serde_as(as = "Text")] // #[serde_as(as = "Text")]
// pub title: String, // pub title: String,
@ -217,13 +239,13 @@ pub struct MetadataRowRenderer {
/// Contains current video ID /// Contains current video ID
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CurrentVideoEndpoint { pub(crate) struct CurrentVideoEndpoint {
pub watch_endpoint: CurrentVideoWatchEndpoint, pub watch_endpoint: CurrentVideoWatchEndpoint,
} }
/// Contains current video ID /// Contains current video ID
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CurrentVideoWatchEndpoint { pub(crate) struct CurrentVideoWatchEndpoint {
pub video_id: String, pub video_id: String,
} }
@ -234,7 +256,7 @@ pub struct CurrentVideoWatchEndpoint {
#[serde_as] #[serde_as]
#[derive(Default, Debug, Deserialize)] #[derive(Default, Debug, Deserialize)]
#[serde(rename_all = "kebab-case", tag = "sectionIdentifier")] #[serde(rename_all = "kebab-case", tag = "sectionIdentifier")]
pub enum ItemSection { pub(crate) enum ItemSection {
CommentsEntryPoint { CommentsEntryPoint {
#[serde_as(as = "VecSkipError<_>")] #[serde_as(as = "VecSkipError<_>")]
contents: Vec<ItemSectionCommentCount>, contents: Vec<ItemSectionCommentCount>,
@ -250,7 +272,7 @@ pub enum ItemSection {
/// Item section containing comment count /// Item section containing comment count
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ItemSectionCommentCount { pub(crate) struct ItemSectionCommentCount {
pub comments_entry_point_header_renderer: CommentsEntryPointHeaderRenderer, pub comments_entry_point_header_renderer: CommentsEntryPointHeaderRenderer,
} }
@ -258,7 +280,7 @@ pub struct ItemSectionCommentCount {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentsEntryPointHeaderRenderer { pub(crate) struct CommentsEntryPointHeaderRenderer {
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub comment_count: String, pub comment_count: String,
} }
@ -266,14 +288,14 @@ pub struct CommentsEntryPointHeaderRenderer {
/// Item section containing comments ctoken /// Item section containing comments ctoken
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ItemSectionComments { pub(crate) struct ItemSectionComments {
pub continuation_item_renderer: ContinuationItemRenderer, pub continuation_item_renderer: ContinuationItemRenderer,
} }
/// Video recommendations /// Video recommendations
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct RecommendationResultsWrap { pub(crate) struct RecommendationResultsWrap {
pub secondary_results: RecommendationResults, pub secondary_results: RecommendationResults,
} }
@ -281,7 +303,7 @@ pub struct RecommendationResultsWrap {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct RecommendationResults { pub(crate) struct RecommendationResults {
/// Can be `None` for age-restricted videos /// Can be `None` for age-restricted videos
#[serde_as(as = "Option<VecLogError<_>>")] #[serde_as(as = "Option<VecLogError<_>>")]
pub results: Option<MapResult<Vec<YouTubeListItem>>>, pub results: Option<MapResult<Vec<YouTubeListItem>>>,
@ -293,7 +315,7 @@ pub struct RecommendationResults {
/// and the comment section. /// and the comment section.
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct EngagementPanel { pub(crate) struct EngagementPanel {
pub engagement_panel_section_list_renderer: EngagementPanelRenderer, pub engagement_panel_section_list_renderer: EngagementPanelRenderer,
} }
@ -301,7 +323,7 @@ pub struct EngagementPanel {
/// and the comment section. /// and the comment section.
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "kebab-case", tag = "targetId")] #[serde(rename_all = "kebab-case", tag = "targetId")]
pub enum EngagementPanelRenderer { pub(crate) enum EngagementPanelRenderer {
/// Chapter markers /// Chapter markers
EngagementPanelMacroMarkersDescriptionChapters { content: ChapterMarkersContent }, EngagementPanelMacroMarkersDescriptionChapters { content: ChapterMarkersContent },
/// Comment section (contains no comments, but the /// Comment section (contains no comments, but the
@ -320,7 +342,7 @@ pub enum EngagementPanelRenderer {
/// Chapter markers /// Chapter markers
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ChapterMarkersContent { pub(crate) struct ChapterMarkersContent {
pub macro_markers_list_renderer: MacroMarkersListRenderer, pub macro_markers_list_renderer: MacroMarkersListRenderer,
} }
@ -328,7 +350,7 @@ pub struct ChapterMarkersContent {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MacroMarkersListRenderer { pub(crate) struct MacroMarkersListRenderer {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
pub contents: MapResult<Vec<MacroMarkersListItem>>, pub contents: MapResult<Vec<MacroMarkersListItem>>,
} }
@ -336,7 +358,7 @@ pub struct MacroMarkersListRenderer {
/// Chapter marker /// Chapter marker
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MacroMarkersListItem { pub(crate) struct MacroMarkersListItem {
pub macro_markers_list_item_renderer: MacroMarkersListItemRenderer, pub macro_markers_list_item_renderer: MacroMarkersListItemRenderer,
} }
@ -344,7 +366,7 @@ pub struct MacroMarkersListItem {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MacroMarkersListItemRenderer { pub(crate) struct MacroMarkersListItemRenderer {
/// Contains chapter start time in seconds /// Contains chapter start time in seconds
pub on_tap: MacroMarkersListItemOnTap, pub on_tap: MacroMarkersListItemOnTap,
#[serde(default)] #[serde(default)]
@ -357,13 +379,13 @@ pub struct MacroMarkersListItemRenderer {
/// Contains chapter start time in seconds /// Contains chapter start time in seconds
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MacroMarkersListItemOnTap { pub(crate) struct MacroMarkersListItemOnTap {
pub watch_endpoint: MacroMarkersListItemWatchEndpoint, pub watch_endpoint: MacroMarkersListItemWatchEndpoint,
} }
/// Contains chapter start time in seconds /// Contains chapter start time in seconds
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct MacroMarkersListItemWatchEndpoint { pub(crate) struct MacroMarkersListItemWatchEndpoint {
/// Chapter start time in seconds /// Chapter start time in seconds
pub start_time_seconds: u32, pub start_time_seconds: u32,
} }
@ -372,7 +394,7 @@ pub struct MacroMarkersListItemWatchEndpoint {
/// (contains continuation tokens for fetching top/latest comments) /// (contains continuation tokens for fetching top/latest comments)
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentItemSectionHeader { pub(crate) struct CommentItemSectionHeader {
pub engagement_panel_title_header_renderer: CommentItemSectionHeaderRenderer, pub engagement_panel_title_header_renderer: CommentItemSectionHeaderRenderer,
} }
@ -381,21 +403,14 @@ pub struct CommentItemSectionHeader {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentItemSectionHeaderRenderer { pub(crate) struct CommentItemSectionHeaderRenderer {
/// Approximate comment count (e.g. `81`, `2.2K`, `705K`)
///
/// The accurate count is included in the first comment response.
///
/// Is `None` if there are no comments.
#[serde_as(as = "Option<Text>")]
pub contextual_info: Option<String>,
pub menu: CommentItemSectionHeaderMenu, pub menu: CommentItemSectionHeaderMenu,
} }
/// Comment section menu /// Comment section menu
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentItemSectionHeaderMenu { pub(crate) struct CommentItemSectionHeaderMenu {
pub sort_filter_sub_menu_renderer: CommentItemSectionHeaderMenuRenderer, pub sort_filter_sub_menu_renderer: CommentItemSectionHeaderMenuRenderer,
} }
@ -406,14 +421,14 @@ pub struct CommentItemSectionHeaderMenu {
/// - Latest comments /// - Latest comments
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentItemSectionHeaderMenuRenderer { pub(crate) struct CommentItemSectionHeaderMenuRenderer {
pub sub_menu_items: Vec<CommentItemSectionHeaderMenuItem>, pub sub_menu_items: Vec<CommentItemSectionHeaderMenuItem>,
} }
/// Comment section menu item /// Comment section menu item
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentItemSectionHeaderMenuItem { pub(crate) struct CommentItemSectionHeaderMenuItem {
/// Continuation token for fetching comments /// Continuation token for fetching comments
pub service_endpoint: ContinuationEndpoint, pub service_endpoint: ContinuationEndpoint,
} }
@ -426,7 +441,7 @@ pub struct CommentItemSectionHeaderMenuItem {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoComments { pub(crate) struct VideoComments {
/// - Initial response: 2*reloadContinuationItemsCommand /// - Initial response: 2*reloadContinuationItemsCommand
/// - 1*commentsHeaderRenderer: number of comments /// - 1*commentsHeaderRenderer: number of comments
/// - n*commentThreadRenderer, continuationItemRenderer: /// - n*commentThreadRenderer, continuationItemRenderer:
@ -444,7 +459,7 @@ pub struct VideoComments {
/// Video comments continuation /// Video comments continuation
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentsContItem { pub(crate) struct CommentsContItem {
#[serde(alias = "reloadContinuationItemsCommand")] #[serde(alias = "reloadContinuationItemsCommand")]
pub append_continuation_items_action: AppendComments, pub append_continuation_items_action: AppendComments,
} }
@ -453,7 +468,7 @@ pub struct CommentsContItem {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct AppendComments { pub(crate) struct AppendComments {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
pub continuation_items: MapResult<Vec<CommentListItem>>, pub continuation_items: MapResult<Vec<CommentListItem>>,
} }
@ -461,7 +476,7 @@ pub struct AppendComments {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub enum CommentListItem { pub(crate) enum CommentListItem {
/// Top-level comment /// Top-level comment
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
CommentThreadRenderer { CommentThreadRenderer {
@ -491,14 +506,14 @@ pub enum CommentListItem {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Comment { pub(crate) struct Comment {
pub comment_renderer: CommentRenderer, pub comment_renderer: CommentRenderer,
} }
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentRenderer { pub(crate) struct CommentRenderer {
/// Author name /// Author name
/// ///
/// There may be comments with missing authors (possibly deleted users?) /// There may be comments with missing authors (possibly deleted users?)
@ -529,13 +544,13 @@ pub struct CommentRenderer {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct AuthorEndpoint { pub(crate) struct AuthorEndpoint {
pub browse_endpoint: BrowseEndpoint, pub browse_endpoint: BrowseEndpoint,
} }
#[derive(Default, Clone, Copy, Debug, Deserialize, PartialEq, Eq)] #[derive(Default, Clone, Copy, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")] #[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum CommentPriority { pub(crate) enum CommentPriority {
/// Default rendering priority /// Default rendering priority
#[default] #[default]
RenderingPriorityUnknown, RenderingPriorityUnknown,
@ -547,7 +562,7 @@ pub enum CommentPriority {
/// for fetching them. /// for fetching them.
#[derive(Default, Debug, Deserialize)] #[derive(Default, Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct Replies { pub(crate) struct Replies {
pub comment_replies_renderer: RepliesRenderer, pub comment_replies_renderer: RepliesRenderer,
} }
@ -556,7 +571,7 @@ pub struct Replies {
#[serde_as] #[serde_as]
#[derive(Default, Debug, Deserialize)] #[derive(Default, Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct RepliesRenderer { pub(crate) struct RepliesRenderer {
#[serde_as(as = "VecSkipError<_>")] #[serde_as(as = "VecSkipError<_>")]
pub contents: Vec<CommentListItem>, pub contents: Vec<CommentListItem>,
} }
@ -565,7 +580,7 @@ pub struct RepliesRenderer {
/// Contains the CreatorHeart. /// Contains the CreatorHeart.
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentActionButtons { pub(crate) struct CommentActionButtons {
pub comment_action_buttons_renderer: CommentActionButtonsRenderer, pub comment_action_buttons_renderer: CommentActionButtonsRenderer,
} }
@ -573,7 +588,7 @@ pub struct CommentActionButtons {
/// Contains the CreatorHeart. /// Contains the CreatorHeart.
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CommentActionButtonsRenderer { pub(crate) struct CommentActionButtonsRenderer {
pub like_button: ToggleButtonWrap, pub like_button: ToggleButtonWrap,
pub creator_heart: Option<CreatorHeart>, pub creator_heart: Option<CreatorHeart>,
} }
@ -581,27 +596,27 @@ pub struct CommentActionButtonsRenderer {
/// Video creators can endorse comments by marking them with a ❤️. /// Video creators can endorse comments by marking them with a ❤️.
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CreatorHeart { pub(crate) struct CreatorHeart {
pub creator_heart_renderer: CreatorHeartRenderer, pub creator_heart_renderer: CreatorHeartRenderer,
} }
/// Video creators can endorse comments by marking them with a ❤️. /// Video creators can endorse comments by marking them with a ❤️.
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct CreatorHeartRenderer { pub(crate) struct CreatorHeartRenderer {
pub is_hearted: bool, pub is_hearted: bool,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct AuthorCommentBadge { pub(crate) struct AuthorCommentBadge {
pub author_comment_badge_renderer: AuthorCommentBadgeRenderer, pub author_comment_badge_renderer: AuthorCommentBadgeRenderer,
} }
/// YouTube channel badge (verified) of the comment author /// YouTube channel badge (verified) of the comment author
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct AuthorCommentBadgeRenderer { pub(crate) struct AuthorCommentBadgeRenderer {
/// Verified: `CHECK` /// Verified: `CHECK`
/// ///
/// Artist: `OFFICIAL_ARTIST_BADGE` /// Artist: `OFFICIAL_ARTIST_BADGE`

View file

@ -18,7 +18,7 @@ use crate::{
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub enum YouTubeListItem { pub(crate) enum YouTubeListItem {
#[serde(alias = "gridVideoRenderer", alias = "compactVideoRenderer")] #[serde(alias = "gridVideoRenderer", alias = "compactVideoRenderer")]
VideoRenderer(VideoRenderer), VideoRenderer(VideoRenderer),
@ -73,7 +73,7 @@ pub enum YouTubeListItem {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoRenderer { pub(crate) struct VideoRenderer {
pub video_id: String, pub video_id: String,
pub thumbnail: Thumbnails, pub thumbnail: Thumbnails,
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
@ -114,7 +114,7 @@ pub struct VideoRenderer {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct PlaylistRenderer { pub(crate) struct PlaylistRenderer {
pub playlist_id: String, pub playlist_id: String,
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub title: String, pub title: String,
@ -140,7 +140,7 @@ pub struct PlaylistRenderer {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ChannelRenderer { pub(crate) struct ChannelRenderer {
pub channel_id: String, pub channel_id: String,
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub title: String, pub title: String,
@ -164,7 +164,7 @@ pub struct ChannelRenderer {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct YouTubeListRendererWrap { pub(crate) struct YouTubeListRendererWrap {
#[serde(alias = "richGridRenderer")] #[serde(alias = "richGridRenderer")]
pub section_list_renderer: YouTubeListRenderer, pub section_list_renderer: YouTubeListRenderer,
} }
@ -172,7 +172,7 @@ pub struct YouTubeListRendererWrap {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct YouTubeListRenderer { pub(crate) struct YouTubeListRenderer {
#[serde_as(as = "VecLogError<_>")] #[serde_as(as = "VecLogError<_>")]
pub contents: MapResult<Vec<YouTubeListItem>>, pub contents: MapResult<Vec<YouTubeListItem>>,
} }
@ -180,7 +180,7 @@ pub struct YouTubeListRenderer {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct UpcomingEventData { pub(crate) struct UpcomingEventData {
/// Unixtime in seconds /// Unixtime in seconds
#[serde_as(as = "JsonString")] #[serde_as(as = "JsonString")]
pub start_time: i64, pub start_time: i64,
@ -188,7 +188,7 @@ pub struct UpcomingEventData {
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct TimeOverlay { pub(crate) struct TimeOverlay {
pub thumbnail_overlay_time_status_renderer: TimeOverlayRenderer, pub thumbnail_overlay_time_status_renderer: TimeOverlayRenderer,
} }
@ -196,7 +196,7 @@ pub struct TimeOverlay {
/// show certain video properties (e.g. active livestream) /// show certain video properties (e.g. active livestream)
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoBadge { pub(crate) struct VideoBadge {
pub metadata_badge_renderer: VideoBadgeRenderer, pub metadata_badge_renderer: VideoBadgeRenderer,
} }
@ -204,13 +204,13 @@ pub struct VideoBadge {
/// show certain video properties (e.g. active livestream) /// show certain video properties (e.g. active livestream)
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct VideoBadgeRenderer { pub(crate) struct VideoBadgeRenderer {
pub style: VideoBadgeStyle, pub style: VideoBadgeStyle,
} }
#[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)] #[derive(Clone, Copy, Debug, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")] #[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum VideoBadgeStyle { pub(crate) enum VideoBadgeStyle {
/// Active livestream /// Active livestream
BadgeStyleTypeLiveNow, BadgeStyleTypeLiveNow,
} }
@ -218,7 +218,7 @@ pub enum VideoBadgeStyle {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct TimeOverlayRenderer { pub(crate) struct TimeOverlayRenderer {
/// `29:54` /// `29:54`
/// ///
/// Is `LIVE` in case of a livestream and `SHORTS` in case of a short video /// Is `LIVE` in case of a livestream and `SHORTS` in case of a short video
@ -231,7 +231,7 @@ pub struct TimeOverlayRenderer {
#[derive(Default, Clone, Copy, Debug, Deserialize, PartialEq, Eq)] #[derive(Default, Clone, Copy, Debug, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")] #[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum TimeOverlayStyle { pub(crate) enum TimeOverlayStyle {
#[default] #[default]
Default, Default,
Live, Live,
@ -241,20 +241,20 @@ pub enum TimeOverlayStyle {
#[serde_as] #[serde_as]
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct DetailedMetadataSnippet { pub(crate) struct DetailedMetadataSnippet {
#[serde_as(as = "Text")] #[serde_as(as = "Text")]
pub snippet_text: String, pub snippet_text: String,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ChannelThumbnailSupportedRenderers { pub(crate) struct ChannelThumbnailSupportedRenderers {
pub channel_thumbnail_with_link_renderer: ChannelThumbnailWithLinkRenderer, pub channel_thumbnail_with_link_renderer: ChannelThumbnailWithLinkRenderer,
} }
#[derive(Debug, Deserialize)] #[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct ChannelThumbnailWithLinkRenderer { pub(crate) struct ChannelThumbnailWithLinkRenderer {
pub thumbnail: Thumbnails, pub thumbnail: Thumbnails,
} }
@ -293,7 +293,7 @@ impl IsShort for Vec<TimeOverlay> {
/// Result of mapping a list of different YouTube enities /// Result of mapping a list of different YouTube enities
/// (videos, channels, playlists) /// (videos, channels, playlists)
#[derive(Debug)] #[derive(Debug)]
pub struct YouTubeListMapper<T> { pub(crate) struct YouTubeListMapper<T> {
lang: Language, lang: Language,
pub items: Vec<T>, pub items: Vec<T>,
pub warnings: Vec<String>, pub warnings: Vec<String>,
@ -442,7 +442,7 @@ impl YouTubeListMapper<YouTubeItem> {
} }
} }
pub fn map_response(&mut self, mut res: MapResult<Vec<YouTubeListItem>>) { pub(crate) fn map_response(&mut self, mut res: MapResult<Vec<YouTubeListItem>>) {
self.warnings.append(&mut res.warnings); self.warnings.append(&mut res.warnings);
res.c.into_iter().for_each(|item| self.map_item(item)); res.c.into_iter().for_each(|item| self.map_item(item));
} }
@ -471,7 +471,7 @@ impl YouTubeListMapper<VideoItem> {
} }
} }
pub fn map_response(&mut self, mut res: MapResult<Vec<YouTubeListItem>>) { pub(crate) fn map_response(&mut self, mut res: MapResult<Vec<YouTubeListItem>>) {
self.warnings.append(&mut res.warnings); self.warnings.append(&mut res.warnings);
res.c.into_iter().for_each(|item| self.map_item(item)); res.c.into_iter().for_each(|item| self.map_item(item));
} }
@ -500,7 +500,7 @@ impl YouTubeListMapper<PlaylistItem> {
} }
} }
pub fn map_response(&mut self, mut res: MapResult<Vec<YouTubeListItem>>) { pub(crate) fn map_response(&mut self, mut res: MapResult<Vec<YouTubeListItem>>) {
self.warnings.append(&mut res.warnings); self.warnings.append(&mut res.warnings);
res.c.into_iter().for_each(|item| self.map_item(item)); res.c.into_iter().for_each(|item| self.map_item(item));
} }

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: Verified,
description: "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON\'T DO PAID VIDEO SPONSORSHIPS, DON\'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don\'t be offended if I don\'t have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA", description: "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON\'T DO PAID VIDEO SPONSORSHIPS, DON\'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don\'t be offended if I don\'t have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA",
tags: [ tags: [
"electronics", "electronics",

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: Verified,
description: "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON\'T DO PAID VIDEO SPONSORSHIPS, DON\'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don\'t be offended if I don\'t have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA", description: "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON\'T DO PAID VIDEO SPONSORSHIPS, DON\'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don\'t be offended if I don\'t have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA",
tags: [ tags: [
"electronics", "electronics",

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: Verified,
description: "Hi, Im Tina, aka Doobydobap!\n\nFood is the medium I use to tell stories and connect with people who share the same passion as I do. Whether its because youre hungry at midnight or trying to learn how to cook, I hope you enjoy watching my content and recipes. Don\'t yuck my yum!\n\nwww.doobydobap.com\n", description: "Hi, Im Tina, aka Doobydobap!\n\nFood is the medium I use to tell stories and connect with people who share the same passion as I do. Whether its because youre hungry at midnight or trying to learn how to cook, I hope you enjoy watching my content and recipes. Don\'t yuck my yum!\n\nwww.doobydobap.com\n",
tags: [], tags: [],
vanity_url: Some("https://www.youtube.com/c/Doobydobap"), vanity_url: Some("https://www.youtube.com/c/Doobydobap"),

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: Verified,
description: "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON\'T DO PAID VIDEO SPONSORSHIPS, DON\'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don\'t be offended if I don\'t have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA", description: "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON\'T DO PAID VIDEO SPONSORSHIPS, DON\'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don\'t be offended if I don\'t have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA",
tags: [ tags: [
"electronics", "electronics",

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: Verified,
description: "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON\'T DO PAID VIDEO SPONSORSHIPS, DON\'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don\'t be offended if I don\'t have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA", description: "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON\'T DO PAID VIDEO SPONSORSHIPS, DON\'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don\'t be offended if I don\'t have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA",
tags: [ tags: [
"electronics", "electronics",

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: None,
description: "", description: "",
tags: [], tags: [],
vanity_url: None, vanity_url: None,

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: Verified,
description: "Welcome to The Good Life by Sensual Musique.\nThe second official channel of Sensual Musique. You can find a lot of music, live streams and some other things on this channel. Stay tuned :)\n\nSubmit your music here: submit.sensualmusiquenetwork@gmail.com", description: "Welcome to The Good Life by Sensual Musique.\nThe second official channel of Sensual Musique. You can find a lot of music, live streams and some other things on this channel. Stay tuned :)\n\nSubmit your music here: submit.sensualmusiquenetwork@gmail.com",
tags: [ tags: [
"live radio", "live radio",

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: None,
description: "", description: "",
tags: [], tags: [],
vanity_url: None, vanity_url: None,

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: Verified,
description: "Hi, Im Tina, aka Doobydobap!\n\nFood is the medium I use to tell stories and connect with people who share the same passion as I do. Whether its because youre hungry at midnight or trying to learn how to cook, I hope you enjoy watching my content and recipes. Don\'t yuck my yum!\n\nwww.doobydobap.com\n", description: "Hi, Im Tina, aka Doobydobap!\n\nFood is the medium I use to tell stories and connect with people who share the same passion as I do. Whether its because youre hungry at midnight or trying to learn how to cook, I hope you enjoy watching my content and recipes. Don\'t yuck my yum!\n\nwww.doobydobap.com\n",
tags: [], tags: [],
vanity_url: Some("https://www.youtube.com/c/Doobydobap"), vanity_url: Some("https://www.youtube.com/c/Doobydobap"),

View file

@ -23,6 +23,7 @@ Channel(
height: 176, height: 176,
), ),
], ],
verification: Verified,
description: "BRAND NEW SECOND CHANNEL: https://youtube.com/channel/UCcsQYra-bISsFxNqnd6Javw\n\nJoin my Discord: https://discord.gg/2YcarWsc8S\n", description: "BRAND NEW SECOND CHANNEL: https://youtube.com/channel/UCcsQYra-bISsFxNqnd6Javw\n\nJoin my Discord: https://discord.gg/2YcarWsc8S\n",
tags: [ tags: [
"politics", "politics",

View file

@ -31,7 +31,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -68,7 +68,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -105,7 +105,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -142,7 +142,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -179,7 +179,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -216,7 +216,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -253,7 +253,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -290,7 +290,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -327,7 +327,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -364,7 +364,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -401,7 +401,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -438,7 +438,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -475,7 +475,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -512,7 +512,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -549,7 +549,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -586,7 +586,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -623,7 +623,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -660,7 +660,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -697,7 +697,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -26,7 +26,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -58,7 +58,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -95,7 +95,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -127,7 +127,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -164,7 +164,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -201,7 +201,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -238,7 +238,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -270,7 +270,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -302,7 +302,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -334,7 +334,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -366,7 +366,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -403,7 +403,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -435,7 +435,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -467,7 +467,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -504,7 +504,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -536,7 +536,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -26,7 +26,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -58,7 +58,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -90,7 +90,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -127,7 +127,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -164,7 +164,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -201,7 +201,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -238,7 +238,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -275,7 +275,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -312,7 +312,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -349,7 +349,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -386,7 +386,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -423,7 +423,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -460,7 +460,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -497,7 +497,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -534,7 +534,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -571,7 +571,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -608,7 +608,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -645,7 +645,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -682,7 +682,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -719,7 +719,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -756,7 +756,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -793,7 +793,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -830,7 +830,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -867,7 +867,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -21,7 +21,7 @@ SearchResult(
height: 176, height: 176,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: Some(292), subscriber_count: Some(292),
video_count: 219, video_count: 219,
short_description: "Hi, I\'m Tina, aka Doobydobap! Food is the medium I use to tell stories and connect with people who share the same passion as I\u{a0}...", short_description: "Hi, I\'m Tina, aka Doobydobap! Food is the medium I use to tell stories and connect with people who share the same passion as I\u{a0}...",
@ -52,7 +52,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -89,7 +89,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -126,7 +126,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -163,7 +163,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -200,7 +200,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -237,7 +237,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -274,7 +274,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -311,7 +311,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -348,7 +348,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -385,7 +385,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -422,7 +422,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -459,7 +459,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -496,7 +496,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -533,7 +533,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -570,7 +570,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -607,7 +607,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -644,7 +644,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -681,7 +681,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -718,7 +718,7 @@ SearchResult(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -35,7 +35,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(225), video_count: Some(225),
@ -69,7 +69,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(100), video_count: Some(100),
@ -103,7 +103,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(59), video_count: Some(59),
@ -137,7 +137,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(100), video_count: Some(100),
@ -171,7 +171,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(50), video_count: Some(50),
@ -205,7 +205,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(50), video_count: Some(50),
@ -239,7 +239,7 @@ SearchResult(
id: "UCX9oPuvJYZsG8wnHTwOBVPA", id: "UCX9oPuvJYZsG8wnHTwOBVPA",
name: "Chillax", name: "Chillax",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(220), video_count: Some(220),
@ -273,7 +273,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(100), video_count: Some(100),
@ -307,7 +307,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(67), video_count: Some(67),
@ -341,7 +341,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(78), video_count: Some(78),
@ -375,7 +375,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(80), video_count: Some(80),
@ -409,7 +409,7 @@ SearchResult(
id: "UC8Ojfs-1VLiAO_MosLwvjpQ", id: "UC8Ojfs-1VLiAO_MosLwvjpQ",
name: "Redlist - Ultimate Music", name: "Redlist - Ultimate Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(70), video_count: Some(70),
@ -443,7 +443,7 @@ SearchResult(
id: "UCesP91XKnuZVd6OJN06hokg", id: "UCesP91XKnuZVd6OJN06hokg",
name: "Startup Records", name: "Startup Records",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(164), video_count: Some(164),
@ -477,7 +477,7 @@ SearchResult(
id: "UCs72iRpTEuwV3y6pdWYLgiw", id: "UCs72iRpTEuwV3y6pdWYLgiw",
name: "Redlist - Just Hits", name: "Redlist - Just Hits",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(200), video_count: Some(200),
@ -511,7 +511,7 @@ SearchResult(
id: "UCv9O2E_G8U46Paz8828THJw", id: "UCv9O2E_G8U46Paz8828THJw",
name: "Victor Vaz", name: "Victor Vaz",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(50), video_count: Some(50),
@ -545,7 +545,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(52), video_count: Some(52),
@ -579,7 +579,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(178), video_count: Some(178),
@ -613,7 +613,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(87), video_count: Some(87),
@ -647,7 +647,7 @@ SearchResult(
id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ", id: "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
name: "YouTube Music", name: "YouTube Music",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(50), video_count: Some(50),
@ -681,7 +681,7 @@ SearchResult(
id: "UCX9oPuvJYZsG8wnHTwOBVPA", id: "UCX9oPuvJYZsG8wnHTwOBVPA",
name: "Chillax", name: "Chillax",
avatar: [], avatar: [],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
video_count: Some(100), video_count: Some(100),

View file

@ -31,7 +31,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -68,7 +68,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -105,7 +105,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -142,7 +142,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -174,7 +174,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -211,7 +211,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -248,7 +248,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -285,7 +285,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -322,7 +322,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -359,7 +359,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -396,7 +396,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -433,7 +433,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -470,7 +470,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -507,7 +507,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -544,7 +544,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -581,7 +581,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -618,7 +618,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -655,7 +655,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -692,7 +692,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -729,7 +729,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -766,7 +766,7 @@ Paginator(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -34,7 +34,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -76,7 +76,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -118,7 +118,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -160,7 +160,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -202,7 +202,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -244,7 +244,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -286,7 +286,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -328,7 +328,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -370,7 +370,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -412,7 +412,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -454,7 +454,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -496,7 +496,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -538,7 +538,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -580,7 +580,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -622,7 +622,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -664,7 +664,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -706,7 +706,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -748,7 +748,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -790,7 +790,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -832,7 +832,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -874,7 +874,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -916,7 +916,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -958,7 +958,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1000,7 +1000,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1042,7 +1042,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1084,7 +1084,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1126,7 +1126,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1168,7 +1168,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1210,7 +1210,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1252,7 +1252,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1294,7 +1294,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1336,7 +1336,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1378,7 +1378,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1420,7 +1420,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1462,7 +1462,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1504,7 +1504,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1546,7 +1546,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1588,7 +1588,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1630,7 +1630,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1672,7 +1672,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1714,7 +1714,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1756,7 +1756,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1798,7 +1798,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1840,7 +1840,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1882,7 +1882,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1924,7 +1924,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1966,7 +1966,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2008,7 +2008,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2050,7 +2050,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2092,7 +2092,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2134,7 +2134,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2176,7 +2176,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2218,7 +2218,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2260,7 +2260,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2302,7 +2302,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2344,7 +2344,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2386,7 +2386,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2428,7 +2428,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2470,7 +2470,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2512,7 +2512,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2554,7 +2554,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2596,7 +2596,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2638,7 +2638,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2680,7 +2680,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2722,7 +2722,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2764,7 +2764,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2806,7 +2806,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2848,7 +2848,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2890,7 +2890,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2932,7 +2932,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -2974,7 +2974,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3016,7 +3016,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3058,7 +3058,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3100,7 +3100,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3142,7 +3142,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3184,7 +3184,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3226,7 +3226,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3268,7 +3268,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3310,7 +3310,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3352,7 +3352,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3394,7 +3394,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3436,7 +3436,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3478,7 +3478,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3520,7 +3520,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3562,7 +3562,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3604,7 +3604,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3646,7 +3646,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3688,7 +3688,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3730,7 +3730,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3772,7 +3772,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3814,7 +3814,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3856,7 +3856,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3898,7 +3898,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3940,7 +3940,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -3982,7 +3982,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -4024,7 +4024,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -4066,7 +4066,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -4108,7 +4108,7 @@ expression: map_res.c
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -34,7 +34,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -76,7 +76,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -119,7 +119,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -165,7 +165,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -207,7 +207,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -249,7 +249,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -291,7 +291,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -333,7 +333,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -375,7 +375,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -417,7 +417,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -459,7 +459,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -501,7 +501,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -543,7 +543,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -585,7 +585,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -627,7 +627,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -669,7 +669,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -711,7 +711,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -753,7 +753,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -33,7 +33,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -75,7 +75,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -117,7 +117,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -159,7 +159,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -201,7 +201,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -248,7 +248,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -296,7 +296,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -338,7 +338,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -380,7 +380,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -422,7 +422,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -466,7 +466,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -508,7 +508,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -550,7 +550,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -592,7 +592,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -634,7 +634,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -676,7 +676,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -718,7 +718,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -760,7 +760,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -802,7 +802,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -846,7 +846,7 @@ Paginator(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -91,7 +91,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: Some(30900000), subscriber_count: Some(30900000),
), ),
view_count: 233243423, view_count: 233243423,
@ -130,7 +130,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -167,7 +167,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -204,7 +204,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -241,7 +241,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -278,7 +278,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -315,7 +315,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -352,7 +352,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -389,7 +389,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -426,7 +426,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -463,7 +463,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -500,7 +500,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -537,7 +537,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -574,7 +574,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -611,7 +611,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -648,7 +648,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -685,7 +685,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -722,7 +722,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -91,7 +91,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: Some(31000000), subscriber_count: Some(31000000),
), ),
view_count: 234258725, view_count: 234258725,
@ -130,7 +130,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -167,7 +167,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -204,7 +204,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -241,7 +241,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -278,7 +278,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -315,7 +315,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -352,7 +352,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -389,7 +389,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -426,7 +426,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -463,7 +463,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -500,7 +500,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -537,7 +537,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -574,7 +574,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -611,7 +611,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -648,7 +648,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -685,7 +685,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -722,7 +722,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -759,7 +759,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -796,7 +796,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -287,7 +287,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: Some(14900000), subscriber_count: Some(14900000),
), ),
view_count: 1251797, view_count: 1251797,
@ -551,7 +551,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -588,7 +588,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -625,7 +625,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -662,7 +662,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -699,7 +699,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -736,7 +736,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -773,7 +773,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -810,7 +810,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -847,7 +847,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -884,7 +884,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -921,7 +921,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -958,7 +958,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -995,7 +995,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1032,7 +1032,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1069,7 +1069,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1106,7 +1106,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1143,7 +1143,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1180,7 +1180,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1217,7 +1217,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1254,7 +1254,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -26,7 +26,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: Some(1480), subscriber_count: Some(1480),
), ),
view_count: 205, view_count: 205,

View file

@ -38,7 +38,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: none, verification: None,
subscriber_count: Some(172000), subscriber_count: Some(172000),
), ),
view_count: 2493983, view_count: 2493983,
@ -77,7 +77,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -114,7 +114,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -151,7 +151,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -188,7 +188,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -225,7 +225,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -262,7 +262,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -299,7 +299,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -336,7 +336,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -373,7 +373,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -410,7 +410,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -447,7 +447,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -484,7 +484,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -521,7 +521,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -558,7 +558,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -595,7 +595,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -632,7 +632,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -669,7 +669,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -706,7 +706,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -743,7 +743,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -281,7 +281,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: Some(14800000), subscriber_count: Some(14800000),
), ),
view_count: 971966, view_count: 971966,
@ -545,7 +545,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -582,7 +582,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -619,7 +619,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -656,7 +656,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -693,7 +693,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -730,7 +730,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -767,7 +767,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -804,7 +804,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -841,7 +841,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -878,7 +878,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -915,7 +915,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -952,7 +952,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -989,7 +989,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1026,7 +1026,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1063,7 +1063,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1100,7 +1100,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1137,7 +1137,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1174,7 +1174,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -1211,7 +1211,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -60,7 +60,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: Some(5590000), subscriber_count: Some(5590000),
), ),
view_count: 681, view_count: 681,
@ -99,7 +99,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -136,7 +136,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -173,7 +173,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -210,7 +210,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -247,7 +247,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -284,7 +284,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -321,7 +321,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -358,7 +358,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -395,7 +395,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -432,7 +432,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -469,7 +469,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -506,7 +506,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -543,7 +543,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -580,7 +580,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -617,7 +617,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -654,7 +654,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -691,7 +691,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -728,7 +728,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -765,7 +765,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -802,7 +802,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -28,7 +28,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: Some(33900), subscriber_count: Some(33900),
), ),
view_count: 20304, view_count: 20304,
@ -67,7 +67,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -104,7 +104,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -141,7 +141,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -178,7 +178,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -215,7 +215,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -252,7 +252,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -289,7 +289,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -326,7 +326,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -363,7 +363,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -400,7 +400,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -437,7 +437,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -474,7 +474,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -511,7 +511,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -548,7 +548,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -91,7 +91,7 @@ VideoDetails(
height: 176, height: 176,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: Some(30900000), subscriber_count: Some(30900000),
), ),
view_count: 232792465, view_count: 232792465,
@ -130,7 +130,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -167,7 +167,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -204,7 +204,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -241,7 +241,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -278,7 +278,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -315,7 +315,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -352,7 +352,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -389,7 +389,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -426,7 +426,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -463,7 +463,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -500,7 +500,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -537,7 +537,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -574,7 +574,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -611,7 +611,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -648,7 +648,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -685,7 +685,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: verified, verification: Verified,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -722,7 +722,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: none, verification: None,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",
@ -759,7 +759,7 @@ VideoDetails(
height: 68, height: 68,
), ),
], ],
verification: artist, verification: Artist,
subscriber_count: None, subscriber_count: None,
)), )),
publish_date: "[date]", publish_date: "[date]",

View file

@ -582,7 +582,6 @@ pub struct ChannelTag {
/// Verification status of a channel /// Verification status of a channel
#[derive(Default, Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash)] #[derive(Default, Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, Hash)]
#[serde(rename_all = "snake_case")]
#[non_exhaustive] #[non_exhaustive]
pub enum Verification { pub enum Verification {
#[default] #[default]
@ -656,6 +655,8 @@ pub struct Channel<T> {
pub subscriber_count: Option<u64>, pub subscriber_count: Option<u64>,
/// Channel avatar / profile picture /// Channel avatar / profile picture
pub avatar: Vec<Thumbnail>, pub avatar: Vec<Thumbnail>,
/// Channel verification mark
pub verification: Verification,
/// Channel description text /// Channel description text
pub description: String, pub description: String,
/// List of words to describe the topic of the channel /// List of words to describe the topic of the channel

View file

@ -42,7 +42,7 @@ use crate::{
#[serde_as] #[serde_as]
#[derive(Clone, Debug, Deserialize)] #[derive(Clone, Debug, Deserialize)]
#[serde(untagged)] #[serde(untagged)]
pub enum Text { pub(crate) enum Text {
Simple { Simple {
#[serde(alias = "simpleText")] #[serde(alias = "simpleText")]
text: String, text: String,
@ -86,10 +86,10 @@ impl<'de> DeserializeAs<'de, Vec<String>> for Text {
/// ///
/// Texts with links are mapped as a list of text components. /// Texts with links are mapped as a list of text components.
#[derive(Default, Debug, Clone)] #[derive(Default, Debug, Clone)]
pub struct TextComponents(pub Vec<TextComponent>); pub(crate) struct TextComponents(pub Vec<TextComponent>);
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum TextComponent { pub(crate) enum TextComponent {
Video { Video {
text: String, text: String,
video_id: String, video_id: String,
@ -130,7 +130,7 @@ struct RichTextRun {
/// the links. /// the links.
#[derive(Deserialize)] #[derive(Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct AttributedText { pub(crate) struct AttributedText {
content: String, content: String,
#[serde(default)] #[serde(default)]
command_runs: Vec<AttributedTextRun>, command_runs: Vec<AttributedTextRun>,
@ -345,7 +345,7 @@ impl From<TextComponents> for crate::model::richtext::RichText {
#[derive(Deserialize)] #[derive(Deserialize)]
#[serde(rename_all = "camelCase")] #[serde(rename_all = "camelCase")]
pub struct AccessibilityText { pub(crate) struct AccessibilityText {
accessibility_data: AccessibilityData, accessibility_data: AccessibilityData,
} }

View file

@ -984,6 +984,7 @@ fn assert_channel_eevblog<T>(channel: &Channel<T>) {
channel.subscriber_count.unwrap() channel.subscriber_count.unwrap()
); );
assert!(!channel.avatar.is_empty(), "got no thumbnails"); assert!(!channel.avatar.is_empty(), "got no thumbnails");
assert_eq!(channel.verification, Verification::Verified);
assert_eq!(channel.description, "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON'T DO PAID VIDEO SPONSORSHIPS, DON'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don't be offended if I don't have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA"); assert_eq!(channel.description, "NO SCRIPT, NO FEAR, ALL OPINION\nAn off-the-cuff Video Blog about Electronics Engineering, for engineers, hobbyists, enthusiasts, hackers and Makers\nHosted by Dave Jones from Sydney Australia\n\nDONATIONS:\nBitcoin: 3KqyH1U3qrMPnkLufM2oHDU7YB4zVZeFyZ\nEthereum: 0x99ccc4d2654ba40744a1f678d9868ecb15e91206\nPayPal: david@alternatezone.com\n\nPatreon: https://www.patreon.com/eevblog\n\nEEVblog2: http://www.youtube.com/EEVblog2\nEEVdiscover: https://www.youtube.com/channel/UCkGvUEt8iQLmq3aJIMjT2qQ\n\nEMAIL:\nAdvertising/Commercial: eevblog+business@gmail.com\nFan mail: eevblog+fan@gmail.com\nHate Mail: eevblog+hate@gmail.com\n\nI DON'T DO PAID VIDEO SPONSORSHIPS, DON'T ASK!\n\nPLEASE:\nDo NOT ask for personal advice on something, post it in the EEVblog forum.\nI read ALL email, but please don't be offended if I don't have time to reply, I get a LOT of email.\n\nMailbag\nPO Box 7949\nBaulkham Hills NSW 2153\nAUSTRALIA");
assert!(!channel.tags.is_empty(), "got no tags"); assert!(!channel.tags.is_empty(), "got no tags");
assert_eq!( assert_eq!(