Class: Google::Apis::YoutubeV3::Member
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::Member
- 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 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.
-
#id ⇒ String
The ID that YouTube assigns to uniquely identify the member.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Member
Returns a new instance of Member
5232 5233 5234 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5232 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
5214 5215 5216 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5214 def etag @etag end |
#id ⇒ String
The ID that YouTube assigns to uniquely identify the member.
Corresponds to the JSON property id
5219 5220 5221 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5219 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
member".
Corresponds to the JSON property kind
5225 5226 5227 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5225 def kind @kind end |
#snippet ⇒ Google::Apis::YoutubeV3::MemberSnippet
The snippet object contains basic details about the member.
Corresponds to the JSON property snippet
5230 5231 5232 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5230 def snippet @snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5237 5238 5239 5240 5241 5242 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 5237 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 |