class Google::Apis::DfareportingV3_5::ChannelGroupingRule
Represents a DfaReporting channel grouping rule.
Attributes
disjunctive_match_statements[RW]
The disjunctive match statements contained within this rule. Corresponds to the JSON property `disjunctiveMatchStatements` @return [Array<Google::Apis::DfareportingV3_5::DisjunctiveMatchStatement>]
kind[RW]
The kind of resource this is, in this case dfareporting#channelGroupingRule. Corresponds to the JSON property `kind` @return [String]
name[RW]
Rule
name. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 1872 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_5/classes.rb, line 1877 def update!(**args) @disjunctive_match_statements = args[:disjunctive_match_statements] if args.key?(:disjunctive_match_statements) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) end