Class: Google::Apis::DfareportingV3_4::PlacementAssignment

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

Overview

Placement Assignment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PlacementAssignment

Returns a new instance of PlacementAssignment.



9118
9119
9120
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9118

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

Instance Attribute Details

#activeBoolean Also known as: active?

Whether this placement assignment is active. When true, the placement will be included in the ad's rotation. Corresponds to the JSON property active

Returns:

  • (Boolean)


9098
9099
9100
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9098

def active
  @active
end

#placement_idFixnum

ID of the placement to be assigned. This is a required field. Corresponds to the JSON property placementId

Returns:

  • (Fixnum)


9104
9105
9106
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9104

def placement_id
  @placement_id
end

#placement_id_dimension_valueGoogle::Apis::DfareportingV3_4::DimensionValue

Represents a DimensionValue resource. Corresponds to the JSON property placementIdDimensionValue



9109
9110
9111
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9109

def placement_id_dimension_value
  @placement_id_dimension_value
end

#ssl_requiredBoolean Also known as: ssl_required?

Whether the placement to be assigned requires SSL. This is a read-only field that is auto-generated when the ad is inserted or updated. Corresponds to the JSON property sslRequired

Returns:

  • (Boolean)


9115
9116
9117
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9115

def ssl_required
  @ssl_required
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9123
9124
9125
9126
9127
9128
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 9123

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