/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { SalesDataShipmentTrackExtensionInterface } from './salesDataShipmentTrackExtensionInterface'; /** * Shipment track interface. A shipment is a delivery package that contains products. A shipment document accompanies the shipment. This document lists the products and their quantities in the delivery package. Merchants and customers can track shipments. */ export interface SalesDataShipmentTrackInterface { /** * The order_id for the shipment package. */ orderId: number; /** * Created-at timestamp. */ createdAt?: string; /** * Shipment package ID. */ entityId?: number; /** * Parent ID. */ parentId: number; /** * Updated-at timestamp. */ updatedAt?: string; /** * Weight. */ weight: number; /** * Quantity. */ qty: number; /** * Description. */ description: string; extensionAttributes?: SalesDataShipmentTrackExtensionInterface; /** * Track number. */ trackNumber: string; /** * Title. */ title: string; /** * Carrier code. */ carrierCode: string; }