Class: Google::Apis::DoubleclicksearchV2::SavedColumnList

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/doubleclicksearch_v2/classes.rb,
lib/google/apis/doubleclicksearch_v2/representations.rb,
lib/google/apis/doubleclicksearch_v2/representations.rb

Overview

A list of saved columns. Advertisers create saved columns to report on Floodlight activities, Google Analytics goals, or custom KPIs. To request reports with saved columns, you'll need the saved column names that are available from this list.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SavedColumnList

Returns a new instance of SavedColumnList.



929
930
931
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 929

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#itemsArray<Google::Apis::DoubleclicksearchV2::SavedColumn>

The saved columns being requested. Corresponds to the JSON property items



921
922
923
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 921

def items
  @items
end

#kindString

Identifies this as a SavedColumnList resource. Value: the fixed string doubleclicksearch#savedColumnList. Corresponds to the JSON property kind

Returns:

  • (String)


927
928
929
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 927

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



934
935
936
937
# File 'lib/google/apis/doubleclicksearch_v2/classes.rb', line 934

def update!(**args)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
end