class Google::Apis::DfareportingV2_3::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<String>]
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 generated/google/apis/dfareporting_v2_3/classes.rb, line 6590 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/dfareporting_v2_3/classes.rb, line 6595 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