Show / Hide Table of Contents

Class PerformanceGoal

Settings that control the performance goal of a campaign or insertion order.

Inheritance
System.Object
PerformanceGoal
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class PerformanceGoal : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

PerformanceGoalAmountMicros

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 * PERFORMANCE_GOAL_TYPE_VCPM For example 1500000 represents 1.5 standard units of the currency.

Declaration
[JsonProperty("performanceGoalAmountMicros")]
public virtual long? PerformanceGoalAmountMicros { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

PerformanceGoalPercentageMicros

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 * PERFORMANCE_GOAL_TYPE_CLICK_CVR

  • PERFORMANCE_GOAL_TYPE_IMPRESSION_CVR * PERFORMANCE_GOAL_TYPE_VTR * PERFORMANCE_GOAL_TYPE_AUDIO_COMPLETION_RATE * PERFORMANCE_GOAL_TYPE_VIDEO_COMPLETION_RATE For example, 70000 represents 7% (decimal 0.07).
Declaration
[JsonProperty("performanceGoalPercentageMicros")]
public virtual long? PerformanceGoalPercentageMicros { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

PerformanceGoalString

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.

Declaration
[JsonProperty("performanceGoalString")]
public virtual string PerformanceGoalString { get; set; }
Property Value
Type Description
System.String

PerformanceGoalType

Required. The type of the performance goal.

Declaration
[JsonProperty("performanceGoalType")]
public virtual string PerformanceGoalType { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top