Class: Google::Apis::ContentV2_1::DatafeedsCustomBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::DatafeedsCustomBatchResponseEntry
- 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 datafeeds response.
Instance Attribute Summary collapse
-
#batch_id ⇒ Fixnum
The ID of the request entry this entry responds to.
-
#datafeed ⇒ Google::Apis::ContentV2_1::Datafeed
Datafeed configuration data.
-
#errors ⇒ Google::Apis::ContentV2_1::Errors
A list of errors returned by a failed batch entry.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatafeedsCustomBatchResponseEntry
constructor
A new instance of DatafeedsCustomBatchResponseEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatafeedsCustomBatchResponseEntry
Returns a new instance of DatafeedsCustomBatchResponseEntry.
2696 2697 2698 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2696 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
2684 2685 2686 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2684 def batch_id @batch_id end |
#datafeed ⇒ Google::Apis::ContentV2_1::Datafeed
Datafeed configuration data.
Corresponds to the JSON property datafeed
2689 2690 2691 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2689 def datafeed @datafeed end |
#errors ⇒ Google::Apis::ContentV2_1::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
2694 2695 2696 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2694 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2701 2702 2703 2704 2705 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2701 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 |