Class: Google::Apis::DisplayvideoV3::ThirdPartyVendorConfig

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 how third-party measurement vendors are configured.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ThirdPartyVendorConfig

Returns a new instance of ThirdPartyVendorConfig.



11978
11979
11980
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11978

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

Instance Attribute Details

#placement_idString

The ID used by the platform of the third-party vendor to identify the line item. Corresponds to the JSON property placementId

Returns:

  • (String)


11971
11972
11973
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11971

def placement_id
  @placement_id
end

#vendorString

The third-party measurement vendor. Corresponds to the JSON property vendor

Returns:

  • (String)


11976
11977
11978
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11976

def vendor
  @vendor
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11983
11984
11985
11986
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 11983

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