Class: Google::Apis::DfareportingV3_5::AudienceSegmentGroup

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/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.



1295
1296
1297
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1295

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

Instance Attribute Details

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

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



1282
1283
1284
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1282

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)


1287
1288
1289
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1287

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)


1293
1294
1295
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1293

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1300
1301
1302
1303
1304
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 1300

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