POST api/customer/{guid}/voucher/{voucherName}

Redeem or issue customer vouchers for a customer

Request Information

URI Parameters

NameDescriptionTypeAdditional information
guid

Customer identifier

globally unique identifier

Required

voucherName

voucher name

string

Required

Body Parameters

CustomerVoucherSummary with issue and redeem count included

CustomerVoucherUpdateSummary
NameDescriptionTypeAdditional information
CustomerIdentifier

Collection of byte

None.

CustomerIdentifierGuid

Customer identifier of customer

globally unique identifier

None.

VoucherName

Required. Voucher name

string

None.

StoreID

Store voucher is issued from

integer

None.

Redeem

Indicate that voucher is to be redeemed with current settings, will be used if both issue and redeem are set to true

boolean

None.

Issue

Indicate that voucher is to be issued with current settings

boolean

None.

Barcode

Required when tracking the issuing and redemption of a specific voucher

string

None.

SaleIdentifier

Sale identifier, required for both online and offline vouchers

string

None.

StoreSalePaymentID

Optional, the sale payment id. Can only be provided if the voucher is offline.

integer

None.

SaleHeaderID

Optional, the sale header id. Can only be provided if the voucher is offline.

integer

None.

IdempotentID

The byte[16] representation of the idempotent id

Collection of byte

None.

IdempotentGuid

Idempotent identifier

globally unique identifier

None.

Offline

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "customerIdentifier": "vAAwPcbgXEqMXUhxEM1HWQ==",
  "customerIdentifierGuid": "3d3000bc-e0c6-4a5c-8c5d-487110cd4759",
  "voucherName": "sample string 2",
  "storeID": 3,
  "redeem": true,
  "issue": true,
  "barcode": "sample string 6",
  "saleIdentifier": "sample string 7",
  "storeSalePaymentID": 1,
  "saleHeaderID": 1,
  "idempotentID": "mQI4KzzpJkega1s5XwRUYw==",
  "idempotentGuid": "2b380299-e93c-4726-a06b-5b395f045463",
  "offline": true
}

application/xml, text/xml

Sample:
<CustomerVoucherUpdateSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Customers">
  <Barcode>sample string 6</Barcode>
  <CustomerIdentifier>vAAwPcbgXEqMXUhxEM1HWQ==</CustomerIdentifier>
  <CustomerIdentifierGuid>3d3000bc-e0c6-4a5c-8c5d-487110cd4759</CustomerIdentifierGuid>
  <IdempotentGuid>2b380299-e93c-4726-a06b-5b395f045463</IdempotentGuid>
  <IdempotentID>mQI4KzzpJkega1s5XwRUYw==</IdempotentID>
  <Issue>true</Issue>
  <Offline>true</Offline>
  <Redeem>true</Redeem>
  <SaleHeaderID>1</SaleHeaderID>
  <SaleIdentifier>sample string 7</SaleIdentifier>
  <StoreID>3</StoreID>
  <StoreSalePaymentID>1</StoreSalePaymentID>
  <VoucherName>sample string 2</VoucherName>
</CustomerVoucherUpdateSummary>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CustomerVoucher
NameDescriptionTypeAdditional information
ID

integer

None.

CustomerIdentifier

Collection of byte

None.

CustomerIdentifierGuid

globally unique identifier

None.

VoucherID

Identifier of the voucher issued

integer

None.

VoucherName

Name of the voucher that was issued

string

None.

StoreID

Store identifier, voucher was earned at

integer

None.

Barcode

The barcode generated for the voucher

string

String length: inclusive between 0 and 40

DateOfIssue

Time voucher entry was issued

date

Data type: DateTime

IssuedSaleHeaderID

Sale Header ID of sale that issued customer voucher offline

integer

None.

IssuedSaleIdentifier

Sale identifier of sale that issued customer voucher online

string

None.

IssuedOfflinePaymentID

SalePaymentID of sale payment that issued customer voucher offline

integer

None.

IssuedIdempotentID

The byte[16] representation of the idempotent id

Collection of byte

None.

IssuedIdempotentGuid

Idempotent identifier

globally unique identifier

None.

IssuedOffline

boolean

None.

IssuedUser

User that manually issued voucher

string

None.

IssuedNotes

string

None.

ExpiryDate

The time when the CustomerVoucher will/has been expired

date

Data type: Date

ExpiredUser

User that manually expired voucher

string

None.

ExpiredNotes

string

None.

Redeemed

The time when the CustomerVoucher will/has been redeemed

date

Data type: DateTime

RedeemedSaleHeaderID

Sale Header ID of sale that redeemed customer voucher offline

integer

None.

RedeemedSaleIdentifier

Sale identifier of sale that redeemed customer voucher online

string

None.

RedeemedOfflinePaymentID

integer

None.

RedeemedIdempotentID

The byte[16] representation of the idempotent id

Collection of byte

None.

RedeemedIdempotentGuid

Idempotent identifier

globally unique identifier

None.

RedeemedUser

User that manually redeemed voucher

string

None.

RedeemedNotes

string

None.

RedeemedOffline

SalePaymentID of sale payment that redeemed customer voucher offline

boolean

None.

Updated

Last time CustomerVoucher entry was updated

date

Data type: DateTime

StoreName

Store that voucher was issued from

string

Relation. This field may not always be loaded or used for updates.

ScaleLabel

Label

Relation. This field may not always be loaded or used for updates.

Voucher

Voucher that was issued

Voucher

Relation. This field may not always be loaded or used for updates.

Customer

Customer that was issued the voucher

Customer

Relation. This field may not always be loaded or used for updates.

IssuedOfflinePayment

Payment and sale record for offline sale that issued voucher

StoreSalePayment

Relation. This field may not always be loaded or used for updates.

RedeemedOfflinePayment

Payment and sale record for offline sale that redeemed voucher

StoreSalePayment

