Class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterLink
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterLink
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2alpha/classes.rb,
lib/google/apis/retail_v2alpha/representations.rb,
lib/google/apis/retail_v2alpha/representations.rb
Overview
Represents a link between a Merchant Center account and a branch. Once a link is established, products from the linked merchant center account will be 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.
-
#merchant_center_account_id ⇒ Fixnum
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2alphaMerchantCenterLink
constructor
A new instance of GoogleCloudRetailV2alphaMerchantCenterLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2alphaMerchantCenterLink
Returns a new instance of GoogleCloudRetailV2alphaMerchantCenterLink.
1726 1727 1728 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1726 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
1708 1709 1710 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1708 def branch_id @branch_id end |
#destinations ⇒ Array<String>
String representing the destination to import for, all if left empty. List of
possible values can be found here. [https://support.google.com/merchants/
answer/7501026?hl=en] 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
1717 1718 1719 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1717 def destinations @destinations 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
1724 1725 1726 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1724 def merchant_center_account_id @merchant_center_account_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1731 1732 1733 1734 1735 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 1731 def update!(**args) @branch_id = args[:branch_id] if args.key?(:branch_id) @destinations = args[:destinations] if args.key?(:destinations) @merchant_center_account_id = args[:merchant_center_account_id] if args.key?(:merchant_center_account_id) end |