class Google::Apis::DfareportingV3_4::ObjectFilter
Object Filter.
Attributes
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#objectFilter”. Corresponds to the JSON property `kind` @return [String]
object_ids[RW]
Applicable when status is ASSIGNED. The user has access to objects with these object IDs. Corresponds to the JSON property `objectIds` @return [Array<Fixnum>]
status[RW]
Status of the filter. NONE means the user has access to none of the objects. ALL means the user has access to all objects. ASSIGNED means the user has access to the objects with IDs in the objectIds list. Corresponds to the JSON property `status` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 7993 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 7998 def update!(**args) @kind = args[:kind] if args.key?(:kind) @object_ids = args[:object_ids] if args.key?(:object_ids) @status = args[:status] if args.key?(:status) end