class Google::Apis::DoubleclicksearchV2::SavedColumn

A saved column

Attributes

kind[RW]

Identifies this as a SavedColumn resource. Value: the fixed string doubleclicksearch#savedColumn. Corresponds to the JSON property `kind` @return [String]

saved_column_name[RW]

The name of the saved column. Corresponds to the JSON property `savedColumnName` @return [String]

type[RW]

The type of data this saved column will produce. Corresponds to the JSON property `type` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/doubleclicksearch_v2/classes.rb, line 890
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @saved_column_name = args[:saved_column_name] if args.key?(:saved_column_name)
  @type = args[:type] if args.key?(:type)
end