SalesTransactionExport Model

Represents a general export of sales transaction data for a range of DBGens

Nullable
dbGenFrom : number (int)

The lower bound (inclusive) DBGen that this data export is sourcing sales data from

Nullable
dbGenTo : number (int)

The (inclusive) DBGen that this data export

Nullable
dateTimeGeneratedUTC : string (ISO 8601 DateTime)

The UTC date time that this export was generated

Nullable
jobID : string (GUID)

The source DataExtractionService JobID that is the parent Job for JobRunID

Nullable
jobRunID : string (GUID)

The unique DataExtractionService JobRunID that will identify the specific job run that generated this export

Nullable
tcLocationID : string

The Tyro Connect Location ID representing the outlet this sales data is from

Nullable
salesTransactions : SalesTransaction []

The SalesTransactions belonging to the specified DBGen range that are being exported

Example
{
  "dbGenFrom": 321,
  "dbGenTo": 321,
  "dateTimeGeneratedUTC": "2012-04-03T09:40:59.736Z",
  "jobID": "3f49efe7-ea42-4f21-8718-7e6ce9a33512",
  "jobRunID": "3f49efe7-ea42-4f21-8718-7e6ce9a33512",
  "tcLocationID": "string value",
  "salesTransactions": []
}