class Google::Apis::DfareportingV3_4::ChannelGrouping

Represents a DfaReporting channel grouping.

Attributes

fallback_name[RW]

ChannelGrouping fallback name. Corresponds to the JSON property `fallbackName` @return [String]

kind[RW]

The kind of resource this is, in this case dfareporting#channelGrouping. Corresponds to the JSON property `kind` @return [String]

name[RW]

ChannelGrouping name. Corresponds to the JSON property `name` @return [String]

rules[RW]

The rules contained within this channel grouping. Corresponds to the JSON property `rules` @return [Array<Google::Apis::DfareportingV3_4::ChannelGroupingRule>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 1902
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 1907
def update!(**args)
  @fallback_name = args[:fallback_name] if args.key?(:fallback_name)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @rules = args[:rules] if args.key?(:rules)
end