import type * as Square from "../index"; /** * Response for starting a transfer order. */ export interface StartTransferOrderResponse { /** The updated transfer order with status changed to STARTED */ transferOrder?: Square.TransferOrder; /** Any errors that occurred during the request */ errors?: Square.Error_[]; }