class Google::Apis::DfareportingV2_1::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::DfareportingV2_1::AudienceSegment>]

id[RW]

ID of this audience segment group. This is a read-only, auto-generated field. Corresponds to the JSON property `id` @return [String]

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 generated/google/apis/dfareporting_v2_1/classes.rb, line 1268
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/dfareporting_v2_1/classes.rb, line 1273
def update!(**args)
  @audience_segments = args[:audience_segments] unless args[:audience_segments].nil?
  @id = args[:id] unless args[:id].nil?
  @name = args[:name] unless args[:name].nil?
end