Class: Google::Apis::AdexchangebuyerV1_3::PretargetingConfig::ExcludedPlacement

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ExcludedPlacement

Returns a new instance of ExcludedPlacement.



1330
1331
1332
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1330

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

Instance Attribute Details

#tokenString

The value of the placement. Interpretation depends on the placement type, e.g. URL for a site placement, channel name for a channel placement, app id for a mobile app placement. Corresponds to the JSON property token

Returns:

  • (String)


1323
1324
1325
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1323

def token
  @token
end

#typeString

The type of the placement. Corresponds to the JSON property type

Returns:

  • (String)


1328
1329
1330
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1328

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1335
1336
1337
1338
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1335

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