import { AutoEncoder } from '@simonbackx/simple-encoding'; export declare enum SortDirection { Ascending = "Ascending", Descending = "Descending" } export declare class WebshopOrdersQuery extends AutoEncoder { /** * Usage in combination with updatedSince is special! */ afterNumber?: number; /** * Return all orders that were updated after (and including) this date. * Only returns orders **equal** this date if afterNumber is not provided or if the number of those orders are also higher. */ updatedSince?: Date; /** * @deprecated * You should always use Ascending. Descanding is dropped for performance reasons */ sort?: SortDirection; } //# sourceMappingURL=WebshopOrdersQuery.d.ts.map