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
1831 1832 1833 |
# File 'generated/google/apis/content_v2/classes.rb', line 1831 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
1819 1820 1821 |
# File 'generated/google/apis/content_v2/classes.rb', line 1819 def batch_id @batch_id end |
#datafeed ⇒ Google::Apis::ContentV2::Datafeed
Datafeed configuration data.
Corresponds to the JSON property datafeed
1824 1825 1826 |
# File 'generated/google/apis/content_v2/classes.rb', line 1824 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
1829 1830 1831 |
# File 'generated/google/apis/content_v2/classes.rb', line 1829 def errors @errors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1836 1837 1838 1839 1840 |
# File 'generated/google/apis/content_v2/classes.rb', line 1836 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 |