Class DatafeedStatusError
An error occurring in the feed, like "invalid price".
Inheritance
System.Object
DatafeedStatusError
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.ShoppingContent.v2.Data
Assembly: Google.Apis.ShoppingContent.v2.dll
Syntax
public class DatafeedStatusError : IDirectResponseSchema
Properties
Code
The code of the error, e.g., "validation/invalid_value".
Declaration
[JsonProperty("code")]
public virtual string Code { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.Nullable<System.UInt64> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.Collections.Generic.IList<DatafeedStatusExample> |
Message
The error message, e.g., "Invalid price".
Declaration
[JsonProperty("message")]
public virtual string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Implements
Google.Apis.Requests.IDirectResponseSchema