Class: Google::Apis::DfareportingV3_4::AudienceSegmentGroup

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



1313
1314
1315
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 1313

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

Instance Attribute Details

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

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



1300
1301
1302
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 1300

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)


1305
1306
1307
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 1305

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)


1311
1312
1313
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 1311

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1318
1319
1320
1321
1322
# File 'generated/google/apis/dfareporting_v3_4/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