Class: Google::Apis::ContentV2::DatafeedStatusesBatchResponseEntry

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DatafeedStatusesBatchResponseEntry

Returns a new instance of DatafeedStatusesBatchResponseEntry



2377
2378
2379
# File 'generated/google/apis/content_v2/classes.rb', line 2377

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)


2364
2365
2366
# File 'generated/google/apis/content_v2/classes.rb', line 2364

def batch_id
  @batch_id
end

#datafeed_statusGoogle::Apis::ContentV2::DatafeedStatus

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



2370
2371
2372
# File 'generated/google/apis/content_v2/classes.rb', line 2370

def datafeed_status
  @datafeed_status
end

#errorsGoogle::Apis::ContentV2::Errors

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



2375
2376
2377
# File 'generated/google/apis/content_v2/classes.rb', line 2375

def errors
  @errors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2382
2383
2384
2385
2386
# File 'generated/google/apis/content_v2/classes.rb', line 2382

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