Class: Google::Apis::DisplayvideoV3::RemarketingConfig

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

Settings that control the whether remarketing is enabled for the given identified advertiser.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RemarketingConfig

Returns a new instance of RemarketingConfig.



10980
10981
10982
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10980

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

Instance Attribute Details

#advertiser_idFixnum

Output only. The ID of the advertiser. Corresponds to the JSON property advertiserId

Returns:

  • (Fixnum)


10971
10972
10973
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10971

def advertiser_id
  @advertiser_id
end

#remarketing_enabledBoolean Also known as: remarketing_enabled?

Output only. Whether the Floodlight activity remarketing user list is available to the identified advertiser. Corresponds to the JSON property remarketingEnabled

Returns:

  • (Boolean)


10977
10978
10979
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10977

def remarketing_enabled
  @remarketing_enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10985
10986
10987
10988
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10985

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