Class: Google::Apis::ContentV2::OrdersCustomBatchResponseEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrdersCustomBatchResponseEntry
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#batch_id ⇒ Fixnum
The ID of the request entry this entry responds to.
-
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
-
#execution_status ⇒ String
The status of the execution.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#order ⇒ Google::Apis::ContentV2::Order
Order.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrdersCustomBatchResponseEntry
constructor
A new instance of OrdersCustomBatchResponseEntry.
-
#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) ⇒ OrdersCustomBatchResponseEntry
Returns a new instance of OrdersCustomBatchResponseEntry
6821 6822 6823 |
# File 'generated/google/apis/content_v2/classes.rb', line 6821 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
6796 6797 6798 |
# File 'generated/google/apis/content_v2/classes.rb', line 6796 def batch_id @batch_id end |
#errors ⇒ Google::Apis::ContentV2::Errors
A list of errors returned by a failed batch entry.
Corresponds to the JSON property errors
6801 6802 6803 |
# File 'generated/google/apis/content_v2/classes.rb', line 6801 def errors @errors end |
#execution_status ⇒ String
The status of the execution. Only defined if
- the request was successful; and
- the method is not get, getByMerchantOrderId, or one of the test methods.
Corresponds to the JSON property
executionStatus
6808 6809 6810 |
# File 'generated/google/apis/content_v2/classes.rb', line 6808 def execution_status @execution_status end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
ordersCustomBatchResponseEntry".
Corresponds to the JSON property kind
6814 6815 6816 |
# File 'generated/google/apis/content_v2/classes.rb', line 6814 def kind @kind end |
#order ⇒ Google::Apis::ContentV2::Order
Order. All methods require the order manager role.
Corresponds to the JSON property order
6819 6820 6821 |
# File 'generated/google/apis/content_v2/classes.rb', line 6819 def order @order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6826 6827 6828 6829 6830 6831 6832 |
# File 'generated/google/apis/content_v2/classes.rb', line 6826 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) @execution_status = args[:execution_status] if args.key?(:execution_status) @kind = args[:kind] if args.key?(:kind) @order = args[:order] if args.key?(:order) end |