import type * as Square from "../index"; /** * Response for searching transfer orders */ export interface SearchTransferOrdersResponse { /** List of transfer orders matching the search criteria */ transferOrders?: Square.TransferOrder[]; /** Pagination cursor for fetching the next page of results */ cursor?: string; /** Any errors that occurred during the request */ errors?: Square.Error_[]; }