Class: Google::Apis::DisplayvideoV3::CarrierAndIspTargetingOptionDetails

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

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CarrierAndIspTargetingOptionDetails

Returns a new instance of CarrierAndIspTargetingOptionDetails.



3211
3212
3213
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3211

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

Instance Attribute Details

#display_nameString

Output only. The display name of the carrier or ISP. Corresponds to the JSON property displayName

Returns:

  • (String)


3204
3205
3206
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3204

def display_name
  @display_name
end

#typeString

Output only. The type indicating if it's carrier or ISP. Corresponds to the JSON property type

Returns:

  • (String)


3209
3210
3211
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3209

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3216
3217
3218
3219
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3216

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @type = args[:type] if args.key?(:type)
end