Class: Google::Apis::YoutubeV3::VideoLocalization
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::VideoLocalization
- 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
-
#description ⇒ String
Localized version of the video's description.
-
#title ⇒ String
Localized version of the video's title.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VideoLocalization
constructor
A new instance of VideoLocalization.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VideoLocalization
Returns a new instance of VideoLocalization
8014 8015 8016 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 8014 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Localized version of the video's description.
Corresponds to the JSON property description
8007 8008 8009 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 8007 def description @description end |
#title ⇒ String
Localized version of the video's title.
Corresponds to the JSON property title
8012 8013 8014 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 8012 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8019 8020 8021 8022 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 8019 def update!(**args) @description = args[:description] if args.key?(:description) @title = args[:title] if args.key?(:title) end |