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

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

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.



7964
7965
7966
# File 'generated/google/apis/youtube_v3/classes.rb', line 7964

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)


7957
7958
7959
# File 'generated/google/apis/youtube_v3/classes.rb', line 7957

def description
  @description
end

#titleString

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

Returns:

  • (String)


7962
7963
7964
# File 'generated/google/apis/youtube_v3/classes.rb', line 7962

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7969
7970
7971
7972
# File 'generated/google/apis/youtube_v3/classes.rb', line 7969

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