Show / Hide Table of Contents

Class LiveChatSuperChatDetails

Inheritance
System.Object
LiveChatSuperChatDetails
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 LiveChatSuperChatDetails : IDirectResponseSchema

Properties

AmountDisplayString

A rendered string that displays the fund amount and currency to the user.

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

AmountMicros

The amount purchased by the user, in micros (1,750,000 micros = 1.75).

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

Currency

The currency in which the purchase was made.

Declaration
[JsonProperty("currency")]
public virtual string Currency { 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

Tier

The tier in which the amount belongs. Lower amounts belong to lower tiers. The lowest tier is 1.

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

UserComment

The comment added by the user to this Super Chat event.

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

Implements

IDirectResponseSchema
Back to top