import type * as Square from "../index"; /** * Response containing the requested transfer order */ export interface RetrieveTransferOrderResponse { /** The requested transfer order */ transferOrder?: Square.TransferOrder; /** Any errors that occurred during the request */ errors?: Square.Error_[]; }