Class DatafeedStatusError
An error occurring in the feed, like "invalid price".
Implements
Inherited Members
Namespace: Google.Apis.ShoppingContent.v2_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class DatafeedStatusError : IDirectResponseSchema
Properties
Code
The code of the error, for example, "validation/invalid_value".
Declaration
[JsonProperty("code")]
public virtual string Code { get; set; }
Property Value
Type | Description |
---|---|
string |
Count
The number of occurrences of the error in the feed.
Declaration
[JsonProperty("count")]
public virtual ulong? Count { get; set; }
Property Value
Type | Description |
---|---|
ulong? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Examples
A list of example occurrences of the error, grouped by product.
Declaration
[JsonProperty("examples")]
public virtual IList<DatafeedStatusExample> Examples { get; set; }
Property Value
Type | Description |
---|---|
IList<DatafeedStatusExample> |
Message
The error message, for example, "Invalid price".
Declaration
[JsonProperty("message")]
public virtual string Message { get; set; }
Property Value
Type | Description |
---|---|
string |