class Google::Apis::DisplayvideoV1::ParentEntityFilter

A filtering option that filters on selected file types belonging to a chosen set of filter entities.

Attributes

file_type[RW]

Required. File types that will be returned. Corresponds to the JSON property `fileType` @return [Array<String>]

filter_ids[RW]

The IDs of the specified filter type. This is used to filter entities to fetch. If filter type is not `FILTER_TYPE_NONE`, at least one ID must be specified. Corresponds to the JSON property `filterIds` @return [Array<Fixnum>]

filter_type[RW]

Required. Filter type used to filter fetched entities. Corresponds to the JSON property `filterType` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/displayvideo_v1/classes.rb, line 7759
def update!(**args)
  @file_type = args[:file_type] if args.key?(:file_type)
  @filter_ids = args[:filter_ids] if args.key?(:filter_ids)
  @filter_type = args[:filter_type] if args.key?(:filter_type)
end