Class: Google::Apis::ContentV2_1::AccountsCustomBatchRequestEntryLinkRequest

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) ⇒ AccountsCustomBatchRequestEntryLinkRequest

Returns a new instance of AccountsCustomBatchRequestEntryLinkRequest.



1050
1051
1052
# File 'lib/google/apis/content_v2_1/classes.rb', line 1050

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)


1030
1031
1032
# File 'lib/google/apis/content_v2_1/classes.rb', line 1030

def action
  @action
end

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

Returns:

  • (String)


1036
1037
1038
# File 'lib/google/apis/content_v2_1/classes.rb', line 1036

def link_type
  @link_type
end

#linked_account_idString

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

Returns:

  • (String)


1041
1042
1043
# File 'lib/google/apis/content_v2_1/classes.rb', line 1041

def 
  @linked_account_id
end

#servicesArray<String>

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

Returns:

  • (Array<String>)


1048
1049
1050
# File 'lib/google/apis/content_v2_1/classes.rb', line 1048

def services
  @services
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1055
1056
1057
1058
1059
1060
# File 'lib/google/apis/content_v2_1/classes.rb', line 1055

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