Relation. This field may not always be loaded or used for updates.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "customerIdentifier": "aZhhtR0pSEOYdKqZgk9oFg==",
  "customerIdentifierGuid": "b5619869-291d-4348-9874-aa99824f6816",
  "voucherID": 3,
  "voucherName": "sample string 4",
  "storeID": 1,
  "barcode": "sample string 5",
  "dateOfIssue": "2025-06-14T07:44:07.4077075",
  "issuedSaleHeaderID": 1,
  "issuedSaleIdentifier": "sample string 7",
  "issuedOfflinePaymentID": 1,
  "issuedIdempotentID": "J9XPWpYcFUKuSlFxUy6weg==",
  "issuedIdempotentGuid": "5acfd527-1c96-4215-ae4a-5171532eb07a",
  "issuedOffline": true,
  "issuedUser": "sample string 9",
  "issuedNotes": "sample string 10",
  "expiryDate": "2025-06-14T07:44:07.4077075",
  "expiredUser": "sample string 11",
  "expiredNotes": "sample string 12",
  "redeemed": "2025-06-14T07:44:07.4077075",
  "redeemedSaleHeaderID": 1,
  "redeemedSaleIdentifier": "sample string 13",
  "redeemedOfflinePaymentID": 1,
  "redeemedIdempotentID": "8tvnCcHYAU+FtjWkxrMzxw==",
  "redeemedIdempotentGuid": "09e7dbf2-d8c1-4f01-85b6-35a4c6b333c7",
  "redeemedUser": "sample string 14",
  "redeemedNotes": "sample string 15",
  "redeemedOffline": true,
  "updated": "2025-06-14T07:44:07.4077075",
  "storeName": "sample string 17",
  "scaleLabel": {
    "$id": "2",
    "id": 1,
    "uid": "sample string 2",
    "name": "sample string 3",
    "width": 1.1,
    "height": 1.1,
    "showBorder": true,
    "borderWidth": 1.1,
    "borderStyle": 1,
    "borderColour": "sample string 5",
    "updated": "2025-06-14T07:44:07.4077075",
    "labelPageLayout": "EH8L1xI/e0GPJXq/xuKNYw==",
    "pageLayoutGuid": "d70b7f10-3f12-417b-8f25-7abfc6e28d63",
    "labelType": 6,
    "oldName": "sample string 7",
    "voucher": {
      "$id": "3",
      "id": 1,
      "name": "sample string 2",
      "description": "sample string 3",
      "shortDescription": "sample string 4",
      "url": "sample string 5",
      "barcodeTemplateID": 1,
      "expiry": 0,
      "voucherType": 6,
      "limitPerTransaction": 7,
      "customerTracking": true,
      "discountAccount": "sample string 9",
      "endDate": "2025-06-14T07:44:07.4077075",
      "barcodeTemplate": {
        "$id": "4",
        "templateID": 1,
        "template": "sample string 1",
        "bcFunction": "sample string 2",
        "sortOrder": 3
      },
      "scaleLabel": {
        "$ref": "2"
      },
      "customerVouchers": [
        {
          "$ref": "1"
        },
        {
          "$ref": "1"
        }
      ]
    },
    "elements": [
      {
        "$id": "5",
        "id": 1,
        "scaleLabelID": 2,
        "showPercentDI": true,
        "showAvgPerHundred": true,
        "showAvgPerServe": true,
        "name": "sample string 6",
        "x": 1.1,
        "y": 1.1,
        "width": 1.1,
        "height": 1.1,
        "type": 1,
        "rotation": 1,
        "text": "sample string 7",
        "fontFamily": "sample string 8",
        "align": 1,
        "bold": true,
        "italic": true,
        "underline": true,
        "strikeout": true,
        "reverse": true,
        "textColour": "sample string 9",
        "fontSize": 1.1,
        "picture": "QEA=",
        "borderWidth": 10,
        "sortOrder": 11,
        "printOptions": 12,
        "superScriptTextFontSize": 1.1,
        "lineStyle": 1,
        "spacingStyle": 1,
        "interCharacterSpacing": 1.1,
        "superScriptOffset": 1.1,
        "lineSpacing": 1.1,
        "dateFormat": "sample string 13",
        "autoGrow": true,
        "fontAutoResize": true,
        "updated": "2025-06-14T07:44:07.4077075"
      },
      {
        "$ref": "5"
      }
    ]
  },
  "voucher": {
    "$ref": "3"
  },
  "customer": {
    "$id": "6",
    "identifier": "icTegZaRqE28AU4WbDg/7Q==",
    "identifierGuid": "81dec489-9196-4da8-bc01-4e166c383fed",
    "code": "sample string 2",
    "familyName": "sample string 3",
    "givenName": "sample string 4",
    "otherName": "sample string 5",
    "title": "sample string 6",
    "dateOfBirth": "2025-06-14T07:44:07.4077075",
    "sex": "sample string 7",
    "address1": "sample string 8",
    "address2": "sample string 9",
    "town": "sample string 10",
    "state": "sample string 11",
    "country": "sample string 12",
    "postalCode": "sample string 13",
    "email": "sample string 14",
    "telephone": "sample string 15",
    "mobile": "sample string 16",
    "communityIdentifier": "2S5cbYwl50q4DBOU2CZaNA==",
    "communityIdentifierGuid": "6d5c2ed9-258c-4ae7-b80c-1394d8265a34",
    "joined": "2025-06-14T07:44:07.4077075",
    "updated": "2025-06-14T07:44:07.4077075",
    "active": true,
    "reasonInactive": 1,
    "groupCustomer": true,
    "loyaltyPoints": 1,
    "homeStoreID": 1,
    "availableSpend": 1,
    "priceLevelIdentifier": "lGkKw+01PEm822li42PZPw==",
    "priceLevelIdentifierGuid": "c30a6994-35ed-493c-bcdb-6962e363d93f",
    "marketingID": "sample string 18",
    "hidden": true,
    "registered": true,
    "registeredOn": "2025-06-14T07:44:07.4077075",
    "emailMarketing": true,
    "smsMarketing": true,
    "deleted": true,
    "deletedUser": "sample string 24",
    "homeStoreName": "sample string 25",
    "customerCards": [
      {
        "$id": "7",
        "cardType": 2,
        "issueDate": "2025-06-14T07:44:07.4077075",
        "expiry": "2025-06-14T07:44:07.4077075",
        "customerID": "n+WM14D6DkuDYLfbcXfpJg==",
        "customerIDGuid": "d78ce59f-fa80-4b0e-8360-b7db7177e926",
        "initialValue": 1,
        "currentValue": 1,
        "maxLimit": 1,
        "minTransaction": 1,
        "maxTransaction": 1,
        "multiplier": 1.1,
        "active": true,
        "reasonInactive": 1,
        "idRequired": true,
        "idType": 1,
        "idValue": "sample string 5",
        "updated": "2025-06-14T07:44:07.4077075",
        "linkedAccount": "GijyBGjfe0W1FbAL21Jxkg==",
        "linkedAccountGuid": "04f2281a-df68-457b-b515-b00bdb527192",
        "currentValueChanged": true,
        "limitsChanged": true,
        "customer": {
          "$ref": "6"
        },
        "account": {
          "$id": "8",
          "id": 1,
          "identifier": "HG1723phXEKH6OCpgxGIkg==",
          "identifierGuid": "db7b6d1c-617a-425c-87e8-e0a983118892",
          "referenceNo": "sample string 3",
          "name": "sample string 4",
          "created": "2025-06-14T07:44:07.4077075",
          "owner": "CgtKsl1kNE+S+TBn/b+xxg==",
          "ownerGuid": "b24a0b0a-645d-4f34-92f9-3067fdbfb1c6",
          "accountStoreGroupIdentifier": "QjMICLbCE0Whx99YzqWh/w==",
          "accountStoreGroupGuid": "08083342-c2b6-4513-a1c7-df58cea5a1ff",
          "accountType": 1,
          "currentBalance": 1,
          "externalID": "sample string 7",
          "maximumLimit": 1,
          "accruePoints": true,
          "loyaltyPoints": 1,
          "termsOfTrade": 1,
          "signatureRequired": true,
          "referenceRequired": true,
          "statementSendType": 10,
          "ageingPeriod": 1,
          "monthlyAgeingPeriod": true,
          "explodedInvoice": true,
          "isFifoAllocation": true,
          "lastStatementSent": "2025-06-14T07:44:07.4077075",
          "active": true,
          "updated": "2025-06-14T07:44:07.4077075",
          "deleted": true,
          "deletedUser": "sample string 16",
          "currentBalanceChanged": true,
          "maximumLimitChanged": true,
          "loyaltyPointsChanged": true,
          "projectedBalance": 17,
          "accountStoreGroupStoreIDs": [
            1,
            2
          ],
          "customerEmail": "sample string 18",
          "ownerCustomer": {
            "$ref": "6"
          },
          "card": {
            "$ref": "7"
          },
          "members": {
            "$id": "9",
            "sample string 1": [
              {
                "$ref": "6"
              },
              {
                "$ref": "6"
              }
            ],
            "sample string 2": [
              {
                "$ref": "6"
              },
              {
                "$ref": "6"
              }
            ]
          },
          "customerGroups": [
            {
              "$id": "10",
              "identifier": "5ZjIEsckh0aoGsgCYi9fcw==",
              "identifierGuid": "12c898e5-24c7-4687-a81a-c802622f5f73",
              "name": "sample string 2",
              "primaryContact": "x1TI/QZJeEiSHiaO9xWWJQ==",
              "primaryContactGuid": "fdc854c7-4906-4878-921e-268ef7159625",
              "accountID": "3O3SO9k6102v7dqFVo9Qdw==",
              "accountIDGuid": "3bd2eddc-3ad9-4dd7-afed-da85568f5077",
              "special": true,
              "updated": "2025-06-14T07:44:07.4077075",
              "active": true,
              "reasonInactive": 1,
              "priceLevelIdentifier": "65AHBOM3+Umipx8RICN3yw==",
              "priceLevelIdentifierGuid": "040790eb-37e3-49f9-a2a7-1f11202377cb",
              "deleted": true,
              "account": {
                "$ref": "8"
              },
              "primaryContactCustomer": {
                "$ref": "6"
              },
              "customerGroupMembers": [
                {
                  "$id": "11",
                  "id": 1,
                  "groupID": "wM0rQH5460e7z2S2GJDWlQ==",
                  "groupIDGuid": "402bcdc0-787e-47eb-bbcf-64b61890d695",
                  "customerID": "NJs8hnHjNkit3EQq7jukuw==",
                  "customerIDGuid": "863c9b34-e371-4836-addc-442aee3ba4bb",
                  "card": "sample string 4",
                  "linkedAccount": "3iTNy9zVPkSdlalQnEMdbQ==",
                  "linkedAccountGuid": "cbcd24de-d5dc-443e-9d95-a9509c431d6d",
                  "customer": {
                    "$ref": "6"
                  },
                  "group": {
                    "$ref": "10"
                  },
                  "customerCard": {
                    "$ref": "7"
                  }
                },
                {
                  "$ref": "11"
                }
              ]
            },
            {
              "$ref": "10"
            }
          ]
        },
        "payments": [
          {
            "$id": "12",
            "id": 1,
            "identifier": "zLKneq1x3kqv5+HgSP6wUA==",
            "identifierGuid": "7aa7b2cc-71ad-4ade-afe7-e1e048feb050",
            "storeID": 2,
            "operatorName": "sample string 3",
            "saleHeaderID": 4,
            "paymentType": 5,
            "amount": 6,
            "account": "sample string 7",
            "accountID": "7UNK8FdwuEGCswMqGjiJmg==",
            "accountIDGuid": "f04a43ed-7057-41b8-82b3-032a1a38899a",
            "customerAccount": {
              "$ref": "8"
            },
            "customerCard": {
              "$ref": "7"
            },
            "accountType": 1,
            "cardName": "sample string 8",
            "authorisationNumber": "sample string 9",
            "bankReference": "sample string 10",
            "merchantID": "sample string 11",
            "terminalID": "sample string 12",
            "cardNumber": "sample string 13",
            "paymentDate": "2025-06-14T07:44:07.4077075",
            "invRocNo": "sample string 14",
            "responseCode": "sample string 15",
            "cashout": 1,
            "tip": 16,
            "idempotentVoid": "lOrOQENu+EGA2hJ94fIy7w==",
            "idempotentVoidGuid": "40ceea94-6e43-41f8-80da-127de1f232ef",
            "offline": true,
            "processed": 1,
            "storeSaleHeader": {
              "$id": "13",
              "saleHeaderID": 1,
              "saleHeaderGuid": "DIprGSOyLUaM9SknE74tpw==",
              "saleHeaderIdentifierGuid": "196b8a0c-b223-462d-8cf5-292713be2da7",
              "created": "2025-06-14T07:44:07.4077075",
              "createdLocal": "2025-06-14T07:44:07.4077075",
              "createdText": "sample string 4",
              "itemCount": 5,
              "totalAmount": 6,
              "cashTender": 1,
              "cardTender": 1,
              "cheqTender": 1,
              "acctTender": 1,
              "voucherTender": 1,
              "loyaltyPoints": 1,
              "cashout": 1,
              "changeAmount": 1,
              "rounding": 1,
              "gstAmount": 1,
              "transactionDiscountTender": 1,
              "totalTip": 7,
              "tranType": 1,
              "processed": 1,
              "imported": "2025-06-14T07:44:07.4077075",
              "storeID": 1,
              "operatorG_Uid": "p/S/C/+qBkOFzZh5+nBXzg==",
              "operatorGuid": "0bbff4a7-aaff-4306-85cd-9879fa7057ce",
              "customerG_Uid": "lyACzIR0lkaK1VHJ7J+sBg==",
              "customerGuid": "cc022097-7484-4696-8ad5-51c9ec9fac06",
              "communityIdentifier": "VPLQ4qyXD0i59yoJmKdhXw==",
              "communityIdentifierGuid": "e2d0f254-97ac-480f-b9f7-2a0998a7615f",
              "saleIdentifier": "sample string 8",
              "deptNo": 9,
              "zoneID": 10,
              "operatorID": 11,
              "voucherForegone": 12,
              "cardName": "sample string 13",
              "accountType": 14,
              "authID": "sample string 15",
              "bankRef": "sample string 16",
              "invRoc": "sample string 17",
              "responseCode": "sample string 18",
              "orderNo": 19,
              "accountNo": 20,
              "machineID": 21,
              "timeInSale": "00:00:00.1234567",
              "timeInSubtotal": "00:00:00.1234567",
              "newID": 22,
              "totalTaxInclusive": 23,
              "totalTaxExempt": 24,
              "taxTransactionDiscount": 25,
              "taxTransactionDiscountTender": 1,
              "tableNumber": 1,
              "note": "sample string 26",
              "source": "sample string 27",
              "customerReference": "sample string 28",
              "receiptPrinted": true,
              "drawerID": 1,
              "demoID": "sample string 30",
              "externalTransNo": "sample string 31",
              "externalSale": 32,
              "smartReceiptStatus": 33,
              "requiredExports": 34,
              "loyaltyMetadata": "sample string 35",
              "priceLevelIdentifier": "rvN5dgQT3kGY4w7Q9fYAtg==",
              "priceLevelIdentifierGuid": "7679f3ae-1304-41de-98e3-0ed0f5f600b6",
              "locked": 36,
              "relationChecksum": "sample string 37",
              "loyaltyTender": 1,
              "giftCardTender": 1,
              "operator": {
                "$id": "14",
                "id": 1,
                "g_Uid": "6wHT7wW2dka7CCYrR1HQeQ==",
                "guid": "efd301eb-b605-4676-bb08-262b4751d079",
                "operatorNumber": 1,
                "shortName": "sample string 2",
                "firstName": "sample string 3",
                "lastName": "sample string 4",
                "password": "sample string 5",
                "hasPassword": true,
                "passwordText": "sample string 6",
                "rfidTagID": "sample string 7",
                "blueprintID": 1,
                "groupID": 1,
                "groupName": "sample string 8",
                "managerGroupID": 1,
                "managerGroupName": "sample string 9",
                "zoneID": 1,
                "zoneName": "sample string 10",
                "loggedIn": 1,
                "lastUsedIP": "sample string 11",
                "deleted": true,
                "locked": true,
                "allowOpenTill": true,
                "webEmail": "sample string 14",
                "simpleOperatorType": 0,
                "webRole": "sample string 15",
                "updated": "2025-06-14T07:44:07.4077075",
                "passwordResetRequired": true,
                "alteredInStore": true,
                "startShift": "2025-06-14T07:44:07.4077075",
                "endShift": "2025-06-14T07:44:07.4077075",
                "machineName": "sample string 20",
                "drawerID": 1,
                "stores": [
                  {
                    "$id": "15",
                    "operatorG_UID": "g7S3yRe4H0GAQdHOyLvO8Q==",
                    "operatorGuid": "c9b7b483-b817-411f-8041-d1cec8bbcef1",
                    "storeID": 2,
                    "operator": {
                      "$ref": "14"
                    },
                    "store": {
                      "$id": "16",
                      "id": 1,
                      "isMaster": true,
                      "shortName": "sample string 3",
                      "url": "sample string 4",
                      "sortOrder": 1,
                      "name": "sample string 5",
                      "phone": "sample string 6",
                      "fax": "sample string 7",
                      "email": "sample string 8",
                      "address1": "sample string 9",
                      "address2": "sample string 10",
                      "city": "sample string 11",
                      "state": "sample string 12",
                      "country": "sample string 13",
                      "postCode": "sample string 14",
                      "delivery": 1,
                      "exportAccounts": 1,
                      "salesAccountFolder": "sample string 15",
                      "purchaseAccountFolder": "sample string 16",
                      "initLoad": 1,
                      "initIDs": 1,
                      "zoneID": 1,
                      "actAsMaster": 1,
                      "lastActiveUtc": "2025-06-14T07:44:07.4077075",
                      "active": true,
                      "warehouse": true,
                      "abn": "sample string 19",
                      "phoneOrderSubjectLine": "sample string 20",
                      "caseConfiguration": 21,
                      "isNormalPriceChangesCampaign": true,
                      "generatePrintLabels": true,
                      "headerLogo": "sample string 24",
                      "custNo": "sample string 25",
                      "stateCode": "sample string 26",
                      "hostIdentifier": "5/CfCCqLKk6U/pioJvOLJQ==",
                      "hostIdentifierGuid": "089ff0e7-8b2a-4e2a-94fe-98a826f38b25",
                      "hostName": 1,
                      "hostAddress": "sample string 27",
                      "hostUsername": "sample string 28",
                      "hostPassword": "sample string 29",
                      "excludeFromLeadInOut": true,
                      "accountingProvider": 31,
                      "accountingAddress": "sample string 32",
                      "accountingUsername": "sample string 33",
                      "accountingPassword": "sample string 34",
                      "storeAccountingCode": "sample string 35",
                      "softwareVariance": 36,
                      "fuelWarningVariance": 37.0,
                      "fuelErrorVariance": 38.0,
                      "fuelAccumulatedWarningVariance": 39.0,
                      "fuelAccumulatedErrorVariance": 40.0,
                      "drawManagment": 41,
                      "endOfDayManagment": true,
                      "autoFillCashBalancing": true,
                      "fuelDayVariance": 44,
                      "accountingTradingTime": "00:00:00.1234567",
                      "stockActivateProduct": 46,
                      "giftCardSalesAccountingDeptCode": "sample string 47",
                      "transactionDiscountAccountingDeptCode": "sample string 48",
                      "size": 49,
                      "updated": "2025-06-14T07:44:07.4077075",
                      "priceZoneName": "sample string 51",
                      "storeFuelConfigured": true,
                      "shippingAddressCopied": true,
                      "shippingAddress": {
                        "$id": "17",
                        "storeID": 1,
                        "addressType": 1,
                        "address1": "sample string 1",
                        "address2": "sample string 2",
                        "city": "sample string 3",
                        "state": "sample string 4",
                        "country": "sample string 5",
                        "postCode": "sample string 6"
                      },
                      "billingAddress": {
                        "$ref": "17"
                      },
                      "hostStoreSettings": [
                        {
                          "$id": "18",
                          "id": 1,
                          "hostIdentifier": "42uLKf+ejU6/nj0iuPcIWQ==",
                          "hostIdentifierGuid": "298b6be3-9eff-4e8d-bf9e-3d22b8f70859",
                          "storeID": 2,
                          "username": "sample string 3",
                          "password": "sample string 4",
                          "passwordPlain": "sample string 5",
                          "serverAddress": "sample string 6",
                          "serverPort": 1,
                          "excludeFromLeadInOut": true,
                          "useForHostFile": true,
                          "metcashPillarID": "sample string 9",
                          "metcashStateCode": "sample string 10",
                          "metcashCustomerID": "sample string 11",
                          "metcashTradingPartnerID": "sample string 12",
                          "drakesCustomerNumber": 1,
                          "sparCustomerNumber": "sample string 13",
                          "sparOrderUsername": "sample string 14",
                          "sparOrderPassword": "sample string 15",
                          "sparOrderPasswordPlain": "sample string 16",
                          "pharmXSiteID": 1,
                          "ibaZoneID": 1,
                          "ibaState": "sample string 17",
                          "foodlandStoreCode": "sample string 18",
                          "ilgMemberNumber": "sample string 19",
                          "ilgOutletLocation": 1,
                          "ilgBaseCost": 1,
                          "ilgApplyNonAdvertisedPromos": true,
                          "ilgExemptFromFreight": true,
                          "ilgOrderDealReview": true,
                          "ilgFinanceFee": 1,
                          "processPromotions": true,
                          "hostProvider": 0,
                          "host": {
                            "$id": "19",
                            "identifier": "h2G35p/lCUqeEcwXxkIQng==",
                            "identifierGuid": "e6b76187-e59f-4a09-9e11-cc17c642109e",
                            "isPrimary": true,
                            "obeyPreferredHost": true,
                            "loadCampaigns": true,
                            "isHostOwnedGroup": true,
                            "serviceFeeID": 1,
                            "deletedDiscountRate": 1,
                            "deletedDiscountDuration": 1,
                            "doNotRange": true,
                            "doNotOrder": true,
                            "updateMaster": true,
                            "ignoreHostPriceGroups": true,
                            "ignoreNormalSellIncrease": true,
                            "ignoreNormalSellIncreaseRange": 11,
                            "ignoreNormalSellDecrease": true,
                            "ignoreNormalSellDecreaseRange": 13,
                            "roundNormalSell": true,
                            "ignorePromotionSell": true,
                            "ignoreNonAdvertisedPromotionSell": true,
                            "splitAdvertisedAndNonAdvertisedPromotions": true,
                            "ignoreLeadInOut": true,
                            "hostSupplierIdentifier": "p24qBu5+pkGtYmOG5fqNXw==",
                            "hostSupplierIdentifierGuid": "062a6ea7-7eee-41a6-ad62-6386e5fa8d5f",
                            "loyaltyPriceLevelIdentifier": "m4GXOtxerEu7wc1wEE9WBA==",
                            "loyaltyPriceLevelIdentifierGuid": "3a97819b-5edc-4bac-bbc1-cd70104f5604",
                            "isGroup": true,
                            "description": "sample string 22",
                            "hostProvider": 23,
                            "hostTypeEnum": 24,
                            "hostType": "sample string 25",
                            "hostCode": "sample string 26",
                            "username": "sample string 27",
                            "password": "sample string 28",
                            "passwordPlain": "sample string 29",
                            "server": "sample string 30",
                            "url": "sample string 31",
                            "global": true,
                            "stateCode": "sample string 33",
                            "lastCollected": "2025-06-14T07:44:07.4077075",
                            "lastProcessed": "2025-06-14T07:44:07.4077075",
                            "hold": true,
                            "supplierName": "sample string 35",
                            "supplier": {
                              "$id": "20",
                              "identifier": "ZFZwm/hcHEaY2TFHkTFErw==",
                              "identifierGuid": "9b705664-5cf8-461c-98d9-3147913144af",
                              "code": "sample string 1",
                              "name": "sample string 2",
                              "fuelSupplier": true,
                              "isSupplier": true,
                              "isHostedSupplier": true,
                              "hostID": 1,
                              "accountCode": "sample string 6",
                              "invoiceSuffix": "sample string 7",
                              "orderEmail": "sample string 8",
                              "orderEmailBcc": "sample string 9",
                              "orderFax": "sample string 10",
                              "showOrderCost": true,
                              "receiptCostUpdate": true,
                              "sendReceipt": true,
                              "receiptEmail": "sample string 14",
                              "receiptEmailBcc": "sample string 15",
                              "primaryContactGuid": "hyxMPPus9Uq9TbIW1dlnBA==",
                              "primaryContactID": "3c4c2c87-acfb-4af5-bd4d-b216d5d96704",
                              "storeID": 1,
                              "abn": "sample string 16",
                              "supplierGroupIdentifier": "sdh3l27eXESuTl9Roc59lA==",
                              "supplierGroupGuid": "9777d8b1-de6e-445c-ae4e-5f51a1ce7d94",
                              "rebate": 1.0,
                              "rebateType": 1,
                              "rebateFrequency": 1,
                              "rebateSource": 1,
                              "rebateLastClaimed": "2025-06-14T07:44:07.4077075",
                              "rebateLastClaimedAmount": 1.0,
                              "cartonsOnly": true,
                              "minimumOrderValue": 1,
                              "enforceMinimumQuantity": true,
                              "freight": 19.0,
                              "freightType": 20,
                              "deleted": true,
                              "deletedUser": "sample string 22",
                              "storeName": "sample string 23",
                              "primaryContact": {
                                "$id": "21",
                                "id": "b39910e0-ff29-4a34-a346-f77abd528ce9",
                                "identifier": "zWI4Ngg6HUmIpX00AmGeJQ==",
                                "identifierGuid": "363862cd-3a08-491d-88a5-7d3402619e25",
                                "familyName": "sample string 1",
                                "givenNames": "sample string 2",
                                "otherNames": "sample string 3",
                                "title": "sample string 4",
                                "dateOfBirth": "sample string 5",
                                "sex": "sample string 6",
                                "address": "sample string 7",
                                "address1": "sample string 8",
                                "address2": "sample string 9",
                                "town": "sample string 10",
                                "state": "sample string 11",
                                "country": "sample string 12",
                                "postalCode": "sample string 13",
                                "telephone": "sample string 14",
                                "mobile": "sample string 15",
                                "email": "sample string 16",
                                "fax": "sample string 17",
                                "primary": true
                              },
                              "contacts": [
                                {
                                  "$id": "22",
                                  "supplierIdentifier": "ysjO3/i4Wk2LUi6RDe/9Iw==",
                                  "supplierIdentifierGuid": "dfcec8ca-b8f8-4d5a-8b52-2e910deffd23",
                                  "contactGuid": "fKIRCg1GJ0G/lsJF1skxGA==",
                                  "contactID": "0a11a27c-460d-4127-bf96-c245d6c93118",
                                  "contact": {
                                    "$ref": "21"
                                  },
                                  "supplier": {
                                    "$ref": "20"
                                  }
                                },
                                {
                                  "$ref": "22"
                                }
                              ],
                              "products": [
                                {
                                  "$id": "23",
                                  "pluG_UID": "BOTkuu4ZPEOdk6Y0cp3Y/w==",
                                  "pluGuid": "bae4e404-19ee-433c-9d93-a634729dd8ff",
                                  "supplierIdentifier": "yN6d0fr46EqDCaXfNxglvg==",
                                  "supplierIdentifierGuid": "d19ddec8-f8fa-4ae8-8309-a5df371825be",
                                  "cartonQuantity": 1,
                                  "cartonQuantityChanged": true,
                                  "productSize": "sample string 2",
                                  "cigarettesPerSleeve": 1,
                                  "randomWeight": true,
                                  "piecesPerUnit": 4,
                                  "averagePackSize": 5,
                                  "effectiveDate": "2025-06-14T07:44:07.4077075",
                                  "pricedByWeight": true,
                                  "landedUnitCostEx": 8,
                                  "landedUnitCostInc": 9,
                                  "landedCartonCostInc": 10,
                                  "landedCartonCostEx": 11,
                                  "standardCost": 12,
                                  "deliveryFee": 1,
                                  "deliveryFeeBasis": "sample string 13",
                                  "pickAndPackFee": 1,
                                  "pickAndPackFeeBasis": "sample string 14",
                                  "financeFee": 1,
                                  "financeFeeBasis": "sample string 15",
                                  "cartonLength": 1,
                                  "cartonWidth": 1,
                                  "cartonHeight": 1,
                                  "palletLayerQuantity": 1,
                                  "palletLayers": 1,
                                  "itemCode": "sample string 16",
                                  "invoiceCode": "sample string 17",
                                  "invoiceDesc": "sample string 18",
                                  "orderDirect": true,
                                  "useCost": true,
                                  "minimumQuantity": 19,
                                  "hostType": 20,
                                  "fromHost": 21,
                                  "minimumReorder": 1,
                                  "maximumReorder": 1,
                                  "orderMultiple": 22.1,
                                  "sellMultiple": 23.1,
                                  "baseMultiple": 24.1,
                                  "hostStandardCost": 25,
                                  "hostTotalCost": 26,
                                  "hostRetail": 27,
                                  "hostLandedUnitCostEx": 28,
                                  "hostLandedUnitCostInc": 29,
                                  "hostDesc": "sample string 30",
                                  "directIndicator": "sample string 31",
                                  "availableToOrder": true,
                                  "hostRangeIndicator": "sample string 33",
                                  "hostProductType": "sample string 34",
                                  "hostProductGrade": "sample string 35",
                                  "hostProductGroup": "sample string 36",
                                  "hostSlowMoving": true,
                                  "hostGeneralMerchandise": true,
                                  "hostPillar": "sample string 39",
                                  "hostLastUpdated": "2025-06-14T07:44:07.4077075",
                                  "rebate": 1.0,
                                  "rebateExclude": true,
                                  "invoiceCodes": [
                                    {
                                      "$id": "24",
                                      "pluG_UID": "Xl+y1NwS40+BZVbDvaS/ig==",
                                      "pluGuid": "d4b25f5e-12dc-4fe3-8165-56c3bda4bf8a",
                                      "supplierIdentifier": "2QKL5I9AOkSp9dRzwCHTOg==",
                                      "supplierIdentifierGuid": "e48b02d9-408f-443a-a9f5-d473c021d33a",
                                      "invoiceCode": "sample string 1",
                                      "storeIDs": [
                                        1,
                                        2
                                      ]
                                    },
                                    {
                                      "$ref": "24"
                                    }
                                  ],
                                  "storeIDs": [
                                    1,
                                    2
                                  ],
                                  "preferredSupplier": true,
                                  "preferredRebateSupplier": true,
                                  "supplierName": "sample string 40",
                                  "salesMode": 41,
                                  "orderPacked": true,
                                  "active": true,
                                  "price": 1,
                                  "costGstPercent": 43,
                                  "parentPluG_UID": "DH9W4BHv3UKAybFLS7ixvA==",
                                  "parentPluGuid": "e0567f0c-ef11-42dd-80c9-b14b4bb8b1bc",
                                  "freight": 44.0,
                                  "freightType": 1,
                                  "product": {
                                    "$id": "25",
                                    "plu": 1,
                                    "storeID": 1,
                                    "masterPluG_UID": "QEA=",
                                    "storeIDs": [
                                      1,
                                      2
                                    ],
                                    "g_UId": "n8nbN6nglUqt7+dNg6hGjA==",
                                    "guid": "37dbc99f-e0a9-4a95-adef-e74d83a8468c",
                                    "apn": "sample string 1",
                                    "apnChanged": true,
                                    "apnSwitched": true,
                                    "barcode": "sample string 4",
                                    "itemNumber": "sample string 5",
                                    "itemNumberChanged": true,
                                    "priceGroupG_UID": "2pg/jTQtBkKRZDb+PfTtSw==",
                                    "priceGroupGuid": "8d3f98da-2d34-4206-9164-36fe3df4ed4b",
                                    "blueprintID": 1,
                                    "lastCountedDate": "2025-06-14T07:44:07.4077075",
                                    "externalID": "sample string 7",
                                    "active": true,
                                    "activated": "2025-06-14T07:44:07.4077075",
                                    "pluCreated": "2025-06-14T07:44:07.4077075",
                                    "createdByUser": "sample string 9",
                                    "name": "sample string 10",
                                    "nameChanged": true,
                                    "secondDescription": "sample string 12",
                                    "hostDescription": "sample string 13",
                                    "keepCartonQty": true,
                                    "keepDescription": true,
                                    "keepDepartments": true,
                                    "keepSuppliers": true,
                                    "markdownDescription": "sample string 18",
                                    "altDescription": "sample string 19",
                                    "bestOrExpire": 20,
                                    "lastUpdate": "2025-06-14T07:44:07.4077075",
                                    "lastManualUpdate": "2025-06-14T07:44:07.4077075",
                                    "imageName": "sample string 23",
                                    "showImageOnFlipCharts": true,
                                    "showTextOnFlipCharts": true,
                                    "overrideFlipChartText": true,
                                    "flipChartText": "sample string 27",
                                    "salesMode": 1,
                                    "eftCode": 1,
                                    "price": 1,
                                    "priceChanged": true,
                                    "rrp": 1,
                                    "gstPercent": 28,
                                    "gstPercentChanged": true,
                                    "costGSTPercent": 29,
                                    "costGSTPercentChanged": true,
                                    "wetPercent": 1,
                                    "priceOverride": 1,
                                    "cost": 1,
                                    "currentCost": 1,
                                    "currentCostDecimals": 1,
                                    "grossProfit": 1.0,
                                    "currentCostDesc": "sample string 30",
                                    "currentCostEnd": "2025-06-14T07:44:07.4077075",
                                    "currentCostUpdated": "2025-06-14T07:44:07.4077075",
                                    "costDecimals": 31,
                                    "costChanged": true,
                                    "dealCostIdentifier": "QEA=",
                                    "excludeFromRebate": true,
                                    "rebateOverride": 1,
                                    "costCalcMethod": 1,
                                    "costCalcMethodChanged": true,
                                    "costEffectiveDate": "2025-06-14T07:44:07.4077075",
                                    "defaultGP": 1,
                                    "breakTargetMode": 32,
                                    "break1": 1,
                                    "price1": 1,
                                    "target1": 33,
                                    "break2": 1,
                                    "price2": 1,
                                    "target2": 34,
                                    "break3": 1,
                                    "price3": 1,
                                    "target3": 35,
                                    "break1Changed": true,
                                    "price1Changed": true,
                                    "target1Changed": true,
                                    "break2Changed": true,
                                    "price2Changed": true,
                                    "target2Changed": true,
                                    "break3Changed": true,
                                    "price3Changed": true,
                                    "target3Changed": true,
                                    "breakTargetModeChanged": true,
                                    "margin": 1.1,
                                    "marginChanged": true,
                                    "marginRanged": true,
                                    "marginRangedChanged": true,
                                    "minimumMargin": 1.1,
                                    "minimumMarginChanged": true,
                                    "maximumMargin": 1.1,
                                    "maximumMarginChanged": true,
                                    "overrideHostWarehouseIndicator": true,
                                    "overrideHostWarehouseIndicatorChanged": true,
                                    "overrideHostPrice": true,
                                    "overrideHostPriceChanged": true,
                                    "overrideHostCost": true,
                                    "overrideHostCostChanged": true,
                                    "overrideHostMargin": true,
                                    "overrideHostMarginChanged": true,
                                    "alwaysApplyMargin": true,
                                    "alwaysApplyMarginChanged": true,
                                    "aws": 1.0,
                                    "awsUpdated": "2025-06-14T07:44:07.4077075",
                                    "posTare": 1,
                                    "altPrice": 1.0,
                                    "altPriceChanged": true,
                                    "altPriceMode": 52,
                                    "altPriceModeChanged": true,
                                    "altPLUG_UID": "VwwHCokef0CeIGgVLeKBdQ==",
                                    "altPLUGuid": "0a070c57-1e89-407f-9e20-68152de28175",
                                    "altPLUGuidChanged": true,
                                    "altPriceDescription1": "sample string 53",
                                    "altPriceDescription2": "sample string 54",
                                    "cartonQuantity": 55,
                                    "cartonQuantityChanged": true,
                                    "trayID": 1,
                                    "promptID": 1,
                                    "tare": 1,
                                    "packQty": 1,
                                    "fixedWeight": 1,
                                    "extraMesg": 1,
                                    "text1": "sample string 57",
                                    "text2": "sample string 58",
                                    "text3": "sample string 59",
                                    "labelText": "sample string 60",
                                    "labelTextChanged": true,
                                    "sendToScale": true,
                                    "nonScaleWeigh": true,
                                    "labelFormat": "sample string 64",
                                    "barcodeFormat": "sample string 65",
                                    "austMade": 1,
                                    "coolCode": 66,
                                    "countryOfOrigin": "sample string 67",
                                    "percentContent": 68.1,
                                    "departmentID": 1,
                                    "subDepartmentID": 1,
                                    "minorDepartmentID": 1,
                                    "lesserDepartmentID": 1,
                                    "deptCode": "sample string 69",
                                    "subDeptCode": "sample string 70",
                                    "minorDeptCode": "sample string 71",
                                    "lesserDeptCode": "sample string 72",
                                    "deptName": "sample string 73",
                                    "subDeptName": "sample string 74",
                                    "minorDeptName": "sample string 75",
                                    "lesserDeptName": "sample string 76",
                                    "departmentChanged": true,
                                    "subCategoryID": 1,
                                    "expiry": 1,
                                    "showDays": 1,
                                    "datePrint": 1,
                                    "labelRequired": true,
                                    "labelShelfQty": 79,
                                    "labelShelfChanged": true,
                                    "labelTalkerQty": 81,
                                    "labelSmall": true,
                                    "labelLastPrinted": "2025-06-14T07:44:07.4077075",
                                    "labelLastPrice": 1,
                                    "shelfPageLayoutG_UID": "AY63C5jOzkGjaWEOB1wo4Q==",
                                    "shelfPageLayoutGuid": "0bb78e01-ce98-41ce-a369-610e075c28e1",
                                    "talkerPageLayoutG_UID": "ZCz4eAXRekGVUoaTOp54Dw==",
                                    "talkerPageLayoutGuid": "78f82c64-d105-417a-9552-86933a9e780f",
                                    "unitMeasure": 1.1,
                                    "unitMeasureChanged": true,
                                    "unitMeasureKind": 84,
                                    "unitMeasureKindChanged": true,
                                    "signIQData": "sample string 86",
                                    "refresh": true,
                                    "earnLoyaltyPoints": true,
                                    "earnLoyaltyPointsChanged": true,
                                    "quantityOverride": true,
                                    "quantityOverrideChanged": true,
                                    "quantityRequired": true,
                                    "quantityRequiredChanged": true,
                                    "allowDiscounts": true,
                                    "allowDiscountsChanged": true,
                                    "discountDiscounts": true,
                                    "discountDiscountsChanged": true,
                                    "itemRecalled": true,
                                    "itemRecalledChanged": true,
                                    "noRefund": true,
                                    "noRefundChanged": true,
                                    "allowMarkdown": true,
                                    "allowMarkdownChanged": true,
                                    "priceRequired": true,
                                    "priceRequiredChanged": true,
                                    "fuelItem": true,
                                    "fuelItemChanged": true,
                                    "trackSerial": true,
                                    "trackSerialChanged": true,
                                    "allowZeroPrice": true,
                                    "allowZeroPriceChanged": true,
                                    "notForSale": 90,
                                    "notForSaleChanged": true,
                                    "excludeFromDeals": true,
                                    "excludeFromVoucher": true,
                                    "minimumAge": 93,
                                    "minimumAgeChanged": true,
                                    "buyingLimit": 1,
                                    "buyingLimitChanged": true,
                                    "buyingLimitIndependent": true,
                                    "buyingLimitIndependentChanged": true,
                                    "inventoryGuid": "raOIfJuir0e/3H0Cy8XkTQ==",
                                    "inventoryIdentifier": "7c88a3ad-a29b-47af-bfdc-7d02cbc5e44d",
                                    "inventoryAccuracy": 1,
                                    "baseUnits": 97,
                                    "orderPacked": 1,
                                    "isManufactured": true,
                                    "isIngredient": true,
                                    "isModifier": true,
                                    "isModifierChanged": true,
                                    "hasModifiers": 98,
                                    "defaultPrinter": "sample string 99",
                                    "defaultPrinterGroup": "sample string 100",
                                    "ingredientsOnManufacture": true,
                                    "manufactureUnitMeasure": 1,
                                    "mpl": 1,
                                    "maxShelfQty": 101,
                                    "allowAutoOrder": true,
                                    "warrantyPeriod": 1,
                                    "parentPluG_UId": "T/VSZKe80U6YsVLY+5TFCg==",
                                    "parentPluGuid": "6452f54f-bca7-4ed1-98b1-52d8fb94c50a",
                                    "preferredHostVendor": 103,
                                    "preferredHostChanged": true,
                                    "code": "sample string 105",
                                    "supplierIdentifier": "Ir99jBxrzkO6tGT0gHXOLQ==",
                                    "supplierIdentifierGuid": "8c7dbf22-6b1c-43ce-bab4-64f48075ce2d",
                                    "supplierChanged": true,
                                    "rebateSupplierIdentifier": "DfCLeEei8kWkJL7pryRtog==",
                                    "rebateSupplierIdentifierGuid": "788bf00d-a247-45f2-a424-bee9af246da2",
                                    "rebateSupplierChanged": true,
                                    "availableForOrder": true,
                                    "warehouseDirectIndicator": "sample string 107",
                                    "warehouseDirectIndicatorChanged": true,
                                    "productGrade": "sample string 109",
                                    "productType": "sample string 110",
                                    "productGroup": "sample string 111",
                                    "complianceIndicator": "sample string 112",
                                    "inhouseBrand": "sample string 113",
                                    "slowMoving": true,
                                    "generalMerchandise": true,
                                    "comment": "sample string 116",
                                    "lastUpdatedByUser": "sample string 117",
                                    "lastManualUpdatedByUser": "sample string 118",
                                    "lastUpdatedByUserOverride": true,
                                    "lastUpdatedByHost": "2025-06-14T07:44:07.4077075",
                                    "commodity": "sample string 120",
                                    "businessPillar": "sample string 121",
                                    "mscCommodity": "sample string 122",
                                    "hostIdentifier": "Bn/c94UrNUOq++be0MG/Dw==",
                                    "hostIdentifierGuid": "f7dc7f06-2b85-4335-aafb-e6ded0c1bf0f",
                                    "serviceFeeID": 1,
                                    "serviceFeeIDChanged": true,
                                    "providerName": "sample string 124",
                                    "aisleEnds": "sample string 125",
                                    "deleted": true,
                                    "deletedChanged": true,
                                    "hidden": true,
                                    "doNotRange": true,
                                    "doNotRangeChanged": true,
                                    "doNotOrder": true,
                                    "doNotOrderChanged": true,
                                    "locked": true,
                                    "excludeFromWebUpdate": true,
                                    "excludeFromWebUpdateChanged": true,
                                    "webPriceBasedOn": 136,
                                    "webPriceRounding": true,
                                    "webMarkup": 138,
                                    "webPriceMode": 139,
                                    "altDepartmentID": 1,
                                    "altSubDepartmentID": 1,
                                    "altMinorDepartmentID": 1,
                                    "altLesserDepartmentID": 1,
                                    "altDeptCode": "sample string 140",
                                    "altSubDeptCode": "sample string 141",
                                    "altMinorDeptCode": "sample string 142",
                                    "altLesserDeptCode": "sample string 143",
                                    "altDepartmentChanged": true,
                                    "storeProducts": [
                                      {
                                        "$ref": "25"
                                      },
                                      {
                                        "$ref": "25"
                                      }
                                    ],
                                    "store": {
                                      "$ref": "16"
                                    },
                                    "storePrices": [
                                      {
                                        "$id": "26",
                                        "pluG_UID": "p9E2Kr83QUue89b/arc0ww==",
                                        "pluGuid": "2a36d1a7-37bf-4b41-9ef3-d6ff6ab734c3",
                                        "plu": 1,
                                        "storeID": 1,
                                        "zoneID": 2,
                                        "zoneName": "sample string 3",
                                        "store": "sample string 4",
                                        "priceNow": 5,
                                        "costNow": 6,
                                        "costNowDecimals": 7,
                                        "normalPrice": 8,
                                        "gstPercent": 9,
                                        "normalCost": 10,
                                        "normalCostDecimals": 11,
                                        "costGstPercent": 12,
                                        "costCalcMethod": 1,
                                        "currentCost": 13,
                                        "currentCostDecimals": 14,
                                        "break1": 15,
                                        "price1": 16,
                                        "break2": 17,
                                        "price2": 18,
                                        "break3": 19,
                                        "price3": 20,
                                        "fuelItem": 21,
                                        "fixedWeight": 22,
                                        "active": true,
                                        "complianceIndicator": "sample string 23",
                                        "doNotOrder": true,
                                        "doNotRange": true,
                                        "isNormalPriceChangesCampaign": true,
                                        "updated": "2025-06-14T07:44:07.4077075"
                                      },
                                      {
                                        "$ref": "26"
                                      }
                                    ],
                                    "currentPrices": {
                                      "$id": "27",
                                      "pluPrices": {
                                        "$id": "28",
                                        "plu": 1,
                                        "pluG_UID": "QEA=",
                                        "stores": [
                                          1,
                                          2
                                        ],
                                        "normalPrice": 1,
                                        "cost": 2,
                                        "break1": 3,
                                        "price1": 4,
                                        "break2": 5,
                                        "price2": 6,
                                        "break3": 7,
                                        "price3": 8,
                                        "discountPrice": 9,
                                        "acceptedUtc": "2025-06-14T07:44:07.4077075",
                                        "priceChangeType": 0,
                                        "costDecimals": 10
                                      },
                                      "normalPluPrices": {
                                        "$ref": "28"
                                      },
                                      "winningCampaign": 1,
                                      "winner": {
                                        "$id": "29",
                                        "campaignName": "sample string 1",
                                        "campaignDescription": "sample string 2",
                                        "startDate": "2025-06-14T07:44:07.4077075",
                                        "startTime": 3,
                                        "endDate": "2025-06-14T07:44:07.4077075",
                                        "endTime": 4,
                                        "newPrice": 5,
                                        "newCost": 6,
                                        "newCostDecimals": 7,
                                        "pctDiscount": 8,
                                        "promoType": 1,
                                        "promotionTypeCode": "sample string 9",
                                        "hostType": 10,
                                        "hostIdentifier": "Ry6S2BtlKUSbo/FgpMR5NA==",
                                        "hostIdentifierGuid": "d8922e47-651b-4429-9ba3-f160a4c47934",
                                        "storeNames": [
                                          "sample string 1",
                                          "sample string 2"
                                        ]
                                      },
                                      "details": [
                                        {
                                          "$ref": "29"
                                        },
                                        {
                                          "$ref": "29"
                                        }
                                      ]
                                    },
                                    "tray": {
                                      "$id": "30",
                                      "g_UId": "KVjt976xek6WV392YGEKSQ==",
                                      "guid": "f7ed5829-b1be-4e7a-9657-7f7660610a49",
                                      "name": "sample string 1",
                                      "number": 1,
                                      "tare": 1
                                    },
                                    "priceGroup": {
                                      "$id": "31",
                                      "priceGroupG_UID": "m6BH3zduGUOQUTWGuD1SxQ==",
                                      "priceGroupGuid": "df47a09b-6e37-4319-9051-3586b83d52c5",
                                      "name": "sample string 2",
                                      "code": 1,
                                      "modified": true,
                                      "updated": "2025-06-14T07:44:07.4077075",
                                      "buyingLimit": 1,
                                      "buyingLimitIndependent": true,
                                      "buyingLimitType": 0,
                                      "number": 1,
                                      "products": [
                                        {
                                          "$ref": "25"
                                        },
                                        {
                                          "$ref": "25"
                                        }
                                      ],
                                      "productCount": 1
                                    },
                                    "priceGroupName": "sample string 145",
                                    "nutrifacts": {
                                      "$id": "32",
                                      "pluG_UID": "jVOl2T7z8keVwLnJuc6s/g==",
                                      "pluGuid": "d9a5538d-f33e-47f2-95c0-b9c9b9ceacfe",
                                      "plu": 1,
                                      "servingsPerPack": 1,
                                      "servingSize": 1,
                                      "showAllergens": 1,
                                      "energy": 1,
                                      "protein": 1,
                                      "fat": 1,
                                      "saturated": 1,
                                      "carbo": 1,
                                      "sugars": 1,
                                      "sodium": 1,
                                      "potasium": 1,
                                      "calcium": 1,
                                      "fibre": 1,
                                      "soya": 1,
                                      "nutsSeeds": 1,
                                      "shells": 1,
                                      "eggs": 1,
                                      "dairy": 1,
                                      "gluten": 1,
                                      "sulphites": 1,
                                      "peanuts": 1,
                                      "sesame": 1,
                                      "fish": 1,
                                      "lupins": 1
                                    },
                                    "dates": {
                                      "$id": "33",
                                      "pluGuid": "c0f6d132-6bed-41bd-b2ac-5ec8702a9d1c",
                                      "created": "2025-06-14T07:44:07.4077075",
                                      "createdByUser": "sample string 1",
                                      "activated": "2025-06-14T07:44:07.4077075",
                                      "deactivated": "2025-06-14T07:44:07.4077075",
                                      "lastOrdered": "2025-06-14T07:44:07.4077075",
                                      "lastOrderedQty": 2.0,
                                      "lastReceived": "2025-06-14T07:44:07.4077075",
                                      "lastReceivedQty": 3.0,
                                      "lastInvoiceStatus": 1,
                                      "lastCounted": "2025-06-14T07:44:07.4077075",
                                      "lastSold": "2025-06-14T07:44:07.4077075",
                                      "firstSold": "2025-06-14T07:44:07.4077075",
                                      "awsUpdated": "2025-06-14T07:44:07.4077075",
                                      "lastManualUpdate": "2025-06-14T07:44:07.4077075",
                                      "lastManualUpdatedByUser": "sample string 5",
                                      "lastUpdated": "2025-06-14T07:44:07.4077075",
                                      "lastUpdatedByUser": "sample string 7",
                                      "lastUpdatedByHost": "2025-06-14T07:44:07.4077075",
                                      "doNotRangeUpdated": "2025-06-14T07:44:07.4077075",
                                      "doNotOrderUpdated": "2025-06-14T07:44:07.4077075",
                                      "tracked": "2025-06-14T07:44:07.4077075"
                                    },
                                    "allergens": [
                                      {
                                        "$id": "34",
                                        "allergenID": 1,
                                        "pluG_UID": "2RsxBr84B0S8HCMIQlKsAg==",
                                        "pluGuid": "06311bd9-38bf-4407-bc1c-23084252ac02",
                                        "contains": 2,
                                        "allergenName": "sample string 3",
                                        "storeIDs": [
                                          1,
                                          2
                                        ]
                                      },
                                      {
                                        "$ref": "34"
                                      }
                                    ],
                                    "costs": {
                                      "$id": "35",
                                      "pluG_UID": "QMt4zR5X6kqi6VIOX1tudw==",
                                      "pluGuid": "cd78cb40-571e-4aea-a2e9-520e5f5b6e77",
                                      "enteredCost": 1,
                                      "weightedAvgCost": 1,
                                      "lastCost": 1,
                                      "rawEnteredCost": 2,
                                      "rawWeightedAvgCost": 3,
                                      "rawLastCost": 4,
                                      "freight": 5.0,
                                      "freightType": 6,
                                      "costDecimals": 7,
                                      "fifoCost": 1,
                                      "updated": "2025-06-14T07:44:07.4077075",
                                      "normalCost": 1,
                                      "currentCost": 1
                                    },
                                    "sales": [
                                      {
                                        "$id": "36",
                                        "saleHeaderID": 1,
                                        "created": "2025-06-14T07:44:07.4077075",
                                        "createdLocal": "2025-06-14T07:44:07.4077075",
                                        "storeID": 3,
                                        "storeName": "sample string 4",
                                        "operatorG_Uid": "AfwpaVFrHkK6lr7ts3KK4A==",
                                        "operatorGuid": "6929fc01-6b51-421e-ba96-beedb3728ae0",
                                        "operatorName": "sample string 5",
                                        "tranType": 1,
                                        "plu": 1,
                                        "pluG_UId": "wKM9C4jJoka47eAMDkZKsA==",
                                        "pluGuid": "0b3da3c0-c988-46a2-b8ed-e00c0e464ab0",
                                        "normalPrice": 1,
                                        "totalCents": 1,
                                        "cost": 1,
                                        "grossProfit": 1,
                                        "quantity": 1,
                                        "operator": {
                                          "$ref": "14"
                                        }
                                      },
                                      {
                                        "$ref": "36"
                                      }
                                    ],
                                    "apns": [
                                      {
                                        "$id": "37",
                                        "pluID": 1,
                                        "pluG_UID": "tzgqDEJu/ECHrRumu5EXww==",
                                        "pluGuid": "0c2a38b7-6e42-40fc-87ad-1ba6bb9117c3",
                                        "apn": "sample string 1",
                                        "deleted": true,
                                        "storeID": 1,
                                        "storeIDs": [
                                          1,
                                          2
                                        ]
                                      },
                                      {
                                        "$ref": "37"
                                      }
                                    ],
                                    "tuns": [
                                      {
                                        "$id": "38",
                                        "pluG_UId": "JplaFYxOdE21oQ9HzgbkCw==",
                                        "pluGuid": "155a9926-4e8c-4d74-b5a1-0f47ce06e40b",
                                        "apn": "sample string 1",
                                        "tun": "sample string 2",
                                        "cartonQuantity": 3,
                                        "product": {
                                          "$ref": "25"
                                        },
                                        "storeIDs": [
                                          1,
                                          2
                                        ]
                                      },
                                      {
                                        "$ref": "38"
                                      }
                                    ],
                                    "competitionPricing": [
                                      {
                                        "$id": "39",
                                        "identifier": "thWoiejwD0ubH9XwnRqvGA==",
                                        "identifierGuid": "89a815b6-f0e8-4b0f-9b1f-d5f09d1aaf18",
                                        "pluG_UID": "aOSKhqeXzU+CvUVLdZoOtg==",
                                        "pluGuid": "868ae468-97a7-4fcd-82bd-454b759a0eb6",
                                        "competitionID": 1,
                                        "name": "sample string 2",
                                        "sellMultiple": 3,
                                        "retailPrice": 4,
                                        "storeName": "sample string 5"
                                      },
                                      {
                                        "$ref": "39"
                                      }
                                    ],
                                    "supplier": {
                                      "$ref": "20"
                                    },
                                    "supplierName": "sample string 146",
                                    "children": [
                                      {
                                        "$ref": "25"
                                      },
                                      {
                                        "$ref": "25"
                                      }
                                    ],
                                    "ordering": {
                                      "$ref": "23"
                                    },
                                    "flipChartPages": [
                                      {
                                        "$id": "40",
                                        "identifier": "gGl45Iffd0mDgLFeAbA9yQ==",
                                        "groupName": "sample string 1",
                                        "identifierGuid": "e4786980-df87-4977-8380-b15e01b03dc9",
                                        "exists": true,
                                        "flipChartIdentifier": "KT/zGVHZBEuqpLvlH3V1vw==",
                                        "flipChartIdentifierGuid": "19f33f29-d951-4b04-aaa4-bbe51f7575bf",
                                        "contentPanelName": "sample string 5",
                                        "selectionMode": 1,
                                        "maximumSelections": 1,
                                        "enableProductRecogniser": true,
                                        "displayName": "sample string 7",
                                        "sortOrder": 8,
                                        "storeID": 1,
                                        "productsPerRow": 9,
                                        "rows": 10,
                                        "showButtonText": true,
                                        "showButtonImage": true,
                                        "buttonWidth": 13,
                                        "buttonHeight": 14,
                                        "autoSizeButtons": true,
                                        "autoSizeGrid": true,
                                        "buttonAnchor": 17,
                                        "buttonBackgroundImage": "sample string 18",
                                        "buttonTopColour": 1,
                                        "buttonTextColour": 1,
                                        "buttonBottomColour": 1,
                                        "buttonBorderColour": 1,
                                        "buttonBorderWidth": 1,
                                        "buttonRadius": 1,
                                        "buttonGradientMode": 1,
                                        "buttonDropShadow": true,
                                        "buttonShadowWidth": 1,
                                        "buttonHighLightOnPush": true,
                                        "buttonFontFamily": "sample string 19",
                                        "buttonFontSize": 1.1,
                                        "buttonFontStyle": 1,
                                        "buttonTextAlign": 1,
                                        "buttonWordBreak": true,
                                        "buttonDrawImageAndButton": true,
                                        "buttonVerticalText": true,
                                        "buttonImageAlign": 1,
                                        "buttonMarginX": 20,
                                        "buttonMarginY": 21,
                                        "beginButtonsX": 22,
                                        "beginButtonsY": 23,
                                        "manualSortProducts": true,
                                        "sortProductsKind": 25,
                                        "groupIdentifier": "VfRNhWfHV0O/jU6+wGGCQQ==",
                                        "groupIdentifierGuid": "854df455-c767-4357-bf8d-4ebec0618241",
                                        "flipChart": {
                                          "$id": "41",
                                          "identifier": "bJ4XogjjvEmKBMlrrB6Gig==",
                                          "identifierGuid": "a2179e6c-e308-49bc-8a04-c96bac1e868a",
                                          "displayName": "sample string 2",
                                          "sortOrder": 3,
                                          "productsPerRow": 4,
                                          "rowsPerPage": 5,
                                          "buttonMarginX": 6,
                                          "buttonMarginY": 7,
                                          "beginButtonsX": 8,
                                          "beginButtonsY": 9,
                                          "autoSizeButtons": true,
                                          "autoSizeGrid": true,
                                          "showButtonText": true,
                                          "showButtonImage": true,
                                          "formLocationX": 1,
                                          "formLocationY": 1,
                                          "formWidth": 14,
                                          "formHeight": 15,
                                          "formMaximised": true,
                                          "formResizable": true,
                                          "formBackgroundImage": "sample string 16",
                                          "formBackgroundColourA": 1,
                                          "formBackgroundColourR": 1,
                                          "formBackgroundColourG": 1,
                                          "formBackgroundColourB": 1,
                                          "formFontFamily": "sample string 17",
                                          "formFontSize": 1.1,
                                          "formFontStyle": 1,
                                          "formAttributes": "sample string 18",
                                          "buttonWidth": 19,
                                          "buttonHeight": 20,
                                          "buttonAnchor": 21,
                                          "buttonBackgroundImage": "sample string 22",
                                          "buttonTopColour": 1,
                                          "buttonTextColour": 1,
                                          "buttonBottomColour": 1,
                                          "buttonBorderColour": 1,
                                          "buttonBorderWidth": 1,
                                          "buttonRadius": 1,
                                          "buttonGradientMode": 1,
                                          "buttonDropShadow": true,
                                          "buttonShadowWidth": 1,
                                          "buttonHighLightOnPush": true,
                                          "buttonFontFamily": "sample string 23",
                                          "buttonFontSize": 1.1,
                                          "buttonFontStyle": 1,
                                          "buttonTextAlign": 1,
                                          "buttonWordBreak": true,
                                          "buttonDrawImageAndButton": true,
                                          "buttonVerticalText": true,
                                          "buttonImageAlign": 1,
                                          "panelLocationX": 1,
                                          "panelLocationY": 1,
                                          "panelWidth": 1,
                                          "panelHeight": 1,
                                          "panelAnchor": 1,
                                          "panelFontFamily": "sample string 24",
                                          "panelFontSize": 1.1,
                                          "panelFontStyle": 1,
                                          "panelBackgroundColour": 1,
                                          "panelTextColour": 1,
                                          "panelAttributes": "sample string 25",
                                          "unsentCount": 26,
                                          "group": {
                                            "$id": "42",
                                            "identifier": "YhK4czddQk2C8DtkQH5tcg==",
                                            "identifierGuid": "73b81262-5d37-4d42-82f0-3b64407e6d72",
                                            "name": "sample string 2",
                                            "formType": "sample string 3",
                                            "forms": [
                                              {
                                                "$id": "43",
                                                "id": 1,
                                                "g_UID": "F4UWyvKkxESL/ryEeN0V8g==",
                                                "guid": "ca168517-a4f2-44c4-8bfe-bc8478dd15f2",
                                                "zoneID": 3,
                                                "storeID": 4,
                                                "name": "sample string 5",
                                                "formType": "sample string 6",
                                                "locationX": 1,
                                                "locationY": 1,
                                                "width": 1,
                                                "height": 1,
                                                "maximised": true,
                                                "resizable": true,
                                                "backgroundImage": "sample string 7",
                                                "backgroundColour": "sample string 8",
                                                "backgroundColourA": 1,
                                                "backgroundColourR": 1,
                                                "backgroundColourG": 1,
                                                "backgroundColourB": 1,
                                                "fontFamily": "sample string 9",
                                                "fontSize": 1.1,
                                                "fontStyle": 1,
                                                "previousForm": 1,
                                                "previousFormG_UID": "myuS4pmSxkSuxYuKW6COvw==",
                                                "previousFormGuid": "e2922b9b-9299-44c6-aec5-8b8a5ba08ebf",
                                                "nextForm": 1,
                                                "nextFormG_UID": "SlNhkOOoa06sjfDO9kh88A==",
                                                "nextFormGuid": "9061534a-a8e3-4e6b-ac8d-f0cef6487cf0",
                                                "attributes": "sample string 10",
                                                "updated": "2025-06-14T07:44:07.4077075",
                                                "positioning": 1,
                                                "contentPanel": "sample string 11",
                                                "selectionMode": 1,
                                                "maximumSelections": 1,
                                                "alteredInStore": true,
                                                "deleted": true,
                                                "blueprintID": 1,
                                                "preserveLayout": true,
                                                "mainCheckoutFormName": "sample string 13",
                                                "nextCheckoutForm": {
                                                  "$ref": "43"
                                                },
                                                "previousCheckoutForm": {
                                                  "$ref": "43"
                                                },
                                                "buttons": [
                                                  {
                                                    "$id": "44",
                                                    "id": 1,
                                                    "checkoutFormID": 2,
                                                    "checkoutFormG_UID": "GcO21TmgUkSLg/VHER4ebg==",
                                                    "checkoutFormGuid": "d5b6c319-a039-4452-8b83-f547111e1e6e",
                                                    "identifier": "duff/mtInUupM310prbvcQ==",
                                                    "identifierGuid": "fedfe776-486b-4b9d-a933-7d74a6b6ef71",
                                                    "name": "sample string 5",
                                                    "plu": 1,
                                                    "locationX": 1,
                                                    "locationY": 1,
                                                    "width": 1,
                                                    "height": 1,
                                                    "anchor": 1,
                                                    "backgroundImage": "sample string 6",
                                                    "backgroundImageID": 1,
                                                    "backgroundImageUrl": "sample string 7",
                                                    "topColour": 1,
                                                    "textColour": 1,
                                                    "bottomColour": 1,
                                                    "borderColour": 1,
                                                    "borderWidth": 1,
                                                    "radius": 1,
                                                    "gradientMode": 1,
                                                    "dropShadow": true,
                                                    "shadowWidth": 1,
                                                    "highLightOnPush": true,
                                                    "fontFamily": "sample string 8",
                                                    "fontSize": 1.1,
                                                    "fontStyle": 1,
                                                    "textAlign": 1,
                                                    "imageAlign": 1,
                                                    "wordBreak": true,
                                                    "verticalText": true,
                                                    "buttonFunction": 1,
                                                    "buttonValue": 1,
                                                    "valueG_UID": "1IyqI6wjvEaWx1QbJK9YfQ==",
                                                    "valueGuid": "23aa8cd4-23ac-46bc-96c7-541b24af587d",
                                                    "buttonText": "sample string 10",
                                                    "valueText": "sample string 11",
                                                    "drawImageAndButton": true,
                                                    "updated": "2025-06-14T07:44:07.4077075",
                                                    "action": "sample string 12",
                                                    "valueForm": {
                                                      "$ref": "43"
                                                    },
                                                    "image": {
                                                      "$id": "45",
                                                      "name": "sample string 3.sample string 4",
                                                      "imageID": 2,
                                                      "imageName": "sample string 3",
                                                      "imageExtension": "sample string 4",
                                                      "lastUpdate": "2025-06-14T07:44:07.4077075",
                                                      "imageData": "QEA=",
                                                      "readOnly": true
                                                    }
                                                  },
                                                  {
                                                    "$ref": "44"
                                                  }
                                                ],
                                                "panels": [
                                                  {
                                                    "$id": "46",
                                                    "id": 1,
                                                    "checkoutFormID": 2,
                                                    "checkoutFormG_UID": "fcMg7jRim0GOqPy44hiLeg==",
                                                    "checkoutFormGuid": "ee20c37d-6234-419b-8ea8-fcb8e2188b7a",
                                                    "panelType": "sample string 4",
                                                    "name": "sample string 5",
                                                    "locationX": 6,
                                                    "locationY": 7,
                                                    "width": 8,
                                                    "height": 9,
                                                    "anchor": 10,
                                                    "fontFamily": "sample string 11",
                                                    "fontSize": 12.1,
                                                    "fontStyle": 13,
                                                    "backgroundColour": 14,
                                                    "textColour": 15,
                                                    "attributes": "sample string 16"
                                                  },
                                                  {
                                                    "$ref": "46"
                                                  }
                                                ]
                                              },
                                              {
                                                "$ref": "43"
                                              }
                                            ],
                                            "panels": [
                                              {
                                                "$ref": "46"
                                              },
                                              {
                                                "$ref": "46"
                                              }
                                            ]
                                          },
                                          "pages": [
                                            {
                                              "$ref": "40"
                                            },
                                            {
                                              "$ref": "40"
                                            }
                                          ]
                                        },
                                        "contentPanel": {
                                          "$ref": "46"
                                        },
                                        "products": [
                                          {
                                            "$id": "47",
                                            "flipChartPageIdentifier": "E0P2bFd15kyuJhNO4Zpd9Q==",
                                            "flipChartPageIdentifierGuid": "6cf64313-7557-4ce6-ae26-134ee19a5df5",
                                            "pluG_UID": "zR+7F5TVU0iGjwh482sirw==",
                                            "pluGuid": "17bb1fcd-d594-4853-868f-0878f36b22af",
                                            "sortOrder": 3,
                                            "sent": true,
                                            "productChanged": true,
                                            "productImageName": "sample string 6",
                                            "productShowImageOnFlipCharts": true,
                                            "productShowTextOnFlipCharts": true,
                                            "productOverrideFlipChartText": true,
                                            "productFlipChartText": "sample string 10",
                                            "product": {
                                              "$ref": "25"
                                            },
                                            "departmentSortOrder": 11,
                                            "subDepartmentName": "sample string 12"
                                          },
                                          {
                                            "$ref": "47"
                                          }
                                        ],
                                        "productCount": 27,
                                        "pages": [
                                          {
                                            "$ref": "40"
                                          },
                                          {
                                            "$ref": "40"
                                          }
                                        ]
                                      },
                                      {
                                        "$ref": "40"
                                      }
                                    ],
                                    "priceHistory": [
                                      {
                                        "$id": "48",
                                        "pluG_UID": "RWxHRAuS2kizqA5OVKx40A==",
                                        "pluGuid": "44476c45-920b-48da-b3a8-0e4e54ac78d0",
                                        "price": 1,
                                        "costCalcMethod": 1,
                                        "cost": 2,
                                        "weightedAvgCost": 3,
                                        "lastCost": 4,
                                        "rawCost": 5,
                                        "rawWeightedAvgCost": 6,
                                        "rawLastCost": 7,
                                        "costDecimals": 8,
                                        "serviceFeeID": 9,
                                        "freight": 10.0,
                                        "freightType": 11,
                                        "process": "sample string 12",
                                        "user": "sample string 13",
                                        "updated": "2025-06-14T07:44:07.4077075",
                                        "previousPrice": 1,
                                        "previousCostCalcMethod": 1,
                                        "previousCost": 1,
                                        "previousWeightedAvgCost": 1,
                                        "previousLastCost": 1,
                                        "previousRawCost": 15,
                                        "previousRawWeightedAvgCost": 16,
                                        "previousRawLastCost": 17,
                                        "previousCostDecimals": 1,
                                        "previousServiceFeeID": 18,
                                        "previousFreight": 19.0,
                                        "previousFreightType": 20,
                                        "storeID": 21,
                                        "storeName": "sample string 22",
                                        "serviceFeeDescription": "sample string 23",
                                        "previousServiceFeeDescription": "sample string 24"
                                      },
                                      {
                                        "$ref": "48"
                                      }
                                    ],
                                    "ingredients": [
                                      {
                                        "$id": "49",
                                        "pluG_UID": "wDyQCFSAj0uop97RXVLqsg==",
                                        "ingredientGuid": "LNKf8Jd58kqo4eD0rlzyPw==",
                                        "ingredientIdentifier": "f09fd22c-7997-4af2-a8e1-e0f4ae5cf23f",
                                        "quantity": 1.0,
                                        "storeIDs": [
                                          1,
                                          2
                                        ],
                                        "ingredientText": "sample string 1",
                                        "ingredient": {
                                          "$ref": "25"
                                        }
                                      },
                                      {
                                        "$ref": "49"
                                      }
                                    ],
                                    "bins": [
                                      {
                                        "$id": "50",
                                        "pluG_UID": "4TDhoPNoj0CpI70AmwIfAg==",
                                        "pluGuid": "a0e130e1-68f3-408f-a923-bd009b021f02",
                                        "shelfLocationIdentifier": "0c1CrCyR4UuB6Q+NNBOgaw==",
                                        "shelfLocationGuid": "ac42cdd1-912c-4be1-81e9-0f8d3413a06b",
                                        "labelShelfDefault": 1,
                                        "labelTalkerDefault": 1,
                                        "labelSmall": true,
                                        "labelPageLayoutG_UID": "NxlBxfvF3kui80mzy+SEoQ==",
                                        "labelPageLayoutGuid": "c5411937-c5fb-4bde-a2f3-49b3cbe484a1",
                                        "updated": "2025-06-14T07:44:07.4077075",
                                        "electronicShelfLabelIdentifier": "sample string 5",
                                        "electronicshelfLabelsConfigurationID": 6,
                                        "labelShelfChanged": true,
                                        "productName": "sample string 8",
                                        "locationText": "sample string 9",
                                        "product": {
                                          "$ref": "25"
                                        },
                                        "location": {
                                          "$id": "51",
                                          "identifier": "Mrix2xEEr0uit3cR77nCVA==",
                                          "storeID": 1,
                                          "identifierGuid": "dbb1b832-0411-4baf-a2b7-7711efb9c254",
                                          "name": "sample string 2",
                                          "haccp": true,
                                          "blueprintID": 1,
                                          "updated": "2025-06-14T07:44:07.4077075",
                                          "minTemp": 1,
                                          "maxTemp": 1,
                                          "checkFrequency": 1,
                                          "storeCaseConfiguration": 5,
                                          "storeName": "sample string 6",
                                          "bins": [
                                            {
                                              "$ref": "50"
                                            },
                                            {
                                              "$ref": "50"
                                            }
                                          ]
                                        }
                                      },
                                      {
                                        "$ref": "50"
                                      }
                                    ],
                                    "bin": {
                                      "$ref": "50"
                                    },
                                    "scaleLocations": [
                                      {
                                        "$id": "52",
                                        "plu": 1,
                                        "pluG_UID": "rxUIF4pd+UCHMduz+0VxmQ==",
                                        "pluGuid": "170815af-5d8a-40f9-8731-dbb3fb457199",
                                        "deptNo": 1,
                                        "product": {
                                          "$ref": "25"
                                        },
                                        "scaleLocation": {
                                          "$id": "53",
                                          "id": 1,
                                          "deptNo": 1,
                                          "deptCode": "sample string 2",
                                          "name": "sample string 3",
                                          "enabled": true,
                                          "updated": "2025-06-14T07:44:07.4077075",
                                          "department": {
                                            "$id": "54",
                                            "id": 1,
                                            "name": "sample string 2",
                                            "code": "sample string 3",
                                            "sortOrder": 4,
                                            "isLiquor": true,
                                            "isTobacco": true,
                                            "excludeTalker": true,
                                            "externalSales": true,
                                            "saleGLCode": "sample string 9",
                                            "cogsglCode": "sample string 10",
                                            "accountingCategoryID": 11,
                                            "maximumMarkdownPercentage": 12.0,
                                            "accountingOnly": true,
                                            "generateExternalID": 1,
                                            "useNonReportableTaxCode": true,
                                            "minPLU": 15,
                                            "maxPLU": 16,
                                            "scaleLocation": {
                                              "$ref": "53"
                                            },
                                            "subDepartments": [
                                              {
                                                "$id": "55",
                                                "id": 1,
                                                "departmentID": 2,
                                                "name": "sample string 3",
                                                "code": "sample string 4",
                                                "departmentCode": "sample string 5",
                                                "externalSales": true,
                                                "minorDepartments": [
                                                  {
                                                    "$id": "56",
                                                    "id": 1,
                                                    "subDepartmentID": 2,
                                                    "departmentID": 3,
                                                    "name": "sample string 4",
                                                    "subDepartmentCode": "sample string 5",
                                                    "departmentCode": "sample string 6",
                                                    "code": "sample string 7",
                                                    "lesserDepartments": [
                                                      {
                                                        "$id": "57",
                                                        "id": 1,
                                                        "departmentID": 2,
                                                        "subDepartmentID": 3,
                                                        "minorDepartmentID": 4,
                                                        "name": "sample string 5",
                                                        "code": "sample string 6",
                                                        "departmentCode": "sample string 7",
                                                        "subDepartmentCode": "sample string 8",
                                                        "minorDepartmentCode": "sample string 9",
                                                        "updated": "2025-06-14T07:44:07.4077075",
                                                        "salesMode": 1,
                                                        "gstPercent": 1,
                                                        "costGSTPercent": 1,
                                                        "earnLoyaltyPoints": true,
                                                        "quantityOverride": true,
                                                        "quantityRequired": true,
                                                        "allowDiscounts": true,
                                                        "discountDiscounts": true,
                                                        "itemRecalled": true,
                                                        "noRefund": true,
                                                        "active": true,
                                                        "allowMarkdown": true,
                                                        "defaultGP": 1.1,
                                                        "labelShelfDefault": 1,
                                                        "labelTalkerDefault": 1,
                                                        "labelSmall": true,
                                                        "tags": "sample string 11",
                                                        "unitMeasureKind": 1,
                                                        "fuelItem": true,
                                                        "trackSerial": true,
                                                        "warrantyPeriod": 1,
                                                        "costCalcMethod": 1,
                                                        "providerName": "sample string 12",
                                                        "overrideHostMargin": true,
                                                        "keepDescription": true,
                                                        "mscCommodity": "sample string 15",
                                                        "allowAutoOrder": true,
                                                        "excludeFromWebUpdate": true,
                                                        "webPriceBasedOn": true,
                                                        "labelFormat": "sample string 16",
                                                        "sendToScale": true,
                                                        "labelPageLayoutG_UID": "XnRqSeegC0qkp0korbRtzw==",
                                                        "labelPageLayoutGuid": "496a745e-a0e7-4a0b-a4a7-4928adb46dcf",
                                                        "minimumAge": 17,
                                                        "countryOfOrigin": "sample string 18",
                                                        "serviceFeeID": 1,
                                                        "eftCode": 19,
                                                        "defaultPrinter": "sample string 20",
                                                        "defaultPrinterGroup": "sample string 21",
                                                        "buyingLimit": 1,
                                                        "buyingLimitIndependent": true,
                                                        "buyingLimitType": 0,
                                                        "includeInDistinctLimit": true,
                                                        "defaultsEmpty": false,
                                                        "mscCat": {
                                                          "$id": "58",
                                                          "dept": 1,
                                                          "category": 2,
                                                          "name": "sample string 3",
                                                          "active": true,
                                                          "mscCommodities": [
                                                            {
                                                              "$id": "59",
                                                              "dept": 1,
                                                              "category": 2,
                                                              "commodity": 3,
                                                              "name": "sample string 4",
                                                              "active": true,
                                                              "mscSubCommodities": [
                                                                {
                                                                  "$id": "60",
                                                                  "dept": 1,
                                                                  "category": 2,
                                                                  "commodity": 3,
                                                                  "subCommodity": 4,
                                                                  "name": "sample string 5",
                                                                  "active": true,
                                                                  "subCommodityCode": "sample string 7"
                                                                },
                                                                {
                                                                  "$ref": "60"
                                                                }
                                                              ],
                                                              "commodityCode": "sample string 6"
                                                            },
                                                            {
                                                              "$ref": "59"
                                                            }
                                                          ],
                                                          "categoryCode": "sample string 5"
                                                        },
                                                        "mscCom": {
                                                          "$ref": "59"
                                                        },
                                                        "mscDep": {
                                                          "$id": "61",
                                                          "dept": 1,
                                                          "name": "sample string 2",
                                                          "active": true,
                                                          "mscCategories": [
                                                            {
                                                              "$ref": "58"
                                                            },
                                                            {
                                                              "$ref": "58"
                                                            }
                                                          ],
                                                          "deptCode": "sample string 4"
                                                        },
                                                        "mscSubCom": {
                                                          "$ref": "60"
                                                        }
                                                      },
                                                      {
                                                        "$ref": "57"
                                                      }
                                                    ],
                                                    "updated": "2025-06-14T07:44:07.4077075",
                                                    "salesMode": 1,
                                                    "gstPercent": 1,
                                                    "costGSTPercent": 1,
                                                    "earnLoyaltyPoints": true,
                                                    "quantityOverride": true,
                                                    "quantityRequired": true,
                                                    "allowDiscounts": true,
                                                    "discountDiscounts": true,
                                                    "itemRecalled": true,
                                                    "noRefund": true,
                                                    "active": true,
                                                    "allowMarkdown": true,
                                                    "defaultGP": 1.1,
                                                    "labelShelfDefault": 1,
                                                    "labelTalkerDefault": 1,
                                                    "labelSmall": true,
                                                    "tags": "sample string 9",
                                                    "unitMeasureKind": 1,
                                                    "fuelItem": true,
                                                    "trackSerial": true,
                                                    "warrantyPeriod": 1,
                                                    "costCalcMethod": 1,
                                                    "providerName": "sample string 10",
                                                    "overrideHostMargin": true,
                                                    "keepDescription": true,
                                                    "mscCommodity": "sample string 13",
                                                    "allowAutoOrder": true,
                                                    "excludeFromWebUpdate": true,
                                                    "webPriceBasedOn": true,
                                                    "labelFormat": "sample string 14",
                                                    "sendToScale": true,
                                                    "labelPageLayoutG_UID": "W499tkJsbEKhwxlB98Mp6A==",
                                                    "labelPageLayoutGuid": "b67d8f5b-6c42-426c-a1c3-1941f7c329e8",
                                                    "minimumAge": 15,
                                                    "countryOfOrigin": "sample string 16",
                                                    "serviceFeeID": 1,
                                                    "eftCode": 17,
                                                    "defaultPrinter": "sample string 18",
                                                    "defaultPrinterGroup": "sample string 19",
                                                    "buyingLimit": 1,
                                                    "buyingLimitIndependent": true,
                                                    "buyingLimitType": 0,
                                                    "includeInDistinctLimit": true,
                                                    "defaultsEmpty": false,
                                                    "mscCat": {
                                                      "$ref": "58"
                                                    },
                                                    "mscCom": {
                                                      "$ref": "59"
                                                    },
                                                    "mscDep": {
                                                      "$ref": "61"
                                                    },
                                                    "mscSubCom": {
                                                      "$ref": "60"
                                                    }
                                                  },
                                                  {
                                                    "$ref": "56"
                                                  }
                                                ],
                                                "investmentBuyOverride": true,
                                                "updated": "2025-06-14T07:44:07.4077075",
                                                "salesMode": 1,
                                                "gstPercent": 1,
                                                "costGSTPercent": 1,
                                                "earnLoyaltyPoints": true,
                                                "quantityOverride": true,
                                                "quantityRequired": true,
                                                "allowDiscounts": true,
                                                "discountDiscounts": true,
                                                "itemRecalled": true,
                                                "noRefund": true,
                                                "active": true,
                                                "allowMarkdown": true,
                                                "defaultGP": 1.1,
                                                "labelShelfDefault": 1,
                                                "labelTalkerDefault": 1,
                                                "labelSmall": true,
                                                "tags": "sample string 9",
                                                "unitMeasureKind": 1,
                                                "fuelItem": true,
                                                "trackSerial": true,
                                                "warrantyPeriod": 1,
                                                "costCalcMethod": 1,
                                                "providerName": "sample string 10",
                                                "overrideHostMargin": true,
                                                "keepDescription": true,
                                                "mscCommodity": "sample string 13",
                                                "allowAutoOrder": true,
                                                "excludeFromWebUpdate": true,
                                                "webPriceBasedOn": true,
                                                "labelFormat": "sample string 14",
                                                "sendToScale": true,
                                                "labelPageLayoutG_UID": "GdRx2L97tkqpP0y9rd4NCw==",
                                                "labelPageLayoutGuid": "d871d419-7bbf-4ab6-a93f-4cbdadde0d0b",
                                                "minimumAge": 15,
                                                "countryOfOrigin": "sample string 16",
                                                "serviceFeeID": 1,
                                                "eftCode": 17,
                                                "defaultPrinter": "sample string 18",
                                                "defaultPrinterGroup": "sample string 19",
                                                "buyingLimit": 1,
                                                "buyingLimitIndependent": true,
                                                "buyingLimitType": 0,
                                                "includeInDistinctLimit": true,
                                                "defaultsEmpty": false,
                                                "mscCat": {
                                                  "$ref": "58"
                                                },
                                                "mscCom": {
                                                  "$ref": "59"
                                                },
                                                "mscDep": {
                                                  "$ref": "61"
                                                },
                                                "mscSubCom": {
                                                  "$ref": "60"
                                                }
                                              },
                                              {
                                                "$ref": "55"
                                              }
                                            ],
                                            "stores": [
                                              1,
                                              2
                                            ],
                                            "investmentBuyOverride": true,
                                            "updated": "2025-06-14T07:44:07.4077075",
                                            "salesMode": 1,
                                            "gstPercent": 1,
                                            "costGSTPercent": 1,
                                            "earnLoyaltyPoints": true,
                                            "quantityOverride": true,
                                            "quantityRequired": true,
                                            "allowDiscounts": true,
                                            "discountDiscounts": true,
                                            "itemRecalled": true,
                                            "noRefund": true,
                                            "active": true,
                                            "allowMarkdown": true,
                                            "defaultGP": 1.1,
                                            "labelShelfDefault": 1,
                                            "labelTalkerDefault": 1,
                                            "labelSmall": true,
                                            "tags": "sample string 19",
                                            "unitMeasureKind": 1,
                                            "fuelItem": true,
                                            "trackSerial": true,
                                            "warrantyPeriod": 1,
                                            "costCalcMethod": 1,
                                            "providerName": "sample string 20",
                                            "overrideHostMargin": true,
                                            "keepDescription": true,
                                            "mscCommodity": "sample string 23",
                                            "allowAutoOrder": true,
                                            "excludeFromWebUpdate": true,
                                            "webPriceBasedOn": true,
                                            "labelFormat": "sample string 24",
                                            "sendToScale": true,
                                            "labelPageLayoutG_UID": "uISz1WKsBUC+wcZWPpMRjQ==",
                                            "labelPageLayoutGuid": "d5b384b8-ac62-4005-bec1-c6563e93118d",
                                            "minimumAge": 25,
                                            "countryOfOrigin": "sample string 26",
                                            "serviceFeeID": 1,
                                            "eftCode": 27,
                                            "defaultPrinter": "sample string 28",
                                            "defaultPrinterGroup": "sample string 29",
                                            "buyingLimit": 1,
                                            "buyingLimitIndependent": true,
                                            "buyingLimitType": 0,
                                            "includeInDistinctLimit": true,
                                            "defaultsEmpty": false,
                                            "mscCat": {
                                              "$ref": "58"
                                            },
                                            "mscCom": {
                                              "$ref": "59"
                                            },
                                            "mscDep": {
                                              "$ref": "61"
                                            },
                                            "mscSubCom": {
                                              "$ref": "60"
                                            }
                                          }
                                        }
                                      },
                                      {
                                        "$ref": "52"
                                      }
                                    ],
                                    "nextPrice": {
                                      "$id": "62",
                                      "id": 1,
                                      "campaignID": 2,
                                      "campaignName": "sample string 3",
                                      "plu": 1,
                                      "hostOfferID": 1,
                                      "metcashPromotionID": "sample string 4",
                                      "metcashPromotionPlacement": "sample string 5",
                                      "pluG_UID": "Stv3gj5A4ECg9NRoIxTvQw==",
                                      "pluGuid": "82f7db4a-403e-40e0-a0f4-d4682314ef43",
                                      "newPrice": 1,
                                      "pctDiscount": 1,
                                      "newCost": 1,
                                      "newCostDecimals": 6,
                                      "dealCostIdentifier": "1Qh0eWBxcky8lSjOsEJVKw==",
                                      "dealCostGuid": "797408d5-7160-4c72-bc95-28ceb042552b",
                                      "pluName": "sample string 7",
                                      "apn": "sample string 8",
                                      "fuelItem": true,
                                      "priceGroupG_UID": "HdgfD4d4CUKzzJk6N6af2g==",
                                      "priceGroupGuid": "0f1fd81d-7887-4209-b3cc-993a37a69fda",
                                      "itemNumber": "sample string 10",
                                      "cri": "sample string 11",
                                      "pluPrice": 12,
                                      "pluCost": 13,
                                      "pluCostIndicator": "sample string 14",
                                      "pluPriceGstPercent": 15,
                                      "pluCostGstPercent": 16,
                                      "pluActive": true,
                                      "cartonQty": 1.1,
                                      "baseUnits": 18.1,
                                      "salesMode": 1,
                                      "pluNormalCost": 19,
                                      "pluaws": 20.0,
                                      "directNumber": "sample string 21",
                                      "departmentName": "sample string 22",
                                      "subDepartmentName": "sample string 23",
                                      "priceGroupName": "sample string 24",
                                      "supplierName": "sample string 25",
                                      "stockOnHand": 1.1,
                                      "stockOnOrder": 1.1,
                                      "lastReceived": "2025-06-14T07:44:07.4077075",
                                      "rrp": 26,
                                      "campaignDescription": "sample string 27",
                                      "campaignComboPriceGroupG_UID": "gn8Me/xxnEqVLGwveRCOcw==",
                                      "campaignComboPriceGroupIdentifier": "7b0c7f82-71fc-4a9c-952c-6c2f79108e73",
                                      "promotionPlacementDescription": "sample string 28",
                                      "storeAcceptances": [
                                        {
                                          "$id": "63",
                                          "plu": 1,
                                          "pluG_UId": "QEA=",
                                          "campaignID": 1,
                                          "campaignName": "sample string 2",
                                          "storeID": 3,
                                          "acceptedUtc": "2025-06-14T07:44:07.4077075",
                                          "operatorG_UID": "7bwKz65J6UyqXfedEEw8+g==",
                                          "operatorGuid": "cf0abced-49ae-4ce9-aa5d-f79d104c3cfa",
                                          "machineID": 1,
                                          "processed": true,
                                          "appliedUtc": "2025-06-14T07:44:07.4077075",
                                          "signIqTicketFileMovedUtc": "2025-06-14T07:44:07.4077075",
                                          "user": "sample string 6",
                                          "campaignDescription": "sample string 7",
                                          "productDesc": "sample string 8",
                                          "storeName": "sample string 9",
                                          "effectiveUtc": "2025-06-14T07:44:07.4077075",
                                          "priceChangeType": 0,
                                          "operatorName": "sample string 10",
                                          "hostCampaign": true,
                                          "product": {
                                            "$ref": "25"
                                          },
                                          "campaignPlu": {
                                            "$ref": "62"
                                          }
                                        },
                                        {
                                          "$ref": "63"
                                        }
                                      ],
                                      "campaign": {
                                        "$id": "64",
                                        "id": 1,
                                        "storeID": 2,
                                        "name": "0892b399-2992-48cc-87d6-f56fa5a636eb",
                                        "nameGuid": "0892b399-2992-48cc-87d6-f56fa5a636eb",
                                        "description": "sample string 4",
                                        "showDiscounts": true,
                                        "showTotals": true,
                                        "onlyEvaluateOnSubtotal": true,
                                        "useDescription": true,
                                        "campaignType": 1,
                                        "startDate": "2025-06-14T07:44:07.4077075",
                                        "startTime": 1,
                                        "endDate": "2025-06-14T07:44:07.4077075",
                                        "endTime": 1,
                                        "recurrence": 1,
                                        "recurrenceType": 1,
                                        "monthType": 1,
                                        "weekDays": 1,
                                        "months": 1,
                                        "monthWeeks": 1,
                                        "monthDays": "sample string 7",
                                        "printed": true,
                                        "talkerText": "sample string 8",
                                        "rangeDescription": "sample string 9",
                                        "dealDescription": "sample string 10",
                                        "labelQuantity": 11,
                                        "active": 1,
                                        "deactivated": "2025-06-14T07:44:07.4077075",
                                        "system": true,
                                        "created": "2025-06-14T07:44:07.4077075",
                                        "updated": "2025-06-14T07:44:07.4077075",
                                        "priceChangeNotifiedUtc": "2025-06-14T07:44:07.4077075",
                                        "promoType": 1,
                                        "promotionTypeCode": "sample string 13",
                                        "hostIdentifier": "27hoP05QHkOqn8+yBa0nrQ==",
                                        "hostIdentifierGuid": "3f68b8db-504e-431e-aa9f-cfb205ad27ad",
                                        "hostType": 14,
                                        "createdByUser": "sample string 15",
                                        "fromHost": true,
                                        "deleted": true,
                                        "campaignDeleted": "2025-06-14T07:44:07.4077075",
                                        "updatedByUser": "sample string 18",
                                        "offerID": 1,
                                        "isPriceChangeCampaign": true,
                                        "stores": [
                                          1,
                                          2
                                        ],
                                        "storeNames": [
                                          "sample string 1",
                                          "sample string 2"
                                        ],
                                        "campaignPlus": [
                                          {
                                            "$ref": "62"
                                          },
                                          {
                                            "$ref": "62"
                                          }
                                        ],
                                        "campaignPools": [
                                          {
                                            "$id": "65",
                                            "id": 1,
                                            "campaignID": 2,
                                            "campaignName": "sample string 3",
                                            "plu": 4,
                                            "pluG_UID": "BW3hmx8UAU+8wm5qUjTQPA==",
                                            "pluGuid": "9be16d05-141f-4f01-bcc2-6e6a5234d03c",
                                            "hostOfferID": 1,
                                            "priceGroupG_UID": "7qjF1NDuKUq5sPCmfHm2GQ==",
                                            "priceGroupGuid": "d4c5a8ee-eed0-4a29-b9b0-f0a67c79b619",
                                            "fuelItem": true,
                                            "pluName": "sample string 6",
                                            "apn": "sample string 7",
                                            "pluActive": true,
                                            "cartonQty": 1,
                                            "baseUnits": 9.1,
                                            "cri": "sample string 10",
                                            "salesMode": 1,
                                            "pluaws": 11.0,
                                            "directNumber": "sample string 12",
                                            "departmentName": "sample string 13",
                                            "subDepartmentName": "sample string 14",
                                            "priceGroupName": "sample string 15",
                                            "supplierName": "sample string 16",
                                            "stockOnHand": 1.1,
                                            "stockOnOrder": 1.1,
                                            "lastReceived": "2025-06-14T07:44:07.4077075",
                                            "rrp": 17,
                                            "campaignDescription": "sample string 18",
                                            "product": {
                                              "$ref": "25"
                                            },
                                            "campaign": {
                                              "$ref": "64"
                                            }
                                          },
                                          {
                                            "$ref": "65"
                                          }
                                        ],
                                        "sellingRules": [
                                          {
                                            "$id": "66",
                                            "id": 1,
                                            "identifier": "QsKxw4pN1kCzXQoQCKOz5Q==",
                                            "identifierStr": "QsKxw4pN1kCzXQoQCKOz5Q==",
                                            "identifierGuid": "c3b1c242-4d8a-40d6-b35d-0a1008a3b3e5",
                                            "campaignID": 4,
                                            "campaignName": "sample string 5",
                                            "ruleJoin": 1,
                                            "ruleType": 6,
                                            "operand0": "sample string 7",
                                            "comparisonOp": 1,
                                            "operand1": "sample string 8",
                                            "action": 1,
                                            "operand2": "sample string 9",
                                            "operand3": "sample string 10",
                                            "includeExcludedItems": true,
                                            "noFurtherDiscounts": true,
                                            "description": "sample string 11",
                                            "sortOrder": 1,
                                            "isItemRule": false,
                                            "prevDept": "sample string 12",
                                            "campaign": {
                                              "$ref": "64"
                                            }
                                          },
                                          {
                                            "$ref": "66"
                                          }
                                        ],
                                        "customers": [
                                          {
                                            "$id": "67",
                                            "id": 1,
                                            "campaignID": 2,
                                            "campaignName": "sample string 3",
                                            "customerID": "2Yo+8oIJUUOpN9CPmA0pzw==",
                                            "customerIDGuid": "f23e8ad9-0982-4351-a937-d08f980d29cf",
                                            "campaign": {
                                              "$ref": "64"
                                            },
                                            "customer": {
                                              "$ref": "6"
                                            }
                                          },
                                          {
                                            "$ref": "67"
                                          }
                                        ],
                                        "customerGroups": [
                                          {
                                            "$id": "68",
                                            "id": 1,
                                            "campaignID": 2,
                                            "campaignName": "sample string 3",
                                            "groupID": "63rQdLnHek6FM+JmY/fE1Q==",
                                            "groupIDGuid": "74d07aeb-c7b9-4e7a-8533-e26663f7c4d5",
                                            "campaign": {
                                              "$ref": "64"
                                            },
                                            "group": {
                                              "$ref": "10"
                                            }
                                          },
                                          {
                                            "$ref": "68"
                                          }
                                        ],
                                        "signIqTickets": [
                                          {
                                            "$id": "69",
                                            "identifier": "Sp73iktM2U6hoAEUlDE9qQ==",
                                            "identifierGuid": "8af79e4a-4c4b-4ed9-a1a0-011494313da9",
                                            "campaignName": "sample string 2",
                                            "message": "sample string 3",
                                            "ticketFileSource": "sample string 4",
                                            "ticketFileDestination": "sample string 5",
                                            "storeID": 1
                                          },
                                          {
                                            "$ref": "69"
                                          }
                                        ],
                                        "comboPriceGroups": [
                                          {
                                            "$id": "70",
                                            "id": 1,
                                            "campaignID": 2,
                                            "campaignName": "sample string 3",
                                            "g_UID": "nJMPnkuLDEemctKQD2M3EA==",
                                            "guid": "9e0f939c-8b4b-470c-a672-d2900f633710",
                                            "description": "sample string 5",
                                            "newPrice": 1,
                                            "rangeDescription": "sample string 6",
                                            "dealDescription": "sample string 7",
                                            "labelQuantity": 8,
                                            "hostProductCategoryID": 1,
                                            "offerID": 1,
                                            "dontUpdatePricePlus": true,
                                            "campaign": {
                                              "$ref": "64"
                                            },
                                            "comboPricePlus": [
                                              {
                                                "$id": "71",
                                                "id": 1,
                                                "campaignID": 2,
                                                "campaignName": "sample string 3",
                                                "groupG_UID": "GVpKm4bHFky0uWGYDLhpkQ==",
                                                "groupGuid": "9b4a5a19-c786-4c16-b4b9-61980cb86991",
                                                "comboPriceType": 5,
                                                "priceType": 5,
                                                "pluG_UID": "mNuuEapoZUWf9UR2kaq5rg==",
                                                "pluGuid": "11aedb98-68aa-4565-9ff5-447691aab9ae",
                                                "priceGroupG_UID": "bCiJJT4SvkucyyK5sRsCsA==",
                                                "priceGroupGuid": "2589286c-123e-4bbe-9ccb-22b9b11b02b0",
                                                "campaignPoolID": "sample string 7",
                                                "quantity": 1,
                                                "campaign": {
                                                  "$ref": "64"
                                                },
                                                "product": {
                                                  "$ref": "25"
                                                },
                                                "priceGroup": {
                                                  "$ref": "31"
                                                },
                                                "campaignPool": {
                                                  "$ref": "64"
                                                }
                                              },
                                              {
                                                "$ref": "71"
                                              }
                                            ]
                                          },
                                          {
                                            "$ref": "70"
                                          }
                                        ],
                                        "priceLevels": [
                                          {
                                            "$id": "72",
                                            "id": 1,
                                            "priceLevelIdentifier": "+N5Mjm7xVUiMdholxmHlng==",
                                            "priceLevelIdentifierGuid": "8e4cdef8-f16e-4855-8c76-1a25c661e59e",
                                            "campaignName": "sample string 3",
                                            "priceLevelName": "sample string 4"
                                          },
                                          {
                                            "$ref": "72"
                                          }
                                        ]
                                      },
                                      "product": {
                                        "$ref": "25"
                                      },
                                      "dealCost": {
                                        "$id": "73",
                                        "headerIdentifier": "0pIUOcw1jkWgc2IJfwlwnw==",
                                        "headerIdentifierGuid": "391492d2-35cc-458e-a073-62097f09709f",
                                        "identifier": "WP09FWQRtU+EFlE8IV4ang==",
                                        "identifierGuid": "153dfd58-1164-4fb5-8416-513c215e1a9e",
                                        "supplierIdentifier": "ROCetFH9vk27OhSmh0KpxQ==",
                                        "supplierGuid": "b49ee044-fd51-4dbe-bb3a-14a68742a9c5",
                                        "pluG_UID": "q9dBNyt0dkemrpIvaChkFw==",
                                        "pluGuid": "3741d7ab-742b-4776-a6ae-922f68286417",
                                        "campaignName": "f8bf0cb9-e3b2-43a1-89bb-0fbacbaaba40",
                                        "description": "sample string 4",
                                        "cost": 5,
                                        "costDecimals": 6,
                                        "start": "2025-06-14T07:44:07.4077075",
                                        "end": "2025-06-14T07:44:07.4077075",
                                        "type": 9,
                                        "promoType": 10,
                                        "bonusItemPLUG_UID": "xlOET0vLvUKdsls64Eh74w==",
                                        "bonusItemPluGuid": "4f8453c6-cb4b-42bd-9db2-5b3ae0487be3",
                                        "bonusPurchaseUnits": 11,
                                        "bonusReceiveUnits": 12,
                                        "updated": "2025-06-14T07:44:07.4077075",
                                        "metcashPromotionID": "sample string 14",
                                        "fromHost": 15,
                                        "storeNames": "sample string 16",
                                        "storeIDs": [
                                          1,
                                          2
                                        ],
                                        "supplierName": "sample string 17",
                                        "campaignDescription": "sample string 18",
                                        "newPrice": 1,
                                        "campaignMetcashPromotionID": "sample string 19",
                                        "campaignActive": true,
                                        "campaignStartDate": "2025-06-14T07:44:07.4077075",
                                        "campaignEndDate": "2025-06-14T07:44:07.4077075",
                                        "masterPLUG_UID": "WXbI2JOsKE+otrWBOayZIg==",
                                        "masterID": "d8c87659-ac93-4f28-a8b6-b58139ac9922",
                                        "productName": "sample string 22",
                                        "productAPN": "sample string 23",
                                        "orderCode": "sample string 24",
                                        "normalSell": 25,
                                        "normalCost": 26,
                                        "normalCostDecimals": 27,
                                        "cartonQuantity": 28,
                                        "salesMode": 29,
                                        "orderPacked": 30,
                                        "fuelItem": true,
                                        "active": true,
                                        "bonusMasterPLUG_UID": "znjW8ckkPEKOaUFk2TXcSQ==",
                                        "bonusMasterID": "f1d678ce-24c9-423c-8e69-4164d935dc49",
                                        "bonusProductName": "sample string 34",
                                        "bonusProductAPN": "sample string 35",
                                        "bonusOrderCode": "sample string 36",
                                        "bonusNormalSell": 37,
                                        "bonusNormalCost": 38,
                                        "bonusNormalCostDecimals": 39,
                                        "bonusCartonQuantity": 40,
                                        "bonusSalesMode": 41,
                                        "bonusOrderPacked": 42,
                                        "bonusFuelItem": true,
                                        "bonusActive": true
                                      }
                                    },
                                    "currentCostStart": "2025-06-14T07:44:07.4077075",
                                    "dealCosts": [
                                      {
                                        "$ref": "73"
                                      },
                                      {
                                        "$ref": "73"
                                      }
                                    ],
                                    "tags": [
                                      {
                                        "$id": "74",
                                        "pluG_UID": "SoLfyVFAIUmoF3E3av3v5g==",
                                        "pluGuid": "c9df824a-4051-4921-a817-71376afdefe6",
                                        "tagID": 1,
                                        "description": "sample string 1",
                                        "storeIDs": [
                                          1,
                                          2
                                        ]
                                      },
                                      {
                                        "$ref": "74"
                                      }
                                    ],
                                    "alternateProductG_UID": "XAcIqG7DJk+ICUOnp8nUcg==",
                                    "alternateProduct": "a808075c-c36e-4f26-8809-43a7a7c9d472",
                                    "productHostCode": {
                                      "$id": "75",
                                      "id": 1,
                                      "pluG_UID": "dndUuH1RfE+pjrUorACjPA==",
                                      "pluGuid": "b8547776-517d-4f7c-a98e-b528ac00a33c",
                                      "ibaCode": "sample string 2"
                                    },
                                    "mscCat": {
                                      "$ref": "58"
                                    },
                                    "mscCom": {
                                      "$ref": "59"
                                    },
                                    "mscDep": {
                                      "$ref": "61"
                                    },
                                    "mscSubCom": {
                                      "$ref": "60"
                                    },
                                    "isUserUpdate": true,
                                    "ignoreMasterProduct": true,
                                    "priceGroupLabelRequested": true,
                                    "firstSold": "2025-06-14T07:44:07.4077075",
                                    "inventoryTracked": "2025-06-14T07:44:07.4077075",
                                    "isNormalPriceChangesCampaign": true
                                  },
                                  "supplier": {
                                    "$ref": "20"
                                  },
                                  "serviceFee": {
                                    "$id": "76",
                                    "id": 1,
                                    "description": "sample string 1",
                                    "fee": 1
                                  },
                                  "isPrimaryHost": true,
                                  "hostVendor": 46
                                },
                                {
                                  "$ref": "23"
                                }
                              ],
                              "orderCycleHeaders": [
                                {
                                  "$id": "77",
                                  "storeID": 1,
                                  "supplierIdentifier": "BSRM0PP6zUm6AdFmRuSUdQ==",
                                  "supplierGuid": "d04c2405-faf3-49cd-ba01-d16646e49475",
                                  "departmentCode": "sample string 2",
                                  "warehouseDirectIndicator": "sample string 3",
                                  "type": 4,
                                  "storeName": "sample string 5",
                                  "departmentName": "sample string 6",
                                  "orderDays": 7
                                },
                                {
                                  "$ref": "77"
                                }
                              ],
                              "cycles": [
                                {
                                  "$id": "78",
                                  "storeID": 1,
                                  "supplierIdentifier": "JGtPJUQPbUGROAxrGLXhRA==",
                                  "supplierGuid": "254f6b24-0f44-416d-9138-0c6b18b5e144",
                                  "departmentCode": "sample string 2",
                                  "warehouseDirectIndicator": "sample string 3",
                                  "type": 4,
                                  "cutOffWeek": 5,
                                  "cutOffDay": 6,
                                  "cutOffTime": "00:00:00.1234567",
                                  "leadTime": 7,
                                  "daysBuffer": 8,
                                  "supplierName": "sample string 9",
                                  "cutOffDate": "2025-06-14T07:44:07.4077075",
                                  "deliveryDate": "2025-06-14T07:44:07.4077075",
                                  "nextCutOffDate": "2025-06-14T07:44:07.4077075",
                                  "nextDeliveryDate": "2025-06-14T07:44:07.4077075",
                                  "nextDaysBuffer": 10
                                },
                                {
                                  "$ref": "78"
                                }
                              ],
                              "store": {
                                "$ref": "16"
                              },
                              "updated": "2025-06-14T07:44:07.4077075",
                              "isHost": true
                            },
                            "files": [
                              {
                                "$id": "79",
                                "id": "sample string 1",
                                "fileName": "sample string 2",
                                "extension": "sample string 3",
                                "provider": 0,
                                "type": 0,
                                "hostType": "sample string 4",
                                "createdUtc": "2025-06-14T07:44:07.4077075",
                                "processed": "2025-06-14T07:44:07.4077075",
                                "isProcessing": true,
                                "processedCount": 6,
                                "processingTime": 1,
                                "collectedUtc": "2025-06-14T07:44:07.4077075",
                                "size": 1,
                                "sizeFormat": "sample string 7",
                                "isArchive": true,
                                "version": "sample string 9",
                                "reference": "sample string 10",
                                "digest": "sample string 11",
                                "contentType": "sample string 12",
                                "host": {
                                  "$ref": "19"
                                },
                                "metcashHeader": {
                                  "$id": "80",
                                  "customerNumber": "sample string 1",
                                  "creationDate": "2025-06-14T07:44:07.4077075",
                                  "businessPillar": "sample string 3",
                                  "fileType": "sample string 4"
                                }
                              },
                              {
                                "$ref": "79"
                              }
                            ],
                            "zoneMatrix": [
                              {
                                "$id": "81",
                                "id": 1,
                                "hostIdentifier": "B8aoH5RPnkePFi/8JHq3yg==",
                                "hostIdentifierGuid": "1fa8c607-4f94-479e-8f16-2ffc247ab7ca",
                                "storeID": 1,
                                "departmentCode": "sample string 2",
                                "hostGuids": [
                                  "8e227e9b-466c-4c5c-89fd-83fc51c2e6ce",
                                  "81044f4b-55bf-4705-b2bb-8fc36a8b46fc"
                                ]
                              },
                              {
                                "$ref": "81"
                              }
                            ],
                            "hostFileStoreSetting": {
                              "$ref": "18"
                            },
                            "hostStoreSettings": [
                              {
                                "$ref": "18"
                              },
                              {
                                "$ref": "18"
                              }
                            ],
                            "promotionPlacements": [
                              {
                                "$id": "82",
                                "identifier": "yHNpTxhvKUOcN98bg1X73g==",
                                "identifierGuid": "4f6973c8-6f18-4329-9c37-df1b8355fbde",
                                "code": "sample string 2",
                                "description": "sample string 3",
                                "isAdvertised": true
                              },
                              {
                                "$ref": "82"
                              }
                            ],
                            "promoTypeGuids": [
                              "3c727ee7-a765-451d-a848-aced4be052a1",
                              "6dfb60fa-ce23-4e4e-ae13-e88783e2c195"
                            ],
                            "isPromotionOnly": false,
                            "isOrderable": false,
                            "vendor": 0
                          },
                          "groupIDs": [
                            1,
                            2
                          ],
                          "hostDescription": "sample string 24"
                        },
                        {
                          "$ref": "18"
                        }
                      ],
                      "accounts": [
                        {
                          "$id": "83",
                          "id": 1,
                          "storeID": 1,
                          "accountName": "sample string 2",
                          "bsb": "sample string 3",
                          "accountNumber": "sample string 4",
                          "accountDesignated": true
                        },
                        {
                          "$ref": "83"
                        }
                      ],
                      "sales": [
                        {
                          "$id": "84",
                          "id": 1,
                          "storeID": 1,
                          "externalSalesType": 2,
                          "ftpSiteID": 1,
                          "lastSaleProcessed": "2025-06-14T07:44:07.4077075",
                          "ftpSite": {
                            "$id": "85",
                            "id": 1,
                            "description": "sample string 2",
                            "address": "sample string 3",
                            "username": "sample string 4",
                            "password": "sample string 5",
                            "path": "sample string 7",
                            "protocol": 8
                          }
                        },
                        {
                          "$ref": "84"
                        }
                      ],
                      "zoneMatrix": [
                        {
                          "$ref": "81"
                        },
                        {
                          "$ref": "81"
                        }
                      ],
                      "cashManagements": [
                        {
                          "$id": "86",
                          "id": 1,
                          "storeID": 1,
                          "cashManagementType": 2,
                          "apiID": 1,
                          "organisationID": "sample string 3",
                          "siteName": "sample string 4",
                          "thirdPartyAPI": {
                            "$id": "87",
                            "id": 1,
                            "description": "sample string 2",
                            "address": "sample string 3",
                            "username": "sample string 4",
                            "password": "sample string 5",
                            "passwordPlain": "sample string 6",
                            "token": "sample string 7",
                            "apiType": 8,
                            "apiSubType": 9
                          }
                        },
                        {
                          "$ref": "86"
                        }
                      ],
                      "updateStoreID": "700bbad2-9383-463d-9248-93ffd5ec471e",
                      "updateStore": {
                        "$id": "88",
                        "id": "7592afb2-8281-4214-84e6-7bf7b1223614",
                        "name": "sample string 1",
                        "lastActivity": "2025-06-14T07:44:07.4077075",
                        "zone": "sample string 2",
                        "timeZoneOffset": 0.0,
                        "businessHoursStart": "00:00:00.1234567",
                        "businessHoursEnd": "00:00:00.1234567",
                        "master": true,
                        "lastIP": "sample string 10",
                        "lastHostName": "sample string 11",
                        "ping": 1,
                        "pingStatus": "sample string 12",
                        "lastUpdateCompleted": "2025-06-14T07:44:07.4077075"
                      },
                      "timeZoneId": "sample string 53",
                      "securityOptions": {
                        "$id": "89",
                        "loginMode": 1,
                        "allowSelfVerification": true,
                        "verifierEmail": "sample string 3",
                        "source": "sample string 4",
                        "loginModeInherited": 5,
                        "loginModeSource": "sample string 6",
                        "selfVerifyInherited": true,
                        "selfVerifySource": "sample string 8",
                        "verifyEmailInherited": "sample string 9",
                        "verifyEmailSource": "sample string 10"
                      }
                    }
                  },
                  {
                    "$ref": "15"
                  }
                ]
              },
              "customer": {
                "$ref": "6"
              },
              "communityOrganisation": {
                "$id": "90",
                "id": 1,
                "identifier": "z3qVyPMfLESzinFJV/exaw==",
                "identifierGuid": "c8957acf-1ff3-442c-b38a-714957f7b16b",
                "name": "sample string 3",
                "lookupIdentifier": "sample string 4",
                "externalID": "sample string 5",
                "phone": "sample string 6",
                "fax": "sample string 7",
                "email": "sample string 8",
                "address1": "sample string 9",
                "address2": "sample string 10",
                "city": "sample string 11",
                "postCode": "sample string 12",
                "state": "sample string 13",
                "country": "sample string 14",
                "totalAmountAwarded": 15.1,
                "updated": "2025-06-14T07:44:07.4077075",
                "deleted": true
              },
              "details": [
                {
                  "$id": "91",
                  "saleItemID": 1,
                  "identifier": "zqqGx9ceIkKpwW9W1LKEqg==",
                  "identifierGuid": "c786aace-1ed7-4222-a9c1-6f56d4b284aa",
                  "saleHeaderID": 2,
                  "plu": 1,
                  "pluG_UId": "VKi2Ojg+S0aH6G6OzYobGQ==",
                  "pluGuid": "3ab6a854-3e38-464b-87e8-6e8ecd8a1b19",
                  "accountID": "3rQ85uhPbEyuy4GIiEHdCQ==",
                  "accountIDGuid": "e63cb4de-4fe8-4c6c-aecb-81888841dd09",
                  "normalPrice": 3,
                  "originalSellingPrice": 4,
                  "discountPrice": 5,
                  "unit": 1,
                  "quantity": 6,
                  "totalCents": 7,
                  "fixedPrice": 1,
                  "tranType": 1,
                  "discountType": 1,
                  "cost": 1,
                  "costDecimals": 8,
                  "markdown": 1,
                  "manualQuantity": 1,
                  "manualPrice": 1,
                  "manualMode": 1,
                  "active": 1,
                  "offline": true,
                  "barcode": "sample string 9",
                  "keyedSale": 1,
                  "discountedID": 1,
                  "fuelID": 1,
                  "serialNumber": "sample string 10",
                  "bestOrExpire": "2025-06-14T07:44:07.4077075",
                  "bestOrExpireType": 1,
                  "providerName": "sample string 11",
                  "refundG_UID": "nwMPeFSGgkiA2id9V6Z5uw==",
                  "refundGuid": "780f039f-8654-4882-80da-277d57a679bb",
                  "campaign": "sample string 12",
                  "campaignType": 13,
                  "modifiedID": 1,
                  "omittedIngredient": true,
                  "taxPercent": 1.0,
                  "taxAmount": 1.0,
                  "refundablePrice": 1.0,
                  "showDiscounts": true,
                  "orderPrinted": true,
                  "note": "sample string 16",
                  "modifierName": "sample string 17",
                  "modifierSetName": "sample string 18",
                  "totalValueWasScanned": true,
                  "sold": true,
                  "campaignPrice": true,
                  "scannedValue": 1,
                  "campaignName": "sample string 22",
                  "comboDiscount": 1,
                  "idempotentVoid": "BMLAF/ki4UmB+XTDFlAcXw==",
                  "idempotentVoidGuid": "17c0c204-22f9-49e1-81f9-74c316501c5f",
                  "priceLevelIdentifier": "sd/Kekz+vESnVWDExIugTQ==",
                  "priceLevelIdentifierGuid": "7acadfb1-fe4c-44bc-a755-60c4c48ba04d",
                  "productName": "sample string 23",
                  "apn": "sample string 24",
                  "unknownScans": [
                    {
                      "$id": "92",
                      "id": 1,
                      "saleDetailID": 2,
                      "storeID": 1,
                      "scanned": "2025-06-14T07:44:07.4077075",
                      "operatorG_UID": "QEA=",
                      "barcode": "sample string 4",
                      "processed": 1
                    },
                    {
                      "$ref": "92"
                    }
                  ],
                  "refund": {
                    "$id": "93",
                    "id": 1,
                    "g_UID": "yQV9peL9iU+hoKRo/w+zWQ==",
                    "guid": "a57d05c9-fde2-4f89-a1a0-a468ff0fb359",
                    "description": "sample string 1",
                    "dumped": true,
                    "inventoryReasonID": 1,
                    "sortOrder": 1,
                    "updated": "2025-06-14T07:44:07.4077075"
                  },
                  "modifier": {
                    "$id": "94",
                    "id": 1,
                    "setG_UID": "mJR9tvrKq0ydh86/4nJ19g==",
                    "modifierSetGuid": "b67d9498-cafa-4cab-9d87-cebfe27275f6",
                    "name": "sample string 2",
                    "price": 1,
                    "quantity": 1,
                    "modifierType": 1,
                    "groupNumber": 1,
                    "pageNumber": 1,
                    "controlOrder": 1,
                    "printToStation": true,
                    "pluG_UID": "timSQblB7kStwY0nUbCxKQ==",
                    "pluGuid": "419229b6-41b9-44ee-adc1-8d2751b0b129",
                    "deleted": true,
                    "g_UID": "bcQ479xWpkCcSmhTA9Iq3Q==",
                    "guid": "ef38c46d-56dc-40a6-9c4a-685303d22add",
                    "product": {
                      "$ref": "25"
                    }
                  },
                  "priceLevelName": "sample string 25",
                  "pumpNumber": 1,
                  "hoseNumber": 1
                },
                {
                  "$ref": "91"
                }
              ],
              "eftReceipts": [
                {
                  "$id": "95",
                  "id": 1,
                  "storeID": 1,
                  "saleHeaderID": 2,
                  "storeSaleHeader": {
                    "$ref": "13"
                  },
                  "receipt": "sample string 3",
                  "processed": 1
                },
                {
                  "$ref": "95"
                }
              ],
              "payments": [
                {
                  "$ref": "12"
                },
                {
                  "$ref": "12"
                }
              ],
              "cards": [
                {
                  "$id": "96",
                  "id": 1,
                  "saleHeaderID": 1,
                  "identifier": "sample string 2",
                  "cardType": 3,
                  "providerName": "sample string 4"
                },
                {
                  "$ref": "96"
                }
              ],
              "campaignHits": [
                {
                  "$id": "97",
                  "id": 1,
                  "saleHeaderID": 2,
                  "campaign": "sample string 3",
                  "name": "sample string 4",
                  "processed": 1,
                  "campaignDescription": "sample string 5"
                },
                {
                  "$ref": "97"
                }
              ],
              "fuel": [
                {
                  "$id": "98",
                  "id": 1,
                  "plu": 1,
                  "pluG_UID": "MZjb+O/hYk+UFiEBWloLDw==",
                  "pluGuid": "f8db9831-e1ef-4f62-9416-21015a5a0b0f",
                  "saleHeaderID": 2,
                  "totalCents": 3,
                  "grade": 1,
                  "gradeDescription": "sample string 4",
                  "dispenser": 1,
                  "hose": 1,
                  "quantity": 1,
                  "cost": 1,
                  "acquirerNum": 1,
                  "attendant": 1,
                  "ePurseBalance": 1.0,
                  "cardSignature": "sample string 5",
                  "compartmentNumber": 1,
                  "contractNumber": 1,
                  "discountCardPAN": "sample string 6",
                  "discountID": 1,
                  "discountName": "sample string 7",
                  "discountNetValue": 1.0,
                  "discountType": 1,
                  "discountValue": 1.0,
                  "discretionaryData": "sample string 8",
                  "driverID": "sample string 9",
                  "eftBatchNumber": 1,
                  "eftResponseCode": "sample string 10",
                  "endDateTime": "2025-06-14T07:44:07.4077075",
                  "engineHours": 1.1,
                  "fposNumber": 1,
                  "loyaltyCardPAN": "sample string 11",
                  "miscData1": 1,
                  "miscData2": "sample string 12",
                  "miscFlags": 1,
                  "mop": 1,
                  "odometer": 1,
                  "panNumber": "sample string 13",
                  "saleRefund": true,
                  "saleStatus": 1,
                  "sequenceNumber": 1,
                  "stan": 1,
                  "startDateTime": "2025-06-14T07:44:07.4077075",
                  "tagNumber": "sample string 15",
                  "trackTwoRem": "sample string 16",
                  "transCode": 1,
                  "transType": 1,
                  "unitPrice": 1.0,
                  "vehicleReg": "sample string 17",
                  "offline": true,
                  "processed": 1
                },
                {
                  "$ref": "98"
                }
              ],
              "fuelResells": [
                {
                  "$id": "99",
                  "saleItemID": 1,
                  "saleHeaderID": 2,
                  "plu": 1,
                  "pluG_UId": "/S2rtu1jlE26aH2KJ299Ug==",
                  "pluGuid": "b6ab2dfd-63ed-4d94-ba68-7d8a276f7d52",
                  "accountID": "qW3dtokjH0GUXWBtvRr5WQ==",
                  "accountIDGuid": "b6dd6da9-2389-411f-945d-606dbd1af959",
                  "normalPrice": 3,
                  "originalSellingPrice": 4,
                  "discountPrice": 5,
                  "unit": 1,
                  "quantity": 6,
                  "totalCents": 7,
                  "fixedPrice": 1,
                  "tranType": 1,
                  "processed": 1,
                  "discountType": 1,
                  "cost": 1,
                  "costDecimals": 1,
                  "markdown": 1,
                  "manualQuantity": 1,
                  "manualPrice": 1,
                  "manualMode": 1,
                  "active": 1,
                  "barcode": "sample string 8",
                  "offline": 1,
                  "keyedSale": 1,
                  "discountedID": 1,
                  "fuelID": 1,
                  "serialNumber": "sample string 9",
                  "bestOrExpire": "2025-06-14T07:44:07.4077075",
                  "bestOrExpireType": 1,
                  "refundG_UID": "xNi89+Wi/ECI9GLpUzfS6Q==",
                  "refundGuid": "f7bcd8c4-a2e5-40fc-88f4-62e95337d2e9",
                  "providerName": "sample string 10",
                  "campaign": "sample string 11",
                  "campaignType": 1,
                  "modifiedID": 1,
                  "omittedIngredient": 1,
                  "taxPercent": 1.0,
                  "taxAmount": 1.0,
                  "refundablePrice": 1.0,
                  "showDiscounts": true,
                  "orderPrinted": true,
                  "note": "sample string 14",
                  "modifierName": "sample string 15",
                  "modifierSetName": "sample string 16",
                  "totalValueWasScanned": true,
                  "sold": true,
                  "campaignPrice": true,
                  "scannedValue": 1,
                  "campaignName": "sample string 20",
                  "comboDiscount": 1
                },
                {
                  "$ref": "99"
                }
              ],
              "customerOrder": [
                {
                  "$id": "100",
                  "identifier": "L4+laOaK+0uSsMCghCT7RQ==",
                  "identifierGuid": "68a58f2f-8ae6-4bfb-92b0-c0a08424fb45",
                  "id": 1,
                  "orderNo": 2,
                  "externalSaleIdentifier": "sample string 3",
                  "storeID": 4,
                  "zoneID": 5,
                  "deptNo": 6,
                  "customerIdentifier": "/juSjb5cT0CayDzS4Vsj2A==",
                  "customerIdentifierGuid": "8d923bfe-5cbe-404f-9ac8-3cd2e15b23d8",
                  "operatorNo": 1,
                  "operatorG_UID": "OEQHU9ikoUy/+Rl0kPSTTg==",
                  "operatorGuid": "53074438-a4d8-4ca1-bff9-197490f4934e",
                  "created": "2025-06-14T07:44:07.4077075",
                  "ordered": "2025-06-14T07:44:07.4077075",
                  "started": "2025-06-14T07:44:07.4077075",
                  "completed": "2025-06-14T07:44:07.4077075",
                  "supplied": "2025-06-14T07:44:07.4077075",
                  "quickTicket": 1,
                  "deleted": true,
                  "walkAway": true,
                  "approxWait": 1,
                  "actualWait": 1,
                  "deliveryMethod": 8,
                  "externalSaleType": 9,
                  "customer": {
                    "$ref": "6"
                  },
                  "operator": {
                    "$ref": "14"
                  },
                  "details": [
                    {
                      "$id": "101",
                      "headerID": 1,
                      "plu": 1,
                      "pluG_UId": "mvBxwEWMEEalmHy+/aTylw==",
                      "pluGuid": "c071f09a-8c45-4610-a598-7cbefda4f297",
                      "quantity": 1,
                      "unit": 1,
                      "status": 1,
                      "soldQuantity": 1,
                      "soldWeight": 1,
                      "soldCents": 1,
                      "soldGstCents": 1,
                      "soldFixedPrice": 1,
                      "soldSalesMode": 1,
                      "promptDetailID": 1,
                      "groupID": 1,
                      "menuPath": "sample string 1",
                      "promptPath": "sample string 2",
                      "notes": "sample string 3",
                      "headerIdentifier": "HQMcNVhXsUCk/VSB6Pv6sw==",
                      "headerIdentifierGuid": "351c031d-5758-40b1-a4fd-5481e8fbfab3",
                      "product": {
                        "$ref": "25"
                      }
                    },
                    {
                      "$ref": "101"
                    }
                  ],
                  "storeName": "sample string 11",
                  "customerName": "sample string 12",
                  "storeReplyTo": "sample string 13",
                  "storeSubjectLine": "sample string 14",
                  "storeSaleHeader": {
                    "$ref": "13"
                  }
                },
                {
                  "$ref": "100"
                }
              ],
              "surveyResponses": [
                {
                  "$id": "102",
                  "surveyG_UID": "qOSX6x/B5kCwGyYLgdpxEA==",
                  "surveyGuid": "eb97e4a8-c11f-40e6-b01b-260b81da7110",
                  "saleHeaderGuid": "PFTlZZpWQkCnsvpsvyQ8eA==",
                  "saleGuid": "65e5543c-569a-4042-a7b2-fa6cbf243c78",
                  "textResponse": "sample string 1",
                  "integerResponse": 1,
                  "g_UIDResponse": "w6T1/eCGTk2OTOgcX4f6mw==",
                  "guidResponse": "fdf5a4c3-86e0-4d4e-8e4c-e81c5f87fa9b",
                  "whoAnswered": 2,
                  "answeredAtUTC": "2025-06-14T07:44:07.4077075",
                  "sale": {
                    "$ref": "13"
                  },
                  "survey": {
                    "$id": "103",
                    "g_UID": "rw0Ap7zNs02H1zAP//OAkg==",
                    "guid": "a7000daf-cdbc-4db3-87d7-300ffff38092",
                    "name": "sample string 1",
                    "storeID": 2,
                    "zoneID": 1,
                    "checkoutFormG_UID": "T2Mnisc6n0mElQl07FQw8A==",
                    "checkoutFormGuid": "8a27634f-3ac7-499f-8495-0974ec5430f0",
                    "displayToWho": 3,
                    "displayWhen": 4,
                    "start": "2025-06-14T07:44:07.4077075",
                    "end": "2025-06-14T07:44:07.4077075",
                    "deleted": true,
                    "updated": "2025-06-14T07:44:07.4077075",
                    "possibleIntegerResponses": [
                      1,
                      2
                    ],
                    "possibleTextResponses": [
                      "sample string 1",
                      "sample string 2"
                    ],
                    "possibleGuidResponses": [
                      "6b234598-5237-4436-8f44-89e9c25e713a",
                      "d97277cf-9f31-42b1-97ca-cad7e7694d75"
                    ],
                    "allowsAllTextResponses": true,
                    "surveyForm": {
                      "$ref": "43"
                    }
                  },
                  "ingressId": "sample string 4"
                },
                {
                  "$ref": "102"
                }
              ],
              "storeName": "sample string 38",
              "machineName": "sample string 39",
              "operatorName": "sample string 40",
              "direction": 1,
              "reason": "sample string 41",
              "accountG_UID": "tXRSruVpSUmR/HauzNiPiw==",
              "accountIdentifier": "ae5274b5-69e5-4949-91fc-76aeccd88f8b",
              "accountName": "sample string 42",
              "customerOrderIdentifier": "8NbOkbOlB0OUH3MtvsdblQ==",
              "customerOrderIdentifierGuid": "91ced6f0-a5b3-4307-941f-732dbec75b95",
              "priceLevelName": "sample string 43",
              "revision": 44,
              "ingressId": "sample string 45"
            },
            "metadata": {
              "$id": "104",
              "id": 1,
              "paymentID": 2,
              "paymentIdentifier": "pziuu6LFqkW0TojYyA/1og==",
              "paymentIdentifierGuid": "bbae38a7-c5a2-45aa-b44e-88d8c80ff5a2",
              "identifier": "LkPwo6HE1kq36zV0ruxWFA==",
              "identifierGuid": "a3f0432e-c4a1-4ad6-b7eb-3574aeec5614",
              "metadata": "sample string 3",
              "signatureImage": "QEA=",
              "itemIdentifier": "XAD9ao9dEUaas3LxvHRINw==",
              "itemIdentifierGuid": "6afd005c-5d8f-4611-9ab3-72f1bc744837"
            }
          },
          {
            "$ref": "12"
          }
        ]
      },
      {
        "$ref": "7"
      }
    ],
    "customerGroupMembers": [
      {
        "$ref": "11"
      },
      {
        "$ref": "11"
      }
    ],
    "customerGroups": [
      {
        "$ref": "10"
      },
      {
        "$ref": "10"
      }
    ],
    "accounts": [
      {
        "$ref": "8"
      },
      {
        "$ref": "8"
      }
    ],
    "account": {
      "$ref": "8"
    },
    "vouchers": [
      {
        "$id": "105",
        "customerIdentifier": "YEVzBKgd6k61U761P1XerQ==",
        "customerIdentifierGuid": "04734560-1da8-4eea-b553-beb53f55dead",
        "voucherName": "sample string 2",
        "count": 3,
        "storeID": 4,
        "barcode": "sample string 5",
        "redeemCount": 6,
        "issueCount": 7,
        "storeSalePaymentID": 1,
        "idempotentID": "TGxBg3cSG0KwUwoLbR9DTw==",
        "idempotentGuid": "83416c4c-1277-421b-b053-0a0b6d1f434f",
        "offline": true,
        "voucher": {
          "$ref": "3"
        },
        "customer": {
          "$ref": "6"
        }
      },
      {
        "$ref": "105"
      }
    ]
  },
  "issuedOfflinePayment": {
    "$ref": "12"
  },
  "redeemedOfflinePayment": {
    "$ref": "12"
  }
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

