Class: Google::Apis::ContentV2::AccountsCustomBatchRequestEntryLinkRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::AccountsCustomBatchRequestEntryLinkRequest
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountsCustomBatchRequestEntryLinkRequest
constructor
A new instance of AccountsCustomBatchRequestEntryLinkRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountsCustomBatchRequestEntryLinkRequest
Returns a new instance of AccountsCustomBatchRequestEntryLinkRequest
1005 1006 1007 |
# File 'generated/google/apis/content_v2/classes.rb', line 1005 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.
Corresponds to the JSON property action
993 994 995 |
# File 'generated/google/apis/content_v2/classes.rb', line 993 def action @action end |
#link_type ⇒ String
Type of the link between the two accounts.
Corresponds to the JSON property linkType
998 999 1000 |
# File 'generated/google/apis/content_v2/classes.rb', line 998 def link_type @link_type end |
#linked_account_id ⇒ String
The ID of the linked account.
Corresponds to the JSON property linkedAccountId
1003 1004 1005 |
# File 'generated/google/apis/content_v2/classes.rb', line 1003 def linked_account_id @linked_account_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1010 1011 1012 1013 1014 |
# File 'generated/google/apis/content_v2/classes.rb', line 1010 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) end |