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.



8341
8342
8343
# File 'lib/google/apis/youtube_v3/classes.rb', line 8341

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)


8334
8335
8336
# File 'lib/google/apis/youtube_v3/classes.rb', line 8334

def description
  @description
end

#titleString

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

Returns:

  • (String)


8339
8340
8341
# File 'lib/google/apis/youtube_v3/classes.rb', line 8339

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8346
8347
8348
8349
# File 'lib/google/apis/youtube_v3/classes.rb', line 8346

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