Class DatafeedStatus
The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.ShoppingContent.v2.Data
Assembly: Google.Apis.ShoppingContent.v2.dll
Syntax
public class DatafeedStatus : IDirectResponseSchema
Properties
Country
The country for which the status is reported, represented as a CLDR territory code.
Declaration
[JsonProperty("country")]
public virtual string Country { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DatafeedId
The ID of the feed for which the status is reported.
Declaration
[JsonProperty("datafeedId")]
public virtual ulong? DatafeedId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |
Errors
The list of errors occurring in the feed.
Declaration
[JsonProperty("errors")]
public virtual IList<DatafeedStatusError> Errors { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<DatafeedStatusError> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ItemsTotal
The number of items in the feed that were processed.
Declaration
[JsonProperty("itemsTotal")]
public virtual ulong? ItemsTotal { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |
ItemsValid
The number of items in the feed that were valid.
Declaration
[JsonProperty("itemsValid")]
public virtual ulong? ItemsValid { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |
Kind
Identifies what kind of resource this is. Value: the fixed string "content#datafeedStatus
"
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Language
The two-letter ISO 639-1 language for which the status is reported.
Declaration
[JsonProperty("language")]
public virtual string Language { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LastUploadDate
The last date at which the feed was uploaded.
Declaration
[JsonProperty("lastUploadDate")]
public virtual string LastUploadDate { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ProcessingStatus
The processing status of the feed. Acceptable values are: - ""
failure": The feed could not be processed
or all items had errors.
" - "in progress
": The feed is being processed. - "none
": The feed has not yet
been processed. For example, a feed that has never been uploaded will have this processing status. -
"success
": The feed was processed successfully, though some items might have had errors.
Declaration
[JsonProperty("processingStatus")]
public virtual string ProcessingStatus { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Warnings
The list of errors occurring in the feed.
Declaration
[JsonProperty("warnings")]
public virtual IList<DatafeedStatusError> Warnings { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<DatafeedStatusError> |