Class: Google::Apis::MerchantapiProductsV1beta::Product

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/merchantapi_products_v1beta/classes.rb,
lib/google/apis/merchantapi_products_v1beta/representations.rb,
lib/google/apis/merchantapi_products_v1beta/representations.rb

Overview

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 and in Shopping ads and other surfaces across Google. 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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Product

Returns a new instance of Product.



1225
1226
1227
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1225

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#attributesGoogle::Apis::MerchantapiProductsV1beta::Attributes

Attributes. Corresponds to the JSON property attributes



1160
1161
1162
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1160

def attributes
  @attributes
end

#channelString

Output only. The channel of the product. Corresponds to the JSON property channel

Returns:

  • (String)


1166
1167
1168
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1166

def channel
  @channel
end

#content_languageString

Output only. The two-letter ISO 639-1 language code for the product. Corresponds to the JSON property contentLanguage

Returns:

  • (String)


1172
1173
1174
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1172

def content_language
  @content_language
end

#custom_attributesArray<Google::Apis::MerchantapiProductsV1beta::CustomAttribute>

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. Corresponds to the JSON property customAttributes



1181
1182
1183
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1181

def custom_attributes
  @custom_attributes
end

#data_sourceString

Output only. The primary data source of the product. Corresponds to the JSON property dataSource

Returns:

  • (String)


1186
1187
1188
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1186

def data_source
  @data_source
end

#feed_labelString

Output only. The feed label for the product. Corresponds to the JSON property feedLabel

Returns:

  • (String)


1191
1192
1193
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1191

def feed_label
  @feed_label
end

#nameString

The name of the product. Format: "product.name=accounts/account/products/ product" Corresponds to the JSON property name

Returns:

  • (String)


1197
1198
1199
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1197

def name
  @name
end

#offer_idString

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. Corresponds to the JSON property offerId

Returns:

  • (String)


1206
1207
1208
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1206

def offer_id
  @offer_id
end

#product_statusGoogle::Apis::MerchantapiProductsV1beta::ProductStatus

The status of a product, data validation issues, that is, information about a product computed asynchronously. Corresponds to the JSON property productStatus



1212
1213
1214
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1212

def product_status
  @product_status
end

#version_numberFixnum

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. Corresponds to the JSON property versionNumber

Returns:

  • (Fixnum)


1223
1224
1225
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1223

def version_number
  @version_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
# File 'lib/google/apis/merchantapi_products_v1beta/classes.rb', line 1230

def update!(**args)
  @attributes = args[:attributes] if args.key?(:attributes)
  @channel = args[:channel] if args.key?(:channel)
  @content_language = args[:content_language] if args.key?(:content_language)
  @custom_attributes = args[:custom_attributes] if args.key?(:custom_attributes)
  @data_source = args[:data_source] if args.key?(:data_source)
  @feed_label = args[:feed_label] if args.key?(:feed_label)
  @name = args[:name] if args.key?(:name)
  @offer_id = args[:offer_id] if args.key?(:offer_id)
  @product_status = args[:product_status] if args.key?(:product_status)
  @version_number = args[:version_number] if args.key?(:version_number)
end