Class: Google::Apis::YoutubeV3::Member
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::Member
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/google/apis/youtube_v3/representations.rb
Overview
A member resource represents a member for a YouTube channel. A member provides recurring monetary support to a creator and receives special benefits.
Instance Attribute Summary collapse
-
#etag ⇒ String
Etag of this resource.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#snippet ⇒ Google::Apis::YoutubeV3::MemberSnippet
The snippet object contains basic details about the member.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Member
constructor
A new instance of Member.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Member
Returns a new instance of Member.
5440 5441 5442 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5440 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
5427 5428 5429 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5427 def etag @etag end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
member".
Corresponds to the JSON property kind
5433 5434 5435 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5433 def kind @kind end |
#snippet ⇒ Google::Apis::YoutubeV3::MemberSnippet
The snippet object contains basic details about the member.
Corresponds to the JSON property snippet
5438 5439 5440 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5438 def snippet @snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5445 5446 5447 5448 5449 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5445 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @snippet = args[:snippet] if args.key?(:snippet) end |