Struct google_youtube3::CommentThreadSnippet[][src]

pub struct CommentThreadSnippet {
    pub top_level_comment: Option<Comment>,
    pub can_reply: Option<bool>,
    pub channel_id: Option<String>,
    pub total_reply_count: Option<u32>,
    pub is_public: Option<bool>,
    pub video_id: Option<String>,
}

Basic details about a comment thread.

This type is not used in any activity, and only used as part of another schema.

Fields

The top level comment of this thread.

Whether the current viewer of the thread can reply to it. This is viewer specific - other viewers may see a different value for this field.

The YouTube channel the comments in the thread refer to or the channel with the video the comments refer to. If video_id isn't set the comments refer to the channel itself.

The total number of replies (not including the top level comment).

Whether the thread (and therefore all its comments) is visible to all YouTube users.

The ID of the video the comments refer to, if any. No video_id implies a channel discussion comment.

Trait Implementations

impl Default for CommentThreadSnippet
[src]

Returns the "default value" for a type. Read more

impl Clone for CommentThreadSnippet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CommentThreadSnippet
[src]

Formats the value using the given formatter. Read more

impl Part for CommentThreadSnippet
[src]

Auto Trait Implementations