Class: Google::Apis::YoutubeV3::LiveChatFanFundingEventDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LiveChatFanFundingEventDetails

Returns a new instance of LiveChatFanFundingEventDetails.



4256
4257
4258
# File 'generated/google/apis/youtube_v3/classes.rb', line 4256

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#amount_display_stringString

A rendered string that displays the fund amount and currency to the user. Corresponds to the JSON property amountDisplayString

Returns:

  • (String)


4239
4240
4241
# File 'generated/google/apis/youtube_v3/classes.rb', line 4239

def amount_display_string
  @amount_display_string
end

#amount_microsString

The amount of the fund. Corresponds to the JSON property amountMicros

Returns:

  • (String)


4244
4245
4246
# File 'generated/google/apis/youtube_v3/classes.rb', line 4244

def amount_micros
  @amount_micros
end

#currencyString

The currency in which the fund was made. Corresponds to the JSON property currency

Returns:

  • (String)


4249
4250
4251
# File 'generated/google/apis/youtube_v3/classes.rb', line 4249

def currency
  @currency
end

#user_commentString

The comment added by the user to this fan funding event. Corresponds to the JSON property userComment

Returns:

  • (String)


4254
4255
4256
# File 'generated/google/apis/youtube_v3/classes.rb', line 4254

def user_comment
  @user_comment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4261
4262
4263
4264
4265
4266
# File 'generated/google/apis/youtube_v3/classes.rb', line 4261

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