Sample:
PK�=�Z�ۧ�5xl/workbook.xml �(�����0��&�C����	N\�z�-�m�?ik��-I�yۙ��v����[;��M(}Me��d,���:4i�[�!&�����Z��h";fمy!*k�T.Е�+8������4(C����jn�P8�E&�[w6	[C�7U-��bQĀƚ���Źu5�)�JÝg(8?s�������b���PK�=�Z����	�[Content_Types].xml �(����J�0�_��*M�D��V�*��d�
�d�k��<�H���V���=
��|�o��|����������+�����7l���e۶~=E�"�zlXO�@Ճ��C�3]HNR~���R��uU�<���������a��36��b7םQ
�1Z�$�8z�R��3
tP��-c�� g����_M��Of���~O�s�T���� ����P<�D��e=1Z��a2�b
��%#H'�2}���e�B)��~j/F�t��PK
�=�Zf���''_rels/.rels �(�<?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml" Id="Rfd1dc9374fa34ae0" /></Relationships>PK�=�ZN<�jxl/worksheets/sheet1.xml �(���mS�\��
��O8gϻtR��>}��ն�(a*�I����8�lv�������k�3^�Y���ҼXd�a�c���$�.Vw�豜�g�W��s��.�iZ��|U���h^�'�~1���qg�ʿ7����/�~6�-&�Y6y\�����~�ޏK_��/�h��%���<O�[X�oR-NjU4L>���{y:F	?I.!��G�J}�H������Q~e������0b����Wկ��4�������"]��Kb&�}Q��-k��r��������a�b.���<e�������Ml�`�m̄�Z����x��6V�(k8mUG}���u}k�=fH�ǫm���el��K��5p8^o��?�f�q�Ⱥvo�x���J9�����n�oV�p2Ν��9���Z���9i�2쐫����ŵd>��x��{��aL+�q�#C��7�cJY��8cUGx���N8��6R�Fwd�c�B^S�Ul�d�
��)�Gn�� �=�������|
LB�I#}���h��M�-DhP-�6�Y-;��P3	:�~:���O���I���ג����鎹��$�L
����*a-��#C`�e��Ǥ���ʏ�����I���w�q���Ҏ�IpG%���L��I!c�7�s�/9i;$E����uNz7-c]v��5�Z��Fh��/k��IQ#)e�ʟ@�N#�B�[���S����x4ȳ�^^���YT�)>*���i���u�V��M�i[M�Y[!��7m�l*��
�T�m+tSq�V��ⲭ�MŻ��5��!S���B�l�HH���	2��� g?d�5!A�~!$�ܯ�����
�{CH�������� w��OB��M�!doB�! j��	1��N�a��G�<N����I�\N����}��v�
��� bc��vBԔSB�zr�_�3"����
�%�Q'/���G�?j	��Sx�/TzGT���@��n'?�%����B�	b銐��|~�i�D6$�BH��}y�ol�!*!o������'!��%!4x�Ӈ����ܷ䬝O�uẸ�5�	
^W�`*��.
��˃��J�����x���YV�yu��}�7�PK�=�Zڧ���Pxl/_rels/workbook.xml.rels �(���;N1@�bM�z���I��6���~�]۲�@�F���V���(hR����������m������e9�ҨI�B���v����C���d=�+�w0�`�(�rą��XԱ���S7P��HWy^Q�2�I��!���$�<-��`�j�я�ȁ�C?%O��e�
�Yu�9J!J�+
Q?�wS��2�����V�֪�k�LsW��;T/��K�Ni9Q+%V͊q��(J��ћ��|PK�=�ZЃc'2E
xl/styles.xml �(��S�j�0��&0���0�^�]v��:��d;��H��Kj�vG�Mz�zOHr�iB8v�F��WEG�?s�Oh�lff�uZМ���ށh�R���6�'��2��������ɳ�UŦ`<Қo���x���8��K�6BC ^�کĖ��B���n��f8����9� ����CUk��#��U�ub��WUB;��k���&�
AR>��� ��im��ΑF���YO��%�}���LJ\in�,���9oy}��y.�$��6��ųNJ�c��T��rĘ)փBR淶�E3ʟ�\��q��PK�=�Z �_gxl/sharedStrings.xml �(��W�n�6}/����M�,q�m6E�	b�/E(q��[I:�[��;���i9O��rF��C���[�;� $����ʬb�|����x�HEKF��`
r�|=;�R98�����R��h$�(�V5��,+QP���y$k��U�#o<�F���ɪU���08���������g�����t��NG��&r���*@�2(_r�7+κ�߫�,�-�Ѕ�`���53�WT���Vʕ� ����4�*>�?tù_.s^�]H<4�Rԕ��&�^.;�$����]����b݈dE��u�G`�o�}r�r�e�|�����d߲lZl�^1��S�Px#�6���
sGS�l�C��3����FIk��^���gLÈ$q��^B��A�&�$p)M���QL��I�:�w۟��a?<��!͖,�&.ɒ�
<��dBB߃t<��1av��4I?L�Gpr���~'0a��sY�7X���i��!
�(�}?3���yDxrDyb���ђ>�ΰM�rx=�j3�a����_��r���O;���t^�\������o�J�>Vа�� l���Y`��q�~����6n�ڲ뺩3jBw���c���fm�Imw(B��&��i���K}6�g��(*ѹK�4�&ӈx�{�39	����9�}T���k��-Wyn���������'w�����ڽwr��/��M�EFLdA��	i�(���f��He~�/��z�v��т�k�Q�n�+�VX�^��
\�&��ys׸�B��,�ތ���	��h��zv,��M?mȹڬn��lDDgi�v{N�>Tx�̭B��5^!s�2. ��/�&�u�U)�I�M]E��Q��7��ֺ(ba�ã'�37�0q�x���O{QH}]�o�m�g��3��q��v6�#PY��%�Z�Q���������4W�,D�-�;��{�6t��Z�4�m%�F��^!�W��k���1��$���N�7K�(�<�#�%�R/?A��:��-��3�|O�g�����/��V���;�糹-|�~S{��Hsk3E�'s�ݻ��
&-q��3(��>��m��v"�i��S��/ˡ���Ѹ������PK-�=�Z�ۧ�5xl/workbook.xmlPK-�=�Z����	��[Content_Types].xmlPK-
�=�Zf���''U_rels/.relsPK-�=�ZN<�j�xl/worksheets/sheet1.xmlPK-�=�Zڧ���P}xl/_rels/workbook.xml.relsPK-�=�ZЃc'2E
�	xl/styles.xmlPK-�=�Z �_g;xl/sharedStrings.xmlPK��

application/vnd.ms-excel

Sample:
PK�=�Z�r9e�5xl/workbook.xml �(�����0��&�C����N\�z�^�V�O�||K	$޼���~;t2nx3����\��lE��=(�Ƃ�;a�b!J�"Fɡ5��@�gYA�,H�}/�����X�{�����Ը���s����'���l"���o�&�v��LA�[Fɹu5>b�*�{�Aq��$J����{�Q��n�PK�=�Z����	�[Content_Types].xml �(����J�0�_��*M�D��V�*��d�
�d�k��<�H���V���=
��|�o��|����������+�����7l���e۶~=E�"�zlXO�@Ճ��C�3]HNR~���R��uU�<���������a��36��b7םQ
�1Z�$�8z�R��3
tP��-c�� g����_M��Of���~O�s�T���� ����P<�D��e=1Z��a2�b
��%#H'�2}���e�B)��~j/F�t��PK
�=�Z<��''_rels/.rels �(�<?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml" Id="Rfbfe691f9bb64e70" /></Relationships>PK�=�ZN<�jxl/worksheets/sheet1.xml �(���mS�\��
��O8gϻtR��>}��ն�(a*�I����8�lv�������k�3^�Y���ҼXd�a�c���$�.Vw�豜�g�W��s��.�iZ��|U���h^�'�~1���qg�ʿ7����/�~6�-&�Y6y\�����~�ޏK_��/�h��%���<O�[X�oR-NjU4L>���{y:F	?I.!��G�J}�H������Q~e������0b����Wկ��4�������"]��Kb&�}Q��-k��r��������a�b.���<e�������Ml�`�m̄�Z����x��6V�(k8mUG}���u}k�=fH�ǫm���el��K��5p8^o��?�f�q�Ⱥvo�x���J9�����n�oV�p2Ν��9���Z���9i�2쐫����ŵd>��x��{��aL+�q�#C��7�cJY��8cUGx���N8��6R�Fwd�c�B^S�Ul�d�
��)�Gn�� �=�������|
LB�I#}���h��M�-DhP-�6�Y-;��P3	:�~:���O���I���ג����鎹��$�L
����*a-��#C`�e��Ǥ���ʏ�����I���w�q���Ҏ�IpG%���L��I!c�7�s�/9i;$E����uNz7-c]v��5�Z��Fh��/k��IQ#)e�ʟ@�N#�B�[���S����x4ȳ�^^���YT�)>*���i���u�V��M�i[M�Y[!��7m�l*��
�T�m+tSq�V��ⲭ�MŻ��5��!S���B�l�HH���	2��� g?d�5!A�~!$�ܯ�����
�{CH�������� w��OB��M�!doB�! j��	1��N�a��G�<N����I�\N����}��v�
��� bc��vBԔSB�zr�_�3"����
�%�Q'/���G�?j	��Sx�/TzGT���@��n'?�%����B�	b銐��|~�i�D6$�BH��}y�ol�!*!o������'!��%!4x�Ӈ����ܷ䬝O�uẸ�5�	
^W�`*��.
��˃��J�����x���YV�yu��}�7�PK�=�Zrt�4�Pxl/_rels/workbook.xml.rels �(���KN�0@�b͞�q����ݰa[z�'Q۲ݖ��G�
XEWb�������4����޾-39��5=��FZ5���c�-l7��"��0N.��bBc��� G\D(�C�:��EĔ��:!b@�k��p�$�����֓�g+������?�1�?`���5�E�yQ=�Z�M�p�[�*�(�л��x�1�z}�[�V�N�ZvUY��ʌ£z�>]:w�˙��k���c]����ћ��|PK�=�ZЃc'2E
xl/styles.xml �(��S�j�0��&0���0�^�]v��:��d;��H��Kj�vG�Mz�zOHr�iB8v�F��WEG�?s�Oh�lff�uZМ���ށh�R���6�'��2��������ɳ�UŦ`<Қo���x���8��K�6BC ^�کĖ��B���n��f8����9� ����CUk��#��U�ub��WUB;��k���&�
AR>��� ��im��ΑF���YO��%�}���LJ\in�,���9oy}��y.�$��6��ųNJ�c��T��rĘ)փBR淶�E3ʟ�\��q��PK�=�Z �_gxl/sharedStrings.xml �(��W�n�6}/����M�,q�m6E�	b�/E(q��[I:�[��;���i9O��rF��C���[�;� $����ʬb�|����x�HEKF��`
r�|=;�R98�����R��h$�(�V5��,+QP���y$k��U�#o<�F���ɪU���08���������g�����t��NG��&r���*@�2(_r�7+κ�߫�,�-�Ѕ�`���53�WT���Vʕ� ����4�*>�?tù_.s^�]H<4�Rԕ��&�^.;�$����]����b݈dE��u�G`�o�}r�r�e�|�����d߲lZl�^1��S�Px#�6���
sGS�l�C��3����FIk��^���gLÈ$q��^B��A�&�$p)M���QL��I�:�w۟��a?<��!͖,�&.ɒ�
<��dBB߃t<��1av��4I?L�Gpr���~'0a��sY�7X���i��!
�(�}?3���yDxrDyb���ђ>�ΰM�rx=�j3�a����_��r���O;���t^�\������o�J�>Vа�� l���Y`��q�~����6n�ڲ뺩3jBw���c���fm�Imw(B��&��i���K}6�g��(*ѹK�4�&ӈx�{�39	����9�}T���k��-Wyn���������'w�����ڽwr��/��M�EFLdA��	i�(���f��He~�/��z�v��т�k�Q�n�+�VX�^��
\�&��ys׸�B��,�ތ���	��h��zv,��M?mȹڬn��lDDgi�v{N�>Tx�̭B��5^!s�2. ��/�&�u�U)�I�M]E��Q��7��ֺ(ba�ã'�37�0q�x���O{QH}]�o�m�g��3��q��v6�#PY��%�Z�Q���������4W�,D�-�;��{�6t��Z�4�m%�F��^!�W��k���1��$���N�7K�(�<�#�%�R/?A��:��-��3�|O�g�����/��V���;�糹-|�~S{��Hsk3E�'s�ݻ��
&-q��3(��>��m��v"�i��S��/ˡ���Ѹ������PK-�=�Z�r9e�5xl/workbook.xmlPK-�=�Z����	��[Content_Types].xmlPK-
�=�Z<��''U_rels/.relsPK-�=�ZN<�j�xl/worksheets/sheet1.xmlPK-�=�Zrt�4�P}xl/_rels/workbook.xml.relsPK-�=�ZЃc'2E
�	xl/styles.xmlPK-�=�Z �_g<xl/sharedStrings.xmlPK��