Class: Google::Apis::DfareportingV2_7::CreativeAssetSelection

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

Overview

Encapsulates the list of rules for asset selection and a default asset in case none of the rules match. Applicable to INSTREAM_VIDEO creatives.

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) ⇒ CreativeAssetSelection

Returns a new instance of CreativeAssetSelection



3611
3612
3613
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 3611

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

Instance Attribute Details

#default_asset_idFixnum

A creativeAssets[].id. This should refer to one of the parent assets in this creative, and will be served if none of the rules match. This is a required field. Corresponds to the JSON property defaultAssetId

Returns:

  • (Fixnum)


3602
3603
3604
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 3602

def default_asset_id
  @default_asset_id
end

#rulesArray<Google::Apis::DfareportingV2_7::Rule>

Rules determine which asset will be served to a viewer. Rules will be evaluated in the order in which they are stored in this list. This list must contain at least one rule. Applicable to INSTREAM_VIDEO creatives. Corresponds to the JSON property rules



3609
3610
3611
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 3609

def rules
  @rules
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3616
3617
3618
3619
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 3616

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