class Google::Apis::YoutubeV3::ChannelLocalization

Channel localization setting

Attributes

description[RW]

The localized strings for channel's description. Corresponds to the JSON property `description` @return [String]

title[RW]

The localized strings for channel's title. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/youtube_v3/classes.rb, line 1332
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/youtube_v3/classes.rb, line 1337
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @title = args[:title] if args.key?(:title)
end