class Google::Apis::YoutubeAnalyticsV2::GroupSnippet
A group snippet.
Attributes
published_at[RW]
The date and time that the group was created. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format. Corresponds to the JSON property `publishedAt` @return [String]
title[RW]
The group name. The value must be a non-empty string. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_analytics_v2/classes.rb, line 322 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_analytics_v2/classes.rb, line 327 def update!(**args) @published_at = args[:published_at] if args.key?(:published_at) @title = args[:title] if args.key?(:title) end