Class: Google::Apis::DfareportingV3_3::ObjectFilter

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/representations.rb

Overview

Object Filter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ObjectFilter

Returns a new instance of ObjectFilter.



7436
7437
7438
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7436

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#objectFilter". Corresponds to the JSON property kind

Returns:

  • (String)


7421
7422
7423
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7421

def kind
  @kind
end

#object_idsArray<Fixnum>

Applicable when status is ASSIGNED. The user has access to objects with these object IDs. Corresponds to the JSON property objectIds

Returns:

  • (Array<Fixnum>)


7427
7428
7429
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7427

def object_ids
  @object_ids
end

#statusString

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

Returns:

  • (String)


7434
7435
7436
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7434

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7441
7442
7443
7444
7445
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 7441

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