Class: Google::Apis::ContentV2_1::AccountsLinkRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::AccountsLinkRequest
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountsLinkRequest
constructor
A new instance of AccountsLinkRequest.
-
#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) ⇒ AccountsLinkRequest
Returns a new instance of AccountsLinkRequest
968 969 970 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 968 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
956 957 958 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 956 def action @action end |
#link_type ⇒ String
Type of the link between the two accounts.
Corresponds to the JSON property linkType
961 962 963 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 961 def link_type @link_type end |
#linked_account_id ⇒ String
The ID of the linked account.
Corresponds to the JSON property linkedAccountId
966 967 968 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 966 def linked_account_id @linked_account_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
973 974 975 976 977 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 973 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 |