Class: Google::Apis::ContentV2_1::DatafeedstatusesCustomBatchResponseEntry

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatafeedstatusesCustomBatchResponseEntry

Returns a new instance of DatafeedstatusesCustomBatchResponseEntry.



4314
4315
4316
# File 'lib/google/apis/content_v2_1/classes.rb', line 4314

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)


4301
4302
4303
# File 'lib/google/apis/content_v2_1/classes.rb', line 4301

def batch_id
  @batch_id
end

#datafeed_statusGoogle::Apis::ContentV2_1::DatafeedStatus

The status of a datafeed, that is, the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished. Corresponds to the JSON property datafeedStatus



4307
4308
4309
# File 'lib/google/apis/content_v2_1/classes.rb', line 4307

def datafeed_status
  @datafeed_status
end

#errorsGoogle::Apis::ContentV2_1::Errors

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



4312
4313
4314
# File 'lib/google/apis/content_v2_1/classes.rb', line 4312

def errors
  @errors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4319
4320
4321
4322
4323
# File 'lib/google/apis/content_v2_1/classes.rb', line 4319

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