Struct google_youtube3::api::CommentThread
source · pub struct CommentThread {
pub etag: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub replies: Option<CommentThreadReplies>,
pub snippet: Option<CommentThreadSnippet>,
}
Expand description
A comment thread represents information that applies to a top level comment and all its replies. It can also include the top level comment itself and some of the replies.
Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- insert comment threads (request|response)
- list comment threads (none)
- v3 update comment threads youtube (request|response)
Fields§
§etag: Option<String>
Etag of this resource.
id: Option<String>
The ID that YouTube uses to uniquely identify the comment thread.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “youtube#commentThread”.
replies: Option<CommentThreadReplies>
The replies object contains a limited number of replies (if any) to the top level comment found in the snippet.
snippet: Option<CommentThreadSnippet>
The snippet object contains basic details about the comment thread and also the top level comment.
Trait Implementations§
source§impl Clone for CommentThread
impl Clone for CommentThread
source§fn clone(&self) -> CommentThread
fn clone(&self) -> CommentThread
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more