Class: Google::Apis::YoutubeV3::ChannelLocalization
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::ChannelLocalization
- 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
Channel localization setting
Instance Attribute Summary collapse
-
#description ⇒ String
The localized strings for channel's description.
-
#title ⇒ String
The localized strings for channel's title.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChannelLocalization
constructor
A new instance of ChannelLocalization.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChannelLocalization
Returns a new instance of ChannelLocalization
1325 1326 1327 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 1325 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
The localized strings for channel's description.
Corresponds to the JSON property description
1318 1319 1320 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 1318 def description @description end |
#title ⇒ String
The localized strings for channel's title.
Corresponds to the JSON property title
1323 1324 1325 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 1323 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1330 1331 1332 1333 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 1330 def update!(**args) @description = args[:description] if args.key?(:description) @title = args[:title] if args.key?(:title) end |