Show / Hide Table of Contents

Class AssignedLocation

An assignment between a location list and a relevant targeting option. Currently, geo region targeting options are the only supported option for assignment.

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

Properties

AssignedLocationId

Output only. The unique ID of the assigned location. The ID is only unique within a location list. It may be reused in other contexts.

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

ETag

The ETag of the item.

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

Name

Output only. The resource name of the assigned location.

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

TargetingOptionId

Required. The ID of the targeting option assigned to the location list. Must be of type TARGETING_TYPE_GEO_REGION.

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

Implements

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