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
1660 1661 1662 |
# File 'generated/google/apis/content_v2/classes.rb', line 1660 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
1648 1649 1650 |
# File 'generated/google/apis/content_v2/classes.rb', line 1648 def batch_id @batch_id end |
#datafeed ⇒ Google::Apis::ContentV2::Datafeed
Datafeed configuration data.
Corresponds to the JSON property datafeed
1653 1654 1655 |
# File 'generated/google/apis/content_v2/classes.rb', line 1653 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
1658 1659 1660 |
# File 'generated/google/apis/content_v2/classes.rb', line 1658 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1665 1666 1667 1668 1669 |
# File 'generated/google/apis/content_v2/classes.rb', line 1665 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 |