Class: Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterAccountLink
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterAccountLink
- 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. LINT.IfChange(MerchantCenterAccountLink)
Instance Attribute Summary collapse
-
#branch_id ⇒ String
Required.
-
#feed_filters ⇒ Array<Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterAccountLinkMerchantCenterFeedFilter>
Criteria for the Merchant Center feeds to be ingested via the link.
-
#feed_label ⇒ String
The FeedLabel used to perform filtering.
-
#id ⇒ String
Output only.
-
#language_code ⇒ String
Language of the title/description and other string attributes.
-
#merchant_center_account_id ⇒ Fixnum
Required.
-
#name ⇒ String
Output only.
-
#project_id ⇒ String
Output only.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2alphaMerchantCenterAccountLink
constructor
A new instance of GoogleCloudRetailV2alphaMerchantCenterAccountLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2alphaMerchantCenterAccountLink
Returns a new instance of GoogleCloudRetailV2alphaMerchantCenterAccountLink.
2974 2975 2976 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2974 def initialize(**args) update!(**args) end |
Instance Attribute Details
#branch_id ⇒ String
Required. The branch id (e.g. 0/1/2) within the 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
2917 2918 2919 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2917 def branch_id @branch_id end |
#feed_filters ⇒ Array<Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaMerchantCenterAccountLinkMerchantCenterFeedFilter>
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 feedFilters
2924 2925 2926 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2924 def feed_filters @feed_filters end |
#feed_label ⇒ String
The FeedLabel used to perform filtering. Note: this replaces region_id. Example value: US. Example value: FeedLabel1.
Corresponds to the JSON property feedLabel
2931 2932 2933 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2931 def feed_label @feed_label end |
#id ⇒ String
Output only. Immutable. MerchantCenterAccountLink identifier, which is the
final component of name. This field is auto generated and follows the
convention: BranchId_MerchantCenterAccountId. projects/*/locations/global/
catalogs/default_catalog/merchantCenterAccountLinks/id_1.
Corresponds to the JSON property id
2939 2940 2941 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2939 def id @id 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
2948 2949 2950 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2948 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
2955 2956 2957 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2955 def merchant_center_account_id @merchant_center_account_id end |
#name ⇒ String
Output only. Immutable. Full resource name of the Merchant Center Account Link,
such as projects/*/locations/global/catalogs/default_catalog/
merchantCenterAccountLinks/merchant_center_account_link.
Corresponds to the JSON property name
2962 2963 2964 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2962 def name @name end |
#project_id ⇒ String
Output only. GCP project ID.
Corresponds to the JSON property projectId
2967 2968 2969 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2967 def project_id @project_id end |
#state ⇒ String
Output only. Represents the state of the link.
Corresponds to the JSON property state
2972 2973 2974 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2972 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 |
# File 'lib/google/apis/retail_v2alpha/classes.rb', line 2979 def update!(**args) @branch_id = args[:branch_id] if args.key?(:branch_id) @feed_filters = args[:feed_filters] if args.key?(:feed_filters) @feed_label = args[:feed_label] if args.key?(:feed_label) @id = args[:id] if args.key?(:id) @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) @name = args[:name] if args.key?(:name) @project_id = args[:project_id] if args.key?(:project_id) @state = args[:state] if args.key?(:state) end |