Class Product
The processed product, built from multiple product inputs after applying rules and supplemental data sources. This processed product matches what is shown in your Merchant Center account. Each product is built from exactly one primary data source product input, and multiple supplemental data source inputs. After inserting, updating, or deleting a product input, it may take several minutes before the updated processed product can be retrieved. All fields in the processed product and its sub-messages match the name of their corresponding attribute in the Product data specification with some exceptions.
Implements
Inherited Members
Namespace: Google.Apis.Merchant.products_v1.Data
Assembly: Google.Apis.Merchant.products_v1.dll
Syntax
public class Product : IDirectResponseSchema
Properties
AutomatedDiscounts
Output only. The automated discounts information for the product.
Declaration
[JsonProperty("automatedDiscounts")]
public virtual AutomatedDiscounts AutomatedDiscounts { get; set; }
Property Value
| Type | Description |
|---|---|
| AutomatedDiscounts |
ContentLanguage
Output only. The two-letter ISO 639-1 language code for the product.
Declaration
[JsonProperty("contentLanguage")]
public virtual string ContentLanguage { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
CustomAttributes
Output only. A list of custom (merchant-provided) attributes. It can also be used to submit any attribute of
the data specification in its generic form (for example, { "name": "size type", "value": "regular" }).
This is useful for submitting attributes not explicitly exposed by the API, such as additional attributes
used for Buy on Google.
Declaration
[JsonProperty("customAttributes")]
public virtual IList<CustomAttribute> CustomAttributes { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<CustomAttribute> |
DataSource
Output only. The primary data source of the product.
Declaration
[JsonProperty("dataSource")]
public virtual string DataSource { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
FeedLabel
Output only. The feed label lets you categorize and identify your products. The maximum allowed characters
is 20 and the supported characters areA-Z, 0-9, hyphen and underscore. The feed label must not include
any spaces. For more information, see Using feed labels
Declaration
[JsonProperty("feedLabel")]
public virtual string FeedLabel { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
LegacyLocal
Output only. Determines whether the product is only targeting local destinations and whether the product
name should be distinguished with a local~ prefix. For example,
accounts/123/products/local~en~US~sku123.
Declaration
[JsonProperty("legacyLocal")]
public virtual bool? LegacyLocal { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Name
The name of the product. Format: accounts/{account}/products/{product} where the last section product
consists of: content_language~feed_label~offer_id example for product name is
accounts/123/products/en~US~sku123. A legacy local product name would be
accounts/123/products/local~en~US~sku123. Note: For calls to the v1beta version, the product section
consists of: channel~content_language~feed_label~offer_id, for example:
accounts/123/products/online~en~US~sku123.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
OfferId
Output only. Your unique identifier for the product. This is the same for the product input and processed product. Leading and trailing whitespaces are stripped and multiple whitespaces are replaced by a single whitespace upon submission. See the product data specification for details.
Declaration
[JsonProperty("offerId")]
public virtual string OfferId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ProductAttributes
Output only. A list of strongly-typed product attributes.
Declaration
[JsonProperty("productAttributes")]
public virtual ProductAttributes ProductAttributes { get; set; }
Property Value
| Type | Description |
|---|---|
| ProductAttributes |
ProductStatus
Output only. The status of a product, data validation issues, that is, information about a product computed asynchronously.
Declaration
[JsonProperty("productStatus")]
public virtual ProductStatus ProductStatus { get; set; }
Property Value
| Type | Description |
|---|---|
| ProductStatus |
VersionNumber
Output only. Represents the existing version (freshness) of the product, which can be used to preserve the
right order when multiple updates are done at the same time. If set, the insertion is prevented when version
number is lower than the current version number of the existing product. Re-insertion (for example, product
refresh after 30 days) can be performed with the current version_number. Only supported for insertions
into primary data sources. If the operation is prevented, the aborted exception will be thrown.
Declaration
[JsonProperty("versionNumber")]
public virtual long? VersionNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| long? |