Class: Google::Apis::ContentV2_1::AccountsLinkRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::AccountsLinkRequest
- 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.
-
#e_commerce_platform_link_info ⇒ Google::Apis::ContentV2_1::ECommercePlatformLinkInfo
Additional information required for E_COMMERCE_PLATFORM link type.
-
#link_type ⇒ String
Type of the link between the two accounts.
-
#linked_account_id ⇒ String
The ID of the linked account.
-
#payment_service_provider_link_info ⇒ Google::Apis::ContentV2_1::PaymentServiceProviderLinkInfo
Additional information required for PAYMENT_SERVICE_PROVIDER link type.
-
#services ⇒ Array<String>
Acceptable values are: - "
shoppingAdsProductManagement
" - "shoppingActionsProductManagement
" - "shoppingActionsOrderManagement
" - "paymentProcessing
" Corresponds to the JSON propertyservices
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountsLinkRequest
constructor
A new instance of AccountsLinkRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AccountsLinkRequest
Returns a new instance of AccountsLinkRequest.
1670 1671 1672 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1670 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
1640 1641 1642 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1640 def action @action end |
#e_commerce_platform_link_info ⇒ Google::Apis::ContentV2_1::ECommercePlatformLinkInfo
Additional information required for E_COMMERCE_PLATFORM link type.
Corresponds to the JSON property eCommercePlatformLinkInfo
1645 1646 1647 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1645 def e_commerce_platform_link_info @e_commerce_platform_link_info end |
#link_type ⇒ String
Type of the link between the two accounts. Acceptable values are: - "
channelPartner
" - "eCommercePlatform
" - "paymentServiceProvider
"
Corresponds to the JSON property linkType
1651 1652 1653 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1651 def link_type @link_type end |
#linked_account_id ⇒ String
The ID of the linked account.
Corresponds to the JSON property linkedAccountId
1656 1657 1658 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1656 def linked_account_id @linked_account_id end |
#payment_service_provider_link_info ⇒ Google::Apis::ContentV2_1::PaymentServiceProviderLinkInfo
Additional information required for PAYMENT_SERVICE_PROVIDER link type.
Corresponds to the JSON property paymentServiceProviderLinkInfo
1661 1662 1663 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1661 def payment_service_provider_link_info @payment_service_provider_link_info end |
#services ⇒ Array<String>
Acceptable values are: - "shoppingAdsProductManagement
" - "
shoppingActionsProductManagement
" - "shoppingActionsOrderManagement
" - "
paymentProcessing
"
Corresponds to the JSON property services
1668 1669 1670 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1668 def services @services end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1675 1676 1677 1678 1679 1680 1681 1682 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1675 def update!(**args) @action = args[:action] if args.key?(:action) @e_commerce_platform_link_info = args[:e_commerce_platform_link_info] if args.key?(:e_commerce_platform_link_info) @link_type = args[:link_type] if args.key?(:link_type) @linked_account_id = args[:linked_account_id] if args.key?(:linked_account_id) @payment_service_provider_link_info = args[:payment_service_provider_link_info] if args.key?(:payment_service_provider_link_info) @services = args[:services] if args.key?(:services) end |