class Google::Apis::ContentV2::DatafeedStatusesBatchResponseEntry
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::DatafeedStatus]
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 generated/google/apis/content_v2/classes.rb, line 2075 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/content_v2/classes.rb, line 2080 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