class Google::Apis::ContentV2::LiasettingsCustomBatchResponseEntry

Attributes

batch_id[RW]

The ID of the request entry to which this entry responds. Corresponds to the JSON property `batchId` @return [Fixnum]

errors[RW]

A list of errors returned by a failed batch entry. Corresponds to the JSON property `errors` @return [Google::Apis::ContentV2::Errors]

gmb_accounts[RW]

The list of accessible GMB accounts. Corresponds to the JSON property `gmbAccounts` @return [Google::Apis::ContentV2::GmbAccounts]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “`content# liasettingsCustomBatchResponseEntry`” Corresponds to the JSON property `kind` @return [String]

lia_settings[RW]

Local Inventory ads (LIA) settings. All methods except listposdataproviders require the admin role. Corresponds to the JSON property `liaSettings` @return [Google::Apis::ContentV2::LiaSettings]

pos_data_providers[RW]

The list of POS data providers. Corresponds to the JSON property `posDataProviders` @return [Array<Google::Apis::ContentV2::PosDataProviders>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 3770
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2/classes.rb, line 3775
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_data_providers = args[:pos_data_providers] if args.key?(:pos_data_providers)
end