class Google::Apis::YoutubeV3::VideoLocalization

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

Attributes

description[RW]

Localized version of the video's description. Corresponds to the JSON property `description` @return [String]

title[RW]

Localized version of the video's title. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 8105
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/youtube_v3/classes.rb, line 8110
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @title = args[:title] if args.key?(:title)
end