class Google::Apis::ContentV2_1::DatafeedstatusesCustomBatchResponseEntry

A batch entry encoding a single non-batch datafeedstatuses response.

Attributes

batch_id[RW]

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

datafeed_status[RW]

The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished. Corresponds to the JSON property `datafeedStatus` @return [Google::Apis::ContentV2_1::DatafeedStatus]

errors[RW]

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

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 2928
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_1/classes.rb, line 2933
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