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
2782 2783 2784 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2782 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
2764 2765 2766 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2764 def etag @etag end |
#id ⇒ String
The ID that YouTube assigns to uniquely identify the fan funding event.
Corresponds to the JSON property id
2769 2770 2771 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2769 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
2775 2776 2777 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2775 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
2780 2781 2782 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2780 def snippet @snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2787 2788 2789 2790 2791 2792 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2787 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 |