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. Required product input attributes to pass data validation checks are primarily defined in the Products Data Specification. The following attributes are required: feedLabel, contentLanguage and offerId. 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 vertical spec with some exceptions.
Implements
Inherited Members
Namespace: Google.Apis.Merchant.products_v1beta.Data
Assembly: Google.Apis.Merchant.products_v1beta.dll
Syntax
public class ProductInput : IDirectResponseSchema
Properties
Attributes
Optional. A list of product attributes.
Declaration
[JsonProperty("attributes")]
public virtual Attributes Attributes { get; set; }
Property Value
Type | Description |
---|---|
Attributes |
Channel
Required. Immutable. The channel of the product.
Declaration
[JsonProperty("channel")]
public virtual string Channel { get; set; }
Property Value
Type | Description |
---|---|
string |
ContentLanguage
Required. Immutable. 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
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, such as additional attributes
used for Buy on Google. 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
[JsonProperty("customAttributes")]
public virtual IList<CustomAttribute> CustomAttributes { get; set; }
Property Value
Type | Description |
---|---|
IList<CustomAttribute> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FeedLabel
Required. Immutable. The feed label for the product.
Declaration
[JsonProperty("feedLabel")]
public virtual string FeedLabel { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Identifier. The name of the product input. Format:
"{productinput.name=accounts/{account}/productInputs/{productinput}}"
where the last section
productinput
consists of 4 parts: channel~content_language~feed_label~offer_id example for product input
name is "accounts/123/productInputs/online~en~US~sku123"
Declaration
[JsonProperty("name")]
public virtual 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
[JsonProperty("offerId")]
public virtual string OfferId { get; set; }
Property Value
Type | Description |
---|---|
string |
Product
Output only. The name of the processed product. Format:
"{product.name=accounts/{account}/products/{product}}"
Declaration
[JsonProperty("product")]
public virtual string Product { get; set; }
Property Value
Type | Description |
---|---|
string |
VersionNumber
Optional. 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? |