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.
-
#link_type ⇒ String
Type of the link between the two accounts.
-
#linked_account_id ⇒ String
The ID of the linked account.
-
#services ⇒ Array<String>
Acceptable values are: - "
shoppingAdsProductManagement" - "shoppingAdsOther" - "shoppingActionsProductManagement" - "shoppingActionsOrderManagement" - "shoppingActionsOther" 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.
1143 1144 1145 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1143 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
1123 1124 1125 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1123 def action @action end |
#link_type ⇒ String
Type of the link between the two accounts. Acceptable values are: - "
channelPartner" - "eCommercePlatform"
Corresponds to the JSON property linkType
1129 1130 1131 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1129 def link_type @link_type end |
#linked_account_id ⇒ String
The ID of the linked account.
Corresponds to the JSON property linkedAccountId
1134 1135 1136 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1134 def linked_account_id @linked_account_id end |
#services ⇒ Array<String>
Acceptable values are: - "shoppingAdsProductManagement" - "
shoppingAdsOther" - "shoppingActionsProductManagement" - "
shoppingActionsOrderManagement" - "shoppingActionsOther"
Corresponds to the JSON property services
1141 1142 1143 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1141 def services @services end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1148 1149 1150 1151 1152 1153 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 1148 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 |