Class: Google::Apis::ContentV2_1::OrdersUpdateMerchantOrderIdRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::OrdersUpdateMerchantOrderIdRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#merchant_order_id ⇒ String
The merchant order id to be assigned to the order.
-
#operation_id ⇒ String
The ID of the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrdersUpdateMerchantOrderIdRequest
constructor
A new instance of OrdersUpdateMerchantOrderIdRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrdersUpdateMerchantOrderIdRequest
Returns a new instance of OrdersUpdateMerchantOrderIdRequest.
8942 8943 8944 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 8942 def initialize(**args) update!(**args) end |
Instance Attribute Details
#merchant_order_id ⇒ String
The merchant order id to be assigned to the order. Must be unique per merchant.
Corresponds to the JSON property merchantOrderId
8935 8936 8937 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 8935 def merchant_order_id @merchant_order_id end |
#operation_id ⇒ String
The ID of the operation. Unique across all operations for a given order.
Corresponds to the JSON property operationId
8940 8941 8942 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 8940 def operation_id @operation_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8947 8948 8949 8950 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 8947 def update!(**args) @merchant_order_id = args[:merchant_order_id] if args.key?(:merchant_order_id) @operation_id = args[:operation_id] if args.key?(:operation_id) end |