Show / Hide Table of Contents

Class BulkEditAssignedLocationsRequest

Request message for AssignedLocationService.BulkEditAssignedLocations.

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

Properties

CreatedAssignedLocations

The assigned locations to create in bulk, specified as a list of AssignedLocations.

Declaration
[JsonProperty("createdAssignedLocations")]
public virtual IList<AssignedLocation> CreatedAssignedLocations { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<AssignedLocation>

DeletedAssignedLocations

The IDs of the assigned locations to delete in bulk, specified as a list of assigned_location_ids.

Declaration
[JsonProperty("deletedAssignedLocations")]
public virtual IList<long?> DeletedAssignedLocations { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Nullable<System.Int64>>

ETag

The ETag of the item.

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

Implements

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