Class: Google::Apis::AdexchangebuyerV1_3::PretargetingConfig::Placement

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

Constructor Details

#initialize(**args) ⇒ Placement

Returns a new instance of Placement.



1357
1358
1359
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1357

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)


1350
1351
1352
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1350

def token
  @token
end

#typeString

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

Returns:

  • (String)


1355
1356
1357
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1355

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1362
1363
1364
1365
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 1362

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