Class: Google::Apis::DfareportingV2_5::AudienceSegment

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

Overview

Audience Segment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AudienceSegment

Returns a new instance of AudienceSegment.



1254
1255
1256
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1254

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

Instance Attribute Details

#allocationFixnum

Weight allocated to this segment. Must be between 1 and 1000. The weight assigned will be understood in proportion to the weights assigned to other segments in the same segment group. Corresponds to the JSON property allocation

Returns:

  • (Fixnum)


1241
1242
1243
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1241

def allocation
  @allocation
end

#idString

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

Returns:

  • (String)


1246
1247
1248
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1246

def id
  @id
end

#nameString

Name of this audience segment. This is a required field and must be less than 65 characters long. Corresponds to the JSON property name

Returns:

  • (String)


1252
1253
1254
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1252

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1259
1260
1261
1262
1263
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 1259

def update!(**args)
  @allocation = args[:allocation] if args.key?(:allocation)
  @id = args[:id] if args.key?(:id)
  @name = args[:name] if args.key?(:name)
end