Show / Hide Table of Contents

Class ProductStatus

The status of a product, i.e., information about a product computed asynchronously.

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

Properties

CreationDate

Date on which the item has been created, in ISO 8601 format.

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

DataQualityIssues

DEPRECATED - never populated

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

DestinationStatuses

The intended destinations for the product.

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GoogleExpirationDate

Date on which the item expires in Google Shopping, in ISO 8601 format.

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

ItemLevelIssues

A list of all issues associated with the product.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "content#productStatus"

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

LastUpdateDate

Date on which the item has been last updated, in ISO 8601 format.

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

Link

The link to the product.

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

Product

Product data after applying all the join inputs.

Declaration
[JsonProperty("product")]
public virtual Product Product { get; set; }
Property Value
Type Description
Product

ProductId

The ID of the product for which status is reported.

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

Title

The title of the product.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top