Show / Hide Table of Contents

Class ProductInput

This resource represents input data you submit for a product, not the processed product that you see in Merchant Center, in Shopping ads, or across Google surfaces. Product inputs, rules and supplemental data source data are combined to create the processed [Product][google.shopping.merchant.products.v1.Product]. For more information, see Manage products.

Required product input attributes to pass data validation checks are primarily defined in the Products Data Specification.

The following attributes are required: [feedLabel][google.shopping.merchant.products.v1.Product.feed_label], [contentLanguage][google.shopping.merchant.products.v1.Product.content_language] and [offerId][google.shopping.merchant.products.v1.Product.offer_id].

After inserting, updating, or deleting a product input, it may take several minutes before the processed product can be retrieved.

All fields in the product input and its sub-messages match the English name of their corresponding attribute in the Products Data Specification with some exceptions. The following reference documentation lists the field names in the camelCase casing style while the Products Data Specification lists the names in the snake_case casing style.

Inheritance
object
ProductInput
Implements
IMessage<ProductInput>
IEquatable<ProductInput>
IDeepCloneable<ProductInput>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Shopping.Merchant.Products.V1
Assembly: Google.Shopping.Merchant.Products.V1.dll
Syntax
public sealed class ProductInput : IMessage<ProductInput>, IEquatable<ProductInput>, IDeepCloneable<ProductInput>, IBufferMessage, IMessage

Constructors

ProductInput()

Declaration
public ProductInput()

ProductInput(ProductInput)

Declaration
public ProductInput(ProductInput other)
Parameters
Type Name Description
ProductInput other

Properties

ContentLanguage

Required. Immutable. The two-letter ISO 639-1 language code for the product.

Declaration
public string ContentLanguage { get; set; }
Property Value
Type Description
string

CustomAttributes

Optional. A list of custom (merchant-provided) attributes. It can also be used for submitting 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. Maximum allowed number of characters for each custom attribute is 10240 (represents sum of characters for name and value). Maximum 2500 custom attributes can be set per product, with total size of 102.4kB. Underscores in custom attribute names are replaced by spaces upon insertion.

Declaration
public RepeatedField<CustomAttribute> CustomAttributes { get; }
Property Value
Type Description
RepeatedField<CustomAttribute>

FeedLabel

Required. Immutable. The feed label that lets you categorize and identify your products. The maximum allowed characters are 20, and the supported characters are A-Z, 0-9, hyphen, and underscore. The feed label must not include any spaces. For more information, see Using feed labels.

Declaration
public string FeedLabel { get; set; }
Property Value
Type Description
string

HasVersionNumber

Gets whether the "version_number" field is set

Declaration
public bool HasVersionNumber { get; }
Property Value
Type Description
bool

LegacyLocal

Immutable. 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/productInputs/local~en~US~sku123. If a product that is not legacy_local is already targeting local destinations, creating a legacy_local product with an otherwise matching name will fail.

Declaration
public bool LegacyLocal { get; set; }
Property Value
Type Description
bool

Name

Identifier. The name of the product input. Format: accounts/{account}/productInputs/{productinput} where the last section productinput consists of: content_language~feed_label~offer_id example for product input name is accounts/123/productInputs/en~US~sku123. A legacy local product input name would be accounts/123/productInputs/local~en~US~sku123. Note: For calls to the v1beta version, the productInput section consists of: channel~content_language~feed_label~offer_id, for example: accounts/123/productInputs/online~en~US~sku123.

Declaration
public string Name { get; set; }
Property Value
Type Description
string

OfferId

Required. Immutable. 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 products data specification for details.

Declaration
public string OfferId { get; set; }
Property Value
Type Description
string

Product

Output only. The name of the processed product. Format: accounts/{account}/products/{product}

Declaration
public string Product { get; set; }
Property Value
Type Description
string

ProductAttributes

Optional. A list of strongly-typed product attributes.

Declaration
public ProductAttributes ProductAttributes { get; set; }
Property Value
Type Description
ProductAttributes

ProductInputName

ProductInputName-typed view over the Name resource name property.

Declaration
public ProductInputName ProductInputName { get; set; }
Property Value
Type Description
ProductInputName

VersionNumber

Optional. Immutable. 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. Do not set this field for updates. Do not set this field for insertions into supplemental data sources.

If the operation is prevented, the aborted exception will be thrown.

Declaration
public long VersionNumber { get; set; }
Property Value
Type Description
long
In this article
Back to top Generated by DocFX