Show / Hide Table of Contents

Class ManualTrigger

A single manual trigger in Display & Video 360.

Inheritance
System.Object
ManualTrigger
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 ManualTrigger : IDirectResponseSchema

Properties

ActivationDurationMinutes

Required. The maximum duration of each activation in minutes. Must be between 1 and 360 inclusive. After this duration, the trigger will be automatically deactivated.

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

AdvertiserId

Required. Immutable. The unique ID of the advertiser that the manual trigger belongs to.

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

DisplayName

Required. The display name of the manual trigger. Must be UTF-8 encoded with a maximum size of 240 bytes.

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

ETag

The ETag of the item.

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

LatestActivationTime

Output only. The timestamp of the trigger's latest activation.

Declaration
[JsonProperty("latestActivationTime")]
public virtual object LatestActivationTime { get; set; }
Property Value
Type Description
System.Object

Name

Output only. The resource name of the manual trigger.

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

State

Output only. The state of the manual trigger. Will be set to the INACTIVE state upon creation.

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

TriggerId

Output only. The unique ID of the manual trigger.

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

Implements

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