Class: Google::Apis::YoutubeV3::FanFundingEvent

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

Overview

A fanFundingEvent resource represents a fan funding event on a YouTube channel. Fan funding events occur when a user gives one-time monetary support to the channel owner.

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) ⇒ FanFundingEvent

Returns a new instance of FanFundingEvent.



2772
2773
2774
# File 'generated/google/apis/youtube_v3/classes.rb', line 2772

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

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


2754
2755
2756
# File 'generated/google/apis/youtube_v3/classes.rb', line 2754

def etag
  @etag
end

#idString

The ID that YouTube assigns to uniquely identify the fan funding event. Corresponds to the JSON property id

Returns:

  • (String)


2759
2760
2761
# File 'generated/google/apis/youtube_v3/classes.rb', line 2759

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "youtube# fanFundingEvent". Corresponds to the JSON property kind

Returns:

  • (String)


2765
2766
2767
# File 'generated/google/apis/youtube_v3/classes.rb', line 2765

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::FanFundingEventSnippet

The snippet object contains basic details about the fan funding event. Corresponds to the JSON property snippet



2770
2771
2772
# File 'generated/google/apis/youtube_v3/classes.rb', line 2770

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2777
2778
2779
2780
2781
2782
# File 'generated/google/apis/youtube_v3/classes.rb', line 2777

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @snippet = args[:snippet] if args.key?(:snippet)
end