class Google::Apis::YoutubeV3::LiveChatMessageAuthorDetails
Attributes
The YouTube channel ID. Corresponds to the JSON property `channelId` @return [String]
The channel's URL. Corresponds to the JSON property `channelUrl` @return [String]
The channel's display name. Corresponds to the JSON property `displayName` @return [String]
Whether the author is a moderator of the live chat. Corresponds to the JSON property `isChatModerator` @return [Boolean]
Whether the author is a moderator of the live chat. Corresponds to the JSON property `isChatModerator` @return [Boolean]
Whether the author is the owner of the live chat. Corresponds to the JSON property `isChatOwner` @return [Boolean]
Whether the author is the owner of the live chat. Corresponds to the JSON property `isChatOwner` @return [Boolean]
Whether the author is a sponsor of the live chat. Corresponds to the JSON property `isChatSponsor` @return [Boolean]
Whether the author is a sponsor of the live chat. Corresponds to the JSON property `isChatSponsor` @return [Boolean]
Whether the author's identity has been verified by YouTube. Corresponds to the JSON property `isVerified` @return [Boolean]
Whether the author's identity has been verified by YouTube. Corresponds to the JSON property `isVerified` @return [Boolean]
The channels's avatar URL. Corresponds to the JSON property `profileImageUrl` @return [String]
Public Class Methods
# File lib/google/apis/youtube_v3/classes.rb, line 4190 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/youtube_v3/classes.rb, line 4195 def update!(**args) @channel_id = args[:channel_id] if args.key?(:channel_id) @channel_url = args[:channel_url] if args.key?(:channel_url) @display_name = args[:display_name] if args.key?(:display_name) @is_chat_moderator = args[:is_chat_moderator] if args.key?(:is_chat_moderator) @is_chat_owner = args[:is_chat_owner] if args.key?(:is_chat_owner) @is_chat_sponsor = args[:is_chat_sponsor] if args.key?(:is_chat_sponsor) @is_verified = args[:is_verified] if args.key?(:is_verified) @profile_image_url = args[:profile_image_url] if args.key?(:profile_image_url) end