class Google::Apis::ContentV2::OrdersCustomBatchRequestEntryUpdateLineItemShippingDetails
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 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/classes.rb, line 6954 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2/classes.rb, line 6959 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) @product_id = args[:product_id] if args.key?(:product_id) @ship_by_date = args[:ship_by_date] if args.key?(:ship_by_date) end