Class: Google::Apis::ContentV2_1::AccountsCustomBatchRequestEntryLinkRequest

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

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) ⇒ AccountsCustomBatchRequestEntryLinkRequest

Returns a new instance of AccountsCustomBatchRequestEntryLinkRequest.



875
876
877
# File 'generated/google/apis/content_v2_1/classes.rb', line 875

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)


858
859
860
# File 'generated/google/apis/content_v2_1/classes.rb', line 858

def action
  @action
end

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

Returns:

  • (String)


863
864
865
# File 'generated/google/apis/content_v2_1/classes.rb', line 863

def link_type
  @link_type
end

#linked_account_idString

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

Returns:

  • (String)


868
869
870
# File 'generated/google/apis/content_v2_1/classes.rb', line 868

def 
  @linked_account_id
end

#servicesArray<String>

List of provided services. Corresponds to the JSON property services

Returns:

  • (Array<String>)


873
874
875
# File 'generated/google/apis/content_v2_1/classes.rb', line 873

def services
  @services
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



880
881
882
883
884
885
# File 'generated/google/apis/content_v2_1/classes.rb', line 880

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)
  @services = args[:services] if args.key?(:services)
end