Class: Google::Apis::ContentV2::DatafeedsBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::DatafeedsBatchResponseEntry
- 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 datafeeds response.
Instance Attribute Summary collapse
-
#batch_id ⇒ Fixnum
The ID of the request entry this entry responds to.
-
#datafeed ⇒ Google::Apis::ContentV2::Datafeed
Datafeed configuration data.
-
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatafeedsBatchResponseEntry
constructor
A new instance of DatafeedsBatchResponseEntry.
-
#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) ⇒ DatafeedsBatchResponseEntry
Returns a new instance of DatafeedsBatchResponseEntry
2216 2217 2218 |
# File 'generated/google/apis/content_v2/classes.rb', line 2216 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
2204 2205 2206 |
# File 'generated/google/apis/content_v2/classes.rb', line 2204 def batch_id @batch_id end |
#datafeed ⇒ Google::Apis::ContentV2::Datafeed
Datafeed configuration data.
Corresponds to the JSON property datafeed
2209 2210 2211 |
# File 'generated/google/apis/content_v2/classes.rb', line 2209 def datafeed @datafeed end |
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
2214 2215 2216 |
# File 'generated/google/apis/content_v2/classes.rb', line 2214 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2221 2222 2223 2224 2225 |
# File 'generated/google/apis/content_v2/classes.rb', line 2221 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 |