class Google::Apis::DisplayvideoV1::PoiTargetingOptionDetails
Represents a targetable point of interest(POI). This will be populated in the poi_details field when targeting_type is `TARGETING_TYPE_POI`.
Attributes
display_name[RW]
Output only. The display name of a POI(e.g. “Times Square”, “Space Needle”), followed by its full address if available. Corresponds to the JSON property `displayName` @return [String]
latitude[RW]
Output only. Latitude of the POI rounding to 6th decimal place. Corresponds to the JSON property `latitude` @return [Float]
longitude[RW]
Output only. Longitude of the POI rounding to 6th decimal place. Corresponds to the JSON property `longitude` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 8251 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/displayvideo_v1/classes.rb, line 8256 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @latitude = args[:latitude] if args.key?(:latitude) @longitude = args[:longitude] if args.key?(:longitude) end