Class: Google::Apis::DisplayvideoV1::PerformanceGoal
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::PerformanceGoal
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/representations.rb
Overview
Settings that control the performance goal of a campaign or insertion order.
Instance Attribute Summary collapse
-
#performance_goal_amount_micros ⇒ Fixnum
The goal amount, in micros of the advertiser's currency.
-
#performance_goal_percentage_micros ⇒ Fixnum
The decimal representation of the goal percentage in micros.
-
#performance_goal_string ⇒ String
A key performance indicator (KPI) string, which can be empty.
-
#performance_goal_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PerformanceGoal
constructor
A new instance of PerformanceGoal.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PerformanceGoal
Returns a new instance of PerformanceGoal.
7160 7161 7162 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7160 def initialize(**args) update!(**args) end |
Instance Attribute Details
#performance_goal_amount_micros ⇒ Fixnum
The goal amount, in micros of the advertiser's currency. Applicable when
performance_goal_type is one of: * PERFORMANCE_GOAL_TYPE_CPM
*
PERFORMANCE_GOAL_TYPE_CPC
* PERFORMANCE_GOAL_TYPE_CPA
*
PERFORMANCE_GOAL_TYPE_CPIAVC
For example 1500000 represents 1.5 standard
units of the currency.
Corresponds to the JSON property performanceGoalAmountMicros
7138 7139 7140 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7138 def performance_goal_amount_micros @performance_goal_amount_micros end |
#performance_goal_percentage_micros ⇒ Fixnum
The decimal representation of the goal percentage in micros. Applicable when
performance_goal_type is one of: * PERFORMANCE_GOAL_TYPE_CTR
*
PERFORMANCE_GOAL_TYPE_VIEWABILITY
For example, 70000 represents 7% (decimal 0.
07).
Corresponds to the JSON property performanceGoalPercentageMicros
7146 7147 7148 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7146 def performance_goal_percentage_micros @performance_goal_percentage_micros end |
#performance_goal_string ⇒ String
A key performance indicator (KPI) string, which can be empty. Must be UTF-8
encoded with a length of no more than 100 characters. Applicable when
performance_goal_type is set to PERFORMANCE_GOAL_TYPE_OTHER
.
Corresponds to the JSON property performanceGoalString
7153 7154 7155 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7153 def performance_goal_string @performance_goal_string end |
#performance_goal_type ⇒ String
Required. The type of the performance goal.
Corresponds to the JSON property performanceGoalType
7158 7159 7160 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7158 def performance_goal_type @performance_goal_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7165 7166 7167 7168 7169 7170 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7165 def update!(**args) @performance_goal_amount_micros = args[:performance_goal_amount_micros] if args.key?(:performance_goal_amount_micros) @performance_goal_percentage_micros = args[:performance_goal_percentage_micros] if args.key?(:performance_goal_percentage_micros) @performance_goal_string = args[:performance_goal_string] if args.key?(:performance_goal_string) @performance_goal_type = args[:performance_goal_type] if args.key?(:performance_goal_type) end |