class Google::Apis::YoutubeV3::LiveChatFanFundingEventDetails
Attributes
amount_display_string[RW]
A rendered string that displays the fund amount and currency to the user. Corresponds to the JSON property `amountDisplayString` @return [String]
amount_micros[RW]
The amount of the fund. Corresponds to the JSON property `amountMicros` @return [String]
currency[RW]
The currency in which the fund was made. Corresponds to the JSON property `currency` @return [String]
user_comment[RW]
The comment added by the user to this fan funding event. Corresponds to the JSON property `userComment` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/youtube_v3/classes.rb, line 4232 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/youtube_v3/classes.rb, line 4237 def update!(**args) @amount_display_string = args[:amount_display_string] if args.key?(:amount_display_string) @amount_micros = args[:amount_micros] if args.key?(:amount_micros) @currency = args[:currency] if args.key?(:currency) @user_comment = args[:user_comment] if args.key?(:user_comment) end