Struct google_youtube3::SuperChatEventSnippet[][src]

pub struct SuperChatEventSnippet {
    pub comment_text: Option<String>,
    pub channel_id: Option<String>,
    pub supporter_details: Option<ChannelProfileDetails>,
    pub amount_micros: Option<String>,
    pub currency: Option<String>,
    pub message_type: Option<u32>,
    pub display_string: Option<String>,
    pub created_at: Option<String>,
}

There is no detailed description.

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

Fields

The text contents of the comment left by the user.

Channel id where the event occurred.

Details about the supporter.

The purchase amount, in micros of the purchase currency. e.g., 1 is represented as 1000000.

The currency in which the purchase was made. ISO 4217.

The tier for the paid message, which is based on the amount of money spent to purchase the message.

A rendered string that displays the purchase amount and currency (e.g., "$1.00"). The string is rendered for the given language.

The date and time when the event occurred. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

Trait Implementations

impl Default for SuperChatEventSnippet
[src]

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

impl Clone for SuperChatEventSnippet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SuperChatEventSnippet
[src]

Formats the value using the given formatter. Read more

impl Part for SuperChatEventSnippet
[src]

Auto Trait Implementations