Class: Google::Apis::DisplayvideoV2::ProximityLocationListAssignedTargetingOptionDetails

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



10062
10063
10064
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10062

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)


10048
10049
10050
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10048

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)


10055
10056
10057
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10055

def proximity_radius
  @proximity_radius
end

#proximity_radius_unitString

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

Returns:

  • (String)


10060
10061
10062
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10060

def proximity_radius_unit
  @proximity_radius_unit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10067
10068
10069
10070
10071
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 10067

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