import type * as Square from "../index"; /** * Data model for updating a transfer order. All fields are optional. */ export interface UpdateTransferOrderData { /** * The source [Location](entity:Location) that will send the items. Must be an active location * in your Square account with sufficient inventory of the requested items. */ sourceLocationId?: string | null; /** * The destination [Location](entity:Location) that will receive the items. Must be an active location * in your Square account. */ destinationLocationId?: string | null; /** Expected transfer date in RFC 3339 format (e.g. "2023-10-01T12:00:00Z"). */ expectedAt?: string | null; /** Optional notes about the transfer */ notes?: string | null; /** Shipment tracking number */ trackingNumber?: string | null; /** List of items being transferred */ lineItems?: Square.UpdateTransferOrderLineData[] | null; }