Class: Google::Apis::ContentV2_1::DatafeedstatusesCustomBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::DatafeedstatusesCustomBatchResponseEntry
- 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
-
#batch_id ⇒ Fixnum
The ID of the request entry this entry responds to.
-
#datafeed_status ⇒ Google::Apis::ContentV2_1::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.
-
#errors ⇒ Google::Apis::ContentV2_1::Errors
A list of errors returned by a failed batch entry.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatafeedstatusesCustomBatchResponseEntry
constructor
A new instance of DatafeedstatusesCustomBatchResponseEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatafeedstatusesCustomBatchResponseEntry
Returns a new instance of DatafeedstatusesCustomBatchResponseEntry.
2789 2790 2791 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2789 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch_id ⇒ Fixnum
The ID of the request entry this entry responds to.
Corresponds to the JSON property batchId
2776 2777 2778 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2776 def batch_id @batch_id end |
#datafeed_status ⇒ Google::Apis::ContentV2_1::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
2782 2783 2784 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2782 def datafeed_status @datafeed_status end |
#errors ⇒ Google::Apis::ContentV2_1::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
2787 2788 2789 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2787 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2794 2795 2796 2797 2798 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2794 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 |