Class: Google::Apis::ContentV2_1::DatafeedsCustomBatchResponseEntry

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 datafeeds response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatafeedsCustomBatchResponseEntry

Returns a new instance of DatafeedsCustomBatchResponseEntry.



4172
4173
4174
# File 'lib/google/apis/content_v2_1/classes.rb', line 4172

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

Instance Attribute Details

#batch_idFixnum

The ID of the request entry this entry responds to. Corresponds to the JSON property batchId

Returns:

  • (Fixnum)


4160
4161
4162
# File 'lib/google/apis/content_v2_1/classes.rb', line 4160

def batch_id
  @batch_id
end

#datafeedGoogle::Apis::ContentV2_1::Datafeed

Datafeed configuration data. Corresponds to the JSON property datafeed



4165
4166
4167
# File 'lib/google/apis/content_v2_1/classes.rb', line 4165

def datafeed
  @datafeed
end

#errorsGoogle::Apis::ContentV2_1::Errors

A list of errors returned by a failed batch entry. Corresponds to the JSON property errors



4170
4171
4172
# File 'lib/google/apis/content_v2_1/classes.rb', line 4170

def errors
  @errors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4177
4178
4179
4180
4181
# File 'lib/google/apis/content_v2_1/classes.rb', line 4177

def update!(**args)
  @batch_id = args[:batch_id] if args.key?(:batch_id)
  @datafeed = args[:datafeed] if args.key?(:datafeed)
  @errors = args[:errors] if args.key?(:errors)
end