Class: Google::Apis::DfareportingV4::AudienceSegmentGroup

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb

Overview

Audience Segment Group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AudienceSegmentGroup

Returns a new instance of AudienceSegmentGroup.



1339
1340
1341
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1339

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#audience_segmentsArray<Google::Apis::DfareportingV4::AudienceSegment>

Audience segments assigned to this group. The number of segments must be between 2 and 100. Corresponds to the JSON property audienceSegments



1326
1327
1328
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1326

def audience_segments
  @audience_segments
end

#idFixnum

ID of this audience segment group. This is a read-only, auto-generated field. Corresponds to the JSON property id

Returns:

  • (Fixnum)


1331
1332
1333
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1331

def id
  @id
end

#nameString

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

Returns:

  • (String)


1337
1338
1339
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1337

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1344
1345
1346
1347
1348
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 1344

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