Class: Google::Apis::YoutubeV3::MemberSnippet
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::MemberSnippet
- 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
Instance Attribute Summary collapse
-
#creator_channel_id ⇒ String
The id of the channel that's offering memberships.
-
#member_details ⇒ Google::Apis::YoutubeV3::ChannelProfileDetails
Details about the member.
-
#memberships_details ⇒ Google::Apis::YoutubeV3::MembershipsDetails
Details about the user's membership.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MemberSnippet
constructor
A new instance of MemberSnippet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MemberSnippet
Returns a new instance of MemberSnippet.
5357 5358 5359 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5357 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creator_channel_id ⇒ String
The id of the channel that's offering memberships.
Corresponds to the JSON property creatorChannelId
5345 5346 5347 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5345 def creator_channel_id @creator_channel_id end |
#member_details ⇒ Google::Apis::YoutubeV3::ChannelProfileDetails
Details about the member.
Corresponds to the JSON property memberDetails
5350 5351 5352 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5350 def member_details @member_details end |
#memberships_details ⇒ Google::Apis::YoutubeV3::MembershipsDetails
Details about the user's membership.
Corresponds to the JSON property membershipsDetails
5355 5356 5357 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5355 def memberships_details @memberships_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5362 5363 5364 5365 5366 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 5362 def update!(**args) @creator_channel_id = args[:creator_channel_id] if args.key?(:creator_channel_id) @member_details = args[:member_details] if args.key?(:member_details) @memberships_details = args[:memberships_details] if args.key?(:memberships_details) end |