Class: Google::Apis::ContentV2_1::AccountsLinkRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AccountsLinkRequest

Returns a new instance of AccountsLinkRequest.



1718
1719
1720
# File 'lib/google/apis/content_v2_1/classes.rb', line 1718

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#actionString

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

Returns:

  • (String)


1688
1689
1690
# File 'lib/google/apis/content_v2_1/classes.rb', line 1688

def action
  @action
end

Additional information required for E_COMMERCE_PLATFORM link type. Corresponds to the JSON property eCommercePlatformLinkInfo



1693
1694
1695
# File 'lib/google/apis/content_v2_1/classes.rb', line 1693

def e_commerce_platform_link_info
  @e_commerce_platform_link_info
end

Type of the link between the two accounts. Acceptable values are: - " channelPartner" - "eCommercePlatform" - "paymentServiceProvider" Corresponds to the JSON property linkType

Returns:

  • (String)


1699
1700
1701
# File 'lib/google/apis/content_v2_1/classes.rb', line 1699

def link_type
  @link_type
end

#linked_account_idString

The ID of the linked account. Corresponds to the JSON property linkedAccountId

Returns:

  • (String)


1704
1705
1706
# File 'lib/google/apis/content_v2_1/classes.rb', line 1704

def 
  @linked_account_id
end

Additional information required for PAYMENT_SERVICE_PROVIDER link type. Corresponds to the JSON property paymentServiceProviderLinkInfo



1709
1710
1711
# File 'lib/google/apis/content_v2_1/classes.rb', line 1709

def payment_service_provider_link_info
  @payment_service_provider_link_info
end

#servicesArray<String>

Acceptable values are: - "shoppingAdsProductManagement" - " shoppingActionsProductManagement" - "shoppingActionsOrderManagement" - " paymentProcessing" Corresponds to the JSON property services

Returns:

  • (Array<String>)


1716
1717
1718
# File 'lib/google/apis/content_v2_1/classes.rb', line 1716

def services
  @services
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1723
1724
1725
1726
1727
1728
1729
1730
# File 'lib/google/apis/content_v2_1/classes.rb', line 1723

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