Class: Google::Apis::YoutubeV3::Member

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Member

Returns a new instance of Member.



5327
5328
5329
# File 'lib/google/apis/youtube_v3/classes.rb', line 5327

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

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


5314
5315
5316
# File 'lib/google/apis/youtube_v3/classes.rb', line 5314

def etag
  @etag
end

#kindString

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

Returns:

  • (String)


5320
5321
5322
# File 'lib/google/apis/youtube_v3/classes.rb', line 5320

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::MemberSnippet

The snippet object contains basic details about the member. Corresponds to the JSON property snippet



5325
5326
5327
# File 'lib/google/apis/youtube_v3/classes.rb', line 5325

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5332
5333
5334
5335
5336
# File 'lib/google/apis/youtube_v3/classes.rb', line 5332

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