Class: Google::Apis::ContentV2_1::AccountsCustomBatchRequestEntryLinkRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::AccountsCustomBatchRequestEntryLinkRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#action ⇒ String
Action to perform for this link.
-
#link_type ⇒ String
Type of the link between the two accounts.
-
#linked_account_id ⇒ String
The ID of the linked account.
-
#services ⇒ Array<String>
Provided services.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountsCustomBatchRequestEntryLinkRequest
constructor
A new instance of AccountsCustomBatchRequestEntryLinkRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AccountsCustomBatchRequestEntryLinkRequest
Returns a new instance of AccountsCustomBatchRequestEntryLinkRequest.
1552 1553 1554 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1552 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Action to perform for this link. The "request"
action is only available to
select merchants. Acceptable values are: - "approve
" - "remove
" - "
request
"
Corresponds to the JSON property action
1531 1532 1533 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1531 def action @action end |
#link_type ⇒ String
Type of the link between the two accounts. Acceptable values are: - "
channelPartner
" - "eCommercePlatform
" - "paymentServiceProvider
" - "
localProductManager
"
Corresponds to the JSON property linkType
1538 1539 1540 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1538 def link_type @link_type end |
#linked_account_id ⇒ String
The ID of the linked account.
Corresponds to the JSON property linkedAccountId
1543 1544 1545 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1543 def linked_account_id @linked_account_id end |
#services ⇒ Array<String>
Provided services. Acceptable values are: - "shoppingAdsProductManagement
" -
"shoppingActionsProductManagement
" - "shoppingActionsOrderManagement
" - "
paymentProcessing
" - "localProductManagement
"
Corresponds to the JSON property services
1550 1551 1552 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1550 def services @services end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1557 1558 1559 1560 1561 1562 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1557 def update!(**args) @action = args[:action] if args.key?(:action) @link_type = args[:link_type] if args.key?(:link_type) @linked_account_id = args[:linked_account_id] if args.key?(:linked_account_id) @services = args[:services] if args.key?(:services) end |