Class: Google::Apis::YoutubeV3::LiveChatMessageAuthorDetails

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LiveChatMessageAuthorDetails

Returns a new instance of LiveChatMessageAuthorDetails.



4362
4363
4364
# File 'generated/google/apis/youtube_v3/classes.rb', line 4362

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

Instance Attribute Details

#channel_idString

The YouTube channel ID. Corresponds to the JSON property channelId

Returns:

  • (String)


4321
4322
4323
# File 'generated/google/apis/youtube_v3/classes.rb', line 4321

def channel_id
  @channel_id
end

#channel_urlString

The channel's URL. Corresponds to the JSON property channelUrl

Returns:

  • (String)


4326
4327
4328
# File 'generated/google/apis/youtube_v3/classes.rb', line 4326

def channel_url
  @channel_url
end

#display_nameString

The channel's display name. Corresponds to the JSON property displayName

Returns:

  • (String)


4331
4332
4333
# File 'generated/google/apis/youtube_v3/classes.rb', line 4331

def display_name
  @display_name
end

#is_chat_moderatorBoolean Also known as: is_chat_moderator?

Whether the author is a moderator of the live chat. Corresponds to the JSON property isChatModerator

Returns:

  • (Boolean)


4336
4337
4338
# File 'generated/google/apis/youtube_v3/classes.rb', line 4336

def is_chat_moderator
  @is_chat_moderator
end

#is_chat_ownerBoolean Also known as: is_chat_owner?

Whether the author is the owner of the live chat. Corresponds to the JSON property isChatOwner

Returns:

  • (Boolean)


4342
4343
4344
# File 'generated/google/apis/youtube_v3/classes.rb', line 4342

def is_chat_owner
  @is_chat_owner
end

#is_chat_sponsorBoolean Also known as: is_chat_sponsor?

Whether the author is a sponsor of the live chat. Corresponds to the JSON property isChatSponsor

Returns:

  • (Boolean)


4348
4349
4350
# File 'generated/google/apis/youtube_v3/classes.rb', line 4348

def is_chat_sponsor
  @is_chat_sponsor
end

#is_verifiedBoolean Also known as: is_verified?

Whether the author's identity has been verified by YouTube. Corresponds to the JSON property isVerified

Returns:

  • (Boolean)


4354
4355
4356
# File 'generated/google/apis/youtube_v3/classes.rb', line 4354

def is_verified
  @is_verified
end

#profile_image_urlString

The channels's avatar URL. Corresponds to the JSON property profileImageUrl

Returns:

  • (String)


4360
4361
4362
# File 'generated/google/apis/youtube_v3/classes.rb', line 4360

def profile_image_url
  @profile_image_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
# File 'generated/google/apis/youtube_v3/classes.rb', line 4367

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