Class: Google::Apis::DfareportingV3_5::DisjunctiveMatchStatement
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_5::DisjunctiveMatchStatement
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/representations.rb
Overview
Represents a Disjunctive Match Statement resource, which is a conjunction (and) of disjunctive (or) boolean statements.
Instance Attribute Summary collapse
-
#event_filters ⇒ Array<Google::Apis::DfareportingV3_5::EventFilter>
The event filters contained within this disjunctive match statement.
-
#kind ⇒ String
The kind of resource this is, in this case dfareporting# disjunctiveMatchStatement.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DisjunctiveMatchStatement
constructor
A new instance of DisjunctiveMatchStatement.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DisjunctiveMatchStatement
Returns a new instance of DisjunctiveMatchStatement.
5303 5304 5305 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5303 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event_filters ⇒ Array<Google::Apis::DfareportingV3_5::EventFilter>
The event filters contained within this disjunctive match statement.
Corresponds to the JSON property eventFilters
5295 5296 5297 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5295 def event_filters @event_filters end |
#kind ⇒ String
The kind of resource this is, in this case dfareporting#
disjunctiveMatchStatement.
Corresponds to the JSON property kind
5301 5302 5303 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5301 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5308 5309 5310 5311 |
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 5308 def update!(**args) @event_filters = args[:event_filters] if args.key?(:event_filters) @kind = args[:kind] if args.key?(:kind) end |