Class: Google::Apis::DisplayvideoV3::ProximityLocationListAssignedTargetingOptionDetails

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

Overview

Targeting details for proximity location list. This will be populated in the details field of an AssignedTargetingOption when targeting_type is TARGETING_TYPE_PROXIMITY_LOCATION_LIST.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ProximityLocationListAssignedTargetingOptionDetails

Returns a new instance of ProximityLocationListAssignedTargetingOptionDetails.



10857
10858
10859
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10857

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

Instance Attribute Details

#proximity_location_list_idFixnum

Required. ID of the proximity location list. Should refer to the location_list_id field of a LocationList resource whose type is TARGETING_LOCATION_TYPE_PROXIMITY. Corresponds to the JSON property proximityLocationListId

Returns:

  • (Fixnum)


10843
10844
10845
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10843

def proximity_location_list_id
  @proximity_location_list_id
end

#proximity_radiusFloat

Required. Radius expressed in the distance units set in proximity_radius_unit. This represents the size of the area around a chosen location that will be targeted. Radius should be between 1 and 500 miles or 800 kilometers. Corresponds to the JSON property proximityRadius

Returns:

  • (Float)


10850
10851
10852
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10850

def proximity_radius
  @proximity_radius
end

#proximity_radius_unitString

Required. Radius distance units. Corresponds to the JSON property proximityRadiusUnit

Returns:

  • (String)


10855
10856
10857
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10855

def proximity_radius_unit
  @proximity_radius_unit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10862
10863
10864
10865
10866
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10862

def update!(**args)
  @proximity_location_list_id = args[:proximity_location_list_id] if args.key?(:proximity_location_list_id)
  @proximity_radius = args[:proximity_radius] if args.key?(:proximity_radius)
  @proximity_radius_unit = args[:proximity_radius_unit] if args.key?(:proximity_radius_unit)
end