Class: Google::Apis::DisplayvideoV2::CarrierAndIspTargetingOptionDetails
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::CarrierAndIspTargetingOptionDetails
- 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
Represents a targetable carrier or ISP. This will be populated in the
carrier_and_isp_details field of a TargetingOption when targeting_type is
TARGETING_TYPE_CARRIER_AND_ISP
.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Output only.
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CarrierAndIspTargetingOptionDetails
constructor
A new instance of CarrierAndIspTargetingOptionDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CarrierAndIspTargetingOptionDetails
Returns a new instance of CarrierAndIspTargetingOptionDetails.
2757 2758 2759 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2757 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Output only. The display name of the carrier or ISP.
Corresponds to the JSON property displayName
2750 2751 2752 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2750 def display_name @display_name end |
#type ⇒ String
Output only. The type indicating if it's carrier or ISP.
Corresponds to the JSON property type
2755 2756 2757 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2755 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2762 2763 2764 2765 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2762 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @type = args[:type] if args.key?(:type) end |