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

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AccountsLinkRequest

Returns a new instance of AccountsLinkRequest.



1108
1109
1110
# File 'generated/google/apis/content_v2/classes.rb', line 1108

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. Corresponds to the JSON property action

Returns:

  • (String)


1096
1097
1098
# File 'generated/google/apis/content_v2/classes.rb', line 1096

def action
  @action
end

Type of the link between the two accounts. Corresponds to the JSON property linkType

Returns:

  • (String)


1101
1102
1103
# File 'generated/google/apis/content_v2/classes.rb', line 1101

def link_type
  @link_type
end

#linked_account_idString

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

Returns:

  • (String)


1106
1107
1108
# File 'generated/google/apis/content_v2/classes.rb', line 1106

def 
  @linked_account_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1113
1114
1115
1116
1117
# File 'generated/google/apis/content_v2/classes.rb', line 1113

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