class Google::Apis::DoubleclicksearchV2::ReportRequest::Filter

Attributes

column[RW]

A request object used to create a DoubleClick Search report. Corresponds to the JSON property `column` @return [Google::Apis::DoubleclicksearchV2::ReportApiColumnSpec]

operator[RW]

Operator to use in the filter. See the filter reference for a list of available operators. Corresponds to the JSON property `operator` @return [String]

values[RW]

A list of values to filter the column value against.\ The maximum number of filter values per request is 300. Corresponds to the JSON property `values` @return [Array<Object>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/doubleclicksearch_v2/classes.rb, line 730
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 735
def update!(**args)
  @column = args[:column] if args.key?(:column)
  @operator = args[:operator] if args.key?(:operator)
  @values = args[:values] if args.key?(:values)
end