Class: Google::Apis::ContentV2::AccountsBatchRequestEntry

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

Overview

A batch entry encoding a single non-batch accounts request.

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

Returns a new instance of AccountsBatchRequestEntry



947
948
949
# File 'generated/google/apis/content_v2/classes.rb', line 947

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#accountGoogle::Apis::ContentV2::Account

Account data. After the creation of a new account it may take a few minutes before it is fully operational. The methods delete, insert, patch, and update require the admin role. Corresponds to the JSON property account



906
907
908
# File 'generated/google/apis/content_v2/classes.rb', line 906

def 
  @account
end

#account_idFixnum

The ID of the targeted account. Only defined if the method is not insert. Corresponds to the JSON property accountId

Returns:

  • (Fixnum)


911
912
913
# File 'generated/google/apis/content_v2/classes.rb', line 911

def 
  @account_id
end

#batch_idFixnum

An entry ID, unique within the batch request. Corresponds to the JSON property batchId

Returns:

  • (Fixnum)


916
917
918
# File 'generated/google/apis/content_v2/classes.rb', line 916

def batch_id
  @batch_id
end

#forceBoolean Also known as: force?

Whether the account should be deleted if the account has offers. Only applicable if the method is delete. Corresponds to the JSON property force

Returns:

  • (Boolean)


922
923
924
# File 'generated/google/apis/content_v2/classes.rb', line 922

def force
  @force
end

Details about the link request. Corresponds to the JSON property linkRequest



928
929
930
# File 'generated/google/apis/content_v2/classes.rb', line 928

def link_request
  @link_request
end

#merchant_idFixnum

The ID of the managing account. Corresponds to the JSON property merchantId

Returns:

  • (Fixnum)


933
934
935
# File 'generated/google/apis/content_v2/classes.rb', line 933

def merchant_id
  @merchant_id
end

#overwriteBoolean Also known as: overwrite?

Only applicable if the method is claimwebsite. Indicates whether or not to take the claim from another account in case there is a conflict. Corresponds to the JSON property overwrite

Returns:

  • (Boolean)


944
945
946
# File 'generated/google/apis/content_v2/classes.rb', line 944

def overwrite
  @overwrite
end

#request_methodString

The method of the batch entry. Corresponds to the JSON property method

Returns:

  • (String)


938
939
940
# File 'generated/google/apis/content_v2/classes.rb', line 938

def request_method
  @request_method
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



952
953
954
955
956
957
958
959
960
961
# File 'generated/google/apis/content_v2/classes.rb', line 952

def update!(**args)
  @account = args[:account] if args.key?(:account)
  @account_id = args[:account_id] if args.key?(:account_id)
  @batch_id = args[:batch_id] if args.key?(:batch_id)
  @force = args[:force] if args.key?(:force)
  @link_request = args[:link_request] if args.key?(:link_request)
  @merchant_id = args[:merchant_id] if args.key?(:merchant_id)
  @request_method = args[:request_method] if args.key?(:request_method)
  @overwrite = args[:overwrite] if args.key?(:overwrite)
end