Class: Google::Apis::ContentV2::AccountsLinkRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AccountsLinkRequest

Returns a new instance of AccountsLinkRequest.



1125
1126
1127
# File 'generated/google/apis/content_v2/classes.rb', line 1125

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)


1112
1113
1114
# File 'generated/google/apis/content_v2/classes.rb', line 1112

def action
  @action
end

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

Returns:

  • (String)


1118
1119
1120
# File 'generated/google/apis/content_v2/classes.rb', line 1118

def link_type
  @link_type
end

#linked_account_idString

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

Returns:

  • (String)


1123
1124
1125
# File 'generated/google/apis/content_v2/classes.rb', line 1123

def 
  @linked_account_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1130
1131
1132
1133
1134
# File 'generated/google/apis/content_v2/classes.rb', line 1130

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