import type * as Square from "../index"; /** * Identifies the sort field and sort order. */ export interface InvoiceSort { /** * The field to use for sorting. * See [InvoiceSortField](#type-invoicesortfield) for possible values */ field: Square.InvoiceSortField; /** * The order to use for sorting the results. * See [SortOrder](#type-sortorder) for possible values */ order?: Square.SortOrder; }