StockReceiptFilter
Model
Used in StockReceipt queries to filter the result set
Constant
System.Int32 MAX_LIMIT = 100
The maximum value for Limit.
Nullable
Limit :
number (int)
The maximum number of stock receipts 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
Nullable
DateTimeReceived :
DateStartFilterCondition
When to start filtering receipt date from
Nullable
DateTimeReceivedPart :
DateStartPartFilterCondition
When to start filtering receipt date from
Nullable
StockReceiptNumber :
RangeFilterCondition`1
The range of receipt IDs to query
Nullable
Checked :
bool
Whether to filter on the Checked property of the stock receipts
Example
{
"Limit": 321,
"From": 321,
"DateTimeReceived": {},
"DateTimeReceivedPart": {},
"StockReceiptNumber": {},
"Checked": true
}