Show / Hide Table of Contents

Class BulkEditAssignedInventorySourcesRequest

Request message for AssignedInventorySourceService.BulkEdit.

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

Properties

AdvertiserId

The ID of the advertiser that owns the parent inventory source group. The parent partner does not have access to these assigned inventory sources.

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

CreatedAssignedInventorySources

The assigned inventory sources to create in bulk, specified as a list of AssignedInventorySources.

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

DeletedAssignedInventorySources

The IDs of the assigned inventory sources to delete in bulk, specified as a list of assigned_inventory_source_ids.

Declaration
[JsonProperty("deletedAssignedInventorySources")]
public virtual IList<long?> DeletedAssignedInventorySources { 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

PartnerId

The ID of the partner that owns the inventory source group. Only this partner has write access to these assigned inventory sources.

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

Implements

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