class Google::Apis::DfareportingV3_3::AudienceSegmentGroup
Audience Segment Group.
Attributes
audience_segments[RW]
Audience segments assigned to this group. The number of segments must be between 2 and 100. Corresponds to the JSON property `audienceSegments` @return [Array<Google::Apis::DfareportingV3_3::AudienceSegment>]
id[RW]
ID of this audience segment group. This is a read-only, auto-generated field. Corresponds to the JSON property `id` @return [Fixnum]
name[RW]
Name of this audience segment group. This is a required field and must be less than 65 characters long. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 1313 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_3/classes.rb, line 1318 def update!(**args) @audience_segments = args[:audience_segments] if args.key?(:audience_segments) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) end