Struct google_youtube3::SuperChatEventSnippet[][src]

pub struct SuperChatEventSnippet {
    pub comment_text: Option<String>,
    pub channel_id: Option<String>,
    pub is_super_chat_for_good: Option<bool>,
    pub message_type: Option<u32>,
    pub amount_micros: Option<String>,
    pub currency: Option<String>,
    pub supporter_details: Option<ChannelProfileDetails>,
    pub display_string: Option<String>,
    pub nonprofit: Option<Nonprofit>,
    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.

True if this event is a Super Chat for Good purchase.

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

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.

Details about the supporter.

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

If this event is a Super Chat for Good purchase, this field will contain information about the charity the purchase is donated to.

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