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": "3E8FDli5nUOzY/SmHHLCQg==",
  "customerIdentifierGuid": "0e054fdc-b958-439d-b363-f4a61c72c242",
  "voucherName": "sample string 2",
  "storeID": 3,
  "redeem": true,
  "issue": true,
  "barcode": "sample string 6",
  "saleIdentifier": "sample string 7",
  "storeSalePaymentID": 1,
  "saleHeaderID": 1,
  "idempotentID": "0yfTTjhVUUakIj60wXdB/g==",
  "idempotentGuid": "4ed327d3-5538-4651-a422-3eb4c17741fe",
  "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>3E8FDli5nUOzY/SmHHLCQg==</CustomerIdentifier>
  <CustomerIdentifierGuid>0e054fdc-b958-439d-b363-f4a61c72c242</CustomerIdentifierGuid>
  <IdempotentGuid>4ed327d3-5538-4651-a422-3eb4c17741fe</IdempotentGuid>
  <IdempotentID>0yfTTjhVUUakIj60wXdB/g==</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": "yHrySW4w+0mgKBbPwGZuBQ==",
  "customerIdentifierGuid": "49f27ac8-306e-49fb-a028-16cfc0666e05",
  "voucherID": 3,
  "voucherName": "sample string 4",
  "storeID": 1,
  "barcode": "sample string 5",
  "dateOfIssue": "2025-08-02T23:25:31.4568371",
  "issuedSaleHeaderID": 1,
  "issuedSaleIdentifier": "sample string 7",
  "issuedOfflinePaymentID": 1,
  "issuedIdempotentID": "rV2brs30xUep8i+C8kkUMw==",
  "issuedIdempotentGuid": "ae9b5dad-f4cd-47c5-a9f2-2f82f2491433",
  "issuedOffline": true,
  "issuedUser": "sample string 9",
  "issuedNotes": "sample string 10",
  "expiryDate": "2025-08-02T23:25:31.4568371",
  "expiredUser": "sample string 11",
  "expiredNotes": "sample string 12",
  "redeemed": "2025-08-02T23:25:31.4568371",
  "redeemedSaleHeaderID": 1,
  "redeemedSaleIdentifier": "sample string 13",
  "redeemedOfflinePaymentID": 1,
  "redeemedIdempotentID": "/XPGlWvmaEeCPSOmedFk/g==",
  "redeemedIdempotentGuid": "95c673fd-e66b-4768-823d-23a679d164fe",
  "redeemedUser": "sample string 14",
  "redeemedNotes": "sample string 15",
  "redeemedOffline": true,
  "updated": "2025-08-02T23:25:31.4568371",
  "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-08-02T23:25:31.4568371",
    "labelPageLayout": "vV2D3RCQ60yOQgPuvC3cTw==",
    "pageLayoutGuid": "dd835dbd-9010-4ceb-8e42-03eebc2ddc4f",
    "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-08-02T23:25:31.4568371",
      "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-08-02T23:25:31.4568371"
      },
      {
        "$ref": "5"
      }
    ]
  },
  "voucher": {
    "$ref": "3"
  },
  "customer": {
    "$id": "6",
    "identifier": "snJ/m1cKjEmdQ8bYJNeMDg==",
    "identifierGuid": "9b7f72b2-0a57-498c-9d43-c6d824d78c0e",
    "code": "sample string 2",
    "familyName": "sample string 3",
    "givenName": "sample string 4",
    "otherName": "sample string 5",
    "title": "sample string 6",
    "dateOfBirth": "2025-08-02T23:25:31.4568371",
    "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": "h5dBY3obCkeUZuqCdxjRCA==",
    "communityIdentifierGuid": "63419787-1b7a-470a-9466-ea827718d108",
    "joined": "2025-08-02T23:25:31.4568371",
    "updated": "2025-08-02T23:25:31.4568371",
    "active": true,
    "reasonInactive": 1,
    "groupCustomer": true,
    "loyaltyPoints": 1,
    "homeStoreID": 1,
    "availableSpend": 1,
    "priceLevelIdentifier": "ZmCnloBWtUmzZ45Hgg2raw==",
    "priceLevelIdentifierGuid": "96a76066-5680-49b5-b367-8e47820dab6b",
    "marketingID": "sample string 18",
    "hidden": true,
    "registered": true,
    "registeredOn": "2025-08-02T23:25:31.4568371",
    "emailMarketing": true,
    "smsMarketing": true,
    "deleted": true,
    "deletedUser": "sample string 24",
    "homeStoreName": "sample string 25",
    "customerCards": [
      {
        "$id": "7",
        "cardType": 2,
        "issueDate": "2025-08-02T23:25:31.4568371",
        "expiry": "2025-08-02T23:25:31.4568371",
        "customerID": "y6Rs+5FdykObh47ihJ+XBg==",
        "customerIDGuid": "fb6ca4cb-5d91-43ca-9b87-8ee2849f9706",
        "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-08-02T23:25:31.4568371",
        "linkedAccount": "D5dL4B1TFUqhHxgq4sabQw==",
        "linkedAccountGuid": "e04b970f-531d-4a15-a11f-182ae2c69b43",
        "currentValueChanged": true,
        "limitsChanged": true,
        "customer": {
          "$ref": "6"
        },
        "account": {
          "$id": "8",
          "id": 1,
          "identifier": "PMt/kGWIuEmskxs/grCA7Q==",
          "identifierGuid": "907fcb3c-8865-49b8-ac93-1b3f82b080ed",
          "referenceNo": "sample string 3",
          "name": "sample string 4",
          "created": "2025-08-02T23:25:31.4568371",
          "owner": "L/t2jV70h0W7UQ3C4kPKvg==",
          "ownerGuid": "8d76fb2f-f45e-4587-bb51-0dc2e243cabe",
          "accountStoreGroupIdentifier": "pcw3zCAXKESzG1Lbaew05g==",
          "accountStoreGroupGuid": "cc37cca5-1720-4428-b31b-52db69ec34e6",
          "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-08-02T23:25:31.4568371",
          "active": true,
          "updated": "2025-08-02T23:25:31.4568371",
          "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": "L0t00YX4UUyu3PNEuebXKA==",
              "identifierGuid": "d1744b2f-f885-4c51-aedc-f344b9e6d728",
              "name": "sample string 2",
              "primaryContact": "ZMlmveca9EafzvMlkFLTfg==",
              "primaryContactGuid": "bd66c964-1ae7-46f4-9fce-f3259052d37e",
              "accountID": "S1rhyq8QoE6ooAjuxkQUtA==",
              "accountIDGuid": "cae15a4b-10af-4ea0-a8a0-08eec64414b4",
              "special": true,
              "updated": "2025-08-02T23:25:31.4568371",
              "active": true,
              "reasonInactive": 1,
              "priceLevelIdentifier": "tarJ7vd48EyB9XWTIf5HrA==",
              "priceLevelIdentifierGuid": "eec9aab5-78f7-4cf0-81f5-759321fe47ac",
              "deleted": true,
              "account": {
                "$ref": "8"
              },
              "primaryContactCustomer": {
                "$ref": "6"
              },
              "customerGroupMembers": [
                {
                  "$id": "11",
                  "id": 1,
                  "groupID": "znvKldEI3kyQpAqpVD34Sw==",
                  "groupIDGuid": "95ca7bce-08d1-4cde-90a4-0aa9543df84b",
                  "customerID": "4jFFXs1rlkSTBQZcA7nNdQ==",
                  "customerIDGuid": "5e4531e2-6bcd-4496-9305-065c03b9cd75",
                  "card": "sample string 4",
                  "linkedAccount": "6LseYLCRPUicSU8rl6CGjg==",
                  "linkedAccountGuid": "601ebbe8-91b0-483d-9c49-4f2b97a0868e",
                  "customer": {
                    "$ref": "6"
                  },
                  "group": {
                    "$ref": "10"
                  },
                  "customerCard": {
                    "$ref": "7"
                  }
                },
                {
                  "$ref": "11"
                }
              ]
            },
            {
              "$ref": "10"
            }
          ]
        },
        "payments": [
          {
            "$id": "12",
            "id": 1,
            "identifier": "alwCG9Og8UeB8Qhj2JilBQ==",
            "identifierGuid": "1b025c6a-a0d3-47f1-81f1-0863d898a505",
            "storeID": 2,
            "operatorName": "sample string 3",
            "saleHeaderID": 4,
            "paymentType": 5,
            "amount": 6,
            "account": "sample string 7",
            "accountID": "0sGFWjfL/k6KJqQmW+DJpg==",
            "accountIDGuid": "5a85c1d2-cb37-4efe-8a26-a4265be0c9a6",
            "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-08-02T23:25:31.4568371",
            "invRocNo": "sample string 14",
            "responseCode": "sample string 15",
            "cashout": 1,
            "tip": 16,
            "idempotentVoid": "51Ak3rmfSEOVJh38AtwXRg==",
            "idempotentVoidGuid": "de2450e7-9fb9-4348-9526-1dfc02dc1746",
            "offline": true,
            "processed": 1,
            "storeSaleHeader": {
              "$id": "13",
              "saleHeaderID": 1,
              "saleHeaderGuid": "prLpXDCCl0O7uem///vFPQ==",
              "saleHeaderIdentifierGuid": "5ce9b2a6-8230-4397-bbb9-e9bffffbc53d",
              "created": "2025-08-02T23:25:31.4568371",
              "createdLocal": "2025-08-02T23:25:31.4568371",
              "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-08-02T23:25:31.4568371",
              "storeID": 1,
              "operatorG_Uid": "Nnk0BawX/UiPlDuESIOMHA==",
              "operatorGuid": "05347936-17ac-48fd-8f94-3b8448838c1c",
              "customerG_Uid": "dS4izRY4+U6ZUawc+Gq5Uw==",
              "customerGuid": "cd222e75-3816-4ef9-9951-ac1cf86ab953",
              "communityIdentifier": "1G21DEQ6bkGk/L+mchXiVA==",
              "communityIdentifierGuid": "0cb56dd4-3a44-416e-a4fc-bfa67215e254",
              "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": "04OifRGkRkevi5BwqTNNng==",
              "priceLevelIdentifierGuid": "7da283d3-a411-4746-af8b-9070a9334d9e",
              "locked": 36,
              "relationChecksum": "sample string 37",
              "loyaltyTender": 1,
              "giftCardTender": 1,
              "operator": {
                "$id": "14",
                "id": 1,
                "g_Uid": "NlMidBEsjUG/Wv76++bbFw==",
                "guid": "74225336-2c11-418d-bf5a-fefafbe6db17",
                "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-08-02T23:25:31.4568371",
                "passwordResetRequired": true,
                "alteredInStore": true,
                "startShift": "2025-08-02T23:25:31.4568371",
                "endShift": "2025-08-02T23:25:31.4568371",
                "machineName": "sample string 20",
                "drawerID": 1,
                "stores": [
                  {
                    "$id": "15",
                    "operatorG_UID": "W6jruOpUYEaqQvjPyMvYhw==",
                    "operatorGuid": "b8eba85b-54ea-4660-aa42-f8cfc8cbd887",
                    "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-08-02T23:25:31.4568371",
                      "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": "gPmhnVJyM0GPSXp5CSyEsA==",
                      "hostIdentifierGuid": "9da1f980-7252-4133-8f49-7a79092c84b0",
                      "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-08-02T23:25:31.4568371",
                      "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": "GxkMVE85a0SrszOeirYYlQ==",
                          "hostIdentifierGuid": "540c191b-394f-446b-abb3-339e8ab61895",
                          "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": "axDUmOpQ/E+rYDTdRrSpag==",
                            "identifierGuid": "98d4106b-50ea-4ffc-ab60-34dd46b4a96a",
                            "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": "kVPxnXRNj0y981YAFze3IQ==",
                            "hostSupplierIdentifierGuid": "9df15391-4d74-4c8f-bdf3-56001737b721",
                            "loyaltyPriceLevelIdentifier": "HRgKpdbxHUW9wS6bDNMvdQ==",
                            "loyaltyPriceLevelIdentifierGuid": "a50a181d-f1d6-451d-bdc1-2e9b0cd32f75",
                            "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-08-02T23:25:31.4568371",
                            "lastProcessed": "2025-08-02T23:25:31.4568371",
                            "hold": true,
                            "supplierName": "sample string 35",
                            "supplier": {
                              "$id": "20",
                              "identifier": "bQg5AV52gkO2ZZ0jnnOlzw==",
                              "identifierGuid": "0139086d-765e-4382-b665-9d239e73a5cf",
                              "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": "hGJ99zoF80abUUvyBzUgAw==",
                              "primaryContactID": "f77d6284-053a-46f3-9b51-4bf207352003",
                              "storeID": 1,
                              "abn": "sample string 16",
                              "supplierGroupIdentifier": "Zmnc+G1sckiW4zOVjdMULQ==",
                              "supplierGroupGuid": "f8dc6966-6c6d-4872-96e3-33958dd3142d",
                              "rebate": 1.0,
                              "rebateType": 1,
                              "rebateFrequency": 1,
                              "rebateSource": 1,
                              "rebateLastClaimed": "2025-08-02T23:25:31.4568371",
                              "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": "8828aed0-bda1-436e-b6b4-ce5fdb15fd65",
                                "identifier": "0b1FsPiuB06olu5YtmYqNA==",
                                "identifierGuid": "b045bdd1-aef8-4e07-a896-ee58b6662a34",
                                "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": "UQ9uExU+i0u0c6rezFiOyg==",
                                  "supplierIdentifierGuid": "136e0f51-3e15-4b8b-b473-aadecc588eca",
                                  "contactGuid": "YWe3l/mypU+Tvg72iuNd3Q==",
                                  "contactID": "97b76761-b2f9-4fa5-93be-0ef68ae35ddd",
                                  "contact": {
                                    "$ref": "21"
                                  },
                                  "supplier": {
                                    "$ref": "20"
                                  }
                                },
                                {
                                  "$ref": "22"
                                }
                              ],
                              "products": [
                                {
                                  "$id": "23",
                                  "pluG_UID": "j7HRlR+rE0KAtDr8pV8Jnw==",
                                  "pluGuid": "95d1b18f-ab1f-4213-80b4-3afca55f099f",
                                  "supplierIdentifier": "tB8OZiFkkUGuCNGko6aasQ==",
                                  "supplierIdentifierGuid": "660e1fb4-6421-4191-ae08-d1a4a3a69ab1",
                                  "cartonQuantity": 1,
                                  "cartonQuantityChanged": true,
                                  "productSize": "sample string 3",
                                  "cigarettesPerSleeve": 1,
                                  "randomWeight": true,
                                  "piecesPerUnit": 5,
                                  "averagePackSize": 6,
                                  "effectiveDate": "2025-08-02T23:25:31.4568371",
                                  "pricedByWeight": true,
                                  "landedUnitCostEx": 9,
                                  "landedUnitCostInc": 10,
                                  "landedCartonCostInc": 11,
                                  "landedCartonCostEx": 12,
                                  "standardCost": 13,
                                  "deliveryFee": 1,
                                  "deliveryFeeBasis": "sample string 14",
                                  "pickAndPackFee": 1,
                                  "pickAndPackFeeBasis": "sample string 15",
                                  "financeFee": 1,
                                  "financeFeeBasis": "sample string 16",
                                  "cartonLength": 1,
                                  "cartonWidth": 1,
                                  "cartonHeight": 1,
                                  "palletLayerQuantity": 1,
                                  "palletLayers": 1,
                                  "itemCode": "sample string 17",
                                  "invoiceCode": "sample string 18",
                                  "invoiceDesc": "sample string 19",
                                  "orderDirect": true,
                                  "useCost": true,
                                  "minimumQuantity": 20,
                                  "hostType": 21,
                                  "fromHost": 22,
                                  "minimumReorder": 1,
                                  "maximumReorder": 1,
                                  "orderMultiple": 23.1,
                                  "sellMultiple": 24.1,
                                  "baseMultiple": 25.1,
                                  "hostStandardCost": 26,
                                  "hostTotalCost": 27,
                                  "hostRetail": 28,
                                  "hostLandedUnitCostEx": 29,
                                  "hostLandedUnitCostInc": 30,
                                  "hostDesc": "sample string 31",
                                  "directIndicator": "sample string 32",
                                  "availableToOrder": true,
                                  "hostRangeIndicator": "sample string 34",
                                  "hostProductType": "sample string 35",
                                  "hostProductGrade": "sample string 36",
                                  "hostProductGroup": "sample string 37",
                                  "hostSlowMoving": true,
                                  "hostGeneralMerchandise": true,
                                  "hostPillar": "sample string 40",
                                  "hostLastUpdated": "2025-08-02T23:25:31.4568371",
                                  "rebate": 1.0,
                                  "rebateExclude": true,
                                  "invoiceCodes": [
                                    {
                                      "$id": "24",
                                      "pluG_UID": "FcwYAoG0Q0G2XXHd/Gw4pw==",
                                      "pluGuid": "0218cc15-b481-4143-b65d-71ddfc6c38a7",
                                      "supplierIdentifier": "2rEDV4I2x0Ws044rl27ltA==",
                                      "supplierIdentifierGuid": "5703b1da-3682-45c7-acd3-8e2b976ee5b4",
                                      "invoiceCode": "sample string 1",
                                      "storeIDs": [
                                        1,
                                        2
                                      ]
                                    },
                                    {
                                      "$ref": "24"
                                    }
                                  ],
                                  "storeIDs": [
                                    1,
                                    2
                                  ],
                                  "preferredSupplier": true,
                                  "preferredRebateSupplier": true,
                                  "supplierName": "sample string 41",
                                  "salesMode": 42,
                                  "orderPacked": true,
                                  "active": true,
                                  "price": 1,
                                  "costGstPercent": 44,
                                  "parentPluG_UID": "dkch/Q5yk0aRR9RAd3GxBQ==",
                                  "parentPluGuid": "fd214776-720e-4693-9147-d4407771b105",
                                  "freight": 45.0,
                                  "freightType": 1,
                                  "product": {
                                    "$id": "25",
                                    "plu": 1,
                                    "storeID": 1,
                                    "masterPluG_UID": "QEA=",
                                    "storeIDs": [
                                      1,
                                      2
                                    ],
                                    "g_UId": "c8GxrTwUl0SLbexdmf/9OQ==",
                                    "guid": "adb1c173-143c-4497-8b6d-ec5d99fffd39",
                                    "apn": "sample string 1",
                                    "apnChanged": true,
                                    "apnSwitched": true,
                                    "barcode": "sample string 4",
                                    "itemNumber": "sample string 5",
                                    "itemNumberChanged": true,
                                    "priceGroupG_UID": "ZhwkACdAnkuCH834JoBdmA==",
                                    "priceGroupGuid": "00241c66-4027-4b9e-821f-cdf826805d98",
                                    "blueprintID": 1,
                                    "lastCountedDate": "2025-08-02T23:25:31.4568371",
                                    "externalID": "sample string 7",
                                    "active": true,
                                    "activated": "2025-08-02T23:25:31.4568371",
                                    "pluCreated": "2025-08-02T23:25:31.4568371",
                                    "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-08-02T23:25:31.4568371",
                                    "lastManualUpdate": "2025-08-02T23:25:31.4568371",
                                    "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-08-02T23:25:31.4568371",
                                    "currentCostUpdated": "2025-08-02T23:25:31.4568371",
                                    "costDecimals": 31,
                                    "costChanged": true,
                                    "dealCostIdentifier": "QEA=",
                                    "excludeFromRebate": true,
                                    "rebateOverride": 1,
                                    "costCalcMethod": 32,
                                    "costCalcMethodChanged": true,
                                    "costEffectiveDate": "2025-08-02T23:25:31.4568371",
                                    "defaultGP": 1,
                                    "breakTargetMode": 33,
                                    "break1": 1,
                                    "price1": 1,
                                    "target1": 34,
                                    "break2": 1,
                                    "price2": 1,
                                    "target2": 35,
                                    "break3": 1,
                                    "price3": 1,
                                    "target3": 36,
                                    "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-08-02T23:25:31.4568371",
                                    "posTare": 1,
                                    "altPrice": 1.0,
                                    "altPriceChanged": true,
                                    "altPriceMode": 53,
                                    "altPriceModeChanged": true,
                                    "altPLUG_UID": "w93RTi4yy0KeUSR9oC09NQ==",
                                    "altPLUGuid": "4ed1ddc3-322e-42cb-9e51-247da02d3d35",
                                    "altPLUGuidChanged": true,
                                    "altPriceDescription1": "sample string 54",
                                    "altPriceDescription2": "sample string 55",
                                    "cartonQuantity": 56,
                                    "cartonQuantityChanged": true,
                                    "trayID": 1,
                                    "promptID": 1,
                                    "tare": 1,
                                    "packQty": 1,
                                    "fixedWeight": 1,
                                    "extraMesg": 1,
                                    "text1": "sample string 58",
                                    "text2": "sample string 59",
                                    "text3": "sample string 60",
                                    "labelText": "sample string 61",
                                    "labelTextChanged": true,
                                    "sendToScale": true,
                                    "nonScaleWeigh": true,
                                    "labelFormat": "sample string 65",
                                    "barcodeFormat": "sample string 66",
                                    "austMade": 1,
                                    "coolCode": 67,
                                    "countryOfOrigin": "sample string 68",
                                    "percentContent": 69.1,
                                    "departmentID": 1,
                                    "subDepartmentID": 1,
                                    "minorDepartmentID": 1,
                                    "lesserDepartmentID": 1,
                                    "deptCode": "sample string 70",
                                    "subDeptCode": "sample string 71",
                                    "minorDeptCode": "sample string 72",
                                    "lesserDeptCode": "sample string 73",
                                    "deptName": "sample string 74",
                                    "subDeptName": "sample string 75",
                                    "minorDeptName": "sample string 76",
                                    "lesserDeptName": "sample string 77",
                                    "departmentChanged": true,
                                    "subCategoryID": 1,
                                    "expiry": 1,
                                    "showDays": 1,
                                    "datePrint": 1,
                                    "labelRequired": true,
                                    "labelShelfQty": 80,
                                    "labelShelfChanged": true,
                                    "labelTalkerQty": 82,
                                    "labelSmall": true,
                                    "labelLastPrinted": "2025-08-02T23:25:31.4568371",
                                    "labelLastPrice": 1,
                                    "shelfPageLayoutG_UID": "2WDjug4d1kmrAd59ugS5TA==",
                                    "shelfPageLayoutGuid": "bae360d9-1d0e-49d6-ab01-de7dba04b94c",
                                    "talkerPageLayoutG_UID": "6PnKplzhpEipNwLksq3VAg==",
                                    "talkerPageLayoutGuid": "a6caf9e8-e15c-48a4-a937-02e4b2add502",
                                    "unitMeasure": 1.1,
                                    "unitMeasureChanged": true,
                                    "unitMeasureKind": 85,
                                    "unitMeasureKindChanged": true,
                                    "signIQData": "sample string 87",
                                    "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": 91,
                                    "notForSaleChanged": true,
                                    "excludeFromDeals": true,
                                    "excludeFromVoucher": true,
                                    "minimumAge": 94,
                                    "minimumAgeChanged": true,
                                    "buyingLimit": 1,
                                    "buyingLimitChanged": true,
                                    "buyingLimitIndependent": true,
                                    "buyingLimitIndependentChanged": true,
                                    "inventoryGuid": "uEcD4iajuEeejhr5Qwx0Jw==",
                                    "inventoryIdentifier": "e20347b8-a326-47b8-9e8e-1af9430c7427",
                                    "inventoryAccuracy": 1,
                                    "baseUnits": 98,
                                    "orderPacked": 1,
                                    "isManufactured": true,
                                    "isIngredient": true,
                                    "isModifier": true,
                                    "isModifierChanged": true,
                                    "hasModifiers": 99,
                                    "defaultPrinter": "sample string 100",
                                    "defaultPrinterGroup": "sample string 101",
                                    "ingredientsOnManufacture": true,
                                    "manufactureUnitMeasure": 1,
                                    "mpl": 1,
                                    "maxShelfQty": 102,
                                    "allowAutoOrder": true,
                                    "warrantyPeriod": 1,
                                    "parentPluG_UId": "wGLlWW7lWEi+BPtmT6ao3Q==",
                                    "parentPluGuid": "59e562c0-e56e-4858-be04-fb664fa6a8dd",
                                    "preferredHostVendor": 104,
                                    "preferredHostChanged": true,
                                    "code": "sample string 106",
                                    "supplierIdentifier": "F9hkH27wOEOztb2AFSU9Og==",
                                    "supplierIdentifierGuid": "1f64d817-f06e-4338-b3b5-bd8015253d3a",
                                    "supplierChanged": true,
                                    "rebateSupplierIdentifier": "nQME+RBIyEimPuvC521z1Q==",
                                    "rebateSupplierIdentifierGuid": "f904039d-4810-48c8-a63e-ebc2e76d73d5",
                                    "rebateSupplierChanged": true,
                                    "availableForOrder": true,
                                    "warehouseDirectIndicator": "sample string 108",
                                    "warehouseDirectIndicatorChanged": true,
                                    "productGrade": "sample string 110",
                                    "productType": "sample string 111",
                                    "productGroup": "sample string 112",
                                    "complianceIndicator": "sample string 113",
                                    "inhouseBrand": "sample string 114",
                                    "slowMoving": true,
                                    "generalMerchandise": true,
                                    "comment": "sample string 117",
                                    "lastUpdatedByUser": "sample string 118",
                                    "lastManualUpdatedByUser": "sample string 119",
                                    "lastUpdatedByUserOverride": true,
                                    "lastUpdatedByHost": "2025-08-02T23:25:31.4568371",
                                    "commodity": "sample string 121",
                                    "businessPillar": "sample string 122",
                                    "mscCommodity": "sample string 123",
                                    "hostIdentifier": "YNyDlgRR0USq63dkB5rHZA==",
                                    "hostIdentifierGuid": "9683dc60-5104-44d1-aaeb-7764079ac764",
                                    "serviceFeeID": 1,
                                    "serviceFeeIDChanged": true,
                                    "providerName": "sample string 125",
                                    "aisleEnds": "sample string 126",
                                    "deleted": true,
                                    "deletedChanged": true,
                                    "hidden": true,
                                    "doNotRange": true,
                                    "doNotRangeChanged": true,
                                    "doNotOrder": true,
                                    "doNotOrderChanged": true,
                                    "locked": true,
                                    "excludeFromWebUpdate": true,
                                    "excludeFromWebUpdateChanged": true,
                                    "webPriceBasedOn": 137,
                                    "webPriceRounding": true,
                                    "webMarkup": 139,
                                    "webPriceMode": 140,
                                    "altDepartmentID": 1,
                                    "altSubDepartmentID": 1,
                                    "altMinorDepartmentID": 1,
                                    "altLesserDepartmentID": 1,
                                    "altDeptCode": "sample string 141",
                                    "altSubDeptCode": "sample string 142",
                                    "altMinorDeptCode": "sample string 143",
                                    "altLesserDeptCode": "sample string 144",
                                    "altDepartmentChanged": true,
                                    "storeProducts": [
                                      {
                                        "$ref": "25"
                                      },
                                      {
                                        "$ref": "25"
                                      }
                                    ],
                                    "store": {
                                      "$ref": "16"
                                    },
                                    "storePrices": [
                                      {
                                        "$id": "26",
                                        "pluG_UID": "zJ9f6s3nZ0CGx2aFu3KMFA==",
                                        "pluGuid": "ea5f9fcc-e7cd-4067-86c7-6685bb728c14",
                                        "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-08-02T23:25:31.4568371"
                                      },
                                      {
                                        "$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-08-02T23:25:31.4568371",
                                        "priceChangeType": 0,
                                        "costDecimals": 10
                                      },
                                      "normalPluPrices": {
                                        "$ref": "28"
                                      },
                                      "winningCampaign": 1,
                                      "winner": {
                                        "$id": "29",
                                        "campaignName": "sample string 1",
                                        "campaignDescription": "sample string 2",
                                        "startDate": "2025-08-02T23:25:31.4568371",
                                        "startTime": 3,
                                        "endDate": "2025-08-02T23:25:31.4568371",
                                        "endTime": 4,
                                        "newPrice": 5,
                                        "newCost": 6,
                                        "newCostDecimals": 7,
                                        "pctDiscount": 8,
                                        "promoType": 1,
                                        "promotionTypeCode": "sample string 9",
                                        "hostType": 10,
                                        "hostIdentifier": "5RYXY+EM2k2eLBzIDSQ1jQ==",
                                        "hostIdentifierGuid": "631716e5-0ce1-4dda-9e2c-1cc80d24358d",
                                        "storeNames": [
                                          "sample string 1",
                                          "sample string 2"
                                        ]
                                      },
                                      "details": [
                                        {
                                          "$ref": "29"
                                        },
                                        {
                                          "$ref": "29"
                                        }
                                      ]
                                    },
                                    "tray": {
                                      "$id": "30",
                                      "g_UId": "sx1gMWEJ6EGFP1MIfTSuKA==",
                                      "guid": "31601db3-0961-41e8-853f-53087d34ae28",
                                      "name": "sample string 1",
                                      "number": 1,
                                      "tare": 1
                                    },
                                    "priceGroup": {
                                      "$id": "31",
                                      "priceGroupG_UID": "mUtaf6RjfEiSlt97G4IPbg==",
                                      "priceGroupGuid": "7f5a4b99-63a4-487c-9296-df7b1b820f6e",
                                      "name": "sample string 2",
                                      "code": 1,
                                      "modified": true,
                                      "updated": "2025-08-02T23:25:31.4568371",
                                      "buyingLimit": 1,
                                      "buyingLimitIndependent": true,
                                      "buyingLimitType": 0,
                                      "number": 1,
                                      "products": [
                                        {
                                          "$ref": "25"
                                        },
                                        {
                                          "$ref": "25"
                                        }
                                      ],
                                      "productCount": 1
                                    },
                                    "priceGroupName": "sample string 146",
                                    "nutrifacts": {
                                      "$id": "32",
                                      "pluG_UID": "Ee+GuGOPXE6kJruekSAJYQ==",
                                      "pluGuid": "b886ef11-8f63-4e5c-a426-bb9e91200961",
                                      "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": "36619d20-a9d9-46da-9135-b416fcebda76",
                                      "created": "2025-08-02T23:25:31.4568371",
                                      "createdByUser": "sample string 1",
                                      "activated": "2025-08-02T23:25:31.4568371",
                                      "deactivated": "2025-08-02T23:25:31.4568371",
                                      "lastOrdered": "2025-08-02T23:25:31.4568371",
                                      "lastOrderedQty": 2.0,
                                      "lastReceived": "2025-08-02T23:25:31.4568371",
                                      "lastReceivedQty": 3.0,
                                      "lastInvoiceStatus": 1,
                                      "lastCounted": "2025-08-02T23:25:31.4568371",
                                      "lastSold": "2025-08-02T23:25:31.4568371",
                                      "firstSold": "2025-08-02T23:25:31.4568371",
                                      "awsUpdated": "2025-08-02T23:25:31.4568371",
                                      "lastManualUpdate": "2025-08-02T23:25:31.4568371",
                                      "lastManualUpdatedByUser": "sample string 5",
                                      "lastUpdated": "2025-08-02T23:25:31.4568371",
                                      "lastUpdatedByUser": "sample string 7",
                                      "lastUpdatedByHost": "2025-08-02T23:25:31.4568371",
                                      "doNotRangeUpdated": "2025-08-02T23:25:31.4568371",
                                      "doNotOrderUpdated": "2025-08-02T23:25:31.4568371",
                                      "tracked": "2025-08-02T23:25:31.4568371"
                                    },
                                    "allergens": [
                                      {
                                        "$id": "34",
                                        "allergenID": 1,
                                        "pluG_UID": "zwARAXUtFky0FezBOg+2FA==",
                                        "pluGuid": "011100cf-2d75-4c16-b415-ecc13a0fb614",
                                        "contains": 2,
                                        "allergenName": "sample string 3",
                                        "storeIDs": [
                                          1,
                                          2
                                        ]
                                      },
                                      {
                                        "$ref": "34"
                                      }
                                    ],
                                    "costs": {
                                      "$id": "35",
                                      "pluG_UID": "3wxJKRSOM0y1M1OmWIFMxA==",
                                      "pluGuid": "29490cdf-8e14-4c33-b533-53a658814cc4",
                                      "enteredCost": 1,
                                      "weightedAvgCost": 1,
                                      "lastCost": 1,
                                      "rawEnteredCost": 2,
                                      "rawWeightedAvgCost": 3,
                                      "rawLastCost": 4,
                                      "freight": 5.0,
                                      "freightType": 6,
                                      "costDecimals": 7,
                                      "fifoCost": 1,
                                      "updated": "2025-08-02T23:25:31.4568371",
                                      "normalCost": 1,
                                      "currentCost": 1
                                    },
                                    "sales": [
                                      {
                                        "$id": "36",
                                        "saleHeaderID": 1,
                                        "created": "2025-08-02T23:25:31.4568371",
                                        "createdLocal": "2025-08-02T23:25:31.4568371",
                                        "storeID": 3,
                                        "storeName": "sample string 4",
                                        "operatorG_Uid": "BD3aE4U4g0SBEJlcsJdTUg==",
                                        "operatorGuid": "13da3d04-3885-4483-8110-995cb0975352",
                                        "operatorName": "sample string 5",
                                        "tranType": 1,
                                        "plu": 1,
                                        "pluG_UId": "ekfjm2SMwEuBRsYEzdb08w==",
                                        "pluGuid": "9be3477a-8c64-4bc0-8146-c604cdd6f4f3",
                                        "normalPrice": 1,
                                        "totalCents": 1,
                                        "cost": 1,
                                        "grossProfit": 1,
                                        "quantity": 1,
                                        "operator": {
                                          "$ref": "14"
                                        }
                                      },
                                      {
                                        "$ref": "36"
                                      }
                                    ],
                                    "apns": [
                                      {
                                        "$id": "37",
                                        "pluID": 1,
                                        "pluG_UID": "hMT9sXYt70iVgOzBQLz8DA==",
                                        "pluGuid": "b1fdc484-2d76-48ef-9580-ecc140bcfc0c",
                                        "apn": "sample string 1",
                                        "deleted": true,
                                        "storeID": 1,
                                        "storeIDs": [
                                          1,
                                          2
                                        ]
                                      },
                                      {
                                        "$ref": "37"
                                      }
                                    ],
                                    "tuns": [
                                      {
                                        "$id": "38",
                                        "pluG_UId": "4ZXy0UQHQUqXTR5LOKioTA==",
                                        "pluGuid": "d1f295e1-0744-4a41-974d-1e4b38a8a84c",
                                        "apn": "sample string 1",
                                        "tun": "sample string 2",
                                        "cartonQuantity": 3,
                                        "product": {
                                          "$ref": "25"
                                        },
                                        "storeIDs": [
                                          1,
                                          2
                                        ]
                                      },
                                      {
                                        "$ref": "38"
                                      }
                                    ],
                                    "competitionPricing": [
                                      {
                                        "$id": "39",
                                        "identifier": "7GJ/BDUs90KjIeQHyRLMxA==",
                                        "identifierGuid": "047f62ec-2c35-42f7-a321-e407c912ccc4",
                                        "pluG_UID": "poEBIdAtCkmIT4pZ5VHWBw==",
                                        "pluGuid": "210181a6-2dd0-490a-884f-8a59e551d607",
                                        "competitionID": 1,
                                        "name": "sample string 2",
                                        "sellMultiple": 3,
                                        "retailPrice": 4,
                                        "storeName": "sample string 5"
                                      },
                                      {
                                        "$ref": "39"
                                      }
                                    ],
                                    "supplier": {
                                      "$ref": "20"
                                    },
                                    "supplierName": "sample string 147",
                                    "children": [
                                      {
                                        "$ref": "25"
                                      },
                                      {
                                        "$ref": "25"
                                      }
                                    ],
                                    "ordering": {
                                      "$ref": "23"
                                    },
                                    "flipChartPages": [
                                      {
                                        "$id": "40",
                                        "identifier": "bOy03VJQIkuofCIQyBJIhA==",
                                        "groupName": "sample string 1",
                                        "identifierGuid": "ddb4ec6c-5052-4b22-a87c-2210c8124884",
                                        "exists": true,
                                        "flipChartIdentifier": "tXLEaF3ojEWTQ/OYxOmDYg==",
                                        "flipChartIdentifierGuid": "68c472b5-e85d-458c-9343-f398c4e98362",
                                        "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": "fFbzCWFj9UW6eiUfPwXtsA==",
                                        "groupIdentifierGuid": "09f3567c-6361-45f5-ba7a-251f3f05edb0",
                                        "flipChart": {
                                          "$id": "41",
                                          "identifier": "Cf4rADxqeUSuB00I4oNCbw==",
                                          "identifierGuid": "002bfe09-6a3c-4479-ae07-4d08e283426f",
                                          "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": "4aOErMNg/0mURjdNfdDbcQ==",
                                            "identifierGuid": "ac84a3e1-60c3-49ff-9446-374d7dd0db71",
                                            "name": "sample string 2",
                                            "formType": "sample string 3",
                                            "forms": [
                                              {
                                                "$id": "43",
                                                "id": 1,
                                                "g_UID": "TMeKswPI7EWJTv6lBEkMLQ==",
                                                "guid": "b38ac74c-c803-45ec-894e-fea504490c2d",
                                                "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": "aiGdVltz2kKoWkdBTpKA1Q==",
                                                "previousFormGuid": "569d216a-735b-42da-a85a-47414e9280d5",
                                                "nextForm": 1,
                                                "nextFormG_UID": "+KV1OMau3kWV2RJ/M9aJOw==",
                                                "nextFormGuid": "3875a5f8-aec6-45de-95d9-127f33d6893b",
                                                "attributes": "sample string 10",
                                                "updated": "2025-08-02T23:25:31.4568371",
                                                "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": "j6Crwo+RdkiV9wz0jqquGg==",
                                                    "checkoutFormGuid": "c2aba08f-918f-4876-95f7-0cf48eaaae1a",
                                                    "identifier": "GdglB9SZQkOeBx5EaYuXEQ==",
                                                    "identifierGuid": "0725d819-99d4-4342-9e07-1e44698b9711",
                                                    "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": "JBjtxoYhR0+OJ50nx+MKWg==",
                                                    "valueGuid": "c6ed1824-2186-4f47-8e27-9d27c7e30a5a",
                                                    "buttonText": "sample string 10",
                                                    "valueText": "sample string 11",
                                                    "drawImageAndButton": true,
                                                    "updated": "2025-08-02T23:25:31.4568371",
                                                    "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-08-02T23:25:31.4568371",
                                                      "imageData": "QEA=",
                                                      "readOnly": true
                                                    }
                                                  },
                                                  {
                                                    "$ref": "44"
                                                  }
                                                ],
                                                "panels": [
                                                  {
                                                    "$id": "46",
                                                    "id": 1,
                                                    "checkoutFormID": 2,
                                                    "checkoutFormG_UID": "DprqDLKApkKw998fkhEe9g==",
                                                    "checkoutFormGuid": "0cea9a0e-80b2-42a6-b0f7-df1f92111ef6",
                                                    "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": "IYnwBmJm3EuPwRwiP1HPSw==",
                                            "flipChartPageIdentifierGuid": "06f08921-6662-4bdc-8fc1-1c223f51cf4b",
                                            "pluG_UID": "U8ltFXxEvUy+NKx4QneIlg==",
                                            "pluGuid": "156dc953-447c-4cbd-be34-ac7842778896",
                                            "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": "AIcJFicKDkCxALHNAawuKw==",
                                        "pluGuid": "16098700-0a27-400e-b100-b1cd01ac2e2b",
                                        "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-08-02T23:25:31.4568371",
                                        "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": "YfBo9hhb00e84fHXjeprdg==",
                                        "ingredientGuid": "pSgg6f/CREu+ckw6viBgOg==",
                                        "ingredientIdentifier": "e92028a5-c2ff-4b44-be72-4c3abe20603a",
                                        "quantity": 1.0,
                                        "storeIDs": [
                                          1,
                                          2
                                        ],
                                        "ingredientText": "sample string 1",
                                        "ingredient": {
                                          "$ref": "25"
                                        }
                                      },
                                      {
                                        "$ref": "49"
                                      }
                                    ],
                                    "bins": [
                                      {
                                        "$id": "50",
                                        "pluG_UID": "D5iWJDMls0iE7+L5opGKIA==",
                                        "pluGuid": "2496980f-2533-48b3-84ef-e2f9a2918a20",
                                        "shelfLocationIdentifier": "zmFIorjd6EaC5B4gokk/Xw==",
                                        "shelfLocationGuid": "a24861ce-ddb8-46e8-82e4-1e20a2493f5f",
                                        "labelShelfDefault": 1,
                                        "labelTalkerDefault": 1,
                                        "labelSmall": true,
                                        "labelPageLayoutG_UID": "ahTTpGgGv0mdv8202YrsFg==",
                                        "labelPageLayoutGuid": "a4d3146a-0668-49bf-9dbf-cdb4d98aec16",
                                        "updated": "2025-08-02T23:25:31.4568371",
                                        "electronicShelfLabelIdentifier": "sample string 5",
                                        "electronicshelfLabelsConfigurationID": 6,
                                        "labelShelfChanged": true,
                                        "productName": "sample string 8",
                                        "locationText": "sample string 9",
                                        "product": {
                                          "$ref": "25"
                                        },
                                        "location": {
                                          "$id": "51",
                                          "identifier": "hKguBw3hL0mtfatRbpsCsw==",
                                          "storeID": 1,
                                          "identifierGuid": "072ea884-e10d-492f-ad7d-ab516e9b02b3",
                                          "name": "sample string 2",
                                          "haccp": true,
                                          "blueprintID": 1,
                                          "updated": "2025-08-02T23:25:31.4568371",
                                          "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": "ZPoZnbIclkOfF04Ip0+jOg==",
                                        "pluGuid": "9d19fa64-1cb2-4396-9f17-4e08a74fa33a",
                                        "deptNo": 1,
                                        "product": {
                                          "$ref": "25"
                                        },
                                        "scaleLocation": {
                                          "$id": "53",
                                          "id": 1,
                                          "deptNo": 1,
                                          "deptCode": "sample string 2",
                                          "name": "sample string 3",
                                          "enabled": true,
                                          "updated": "2025-08-02T23:25:31.4568371",
                                          "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-08-02T23:25:31.4568371",
                                                        "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": "DfYa2nOBVUKfCiDtlPqPEQ==",
                                                        "labelPageLayoutGuid": "da1af60d-8173-4255-9f0a-20ed94fa8f11",
                                                        "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-08-02T23:25:31.4568371",
                                                    "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": "9KwEJEcPmkaaZNozBdU7vA==",
                                                    "labelPageLayoutGuid": "2404acf4-0f47-469a-9a64-da3305d53bbc",
                                                    "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-08-02T23:25:31.4568371",
                                                "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": "hyUVjJ4fG0SweFqabCngGA==",
                                                "labelPageLayoutGuid": "8c152587-1f9e-441b-b078-5a9a6c29e018",
                                                "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-08-02T23:25:31.4568371",
                                            "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": "R7nxVp5nYEq+Vbo+BtC33A==",
                                            "labelPageLayoutGuid": "56f1b947-679e-4a60-be55-ba3e06d0b7dc",
                                            "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": "mEhFXXYzUUm7azziiBaM3g==",
                                      "pluGuid": "5d454898-3376-4951-bb6b-3ce288168cde",
                                      "newPrice": 1,
                                      "pctDiscount": 1,
                                      "newCost": 1,
                                      "newCostDecimals": 6,
                                      "dealCostIdentifier": "iNUpROm5ZUCHT9T9h6tKyw==",
                                      "dealCostGuid": "4429d588-b9e9-4065-874f-d4fd87ab4acb",
                                      "pluName": "sample string 7",
                                      "apn": "sample string 8",
                                      "fuelItem": true,
                                      "priceGroupG_UID": "Ht+09oLXfEi8UZJji2rWOg==",
                                      "priceGroupGuid": "f6b4df1e-d782-487c-bc51-92638b6ad63a",
                                      "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-08-02T23:25:31.4568371",
                                      "rrp": 26,
                                      "campaignDescription": "sample string 27",
                                      "campaignComboPriceGroupG_UID": "k0J+K3AhKEmQfrmQXG8fqg==",
                                      "campaignComboPriceGroupIdentifier": "2b7e4293-2170-4928-907e-b9905c6f1faa",
                                      "promotionPlacementDescription": "sample string 28",
                                      "storeAcceptances": [
                                        {
                                          "$id": "63",
                                          "plu": 1,
                                          "pluG_UId": "QEA=",
                                          "campaignID": 1,
                                          "campaignName": "sample string 2",
                                          "storeID": 3,
                                          "acceptedUtc": "2025-08-02T23:25:31.4568371",
                                          "operatorG_UID": "ScW+4qY7KEuAVFDC9uPr3A==",
                                          "operatorGuid": "e2bec549-3ba6-4b28-8054-50c2f6e3ebdc",
                                          "machineID": 1,
                                          "processed": true,
                                          "appliedUtc": "2025-08-02T23:25:31.4568371",
                                          "signIqTicketFileMovedUtc": "2025-08-02T23:25:31.4568371",
                                          "user": "sample string 6",
                                          "campaignDescription": "sample string 7",
                                          "productDesc": "sample string 8",
                                          "storeName": "sample string 9",
                                          "effectiveUtc": "2025-08-02T23:25:31.4568371",
                                          "priceChangeType": 0,
                                          "operatorName": "sample string 10",
                                          "hostCampaign": true,
                                          "product": {
                                            "$ref": "25"
                                          },
                                          "campaignPlu": {
                                            "$ref": "62"
                                          }
                                        },
                                        {
                                          "$ref": "63"
                                        }
                                      ],
                                      "campaign": {
                                        "$id": "64",
                                        "id": 1,
                                        "storeID": 2,
                                        "name": "a7d47a40-bfae-4c92-ab1b-6c5b0f7dc619",
                                        "nameGuid": "a7d47a40-bfae-4c92-ab1b-6c5b0f7dc619",
                                        "description": "sample string 4",
                                        "showDiscounts": true,
                                        "showTotals": true,
                                        "onlyEvaluateOnSubtotal": true,
                                        "useDescription": true,
                                        "campaignType": 1,
                                        "startDate": "2025-08-02T23:25:31.4568371",
                                        "startTime": 1,
                                        "endDate": "2025-08-02T23:25:31.4568371",
                                        "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-08-02T23:25:31.4568371",
                                        "system": true,
                                        "created": "2025-08-02T23:25:31.4568371",
                                        "updated": "2025-08-02T23:25:31.4568371",
                                        "priceChangeNotifiedUtc": "2025-08-02T23:25:31.4568371",
                                        "promoType": 1,
                                        "promotionTypeCode": "sample string 13",
                                        "hostIdentifier": "g7wSzpxmnUmoKZpeabNXaw==",
                                        "hostIdentifierGuid": "ce12bc83-669c-499d-a829-9a5e69b3576b",
                                        "hostType": 14,
                                        "createdByUser": "sample string 15",
                                        "fromHost": true,
                                        "deleted": true,
                                        "campaignDeleted": "2025-08-02T23:25:31.4568371",
                                        "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": "uf2m2jwNb0yaZPMhrk8PzA==",
                                            "pluGuid": "daa6fdb9-0d3c-4c6f-9a64-f321ae4f0fcc",
                                            "hostOfferID": 1,
                                            "priceGroupG_UID": "fjVNLnzPwU6al/7J6s0lkg==",
                                            "priceGroupGuid": "2e4d357e-cf7c-4ec1-9a97-fec9eacd2592",
                                            "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-08-02T23:25:31.4568371",
                                            "rrp": 17,
                                            "campaignDescription": "sample string 18",
                                            "product": {
                                              "$ref": "25"
                                            },
                                            "campaign": {
                                              "$ref": "64"
                                            }
                                          },
                                          {
                                            "$ref": "65"
                                          }
                                        ],
                                        "sellingRules": [
                                          {
                                            "$id": "66",
                                            "id": 1,
                                            "identifier": "6C6UpBQoyE+Q+ANXfvoUEQ==",
                                            "identifierStr": "6C6UpBQoyE+Q+ANXfvoUEQ==",
                                            "identifierGuid": "a4942ee8-2814-4fc8-90f8-03577efa1411",
                                            "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": "y1f/ZaXhgkquTUYToyTvNQ==",
                                            "customerIDGuid": "65ff57cb-e1a5-4a82-ae4d-4613a324ef35",
                                            "campaign": {
                                              "$ref": "64"
                                            },
                                            "customer": {
                                              "$ref": "6"
                                            }
                                          },
                                          {
                                            "$ref": "67"
                                          }
                                        ],
                                        "customerGroups": [
                                          {
                                            "$id": "68",
                                            "id": 1,
                                            "campaignID": 2,
                                            "campaignName": "sample string 3",
                                            "groupID": "uzTnUL4wPUKqTAMBJ0DD8A==",
                                            "groupIDGuid": "50e734bb-30be-423d-aa4c-03012740c3f0",
                                            "campaign": {
                                              "$ref": "64"
                                            },
                                            "group": {
                                              "$ref": "10"
                                            }
                                          },
                                          {
                                            "$ref": "68"
                                          }
                                        ],
                                        "signIqTickets": [
                                          {
                                            "$id": "69",
                                            "identifier": "xKj7Uzdex0iPYBmIXfVrAA==",
                                            "identifierGuid": "53fba8c4-5e37-48c7-8f60-19885df56b00",
                                            "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": "EK5Lq79DoE6pjCW6nr/Osw==",
                                            "guid": "ab4bae10-43bf-4ea0-a98c-25ba9ebfceb3",
                                            "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": "qHwnc02T0k6N9tiFZGbk8g==",
                                                "groupGuid": "73277ca8-934d-4ed2-8df6-d8856466e4f2",
                                                "comboPriceType": 5,
                                                "priceType": 5,
                                                "pluG_UID": "/fEbUmhcNkeaUhPbtUE7XQ==",
                                                "pluGuid": "521bf1fd-5c68-4736-9a52-13dbb5413b5d",
                                                "priceGroupG_UID": "dHdR2F+wDEuZ5VGCC0xG7A==",
                                                "priceGroupGuid": "d8517774-b05f-4b0c-99e5-51820b4c46ec",
                                                "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": "oM5EQ+cnZE2DXA5DYDxXvA==",
                                            "priceLevelIdentifierGuid": "4344cea0-27e7-4d64-835c-0e43603c57bc",
                                            "campaignName": "sample string 3",
                                            "priceLevelName": "sample string 4"
                                          },
                                          {
                                            "$ref": "72"
                                          }
                                        ]
                                      },
                                      "product": {
                                        "$ref": "25"
                                      },
                                      "dealCost": {
                                        "$id": "73",
                                        "headerIdentifier": "3yZcHrMHSU2yzzuNOjPWtQ==",
                                        "headerIdentifierGuid": "1e5c26df-07b3-4d49-b2cf-3b8d3a33d6b5",
                                        "identifier": "jqstsM2KmUadDAhOnLiyRQ==",
                                        "identifierGuid": "b02dab8e-8acd-4699-9d0c-084e9cb8b245",
                                        "supplierIdentifier": "KCnINmVKfEyqzToJD/gmQg==",
                                        "supplierGuid": "36c82928-4a65-4c7c-aacd-3a090ff82642",
                                        "pluG_UID": "zGfXh82DPEWI0p+rFxG+wg==",
                                        "pluGuid": "87d767cc-83cd-453c-88d2-9fab1711bec2",
                                        "campaignName": "3852926a-6124-4a6b-8ce4-87915fc22942",
                                        "description": "sample string 4",
                                        "cost": 5,
                                        "costDecimals": 6,
                                        "start": "2025-08-02T23:25:31.4568371",
                                        "end": "2025-08-02T23:25:31.4568371",
                                        "type": 9,
                                        "promoType": 10,
                                        "bonusItemPLUG_UID": "rlRmU7oxHUKNi7aLq1vZsw==",
                                        "bonusItemPluGuid": "536654ae-31ba-421d-8d8b-b68bab5bd9b3",
                                        "bonusPurchaseUnits": 11,
                                        "bonusReceiveUnits": 12,
                                        "updated": "2025-08-02T23:25:31.4568371",
                                        "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-08-02T23:25:31.4568371",
                                        "campaignEndDate": "2025-08-02T23:25:31.4568371",
                                        "masterPLUG_UID": "Iwarn5HJjkS9OPv7BuufZg==",
                                        "masterID": "9fab0623-c991-448e-bd38-fbfb06eb9f66",
                                        "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": "fywTyX+2MEKqIICwwpeDuQ==",
                                        "bonusMasterID": "c9132c7f-b67f-4230-aa20-80b0c29783b9",
                                        "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-08-02T23:25:31.4568371",
                                    "dealCosts": [
                                      {
                                        "$ref": "73"
                                      },
                                      {
                                        "$ref": "73"
                                      }
                                    ],
                                    "tags": [
                                      {
                                        "$id": "74",
                                        "pluG_UID": "GetKU3nhFUWIiKN777LG+g==",
                                        "pluGuid": "534aeb19-e179-4515-8888-a37befb2c6fa",
                                        "tagID": 1,
                                        "description": "sample string 1",
                                        "storeIDs": [
                                          1,
                                          2
                                        ]
                                      },
                                      {
                                        "$ref": "74"
                                      }
                                    ],
                                    "alternateProductG_UID": "yrHkAdoSckWs2q3/O4zgDg==",
                                    "alternateProduct": "01e4b1ca-12da-4572-acda-adff3b8ce00e",
                                    "productHostCode": {
                                      "$id": "75",
                                      "id": 1,
                                      "pluG_UID": "nIYDTWkavE2Oew5rAmaEPA==",
                                      "pluGuid": "4d03869c-1a69-4dbc-8e7b-0e6b0266843c",
                                      "ibaCode": "sample string 2"
                                    },
                                    "mscCat": {
                                      "$ref": "58"
                                    },
                                    "mscCom": {
                                      "$ref": "59"
                                    },
                                    "mscDep": {
                                      "$ref": "61"
                                    },
                                    "mscSubCom": {
                                      "$ref": "60"
                                    },
                                    "isUserUpdate": true,
                                    "ignoreMasterProduct": true,
                                    "priceGroupLabelRequested": true,
                                    "firstSold": "2025-08-02T23:25:31.4568371",
                                    "inventoryTracked": "2025-08-02T23:25:31.4568371",
                                    "isNormalPriceChangesCampaign": true
                                  },
                                  "supplier": {
                                    "$ref": "20"
                                  },
                                  "serviceFee": {
                                    "$id": "76",
                                    "id": 1,
                                    "description": "sample string 1",
                                    "fee": 1
                                  },
                                  "isPrimaryHost": true,
                                  "hostVendor": 47
                                },
                                {
                                  "$ref": "23"
                                }
                              ],
                              "orderCycleHeaders": [
                                {
                                  "$id": "77",
                                  "storeID": 1,
                                  "supplierIdentifier": "isaQEvbniEacs9VAe5xW+Q==",
                                  "supplierGuid": "1290c68a-e7f6-4688-9cb3-d5407b9c56f9",
                                  "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": "E8ZxCfrwlki5sdp0dGYHYQ==",
                                  "supplierGuid": "0971c613-f0fa-4896-b9b1-da7474660761",
                                  "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-08-02T23:25:31.4568371",
                                  "deliveryDate": "2025-08-02T23:25:31.4568371",
                                  "nextCutOffDate": "2025-08-02T23:25:31.4568371",
                                  "nextDeliveryDate": "2025-08-02T23:25:31.4568371",
                                  "nextDaysBuffer": 10
                                },
                                {
                                  "$ref": "78"
                                }
                              ],
                              "store": {
                                "$ref": "16"
                              },
                              "updated": "2025-08-02T23:25:31.4568371",
                              "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-08-02T23:25:31.4568371",
                                "processed": "2025-08-02T23:25:31.4568371",
                                "isProcessing": true,
                                "processedCount": 6,
                                "processingTime": 1,
                                "collectedUtc": "2025-08-02T23:25:31.4568371",
                                "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-08-02T23:25:31.4568371",
                                  "businessPillar": "sample string 3",
                                  "fileType": "sample string 4"
                                }
                              },
                              {
                                "$ref": "79"
                              }
                            ],
                            "zoneMatrix": [
                              {
                                "$id": "81",
                                "id": 1,
                                "hostIdentifier": "Gd73mUIPR0Sh7mLAeEmAvg==",
                                "hostIdentifierGuid": "99f7de19-0f42-4447-a1ee-62c0784980be",
                                "storeID": 1,
                                "departmentCode": "sample string 2",
                                "hostGuids": [
                                  "6e451850-5f04-414b-aba7-690256a4bfa8",
                                  "b1f3886e-1d61-4daf-bbc2-b5a582b3fc6f"
                                ]
                              },
                              {
                                "$ref": "81"
                              }
                            ],
                            "hostFileStoreSetting": {
                              "$ref": "18"
                            },
                            "hostStoreSettings": [
                              {
                                "$ref": "18"
                              },
                              {
                                "$ref": "18"
                              }
                            ],
                            "promotionPlacements": [
                              {
                                "$id": "82",
                                "identifier": "/M5mT0uLoUmx+yrWEGAeHg==",
                                "identifierGuid": "4f66cefc-8b4b-49a1-b1fb-2ad610601e1e",
                                "code": "sample string 2",
                                "description": "sample string 3",
                                "isAdvertised": true
                              },
                              {
                                "$ref": "82"
                              }
                            ],
                            "promoTypeGuids": [
                              "f55505c4-ae27-4ec5-b8b7-16d741b20133",
                              "442f5390-9b0d-45d2-986a-90c4141304c6"
                            ],
                            "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-08-02T23:25:31.4568371",
                          "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": "5c3288a6-4ba6-429b-9b20-07641cc79bd6",
                      "updateStore": {
                        "$id": "88",
                        "id": "ed4b45e7-5691-4663-a2d8-1e7b27cc10a4",
                        "name": "sample string 1",
                        "lastActivity": "2025-08-02T23:25:31.4568371",
                        "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-08-02T23:25:31.4568371"
                      },
                      "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": "2b4XLvcOtEee1CLxqbAM+w==",
                "identifierGuid": "2e17bed9-0ef7-47b4-9ed4-22f1a9b00cfb",
                "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-08-02T23:25:31.4568371",
                "deleted": true
              },
              "details": [
                {
                  "$id": "91",
                  "saleItemID": 1,
                  "identifier": "U7zWNoLmj0uh8q5twHU5Mg==",
                  "identifierGuid": "36d6bc53-e682-4b8f-a1f2-ae6dc0753932",
                  "saleHeaderID": 2,
                  "plu": 1,
                  "pluG_UId": "RJWlZs/yQkWYmK9HZE5h4A==",
                  "pluGuid": "66a59544-f2cf-4542-9898-af47644e61e0",
                  "accountID": "qqqzUmPwH0G4YcOvmUq8aQ==",
                  "accountIDGuid": "52b3aaaa-f063-411f-b861-c3af994abc69",
                  "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-08-02T23:25:31.4568371",
                  "bestOrExpireType": 1,
                  "providerName": "sample string 11",
                  "refundG_UID": "eDIVJf7b9kORMc1iyPfVfw==",
                  "refundGuid": "25153278-dbfe-43f6-9131-cd62c8f7d57f",
                  "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": "FZs5n1oHqkGIm0KdqTPNvw==",
                  "idempotentVoidGuid": "9f399b15-075a-41aa-889b-429da933cdbf",
                  "priceLevelIdentifier": "hyMEMPfjV0CRnInYY+NpvA==",
                  "priceLevelIdentifierGuid": "30042387-e3f7-4057-919c-89d863e369bc",
                  "productName": "sample string 23",
                  "apn": "sample string 24",
                  "unknownScans": [
                    {
                      "$id": "92",
                      "id": 1,
                      "saleDetailID": 2,
                      "storeID": 1,
                      "scanned": "2025-08-02T23:25:31.4568371",
                      "operatorG_UID": "QEA=",
                      "barcode": "sample string 4",
                      "processed": 1
                    },
                    {
                      "$ref": "92"
                    }
                  ],
                  "refund": {
                    "$id": "93",
                    "id": 1,
                    "g_UID": "S54j/VTcXUGmnekL7W/Z3g==",
                    "guid": "fd239e4b-dc54-415d-a69d-e90bed6fd9de",
                    "description": "sample string 1",
                    "dumped": true,
                    "inventoryReasonID": 1,
                    "sortOrder": 1,
                    "updated": "2025-08-02T23:25:31.4568371"
                  },
                  "modifier": {
                    "$id": "94",
                    "id": 1,
                    "setG_UID": "tiF7zuDJ4UWJe8yHUot1WA==",
                    "modifierSetGuid": "ce7b21b6-c9e0-45e1-897b-cc87528b7558",
                    "name": "sample string 2",
                    "price": 1,
                    "quantity": 1,
                    "modifierType": 1,
                    "groupNumber": 1,
                    "pageNumber": 1,
                    "controlOrder": 1,
                    "printToStation": true,
                    "pluG_UID": "qs8n60ZfWESjlPYAI4IImQ==",
                    "pluGuid": "eb27cfaa-5f46-4458-a394-f60023820899",
                    "deleted": true,
                    "g_UID": "0bxqc/uy50uaTXedGe1oyg==",
                    "guid": "736abcd1-b2fb-4be7-9a4d-779d19ed68ca",
                    "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": "+PY8Rq+sZ0SwDAbvHRoq1g==",
                  "pluGuid": "463cf6f8-acaf-4467-b00c-06ef1d1a2ad6",
                  "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-08-02T23:25:31.4568371",
                  "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-08-02T23:25:31.4568371",
                  "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": "rxU6RACEdUO1wQtpzuglSA==",
                  "pluGuid": "443a15af-8400-4375-b5c1-0b69cee82548",
                  "accountID": "NDfRySNsKEuZwJYBjwKJMQ==",
                  "accountIDGuid": "c9d13734-6c23-4b28-99c0-96018f028931",
                  "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-08-02T23:25:31.4568371",
                  "bestOrExpireType": 1,
                  "refundG_UID": "YKy9VjwURE+5Czl5JvFX/Q==",
                  "refundGuid": "56bdac60-143c-4f44-b90b-397926f157fd",
                  "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": "fiC12GayDE+xrA2KvG1/GA==",
                  "identifierGuid": "d8b5207e-b266-4f0c-b1ac-0d8abc6d7f18",
                  "id": 1,
                  "orderNo": 2,
                  "externalSaleIdentifier": "sample string 3",
                  "storeID": 4,
                  "zoneID": 5,
                  "deptNo": 6,
                  "customerIdentifier": "oMk9F39EUEqv461107eg2g==",
                  "customerIdentifierGuid": "173dc9a0-447f-4a50-afe3-ad75d3b7a0da",
                  "operatorNo": 1,
                  "operatorG_UID": "hxV3bGg4K0ylDazLe/6Jfg==",
                  "operatorGuid": "6c771587-3868-4c2b-a50d-accb7bfe897e",
                  "created": "2025-08-02T23:25:31.4568371",
                  "ordered": "2025-08-02T23:25:31.4568371",
                  "started": "2025-08-02T23:25:31.4568371",
                  "completed": "2025-08-02T23:25:31.4568371",
                  "supplied": "2025-08-02T23:25:31.4568371",
                  "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": "vVAE66C6A0ek7dDnxtuL9A==",
                      "pluGuid": "eb0450bd-baa0-4703-a4ed-d0e7c6db8bf4",
                      "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": "8zhcmRnPnEyl42RH+lLSfg==",
                      "headerIdentifierGuid": "995c38f3-cf19-4c9c-a5e3-6447fa52d27e",
                      "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": "lY62mqT7yEiEj6O9tF1jsA==",
                  "surveyGuid": "9ab68e95-fba4-48c8-848f-a3bdb45d63b0",
                  "saleHeaderGuid": "yuPkXyNbGkKN1bXqSdxONA==",
                  "saleGuid": "5fe4e3ca-5b23-421a-8dd5-b5ea49dc4e34",
                  "textResponse": "sample string 1",
                  "integerResponse": 1,
                  "g_UIDResponse": "iSq0mYW2GUibPB42Tz0d3Q==",
                  "guidResponse": "99b42a89-b685-4819-9b3c-1e364f3d1ddd",
                  "whoAnswered": 2,
                  "answeredAtUTC": "2025-08-02T23:25:31.4568371",
                  "sale": {
                    "$ref": "13"
                  },
                  "survey": {
                    "$id": "103",
                    "g_UID": "VcwZnDAXlkWYrerLWy7iQA==",
                    "guid": "9c19cc55-1730-4596-98ad-eacb5b2ee240",
                    "name": "sample string 1",
                    "storeID": 2,
                    "zoneID": 1,
                    "checkoutFormG_UID": "0rwJUgiN/0yLoK7hI4DYQQ==",
                    "checkoutFormGuid": "5209bcd2-8d08-4cff-8ba0-aee12380d841",
                    "displayToWho": 3,
                    "displayWhen": 4,
                    "start": "2025-08-02T23:25:31.4568371",
                    "end": "2025-08-02T23:25:31.4568371",
                    "deleted": true,
                    "updated": "2025-08-02T23:25:31.4568371",
                    "possibleIntegerResponses": [
                      1,
                      2
                    ],
                    "possibleTextResponses": [
                      "sample string 1",
                      "sample string 2"
                    ],
                    "possibleGuidResponses": [
                      "52697eca-8202-44a3-b7e2-244822479a06",
                      "678cea94-8f02-43f0-99e7-38918d808ee2"
                    ],
                    "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": "/pc43pbq4EO/YeeoeJCScw==",
              "accountIdentifier": "de3897fe-ea96-43e0-bf61-e7a878909273",
              "accountName": "sample string 42",
              "customerOrderIdentifier": "eymW3PgQ1EmnjCMZ+lxm7w==",
              "customerOrderIdentifierGuid": "dc96297b-10f8-49d4-a78c-2319fa5c66ef",
              "priceLevelName": "sample string 43",
              "revision": 44,
              "ingressId": "sample string 45"
            },
            "metadata": {
              "$id": "104",
              "id": 1,
              "paymentID": 2,
              "paymentIdentifier": "uozRrV3ifkikkB2116+UNA==",
              "paymentIdentifierGuid": "add18cba-e25d-487e-a490-1db5d7af9434",
              "identifier": "yChycHK/RUqd4tNkMU631g==",
              "identifierGuid": "707228c8-bf72-4a45-9de2-d364314eb7d6",
              "metadata": "sample string 3",
              "signatureImage": "QEA=",
              "itemIdentifier": "+O2DkoFdSUSL0rfRHtda8A==",
              "itemIdentifierGuid": "9283edf8-5d81-4449-8bd2-b7d11ed75af0"
            }
          },
          {
            "$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": "tfp6Iy6UlEWGrQ8oXHMSGA==",
        "customerIdentifierGuid": "237afab5-942e-4594-86ad-0f285c731218",
        "voucherName": "sample string 2",
        "count": 3,
        "storeID": 4,
        "barcode": "sample string 5",
        "redeemCount": 6,
        "issueCount": 7,
        "storeSalePaymentID": 1,
        "idempotentID": "JC1OK/4aVkujBblutUMAhw==",
        "idempotentGuid": "2b4e2d24-1afe-4b56-a305-b96eb5430087",
        "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/�[�L��5xl/workbook.xml �(�����0D�H��s�@�hҦHo�[�C�#��1F �K�3;�v�Y۱�zD9)W�s�MI�c$u'm@�ݠ��>H�"z�V���I�$Wba�^h�0��X�X���^N+JR�ps< T-͞fe0�����"��*������j�RO1�ν�q��-E���R��,��\t��wXE���PK/�[����	�[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
/�[�$T''_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="Rad76e8d1c3744ed3" /></Relationships>PK/�[F��[m
xl/worksheets/sheet1.xml �(���mS�L��
��O�{��:��j��X�j�o�0�$Q��,!'g��
r�g�{�s�C�՟�}�)+�y�D<fQ/[���|y7���6z5�?���r�eU�˗�I1�fU�p�$�x�-Fe�?dK��4/�ʿ-�|:����|��ȖU����G�_����hS�%�ʇ"M֗��ߔZ���h؟�}�����l:�R~�^B�K����f�=�{�{�[���Wo.'����IK|�^���M����Ο/��ݬ�)��g�ߗ�߽�|�]�[����>�'�l��K���Ǐe�/n7�������;�1Jj�88w�/�~��3�����Z��[���g�V>c&�����_m�����(&�N[k�_o��s3[�9r]�����uR)g5p뻭�����=��s��a?g�_Ak�vi�������9�XY����W���||�>�2�	c%7�tT��=�t�8g�
Õ����r#�`B���FwT�c�A^C�Ul�d>	��&�Fn�ĉ�=���Y����HBI#��вc7a7��t�hf��hHB�$�Xj?�v�=E�]&�f��JB�cF2�;��P3)�X�~�Z+]�p,���=&ṳT������_���~��&��w$Q"0)ؑ9�����2V~�:������@@R�H
�8X�O�2�Ua�����"�g�׾7��" )j$����B�c(�d@R���l:�S�٨
�E��+����W�Y��R�xT�S�Ӑ����w�x�V�ⴭ��⬭Mś�B6�m�j*޶���h+LSq�Vئ�][ᚊ���P��		J�!A�~$$(�O�{EHP��		�����l��WB���FІҽ!$(�[B���NHP�?	J�'!A�D�7%�P�)Ո(�hE@	�D3
qJ��@�DC
rJ��@)�DS�:����d�z���DL���.�6唐�=9�_�3Ž�����%�h'/���Qfx��)KY�-���+�#V����}w���h�HH�B�	b銐�m���Ю�j���T����v �b%D�����]�A����IH�xI	
/D���NO_�[z֮��"�Q�5�	
WDc*<�.
"'�<�ٌ�d��6�F��8��*+�G��{ÿPK/�[��3��Pxl/_rels/workbook.xml.rels �(���KN�0@�b͞��4I��ݰa[z�'Q۲]�gc���V���X��j4��'�|�l�o�L^�����A-�����9�����g�'�I\Ѿ�1��ԋ�3cQǎ2n�!�n������ԥ�e�����F�I��u�L_�;�19r7`����5�Y�y���-rQ��IJj�z75.3�_��<�Q�i���^�uճ��2#w(����N��r��l��(�\V�B��j��/v_PK/�[Ѓ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/�[Dk�O^gxl/sharedStrings.xml �(��WMo�6��|^ْ,Qrg��ͦ�7F��R�@���X}U�ӸE�{G���&-�dq�#g�83�Ͽ���
��e1�Cg`A���/����
,!i�hV0l@���BH�b:XIY��F"YANŰ��@$-�J�/#Q�@�X�<y�CF9���J�u!�� X�����w�������|$/�G�hk�^Y�P�3($O9ԧwk�Y��k������!��e
��+Z�f��JxL�Xk�2���;Jc��q|�[�c�f��9��H<���W���$מ/3�,�������[��M#�1��B���䠅�������c�������sL�w,��+Ƒ{�
��S	n���y�1dG��X~&g?'��FHȇW	�y���i�c����ئ��.I��!���4�2�~Wc���~�����0�F���	��0	l�1�^y��O\<>����α�f���	�=�{'p-�I��p�2�q�$�#o�loLI8a.��[rO�P�դ����hA_�ΰMgbx;��dþ����~���ƚZ��j����y
r"�y%��ㆰX���c�
���A�h/�%v���#�mőӌڰ�����4��s9G[MA��w�@]�"��l\M�&��~�Pw�e�~��&�w���`4��Z�̧3/8��|�ݒ簨h�Xg�a?;�G��1v���;�������;9N��_�Ц�"c�i�Ş�� Ħ%���c;!,�|F�����͉��<�E�����x���ÜK.3R�}k\�Z�zdo�t���� ������`Y��糫r!��{�u�"bf��=�9
:/�ٙ�v������tLɸ��>Xu\�8+cn�%۸�_�rӟ<Z�Ed컓0
m7)�@���h䅡1�Q��V���zN���{�XЯ�S�O@EY����wu�����Pnh&7sD���I�;�3]���4ΰ��`�u^���~�L���
	��v@".�xLB;?�<�ј���h�$�����Ԕ��9����x�H��Ӎ�E_�jr������la2�`��=G��y���ߓ�-��^wMk&vu�3���>��m7�v,�i��[�y/���H�=�F�O��PK-/�[�L��5xl/workbook.xmlPK-/�[����	�[Content_Types].xmlPK-
/�[�$T''V_rels/.relsPK-/�[F��[m
�xl/worksheets/sheet1.xmlPK-/�[��3��P�xl/_rels/workbook.xml.relsPK-/�[Ѓc'2E
�	xl/styles.xmlPK-/�[Dk�O^g@xl/sharedStrings.xmlPK��

application/vnd.ms-excel

Sample:
PK/�[IqV�5xl/workbook.xml �(�����0��&�C��
F
)��x��}�E�O�5��B	$޼���~;r������G�2��.�	Au��`�i�Z�!Lҿ�m[Uci�FDr<^�����:�/�X�<BCb�ÂҠ/�;����p�('c�;�L,!��]D�h�y	8�ν���3��ix$���j�鹩*��7����PK/�[����	�[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
/�[��'�''_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="Re8ecc9c8dc114269" /></Relationships>PK/�[F��[m
xl/worksheets/sheet1.xml �(���mS�L��
��O�{��:��j��X�j�o�0�$Q��,!'g��
r�g�{�s�C�՟�}�)+�y�D<fQ/[���|y7���6z5�?���r�eU�˗�I1�fU�p�$�x�-Fe�?dK��4/�ʿ-�|:����|��ȖU����G�_����hS�%�ʇ"M֗��ߔZ���h؟�}�����l:�R~�^B�K����f�=�{�{�[���Wo.'����IK|�^���M����Ο/��ݬ�)��g�ߗ�߽�|�]�[����>�'�l��K���Ǐe�/n7�������;�1Jj�88w�/�~��3�����Z��[���g�V>c&�����_m�����(&�N[k�_o��s3[�9r]�����uR)g5p뻭�����=��s��a?g�_Ak�vi�������9�XY����W���||�>�2�	c%7�tT��=�t�8g�
Õ����r#�`B���FwT�c�A^C�Ul�d>	��&�Fn�ĉ�=���Y����HBI#��вc7a7��t�hf��hHB�$�Xj?�v�=E�]&�f��JB�cF2�;��P3)�X�~�Z+]�p,���=&ṳT������_���~��&��w$Q"0)ؑ9�����2V~�:������@@R�H
�8X�O�2�Ua�����"�g�׾7��" )j$����B�c(�d@R���l:�S�٨
�E��+����W�Y��R�xT�S�Ӑ����w�x�V�ⴭ��⬭Mś�B6�m�j*޶���h+LSq�Vئ�][ᚊ���P��		J�!A�~$$(�O�{EHP��		�����l��WB���FІҽ!$(�[B���NHP�?	J�'!A�D�7%�P�)Ո(�hE@	�D3
qJ��@�DC
rJ��@)�DS�:����d�z���DL���.�6唐�=9�_�3Ž�����%�h'/���Qfx��)KY�-���+�#V����}w���h�HH�B�	b銐�m���Ю�j���T����v �b%D�����]�A����IH�xI	
/D���NO_�[z֮��"�Q�5�	
WDc*<�.
"'�<�ٌ�d��6�F��8��*+�G��{ÿPK/�[B��Pxl/_rels/workbook.xml.rels �(���KN�0@�b͞8�����vÆm���8��ؑ�=�����ĂMW��==i���c��B>��6��r`d�ӽm8G��n{�c�]?�Vlh��q�pTG#��MdS�8?bL�o���-�"ϗ��p�d��D�!:czE�N�G��0u�:�숾���O)�kXd�
�I7p(Q�������Z���¯�w>�!S���REYqW�=���ӥ�N��L
Q�B���������o�b�PK/�[Ѓ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/�[Dk�O^gxl/sharedStrings.xml �(��WMo�6��|^ْ,Qrg��ͦ�7F��R�@���X}U�ӸE�{G���&-�dq�#g�83�Ͽ���
��e1�Cg`A���/����
,!i�hV0l@���BH�b:XIY��F"YANŰ��@$-�J�/#Q�@�X�<y�CF9���J�u!�� X�����w�������|$/�G�hk�^Y�P�3($O9ԧwk�Y��k������!��e
��+Z�f��JxL�Xk�2���;Jc��q|�[�c�f��9��H<���W���$מ/3�,�������[��M#�1��B���䠅�������c�������sL�w,��+Ƒ{�
��S	n���y�1dG��X~&g?'��FHȇW	�y���i�c����ئ��.I��!���4�2�~Wc���~�����0�F���	��0	l�1�^y��O\<>����α�f���	�=�{'p-�I��p�2�q�$�#o�loLI8a.��[rO�P�դ����hA_�ΰMgbx;��dþ����~���ƚZ��j����y
r"�y%��ㆰX���c�
���A�h/�%v���#�mőӌڰ�����4��s9G[MA��w�@]�"��l\M�&��~�Pw�e�~��&�w���`4��Z�̧3/8��|�ݒ簨h�Xg�a?;�G��1v���;�������;9N��_�Ц�"c�i�Ş�� Ħ%���c;!,�|F�����͉��<�E�����x���ÜK.3R�}k\�Z�zdo�t���� ������`Y��糫r!��{�u�"bf��=�9
:/�ٙ�v������tLɸ��>Xu\�8+cn�%۸�_�rӟ<Z�Ed컓0
m7)�@���h䅡1�Q��V���zN���{�XЯ�S�O@EY����wu�����Pnh&7sD���I�;�3]���4ΰ��`�u^���~�L���
	��v@".�xLB;?�<�ј���h�$�����Ԕ��9����x�H��Ӎ�E_�jr������la2�`��=G��y���ߓ�-��^wMk&vu�3���>��m7�v,�i��[�y/���H�=�F�O��PK-/�[IqV�5xl/workbook.xmlPK-/�[����	��[Content_Types].xmlPK-
/�[��'�''U_rels/.relsPK-/�[F��[m
�xl/worksheets/sheet1.xmlPK-/�[B��P�xl/_rels/workbook.xml.relsPK-/�[Ѓc'2E
�	xl/styles.xmlPK-/�[Dk�O^g?xl/sharedStrings.xmlPK��