Class: Google::Apis::ContentV2_1::DatafeedsCustomBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::DatafeedsCustomBatchResponseEntry
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ DatafeedsCustomBatchResponseEntry
Returns a new instance of DatafeedsCustomBatchResponseEntry
2023 2024 2025 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2023 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
2011 2012 2013 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2011 def batch_id @batch_id end |
#datafeed ⇒ Google::Apis::ContentV2_1::Datafeed
Datafeed configuration data.
Corresponds to the JSON property datafeed
2016 2017 2018 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2016 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
2021 2022 2023 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2021 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2028 2029 2030 2031 2032 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 2028 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 |