Class: Google::Apis::ContentV2::AccountsBatchRequestEntry
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::AccountsBatchRequestEntry
 
- 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
- 
  
    
      #account  ⇒ Google::Apis::ContentV2::Account 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Account data. 
- 
  
    
      #account_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the targeted account. 
- 
  
    
      #batch_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An entry ID, unique within the batch request. 
- 
  
    
      #force  ⇒ Boolean 
    
    
      (also: #force?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether the account should be deleted if the account has offers. 
- 
  
    
      #merchant_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the managing account. 
- 
  
    
      #overwrite  ⇒ Boolean 
    
    
      (also: #overwrite?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Only applicable if the method is claimwebsite. 
- 
  
    
      #request_method  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property method.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AccountsBatchRequestEntry 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AccountsBatchRequestEntry. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountsBatchRequestEntry
Returns a new instance of AccountsBatchRequestEntry
| 672 673 674 | # File 'generated/google/apis/content_v2/classes.rb', line 672 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#account ⇒ Google::Apis::ContentV2::Account
Account data.
Corresponds to the JSON property account
| 635 636 637 | # File 'generated/google/apis/content_v2/classes.rb', line 635 def account @account end | 
#account_id ⇒ Fixnum
The ID of the targeted account. Only defined if the method is get, delete or
claimwebsite.
Corresponds to the JSON property accountId
| 641 642 643 | # File 'generated/google/apis/content_v2/classes.rb', line 641 def account_id @account_id end | 
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
Corresponds to the JSON property batchId
| 646 647 648 | # File 'generated/google/apis/content_v2/classes.rb', line 646 def batch_id @batch_id end | 
#force ⇒ Boolean 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
| 652 653 654 | # File 'generated/google/apis/content_v2/classes.rb', line 652 def force @force end | 
#merchant_id ⇒ Fixnum
The ID of the managing account.
Corresponds to the JSON property merchantId
| 658 659 660 | # File 'generated/google/apis/content_v2/classes.rb', line 658 def merchant_id @merchant_id end | 
#overwrite ⇒ Boolean 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
| 669 670 671 | # File 'generated/google/apis/content_v2/classes.rb', line 669 def overwrite @overwrite end | 
#request_method ⇒ String
Corresponds to the JSON property method
| 663 664 665 | # File 'generated/google/apis/content_v2/classes.rb', line 663 def request_method @request_method end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 677 678 679 680 681 682 683 684 685 | # File 'generated/google/apis/content_v2/classes.rb', line 677 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) @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 |