Class: Google::Apis::YoutubeV3::FanFundingEvent
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::FanFundingEvent
- 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
-
#etag ⇒ String
Etag of this resource.
-
#id ⇒ String
The ID that YouTube assigns to uniquely identify the fan funding event.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#snippet ⇒ Google::Apis::YoutubeV3::FanFundingEventSnippet
The snippet object contains basic details about the fan funding event.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FanFundingEvent
constructor
A new instance of FanFundingEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FanFundingEvent
Returns a new instance of FanFundingEvent
2784 2785 2786 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
2766 2767 2768 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2766 def etag @etag end |
#id ⇒ String
The ID that YouTube assigns to uniquely identify the fan funding event.
Corresponds to the JSON property id
2771 2772 2773 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2771 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
fanFundingEvent".
Corresponds to the JSON property kind
2777 2778 2779 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2777 def kind @kind end |
#snippet ⇒ Google::Apis::YoutubeV3::FanFundingEventSnippet
The snippet object contains basic details about the fan funding event.
Corresponds to the JSON property snippet
2782 2783 2784 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2782 def snippet @snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2789 2790 2791 2792 2793 2794 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2789 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 |