Class: Google::Apis::ContentV2::LiasettingsCustomBatchResponseEntry
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::LiasettingsCustomBatchResponseEntry
 
- 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
- 
  
    
      #batch_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the request entry to which this entry responds. 
- 
  
    
      #errors  ⇒ Google::Apis::ContentV2::Errors 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of errors returned by a failed batch entry. 
- 
  
    
      #gmb_accounts  ⇒ Google::Apis::ContentV2::GmbAccounts 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The the list of accessible GMB accounts. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #lia_settings  ⇒ Google::Apis::ContentV2::LiaSettings 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The retrieved or updated Lia settings. 
- 
  
    
      #pos_providers  ⇒ Array<Google::Apis::ContentV2::PosProviders> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of POS providers. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LiasettingsCustomBatchResponseEntry 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LiasettingsCustomBatchResponseEntry. 
- 
  
    
      #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) ⇒ LiasettingsCustomBatchResponseEntry
Returns a new instance of LiasettingsCustomBatchResponseEntry
| 2910 2911 2912 | # File 'generated/google/apis/content_v2/classes.rb', line 2910 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#batch_id ⇒ Fixnum
The ID of the request entry to which this entry responds.
Corresponds to the JSON property batchId
| 2882 2883 2884 | # File 'generated/google/apis/content_v2/classes.rb', line 2882 def batch_id @batch_id end | 
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
| 2887 2888 2889 | # File 'generated/google/apis/content_v2/classes.rb', line 2887 def errors @errors end | 
#gmb_accounts ⇒ Google::Apis::ContentV2::GmbAccounts
The the list of accessible GMB accounts.
Corresponds to the JSON property gmbAccounts
| 2892 2893 2894 | # File 'generated/google/apis/content_v2/classes.rb', line 2892 def gmb_accounts @gmb_accounts end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
liasettingsCustomBatchResponseEntry".
Corresponds to the JSON property kind
| 2898 2899 2900 | # File 'generated/google/apis/content_v2/classes.rb', line 2898 def kind @kind end | 
#lia_settings ⇒ Google::Apis::ContentV2::LiaSettings
The retrieved or updated Lia settings.
Corresponds to the JSON property liaSettings
| 2903 2904 2905 | # File 'generated/google/apis/content_v2/classes.rb', line 2903 def lia_settings @lia_settings end | 
#pos_providers ⇒ Array<Google::Apis::ContentV2::PosProviders>
The list of POS providers.
Corresponds to the JSON property posProviders
| 2908 2909 2910 | # File 'generated/google/apis/content_v2/classes.rb', line 2908 def pos_providers @pos_providers end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2915 2916 2917 2918 2919 2920 2921 2922 | # File 'generated/google/apis/content_v2/classes.rb', line 2915 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) @gmb_accounts = args[:gmb_accounts] if args.key?(:gmb_accounts) @kind = args[:kind] if args.key?(:kind) @lia_settings = args[:lia_settings] if args.key?(:lia_settings) @pos_providers = args[:pos_providers] if args.key?(:pos_providers) end |