UNPKG

@shipengine/connect-order-source-api

Version:

This is the typescript/javascript definitions for the order source api

45 lines (44 loc) 2.21 kB
/** * @description This contains the text templates for various fields that will be replaced with item level details * These fields will only be available to the **{PackingSlipTemplate}.item** template */ export declare enum PackingSlipOrderItemPlaceholder { /** @description Replaced with item Sku */ Sku = "[Sku]", /** @description Replaced with either product name or description */ ProductName = "[Product Name]", /** @description Replaced with product id or external id */ ProductId = "[Marketplace Item #]", /** @description Replaced with the warehouse location */ WarehouseLocation = "[Warehouse Location]", /** @description Replaced with "1" or "0" depending on if the item was marked as an adjustment */ Adjustment = "[Adjustment]", /** @description Replaced with the item description */ ItemTitle = "[Item Title]", /** @description Replaced with the shipstation image url */ ImageUrl = "[Image Url]", /** @description Replaced with the quantity */ Quantity = "[Quantity]", /** @description Replaced with the universal product code */ UPC = "[UPC]", /** @description Replaced with the unit price */ UnitPrice = "[Unit Price]", /** @description Replaced with the extended price */ ExtendedPrice = "[Extended Price]", /** @description Replaced with "1" if the extended price is and "0" if not */ ExtendedPriceZero = "[Extended Price Zero]", /** @description Replaced with the fill sku */ FillSku = "[Fill Sku]", /** @description Replaced with the product sku */ ProductSku = "[Product Sku]", /** @description Replaced with the product description */ ProductDescription = "[Product Description]", /** @description Replaced with the Amazon standard identification number */ ASIN = "[ASIN]", /** @description Replaced with the product location */ ProductLocation = "[Product Location]", /** @description Replaced with the item options in a comma separated format */ ItemOptions = "[Item Options]", /** @description Replaced with the item options in a comma separated format */ ItemOptionsWithoutReplacement = "[Item Options Without Replacement]" }