BaseSalesQuery Model

Queries that can be applied over SalesTransaction data direct from the sales data (not using aggregate tables)

Constant
System.Int32 MAX_LIMIT = 100

The maximum value for Limit.

Nullable
Limit : number (int)

The maximum number of sales entries to return. If not specified will be set to MAX_LIMIT. If exceeding MAX_LIMIT it will be reduced to MAX_LIMIT

Nullable
From : number (int)

0 based index to start seeking values from. If not specified NO pagination will be applied. There is no guarantee that a Query with From = 0 will be the
same a Query with From = null

ReportingStrings : bool

Entities normally have two sets of values for most common properties (primarily string properties): The original value from when it was uploaded and the "reporting" value
that may have been optionally renamed for reporting reasons.

If this is true, all the values filtered on and returned will be the renamed reporting values. If false, the values filtered on and returned wll be the original property values

Example
{
  "Limit": 321,
  "From": 321,
  "ReportingStrings": true
}