class Google::Apis::ContentV2::AccountsCustomBatchRequestEntryLinkRequest

Attributes

action[RW]

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` @return [String]

linked_account_id[RW]

The ID of the linked account. Corresponds to the JSON property `linkedAccountId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 1018
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2/classes.rb, line 1023
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