Class: Google::Apis::YoutubeV3::VideoLocalization

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

Localized versions of certain video properties (e.g. title).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoLocalization

Returns a new instance of VideoLocalization.



8588
8589
8590
# File 'lib/google/apis/youtube_v3/classes.rb', line 8588

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

Instance Attribute Details

#descriptionString

Localized version of the video's description. Corresponds to the JSON property description

Returns:

  • (String)


8581
8582
8583
# File 'lib/google/apis/youtube_v3/classes.rb', line 8581

def description
  @description
end

#titleString

Localized version of the video's title. Corresponds to the JSON property title

Returns:

  • (String)


8586
8587
8588
# File 'lib/google/apis/youtube_v3/classes.rb', line 8586

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8593
8594
8595
8596
# File 'lib/google/apis/youtube_v3/classes.rb', line 8593

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @title = args[:title] if args.key?(:title)
end