class Google::Apis::ContentV2::DatafeedsBatchResponseEntry

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

Attributes

batch_id[RW]

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

datafeed[RW]

Datafeed configuration data. Corresponds to the JSON property `datafeed` @return [Google::Apis::ContentV2::Datafeed]

errors[RW]

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

Public Class Methods

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