class Google::Apis::ContentV2::OrdersCustomBatchResponseEntry
Attributes
The ID of the request entry this entry responds to. Corresponds to the JSON property `batchId` @return [Fixnum]
A list of errors returned by a failed batch entry. Corresponds to the JSON property `errors` @return [Google::Apis::ContentV2::Errors]
The status of the execution. Only defined if the method is not get or getByMerchantOrderId and if the request was successful. Corresponds to the JSON property `executionStatus` @return [String]
Identifies what kind of resource this is. Value: the fixed string “content# ordersCustomBatchResponseEntry”. Corresponds to the JSON property `kind` @return [String]
The retrieved order. Only defined if the method is get and if the request was successful. Corresponds to the JSON property `order` @return [Google::Apis::ContentV2::Order]
Public Class Methods
# File generated/google/apis/content_v2/classes.rb, line 4102 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/content_v2/classes.rb, line 4107 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