Class: Google::Apis::ContentV2_1::AccountsCustomBatchRequestEntry

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AccountsCustomBatchRequestEntry

Returns a new instance of AccountsCustomBatchRequestEntry.



1503
1504
1505
# File 'lib/google/apis/content_v2_1/classes.rb', line 1503

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

Instance Attribute Details

#accountGoogle::Apis::ContentV2_1::Account

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



1451
1452
1453
# File 'lib/google/apis/content_v2_1/classes.rb', line 1451

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)


1456
1457
1458
# File 'lib/google/apis/content_v2_1/classes.rb', line 1456

def 
  @account_id
end

#batch_idFixnum

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

Returns:

  • (Fixnum)


1461
1462
1463
# File 'lib/google/apis/content_v2_1/classes.rb', line 1461

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)


1467
1468
1469
# File 'lib/google/apis/content_v2_1/classes.rb', line 1467

def force
  @force
end

#label_idsArray<Fixnum>

Label IDs for the 'updatelabels' request. Corresponds to the JSON property labelIds

Returns:

  • (Array<Fixnum>)


1473
1474
1475
# File 'lib/google/apis/content_v2_1/classes.rb', line 1473

def label_ids
  @label_ids
end

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



1478
1479
1480
# File 'lib/google/apis/content_v2_1/classes.rb', line 1478

def link_request
  @link_request
end

#merchant_idFixnum

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

Returns:

  • (Fixnum)


1483
1484
1485
# File 'lib/google/apis/content_v2_1/classes.rb', line 1483

def merchant_id
  @merchant_id
end

#method_propString

The method of the batch entry. Acceptable values are: - "claimWebsite" - " delete" - "get" - "insert" - "link" - "update" Corresponds to the JSON property method

Returns:

  • (String)


1489
1490
1491
# File 'lib/google/apis/content_v2_1/classes.rb', line 1489

def method_prop
  @method_prop
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)


1495
1496
1497
# File 'lib/google/apis/content_v2_1/classes.rb', line 1495

def overwrite
  @overwrite
end

#viewString

Controls which fields are visible. Only applicable if the method is 'get'. Corresponds to the JSON property view

Returns:

  • (String)


1501
1502
1503
# File 'lib/google/apis/content_v2_1/classes.rb', line 1501

def view
  @view
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
# File 'lib/google/apis/content_v2_1/classes.rb', line 1508

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)
  @label_ids = args[:label_ids] if args.key?(:label_ids)
  @link_request = args[:link_request] if args.key?(:link_request)
  @merchant_id = args[:merchant_id] if args.key?(:merchant_id)
  @method_prop = args[:method_prop] if args.key?(:method_prop)
  @overwrite = args[:overwrite] if args.key?(:overwrite)
  @view = args[:view] if args.key?(:view)
end