Show / Hide Table of Contents

Class SuperChatEventSnippet

Inheritance
System.Object
SuperChatEventSnippet
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class SuperChatEventSnippet : IDirectResponseSchema

Properties

AmountMicros

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

Declaration
[JsonProperty("amountMicros")]
public virtual ulong? AmountMicros { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

ChannelId

Channel id where the event occurred.

Declaration
[JsonProperty("channelId")]
public virtual string ChannelId { get; set; }
Property Value
Type Description
System.String

CommentText

The text contents of the comment left by the user.

Declaration
[JsonProperty("commentText")]
public virtual string CommentText { get; set; }
Property Value
Type Description
System.String

CreatedAt

The date and time when the event occurred. The value is specified in ISO 8601 format.

Declaration
[JsonProperty("createdAt")]
public virtual string CreatedAt { get; set; }
Property Value
Type Description
System.String

Currency

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

Declaration
[JsonProperty("currency")]
public virtual string Currency { get; set; }
Property Value
Type Description
System.String

DisplayString

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

Declaration
[JsonProperty("displayString")]
public virtual string DisplayString { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IsSuperStickerEvent

True if this event is a Super Sticker event.

Declaration
[JsonProperty("isSuperStickerEvent")]
public virtual bool? IsSuperStickerEvent { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

MessageType

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

Declaration
[JsonProperty("messageType")]
public virtual long? MessageType { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

SuperStickerMetadata

If this event is a Super Sticker event, this field will contain metadata about the Super Sticker.

Declaration
[JsonProperty("superStickerMetadata")]
public virtual SuperStickerMetadata SuperStickerMetadata { get; set; }
Property Value
Type Description
SuperStickerMetadata

SupporterDetails

Details about the supporter.

Declaration
[JsonProperty("supporterDetails")]
public virtual ChannelProfileDetails SupporterDetails { get; set; }
Property Value
Type Description
ChannelProfileDetails

Implements

IDirectResponseSchema
Back to top