class Google::Apis::ContentV2_1::OrdersUpdateLineItemShippingDetailsRequest
Attributes
Updated delivery by date, in ISO 8601 format. If not specified only ship by date is updated. Provided date should be within 1 year timeframe and can not be a date in the past. Corresponds to the JSON property `deliverByDate` @return [String]
The ID of the line item to set metadata. Either lineItemId or productId is required. Corresponds to the JSON property `lineItemId` @return [String]
The ID of the operation. Unique across all operations for a given order. Corresponds to the JSON property `operationId` @return [String]
The ID of the product to set metadata. This is the REST ID used in the products service. Either lineItemId or productId is required. Corresponds to the JSON property `productId` @return [String]
Updated ship by date, in ISO 8601 format. If not specified only deliver by date is updated. Provided date should be within 1 year timeframe and can not be a date in the past. Corresponds to the JSON property `shipByDate` @return [String]
Public Class Methods
# File lib/google/apis/content_v2_1/classes.rb, line 8887 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 8892 def update!(**args) @deliver_by_date = args[:deliver_by_date] if args.key?(:deliver_by_date) @line_item_id = args[:line_item_id] if args.key?(:line_item_id) @operation_id = args[:operation_id] if args.key?(:operation_id) @product_id = args[:product_id] if args.key?(:product_id) @ship_by_date = args[:ship_by_date] if args.key?(:ship_by_date) end