Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaMerchantCenterLink
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2beta::GoogleCloudRetailV2betaMerchantCenterLink
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2beta/classes.rb,
lib/google/apis/retail_v2beta/representations.rb,
lib/google/apis/retail_v2beta/representations.rb
Overview
Represents a link between a Merchant Center account and a branch. After a link is established, products from the linked Merchant Center account are streamed to the linked branch.
Instance Attribute Summary collapse
-
#branch_id ⇒ String
The branch ID (e.g. 0/1/2) within this catalog that products from merchant_center_account_id are streamed to.
-
#destinations ⇒ Array<String>
String representing the destination to import for, all if left empty.
-
#feeds ⇒ Array<Google::Apis::RetailV2beta::GoogleCloudRetailV2betaMerchantCenterFeedFilter>
Criteria for the Merchant Center feeds to be ingested via the link.
-
#language_code ⇒ String
Language of the title/description and other string attributes.
-
#merchant_center_account_id ⇒ Fixnum
Required.
-
#region_code ⇒ String
Region code of offers to accept.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2betaMerchantCenterLink
constructor
A new instance of GoogleCloudRetailV2betaMerchantCenterLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2betaMerchantCenterLink
Returns a new instance of GoogleCloudRetailV2betaMerchantCenterLink.
5075 5076 5077 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5075 def initialize(**args) update!(**args) end |
Instance Attribute Details
#branch_id ⇒ String
The branch ID (e.g. 0/1/2) within this catalog that products from
merchant_center_account_id are streamed to. When updating this field, an empty
value will use the currently configured default branch. However, changing the
default branch later on won't change the linked branch here. A single branch
ID can only have one linked Merchant Center account ID.
Corresponds to the JSON property branchId
5033 5034 5035 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5033 def branch_id @branch_id end |
#destinations ⇒ Array<String>
String representing the destination to import for, all if left empty. List of
possible values is given in Included destination. List of allowed string values: "Shopping_ads", "
Buy_on_google_listings", "Display_ads", "Local_inventory _ads", "Free_listings"
, "Free_local_listings" NOTE: The string values are case sensitive.
Corresponds to the JSON property destinations
5042 5043 5044 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5042 def destinations @destinations end |
#feeds ⇒ Array<Google::Apis::RetailV2beta::GoogleCloudRetailV2betaMerchantCenterFeedFilter>
Criteria for the Merchant Center feeds to be ingested via the link. All offers
will be ingested if the list is empty. Otherwise the offers will be ingested
from selected feeds.
Corresponds to the JSON property feeds
5049 5050 5051 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5049 def feeds @feeds end |
#language_code ⇒ String
Language of the title/description and other string attributes. Use language
tags defined by BCP 47. ISO
639-1. This specifies the language of offers in Merchant Center that will be
accepted. If empty no language filtering will be performed. Example value: en
.
Corresponds to the JSON property languageCode
5058 5059 5060 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5058 def language_code @language_code end |
#merchant_center_account_id ⇒ Fixnum
Required. The linked Merchant Center account ID. The account must be a standalone
account or a sub-account of a MCA.
Corresponds to the JSON property merchantCenterAccountId
5065 5066 5067 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5065 def merchant_center_account_id @merchant_center_account_id end |
#region_code ⇒ String
Region code of offers to accept. 2-letter Uppercase ISO 3166-1 alpha-2 code.
List of values can be found here under the region
tag. If left
blank no region filtering will be performed. Example value: US
.
Corresponds to the JSON property regionCode
5073 5074 5075 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5073 def region_code @region_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5080 5081 5082 5083 5084 5085 5086 5087 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 5080 def update!(**args) @branch_id = args[:branch_id] if args.key?(:branch_id) @destinations = args[:destinations] if args.key?(:destinations) @feeds = args[:feeds] if args.key?(:feeds) @language_code = args[:language_code] if args.key?(:language_code) @merchant_center_account_id = args[:merchant_center_account_id] if args.key?(:merchant_center_account_id) @region_code = args[:region_code] if args.key?(:region_code) end |