Show / Hide Table of Contents

Class BulkEditSitesRequest

Request message for SiteService.BulkEditSites.

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

Properties

AdvertiserId

The ID of the advertiser that owns the parent channel.

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

CreatedSites

The sites to create in batch, specified as a list of Sites.

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

DeletedSites

The sites to delete in batch, specified as a list of site url_or_app_ids.

Declaration
[JsonProperty("deletedSites")]
public virtual IList<string> DeletedSites { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

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 parent channel.

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