Show / Hide Table of Contents

Class DatafeedTarget

Inheritance
System.Object
DatafeedTarget
Implements
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.ShoppingContent.v2_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class DatafeedTarget : IDirectResponseSchema

Properties

Country

The country where the items in the feed will be included in the search index, represented as a CLDR territory code.

Declaration
[JsonProperty("country")]
public virtual string Country { 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

ExcludedDestinations

The list of destinations to exclude for this target (corresponds to unchecked check boxes in Merchant Center).

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

IncludedDestinations

The list of destinations to include for this target (corresponds to checked check boxes in Merchant Center). Default destinations are always included unless provided in excludedDestinations. List of supported destinations (if available to the account): - DisplayAds - Shopping - ShoppingActions - SurfacesAcrossGoogle

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

Language

The two-letter ISO 639-1 language of the items in the feed. Must be a valid language for targets[].country.

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

Implements

IDirectResponseSchema
In This Article
Back to top