class Google::Apis::AnalyticsV3::Column
JSON template for a metadata column.
Attributes
attributes[RW]
Map of attribute name and value for this column. Corresponds to the JSON property `attributes` @return [Hash<String,String>]
id[RW]
Column
id. Corresponds to the JSON property `id` @return [String]
kind[RW]
Resource type for Analytics column. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 571 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analytics_v3/classes.rb, line 576 def update!(**args) @attributes = args[:attributes] if args.key?(:attributes) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) end