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.



8801
8802
8803
# File 'lib/google/apis/youtube_v3/classes.rb', line 8801

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)


8794
8795
8796
# File 'lib/google/apis/youtube_v3/classes.rb', line 8794

def description
  @description
end

#titleString

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

Returns:

  • (String)


8799
8800
8801
# File 'lib/google/apis/youtube_v3/classes.rb', line 8799

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8806
8807
8808
8809
# File 'lib/google/apis/youtube_v3/classes.rb', line 8806

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