From fdbfeb484e3454faff2f6504473b7331ceea1d32 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 24 Aug 2023 14:53:38 +0200 Subject: [PATCH 01/65] changes to validateVoucher --- .gitignore | 1 + packages/sdk/src/types/ApplicableTo.ts | 4 ++ packages/sdk/src/types/Customers.ts | 1 + packages/sdk/src/types/DiscountVoucher.ts | 15 ++++++ packages/sdk/src/types/Validations.ts | 64 ++++++++++++++++------- 5 files changed, 65 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index fb4d6f68e..cc0cfa613 100644 --- a/.gitignore +++ b/.gitignore @@ -107,3 +107,4 @@ dist # TernJS port file .tern-port +.idea/* diff --git a/packages/sdk/src/types/ApplicableTo.ts b/packages/sdk/src/types/ApplicableTo.ts index b845013c6..8ad7ecaef 100644 --- a/packages/sdk/src/types/ApplicableTo.ts +++ b/packages/sdk/src/types/ApplicableTo.ts @@ -4,9 +4,13 @@ export interface ApplicableTo { object: 'product' | 'sku' | 'products_collection' id: string source_id?: string + product_id?: string + product_source_id?: string strict: boolean price?: number price_formula?: number + quantity_limit?: number + aggregated_quantity_limit?: number effect: ApplicableToEffect } diff --git a/packages/sdk/src/types/Customers.ts b/packages/sdk/src/types/Customers.ts index 039833587..5b2cb3f43 100644 --- a/packages/sdk/src/types/Customers.ts +++ b/packages/sdk/src/types/Customers.ts @@ -82,6 +82,7 @@ export interface CustomerRequest { postal_code?: string } phone?: string + birthdate?: string } export interface CustomersCommonListRequest { diff --git a/packages/sdk/src/types/DiscountVoucher.ts b/packages/sdk/src/types/DiscountVoucher.ts index 2c4560ddb..21d2f3fc4 100644 --- a/packages/sdk/src/types/DiscountVoucher.ts +++ b/packages/sdk/src/types/DiscountVoucher.ts @@ -40,6 +40,21 @@ interface SimpleProductDiscountUnit { name: string } +export interface DiscountUnitMultiple { + type: DiscountVouchersTypesEnum.UNIT + effect: 'ADD_MANY_ITEMS' + units: DiscountUnitMultipleOneUnit[] +} + +interface DiscountUnitMultipleOneUnit { + type: DiscountVouchersTypesEnum.UNIT + effect: 'ADD_NEW_ITEMS' | 'ADD_MISSING_ITEMS' + unit_off: number + unit_type?: string + product?: SimpleProductDiscountUnit + sku?: SimpleSkuDiscountUnit +} + export interface DiscountUnit { type?: DiscountVouchersTypesEnum.UNIT unit_off?: number diff --git a/packages/sdk/src/types/Validations.ts b/packages/sdk/src/types/Validations.ts index e9175a310..f7d9e4d17 100644 --- a/packages/sdk/src/types/Validations.ts +++ b/packages/sdk/src/types/Validations.ts @@ -1,5 +1,5 @@ -import { DiscountAmount, DiscountPercent, DiscountUnit, DiscountFixed } from './DiscountVoucher' -import { CustomersCreateBody } from './Customers' +import { DiscountAmount, DiscountPercent, DiscountUnit, DiscountFixed, DiscountUnitMultiple } from './DiscountVoucher' +import { CustomerRequest, CustomersCreateBody } from './Customers' import { StackableOptions, StackableRedeemableParams, StackableRedeemableResponse } from './Stackable' import { ValidationSessionParams, ValidationSessionResponse } from './ValidateSession' import { ApplicableToResultList } from './ApplicableTo' @@ -9,19 +9,15 @@ import { OrdersItem, OrdersCreate, OrdersCreateResponse } from './Orders' import { PromotionsValidateParams } from './Promotions' export interface ValidationsValidateVoucherParams { - customer?: { - id?: string - source_id?: string - name?: string - email?: string - description?: string - metadata?: Record - } + customer?: CustomerRequest order?: { id?: string source_id?: string + status?: 'CREATED' | 'PAID' | 'CANCELED' | 'FULFILLED' amount?: number items?: OrdersItem[] + customer?: CustomerRequest + referrer?: CustomerRequest metadata?: Record } gift?: { @@ -29,38 +25,55 @@ export interface ValidationsValidateVoucherParams { } reward?: { id: string + points?: number } session?: ValidationSessionParams } export interface ValidationsValidateVoucherResponse { - applicable_to?: ApplicableToResultList - inapplicable_to?: ApplicableToResultList + applicable_to: ApplicableToResultList + inapplicable_to: ApplicableToResultList campaign?: string campaign_id?: string - metadata?: Record - code?: string + metadata: Record + code: string valid?: boolean - discount?: DiscountAmount | DiscountUnit | DiscountPercent | DiscountFixed + discount?: DiscountAmount | DiscountUnit | DiscountUnitMultiple | DiscountPercent | DiscountFixed gift?: { amount: number balance: number + effect?: 'APPLY_TO_ORDER' | 'APPLY_TO_ITEMS' } loyalty?: { points_cost: number } + reward?: { + id: string + assignment_id: string + points: number + } order?: { + id?: string + source_id?: string + created_at?: string + updated_at?: string + status?: 'CREATED' | 'PAID' | 'PROCESSING' | 'CANCELED' | 'FULFILLED' amount: number + initial_amount?: number discount_amount: number - total_discount_amount: number - total_amount: number applied_discount_amount?: number - total_applied_discount_amount?: number - items?: OrdersItem[] - initial_amount?: number items_discount_amount?: number + total_discount_amount?: number + total_amount: number items_applied_discount_amount?: number + total_applied_discount_amount?: number + items?: OrdersItem[] metadata?: Record + customer?: CustomerRequest + customer_id?: string + referrer_id: string | null + object: 'order' + redemptions?: OrderObjectRedemptions } session?: ValidationSessionParams start_date?: string @@ -69,6 +82,17 @@ export interface ValidationsValidateVoucherResponse { error?: ValidationError } +type OrderObjectRedemptions = Record< + string, + { + date?: string + related_object_type?: 'voucher' | 'promotion_tier' + related_object_id?: string + related_object_parent_id?: string + stacked?: string[] + } +> + export interface ValidationsValidateStackableParams { options?: StackableOptions redeemables: StackableRedeemableParams[] From 4ded331461e7bb8596328d614d2328bcdfa528cb Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 24 Aug 2023 16:54:53 +0200 Subject: [PATCH 02/65] simple validations tests --- package.json | 1 + packages/sdk/.env.example | 2 + packages/sdk/package.json | 5 +- packages/sdk/src/Validations.ts | 9 ++- packages/sdk/src/types/Validations.ts | 28 +++++++-- packages/sdk/test/__mocks__/axios.ts | 4 -- packages/sdk/test/client.ts | 6 ++ packages/sdk/test/customers.spec.ts | 22 ------- packages/sdk/test/fixtures.ts | 11 ---- .../generateCampaignWithOnePromotionTier.ts | 23 ++++++++ .../sdk/test/utils/generatePromotionTier.ts | 9 +++ .../sdk/test/utils/generateRandomString.ts | 5 ++ packages/sdk/test/utils/generateVoucher.ts | 15 +++++ packages/sdk/test/validations.spec.ts | 57 +++++++++++++++++++ yarn.lock | 23 ++++---- 15 files changed, 160 insertions(+), 60 deletions(-) create mode 100644 packages/sdk/.env.example delete mode 100644 packages/sdk/test/__mocks__/axios.ts create mode 100644 packages/sdk/test/client.ts delete mode 100644 packages/sdk/test/customers.spec.ts delete mode 100644 packages/sdk/test/fixtures.ts create mode 100644 packages/sdk/test/utils/generateCampaignWithOnePromotionTier.ts create mode 100644 packages/sdk/test/utils/generatePromotionTier.ts create mode 100644 packages/sdk/test/utils/generateRandomString.ts create mode 100644 packages/sdk/test/utils/generateVoucher.ts create mode 100644 packages/sdk/test/validations.spec.ts diff --git a/package.json b/package.json index 49d4412bd..771d3fd6e 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "pkg:release": "changeset publish" }, "devDependencies": { + "dotenv": "16.3.1", "@changesets/changelog-github": "0.2.7", "@changesets/cli": "2.16.0", "@rollup/plugin-replace": "2.3.4", diff --git a/packages/sdk/.env.example b/packages/sdk/.env.example new file mode 100644 index 000000000..669773c1d --- /dev/null +++ b/packages/sdk/.env.example @@ -0,0 +1,2 @@ +APPLICATION_ID= +SECRET_KEY= diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 9409d3d58..b46515438 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -27,7 +27,8 @@ "scripts": { "start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean --target node --name VoucherifySDK --format esm,umd", "build": "tsdx build --tsconfig tsconfig.build.json --target node --name VoucherifySDK --format esm,umd", - "test": "tsdx test", + "test": "npm run build;tsdx test", + "test:without-build": "tsdx test", "lint": "yarn lint:ts && yarn lint:eslint", "lint:ts": "tsc --noEmit -p ./tsconfig.build.json", "lint:eslint": "eslint './src/**/*.{ts,tsx,js,d.ts}'", @@ -36,7 +37,7 @@ "prepublish": "yarn build" }, "dependencies": { - "axios": "0.21.4", + "axios": "0.27.2", "qs": "6.9.7" }, "devDependencies": { diff --git a/packages/sdk/src/Validations.ts b/packages/sdk/src/Validations.ts index 3a2a9e7eb..ddce285a0 100644 --- a/packages/sdk/src/Validations.ts +++ b/packages/sdk/src/Validations.ts @@ -1,6 +1,6 @@ import * as T from './types/Validations' -import { encode, isObject } from './helpers' +import { encode } from './helpers' import type { RequestController } from './RequestController' import type { Promotions } from './Promotions' @@ -15,11 +15,10 @@ export class Validations { } public validate(code: string | T.ValidationsValidateCode, context: T.ValidationsValidateContext = {}) { - if (isObject(code)) { - return this.promotions.validate(code) + if (typeof code === 'string') { + return this.validateVoucher(code, context) } - - return this.validateVoucher(code, context) + return this.promotions.validate(code) } /** diff --git a/packages/sdk/src/types/Validations.ts b/packages/sdk/src/types/Validations.ts index f7d9e4d17..8cf39ec3b 100644 --- a/packages/sdk/src/types/Validations.ts +++ b/packages/sdk/src/types/Validations.ts @@ -3,7 +3,6 @@ import { CustomerRequest, CustomersCreateBody } from './Customers' import { StackableOptions, StackableRedeemableParams, StackableRedeemableResponse } from './Stackable' import { ValidationSessionParams, ValidationSessionResponse } from './ValidateSession' import { ApplicableToResultList } from './ApplicableTo' -import { ValidationError } from './ValidationError' import { OrdersItem, OrdersCreate, OrdersCreateResponse } from './Orders' import { PromotionsValidateParams } from './Promotions' @@ -30,14 +29,16 @@ export interface ValidationsValidateVoucherParams { session?: ValidationSessionParams } -export interface ValidationsValidateVoucherResponse { +export type ValidationsValidateVoucherResponse = ResponseValidateVoucherTrue | ResponseValidateVoucherFalse + +export interface ResponseValidateVoucherTrue { + valid: true + code: string applicable_to: ApplicableToResultList inapplicable_to: ApplicableToResultList campaign?: string campaign_id?: string metadata: Record - code: string - valid?: boolean discount?: DiscountAmount | DiscountUnit | DiscountUnitMultiple | DiscountPercent | DiscountFixed gift?: { amount: number @@ -79,7 +80,24 @@ export interface ValidationsValidateVoucherResponse { start_date?: string expiration_date?: string tracking_id: string - error?: ValidationError +} + +export interface ResponseValidateVoucherFalse { + valid: false + code: string + error?: { + code: number + key: string + message: string + details: string + request_id?: string + resource_id?: string + resource_type?: string + } + tracking_id?: string + customer_id?: string + metadata?: Record + reason?: string } type OrderObjectRedemptions = Record< diff --git a/packages/sdk/test/__mocks__/axios.ts b/packages/sdk/test/__mocks__/axios.ts deleted file mode 100644 index be2dee65f..000000000 --- a/packages/sdk/test/__mocks__/axios.ts +++ /dev/null @@ -1,4 +0,0 @@ -const axios = jest.genMockFromModule('axios') as jest.Mocked -axios.create = jest.fn(() => axios) - -export default axios diff --git a/packages/sdk/test/client.ts b/packages/sdk/test/client.ts new file mode 100644 index 000000000..94e87aa43 --- /dev/null +++ b/packages/sdk/test/client.ts @@ -0,0 +1,6 @@ +import { VoucherifyServerSide } from '../../sdk/src' +import 'dotenv/config' +export const voucherifyClient = VoucherifyServerSide({ + applicationId: process.env.APPLICATION_ID as string, + secretKey: process.env.SECRET_KEY as string, +}) diff --git a/packages/sdk/test/customers.spec.ts b/packages/sdk/test/customers.spec.ts deleted file mode 100644 index 09d0ecbbb..000000000 --- a/packages/sdk/test/customers.spec.ts +++ /dev/null @@ -1,22 +0,0 @@ -import axiosOrg, { AxiosResponse } from 'axios' -import { VoucherifyServerSide } from '../src' - -const axios = axiosOrg as jest.Mocked - -describe('Customers API', () => { - const voucherify = VoucherifyServerSide({ - applicationId: 'node-test-app-id', - secretKey: 'node-test-secret-key', - }) - - it('should create a customer', async () => { - const customer = { name: 'Customer name' } - - axios.post.mockResolvedValueOnce({ data: customer, status: 200 } as AxiosResponse) - - const response = await voucherify.customers.create(customer) - - expect(response).toBe(customer) - expect(axios.post).toHaveBeenCalledWith('/customers', customer, { params: undefined }) - }) -}) diff --git a/packages/sdk/test/fixtures.ts b/packages/sdk/test/fixtures.ts deleted file mode 100644 index cb943dc4d..000000000 --- a/packages/sdk/test/fixtures.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { environment } from '../src/helpers' - -export const CHANNEL_SERVER_SIDE = `${environment()}-SDK-v${__VERSION__}` -export const CHANNEL_CLIENT_SIDE = `${environment()}-ClientSide-SDK-v${__VERSION__}` - -export const SERVER_SIDE_HEADERS = { - 'X-App-Id': 'node-test-app-id', - 'X-App-Token': 'node-test-secret-key', - 'X-Voucherify-Channel': CHANNEL_SERVER_SIDE, - 'Content-Type': 'application/json', -} diff --git a/packages/sdk/test/utils/generateCampaignWithOnePromotionTier.ts b/packages/sdk/test/utils/generateCampaignWithOnePromotionTier.ts new file mode 100644 index 000000000..3781b5c1f --- /dev/null +++ b/packages/sdk/test/utils/generateCampaignWithOnePromotionTier.ts @@ -0,0 +1,23 @@ +import { voucherifyClient as client } from '../client' +import { generateRandomString } from './generateRandomString' + +export const generateCampaignWithOnePromotionTier = async () => { + return await client.promotions.create({ + name: generateRandomString(), + campaign_type: 'PROMOTION', + promotion: { + tiers: [ + { + name: generateRandomString(60), + action: { + discount: { + // @ts-ignore + type: 'AMOUNT', + amount_off: 1000, + }, + }, + }, + ], + }, + }) +} diff --git a/packages/sdk/test/utils/generatePromotionTier.ts b/packages/sdk/test/utils/generatePromotionTier.ts new file mode 100644 index 000000000..4452f57a4 --- /dev/null +++ b/packages/sdk/test/utils/generatePromotionTier.ts @@ -0,0 +1,9 @@ +import { generateCampaignWithOnePromotionTier } from './generateCampaignWithOnePromotionTier' + +export const generatePromotionTier = async () => { + const campaign = await generateCampaignWithOnePromotionTier() + if (!campaign.promotion.tiers?.[0]) { + throw new Error('Could not create promotion') + } + return campaign.promotion.tiers[0] +} diff --git a/packages/sdk/test/utils/generateRandomString.ts b/packages/sdk/test/utils/generateRandomString.ts new file mode 100644 index 000000000..2046ba6cc --- /dev/null +++ b/packages/sdk/test/utils/generateRandomString.ts @@ -0,0 +1,5 @@ +export const generateRandomString = (len = 40) => { + return Array(len + 1) + .join((Math.random().toString(36) + '00000000000000000').slice(2, 18)) + .slice(0, len) +} diff --git a/packages/sdk/test/utils/generateVoucher.ts b/packages/sdk/test/utils/generateVoucher.ts new file mode 100644 index 000000000..c8d89f1a9 --- /dev/null +++ b/packages/sdk/test/utils/generateVoucher.ts @@ -0,0 +1,15 @@ +import { voucherifyClient as client } from '../client' +import { DiscountVouchersTypesEnum } from '@voucherify/sdk' + +export const generateVoucher = async () => + await client.vouchers.create({ + type: 'DISCOUNT_VOUCHER', + discount: { + amount_off: 2000, + type: DiscountVouchersTypesEnum.AMOUNT, + }, + redemption: { + quantity: 1, + }, + metadata: {}, + }) diff --git a/packages/sdk/test/validations.spec.ts b/packages/sdk/test/validations.spec.ts new file mode 100644 index 000000000..3c71f20d8 --- /dev/null +++ b/packages/sdk/test/validations.spec.ts @@ -0,0 +1,57 @@ +import { voucherifyClient as client } from './client' +import { generateVoucher } from './utils/generateVoucher' +import { generateRandomString } from './utils/generateRandomString' +import { generatePromotionTier } from './utils/generatePromotionTier' + +describe('Validations API', () => { + it('while validating not existing code, should get error message', async () => { + const response = await client.validations.validateVoucher(generateRandomString(55)) + if (!response.valid) { + expect(typeof response.reason).toBe('string') + expect(typeof response.error?.message).toBe('string') + expect(typeof response.error?.key).toBe('string') + expect(typeof response.error?.code).toBe('number') + } + }) + + it('should validate voucher without campaign', async () => { + const code = (await generateVoucher()).code + const response = await client.validations.validateVoucher(code) + if (response.valid) { + expect(response.discount?.type).toEqual('AMOUNT') + if (response.discount?.type === 'AMOUNT') { + expect(typeof response.discount.amount_off).toEqual('number') + } + } + }) + + it('should validate multiple vouchers without campaign', async () => { + const response = await client.validations.validateStackable({ + redeemables: [ + { object: 'voucher', id: (await generateVoucher()).code }, + { object: 'voucher', id: (await generateVoucher()).code }, + ], + }) + expect(response).toBeTruthy() + expect(response.redeemables).toBeInstanceOf(Array) + }) + + it('should validate multiple promotion tiers', async () => { + const response = await client.validations.validateStackable({ + redeemables: [ + { object: 'promotion_tier', id: (await generatePromotionTier()).id }, + { object: 'promotion_tier', id: (await generatePromotionTier()).id }, + { object: 'promotion_tier', id: (await generatePromotionTier()).id }, + ], + }) + expect(response).toBeTruthy() + expect(response.redeemables).toBeInstanceOf(Array) + if (Array.isArray(response.redeemables)) { + for (const redeemable of response.redeemables) { + if (redeemable.object === 'promotion_tier') { + // + } + } + } + }) +}) diff --git a/yarn.lock b/yarn.lock index 352a36df1..8794ef5be 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3145,12 +3145,13 @@ axe-core@^4.0.2: resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.2.1.tgz#2e50bcf10ee5b819014f6e342e41e45096239e34" integrity sha512-evY7DN8qSIbsW2H/TWQ1bX3sXN1d4MNb5Vb4n7BzPuCwRHdkZ1H2eNLuSh73EoQqkGKUtju2G2HCcjCfhvZIAA== -axios@0.21.4: - version "0.21.4" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" - integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== +axios@0.27.2: + version "0.27.2" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" + integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== dependencies: - follow-redirects "^1.14.0" + follow-redirects "^1.14.9" + form-data "^4.0.0" axios@^1.0.0: version "1.2.0" @@ -4362,6 +4363,11 @@ dot-prop@^6.0.1: dependencies: is-obj "^2.0.0" +dotenv@16.3.1: + version "16.3.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e" + integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== + dotenv@^8.1.0: version "8.6.0" resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b" @@ -5177,12 +5183,7 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469" integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== -follow-redirects@^1.14.0: - version "1.14.7" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.7.tgz#2004c02eb9436eee9a21446a6477debf17e81685" - integrity sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ== - -follow-redirects@^1.15.0: +follow-redirects@^1.14.9, follow-redirects@^1.15.0: version "1.15.2" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== From 6b57f8b7ef3c5762d236e013b591a28c51f36786 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 25 Aug 2023 11:55:56 +0200 Subject: [PATCH 03/65] changelog --- .changeset/tidy-comics-hear.md | 26 ++++++++++++++++++++++++++ package.json | 2 +- packages/sdk/.env.example | 1 + packages/sdk/test/client.ts | 1 + 4 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 .changeset/tidy-comics-hear.md diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md new file mode 100644 index 000000000..ecb80b402 --- /dev/null +++ b/.changeset/tidy-comics-hear.md @@ -0,0 +1,26 @@ +--- +'@voucherify/sdk': major +--- + +To run tests you need to copy packages/sdk/.env.example to packages/sdk/.env and fill the file with your credentials. +Tests uses REAL calls to Voucherify. You may reach the limit of your account if you are using sandbox account. + +**Scripts changes:** +- npm run test (build sdk and run tests) +- npm run test:without-build (run tests) + +**Breaking changes:** +- Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` + +**Example of usage (related to breaking changes):** +```js +const validation = await client.validations.validateVoucher('test') +//You must to check `valid` first! +if(validation.valid){ + return { success: true, order: validation.order } +}else{ + return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } +} +``` + +- Required version of node was changed from `14.15` to `16.20`. diff --git a/package.json b/package.json index 771d3fd6e..7c8c70fbe 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "engineStrict": true, "engines": { - "node": "14.15" + "node": "16.20" }, "repository": { "type": "git", diff --git a/packages/sdk/.env.example b/packages/sdk/.env.example index 669773c1d..471eb7c2c 100644 --- a/packages/sdk/.env.example +++ b/packages/sdk/.env.example @@ -1,2 +1,3 @@ APPLICATION_ID= SECRET_KEY= +API_URL=https://api.voucherify.io diff --git a/packages/sdk/test/client.ts b/packages/sdk/test/client.ts index 94e87aa43..fc4d34d9b 100644 --- a/packages/sdk/test/client.ts +++ b/packages/sdk/test/client.ts @@ -3,4 +3,5 @@ import 'dotenv/config' export const voucherifyClient = VoucherifyServerSide({ applicationId: process.env.APPLICATION_ID as string, secretKey: process.env.SECRET_KEY as string, + apiUrl: (process.env.API_URL as string) || `https://api.voucherify.io`, }) From 88a7a89152da164d85d2b893ab48f0768d88b593 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 25 Aug 2023 11:58:02 +0200 Subject: [PATCH 04/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index ecb80b402..2701147cb 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -11,6 +11,7 @@ Tests uses REAL calls to Voucherify. You may reach the limit of your account if **Breaking changes:** - Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` +- Required version of node was changed from `14.15` to `16.20`. **Example of usage (related to breaking changes):** ```js @@ -23,4 +24,3 @@ if(validation.valid){ } ``` -- Required version of node was changed from `14.15` to `16.20`. From f869c7992c441da3123fb536ff93e7a916ff2cd0 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 25 Aug 2023 12:01:31 +0200 Subject: [PATCH 05/65] node 16.20 --- .github/workflows/docs.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .nvmrc | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ec2cfe317..16c84a97b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,10 +12,10 @@ jobs: - name: Check out Git repository uses: actions/checkout@v2 - - name: Use Node.js 14.15 + - name: Use Node.js 16.20 uses: actions/setup-node@v2 with: - node-version: 14.15 + node-version: 16.20 - name: Cache Yarn Dependencies uses: c-hive/gha-yarn-cache@v1 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 73d087cb0..ab5af44b5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,10 +12,10 @@ jobs: - name: Check out Git repository uses: actions/checkout@v2 - - name: Use Node.js 14.15 + - name: Use Node.js 16.20 uses: actions/setup-node@v2 with: - node-version: 14.15 + node-version: 16.20 - name: Cache Yarn Dependencies uses: c-hive/gha-yarn-cache@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a4920f07a..9e65923f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,10 @@ jobs: # - Adjust this value if necessary once we have stable releases fetch-depth: 100 - - name: Setup Node.js 14.15 And npm Org + - name: Setup Node.js 16.20 And npm Org uses: actions/setup-node@v2 with: - node-version: 14.15 + node-version: 16.20 registry-url: "https://registry.npmjs.org" scope: "@voucherify" diff --git a/.nvmrc b/.nvmrc index bccebbb4c..59ea99ee6 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -14.15 +16.20 From f3a409f5640e934f133139040905dcde631a098f Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 25 Aug 2023 12:03:10 +0200 Subject: [PATCH 06/65] node 16 --- .changeset/tidy-comics-hear.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index 2701147cb..deae6bb64 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -11,7 +11,7 @@ Tests uses REAL calls to Voucherify. You may reach the limit of your account if **Breaking changes:** - Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` -- Required version of node was changed from `14.15` to `16.20`. +- Required version of node was changed from `14.15` to `16.x`. **Example of usage (related to breaking changes):** ```js diff --git a/package.json b/package.json index 7c8c70fbe..c8457c605 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "engineStrict": true, "engines": { - "node": "16.20" + "node": "16.x" }, "repository": { "type": "git", From b4ef41b19b8f8683e104b360a91b9098a562c92e Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 25 Aug 2023 14:55:58 +0200 Subject: [PATCH 07/65] requested changes --- .changeset/tidy-comics-hear.md | 14 ++++-- packages/sdk/package.json | 4 +- packages/sdk/src/types/DiscountVoucher.ts | 2 +- packages/sdk/src/types/Validations.ts | 2 +- packages/sdk/test/client.ts | 20 ++++++--- packages/sdk/test/validations.spec.ts | 55 +++++++---------------- 6 files changed, 45 insertions(+), 52 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index deae6bb64..5461b593a 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -5,13 +5,21 @@ To run tests you need to copy packages/sdk/.env.example to packages/sdk/.env and fill the file with your credentials. Tests uses REAL calls to Voucherify. You may reach the limit of your account if you are using sandbox account. +**New exported types/interfaces** +- ResponseValidateVoucherTrue +- ResponseValidateVoucherFalse +- DiscountUnitMultiple +- DiscountUnitMultipleOneUnit +- OrderObjectRedemptions + **Scripts changes:** -- npm run test (build sdk and run tests) -- npm run test:without-build (run tests) +- npm run build-and-test (build sdk and run tests) + +**Workflow changes** +- Required version of node in `package.json` was changed from `14.15` to `16.x`. - This is not related to SDK usage, but rather to further contribution to the SDK. **Breaking changes:** - Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` -- Required version of node was changed from `14.15` to `16.x`. **Example of usage (related to breaking changes):** ```js diff --git a/packages/sdk/package.json b/packages/sdk/package.json index b46515438..dcf65f763 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -27,8 +27,8 @@ "scripts": { "start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean --target node --name VoucherifySDK --format esm,umd", "build": "tsdx build --tsconfig tsconfig.build.json --target node --name VoucherifySDK --format esm,umd", - "test": "npm run build;tsdx test", - "test:without-build": "tsdx test", + "build-and-test": "npm run build;tsdx test", + "test": "tsdx test", "lint": "yarn lint:ts && yarn lint:eslint", "lint:ts": "tsc --noEmit -p ./tsconfig.build.json", "lint:eslint": "eslint './src/**/*.{ts,tsx,js,d.ts}'", diff --git a/packages/sdk/src/types/DiscountVoucher.ts b/packages/sdk/src/types/DiscountVoucher.ts index 21d2f3fc4..1d25c8227 100644 --- a/packages/sdk/src/types/DiscountVoucher.ts +++ b/packages/sdk/src/types/DiscountVoucher.ts @@ -46,7 +46,7 @@ export interface DiscountUnitMultiple { units: DiscountUnitMultipleOneUnit[] } -interface DiscountUnitMultipleOneUnit { +export interface DiscountUnitMultipleOneUnit { type: DiscountVouchersTypesEnum.UNIT effect: 'ADD_NEW_ITEMS' | 'ADD_MISSING_ITEMS' unit_off: number diff --git a/packages/sdk/src/types/Validations.ts b/packages/sdk/src/types/Validations.ts index 8cf39ec3b..a5676f4a5 100644 --- a/packages/sdk/src/types/Validations.ts +++ b/packages/sdk/src/types/Validations.ts @@ -100,7 +100,7 @@ export interface ResponseValidateVoucherFalse { reason?: string } -type OrderObjectRedemptions = Record< +export type OrderObjectRedemptions = Record< string, { date?: string diff --git a/packages/sdk/test/client.ts b/packages/sdk/test/client.ts index fc4d34d9b..e705486d0 100644 --- a/packages/sdk/test/client.ts +++ b/packages/sdk/test/client.ts @@ -1,7 +1,17 @@ import { VoucherifyServerSide } from '../../sdk/src' import 'dotenv/config' -export const voucherifyClient = VoucherifyServerSide({ - applicationId: process.env.APPLICATION_ID as string, - secretKey: process.env.SECRET_KEY as string, - apiUrl: (process.env.API_URL as string) || `https://api.voucherify.io`, -}) +const getVoucherifyClient = () => { + const applicationId = process.env.APPLICATION_ID as string, + secretKey = process.env.SECRET_KEY as string, + apiUrl = (process.env.API_URL as string) || `https://api.voucherify.io` + if (!applicationId || !secretKey) { + throw new Error('Missing applicationId or secretKey') + } + return VoucherifyServerSide({ + applicationId, + secretKey, + apiUrl, + }) +} + +export const voucherifyClient = getVoucherifyClient() diff --git a/packages/sdk/test/validations.spec.ts b/packages/sdk/test/validations.spec.ts index 3c71f20d8..9ae05b16e 100644 --- a/packages/sdk/test/validations.spec.ts +++ b/packages/sdk/test/validations.spec.ts @@ -1,57 +1,32 @@ import { voucherifyClient as client } from './client' import { generateVoucher } from './utils/generateVoucher' import { generateRandomString } from './utils/generateRandomString' -import { generatePromotionTier } from './utils/generatePromotionTier' describe('Validations API', () => { it('while validating not existing code, should get error message', async () => { const response = await client.validations.validateVoucher(generateRandomString(55)) - if (!response.valid) { - expect(typeof response.reason).toBe('string') - expect(typeof response.error?.message).toBe('string') - expect(typeof response.error?.key).toBe('string') - expect(typeof response.error?.code).toBe('number') + if (response.valid) { + //ResponseValidateVoucherTrue + return } + //ResponseValidateVoucherFalse + expect(typeof response.reason).toBe('string') + expect(typeof response.error?.message).toBe('string') + expect(typeof response.error?.key).toBe('string') + expect(typeof response.error?.code).toBe('number') }) it('should validate voucher without campaign', async () => { const code = (await generateVoucher()).code const response = await client.validations.validateVoucher(code) - if (response.valid) { - expect(response.discount?.type).toEqual('AMOUNT') - if (response.discount?.type === 'AMOUNT') { - expect(typeof response.discount.amount_off).toEqual('number') - } + if (!response.valid) { + //ResponseValidateVoucherFalse + return } - }) - - it('should validate multiple vouchers without campaign', async () => { - const response = await client.validations.validateStackable({ - redeemables: [ - { object: 'voucher', id: (await generateVoucher()).code }, - { object: 'voucher', id: (await generateVoucher()).code }, - ], - }) - expect(response).toBeTruthy() - expect(response.redeemables).toBeInstanceOf(Array) - }) - - it('should validate multiple promotion tiers', async () => { - const response = await client.validations.validateStackable({ - redeemables: [ - { object: 'promotion_tier', id: (await generatePromotionTier()).id }, - { object: 'promotion_tier', id: (await generatePromotionTier()).id }, - { object: 'promotion_tier', id: (await generatePromotionTier()).id }, - ], - }) - expect(response).toBeTruthy() - expect(response.redeemables).toBeInstanceOf(Array) - if (Array.isArray(response.redeemables)) { - for (const redeemable of response.redeemables) { - if (redeemable.object === 'promotion_tier') { - // - } - } + //ResponseValidateVoucherTrue + expect(response.discount?.type).toEqual('AMOUNT') + if (response.discount?.type === 'AMOUNT') { + expect(typeof response.discount.amount_off).toEqual('number') } }) }) From 9d8cb56028877a50668d69870397cc3f88b41244 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 25 Aug 2023 15:00:41 +0200 Subject: [PATCH 08/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index 5461b593a..e312c4ef8 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -7,16 +7,16 @@ Tests uses REAL calls to Voucherify. You may reach the limit of your account if **New exported types/interfaces** - ResponseValidateVoucherTrue + - DiscountUnitMultiple + - DiscountUnitMultipleOneUnit + - OrderObjectRedemptions - ResponseValidateVoucherFalse -- DiscountUnitMultiple -- DiscountUnitMultipleOneUnit -- OrderObjectRedemptions **Scripts changes:** - npm run build-and-test (build sdk and run tests) **Workflow changes** -- Required version of node in `package.json` was changed from `14.15` to `16.x`. - This is not related to SDK usage, but rather to further contribution to the SDK. +- Required version of node in `package.json` was changed from `14.15` to `16.x`. - This is not related to SDK usage, but rather to further contribution to the SDK. SDK **Breaking changes:** - Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` @@ -24,11 +24,13 @@ Tests uses REAL calls to Voucherify. You may reach the limit of your account if **Example of usage (related to breaking changes):** ```js const validation = await client.validations.validateVoucher('test') -//You must to check `valid` first! -if(validation.valid){ +//First we must to narrow down response type by checking the valid value +//As the response type may be either ResponseValidateVoucherTrue or ResponseValidateVoucherFalse +if (response.valid) { + //ResponseValidateVoucherTrue return { success: true, order: validation.order } -}else{ - return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } } +//ResponseValidateVoucherFalse +return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } ``` From 267f027c0e3e062ebf61cce6e3a684d8d0f296b5 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 10:00:36 +0200 Subject: [PATCH 09/65] Update generateRandomString.ts --- .../sdk/test/utils/generateRandomString.ts | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/packages/sdk/test/utils/generateRandomString.ts b/packages/sdk/test/utils/generateRandomString.ts index 2046ba6cc..8642ffad4 100644 --- a/packages/sdk/test/utils/generateRandomString.ts +++ b/packages/sdk/test/utils/generateRandomString.ts @@ -1,5 +1,22 @@ -export const generateRandomString = (len = 40) => { - return Array(len + 1) - .join((Math.random().toString(36) + '00000000000000000').slice(2, 18)) - .slice(0, len) +export const generateRandomString = (length: number) => { + if (!length) { + throw new Error('length must be greater than zero') + } + if (length > 100) { + throw new Error('length must be smaller or equal to 100') + } + if (!Number.isInteger(length)) { + throw new Error('length must an integer') + } + function getRandomIntInclusive(min: number, max: number) { + return Math.floor(Math.random() * (max - min + 1) + min) + } + const seeds = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' + const seedsLength = seeds.length + const tableOfStrings = [] + while (tableOfStrings.length < length) { + const index = getRandomIntInclusive(0, seedsLength - 1) + tableOfStrings.push(seeds.slice(index, index + 1)) + } + return tableOfStrings.join('') } From c61c01e6ddd7b3f6b87ec99d06b1489f80bbad06 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:00:52 +0200 Subject: [PATCH 10/65] requested changes --- .changeset/tidy-comics-hear.md | 30 +++++++++++-------- package.json | 2 +- packages/sdk/src/types/Promotions.ts | 2 +- ...paignWithOnePromotionTierAndRandomName.ts} | 6 ++-- .../{generateVoucher.ts => createVoucher.ts} | 4 +-- .../sdk/test/utils/generatePromotionTier.ts | 9 ------ .../sdk/test/utils/generateRandomString.ts | 2 +- packages/sdk/test/validations.spec.ts | 18 ++++++----- 8 files changed, 36 insertions(+), 37 deletions(-) rename packages/sdk/test/utils/{generateCampaignWithOnePromotionTier.ts => createCampaignWithOnePromotionTierAndRandomName.ts} (68%) rename packages/sdk/test/utils/{generateVoucher.ts => createVoucher.ts} (71%) delete mode 100644 packages/sdk/test/utils/generatePromotionTier.ts diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index e312c4ef8..e9c58b859 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -2,9 +2,6 @@ '@voucherify/sdk': major --- -To run tests you need to copy packages/sdk/.env.example to packages/sdk/.env and fill the file with your credentials. -Tests uses REAL calls to Voucherify. You may reach the limit of your account if you are using sandbox account. - **New exported types/interfaces** - ResponseValidateVoucherTrue - DiscountUnitMultiple @@ -12,25 +9,32 @@ Tests uses REAL calls to Voucherify. You may reach the limit of your account if - OrderObjectRedemptions - ResponseValidateVoucherFalse -**Scripts changes:** -- npm run build-and-test (build sdk and run tests) - -**Workflow changes** -- Required version of node in `package.json` was changed from `14.15` to `16.x`. - This is not related to SDK usage, but rather to further contribution to the SDK. SDK - **Breaking changes:** - Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` **Example of usage (related to breaking changes):** ```js const validation = await client.validations.validateVoucher('test') -//First we must to narrow down response type by checking the valid value -//As the response type may be either ResponseValidateVoucherTrue or ResponseValidateVoucherFalse + +// First we must to narrow down response type by checking the `valid` value +// As the response type may be either ResponseValidateVoucherTrue or ResponseValidateVoucherFalse if (response.valid) { - //ResponseValidateVoucherTrue + // We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherTrue` so now we can access attributes specific for this type like `order` + // import { ResponseValidateVoucherTrue } from '@voucherify/sdk'; return { success: true, order: validation.order } } -//ResponseValidateVoucherFalse +// We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherFalse` so now we can access attributes specific for this type like `reason` or `error` +// import { ResponseValidateVoucherFalse } from '@voucherify/sdk'; return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } ``` +#### FOR DEVELOPERS WORKING ON SDK IMPROVEMENTS: + +**SDK Scripts changes (available from packages/sdk folder):** +- npm run build-and-test (build sdk and run tests) + +In order to run tests you need to copy packages/sdk/.env.example to packages/sdk/.env and fill the file with your credentials. +Tests uses REAL calls to Voucherify. You may reach the limit of your account if you are using sandbox account.**** + +**Workflow changes** +- Required version of node in `package.json` was changed from `14.15` to `16.x`. - This is not related to SDK usage, but rather to further contribution to the SDK. SDK diff --git a/package.json b/package.json index c8457c605..5f1e839eb 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "engineStrict": true, "engines": { - "node": "16.x" + "node": ">=14 <16" }, "repository": { "type": "git", diff --git a/packages/sdk/src/types/Promotions.ts b/packages/sdk/src/types/Promotions.ts index 675d0ade3..25ee8b380 100644 --- a/packages/sdk/src/types/Promotions.ts +++ b/packages/sdk/src/types/Promotions.ts @@ -51,7 +51,7 @@ export interface PromotionsCreate { promotion?: { tiers: { name: string - banner: string + banner?: string action: { discount: DiscountUnit | DiscountAmount | DiscountPercent | DiscountFixed } diff --git a/packages/sdk/test/utils/generateCampaignWithOnePromotionTier.ts b/packages/sdk/test/utils/createCampaignWithOnePromotionTierAndRandomName.ts similarity index 68% rename from packages/sdk/test/utils/generateCampaignWithOnePromotionTier.ts rename to packages/sdk/test/utils/createCampaignWithOnePromotionTierAndRandomName.ts index 3781b5c1f..6e1617784 100644 --- a/packages/sdk/test/utils/generateCampaignWithOnePromotionTier.ts +++ b/packages/sdk/test/utils/createCampaignWithOnePromotionTierAndRandomName.ts @@ -1,7 +1,8 @@ import { voucherifyClient as client } from '../client' import { generateRandomString } from './generateRandomString' +import { DiscountVouchersTypesEnum } from '../../src' -export const generateCampaignWithOnePromotionTier = async () => { +export const createCampaignWithOnePromotionTierAndRandomName = async () => { return await client.promotions.create({ name: generateRandomString(), campaign_type: 'PROMOTION', @@ -11,8 +12,7 @@ export const generateCampaignWithOnePromotionTier = async () => { name: generateRandomString(60), action: { discount: { - // @ts-ignore - type: 'AMOUNT', + type: DiscountVouchersTypesEnum.AMOUNT, amount_off: 1000, }, }, diff --git a/packages/sdk/test/utils/generateVoucher.ts b/packages/sdk/test/utils/createVoucher.ts similarity index 71% rename from packages/sdk/test/utils/generateVoucher.ts rename to packages/sdk/test/utils/createVoucher.ts index c8d89f1a9..2c47100cf 100644 --- a/packages/sdk/test/utils/generateVoucher.ts +++ b/packages/sdk/test/utils/createVoucher.ts @@ -1,7 +1,7 @@ import { voucherifyClient as client } from '../client' -import { DiscountVouchersTypesEnum } from '@voucherify/sdk' +import { DiscountVouchersTypesEnum } from '../../src' -export const generateVoucher = async () => +export const createVoucher = async () => await client.vouchers.create({ type: 'DISCOUNT_VOUCHER', discount: { diff --git a/packages/sdk/test/utils/generatePromotionTier.ts b/packages/sdk/test/utils/generatePromotionTier.ts deleted file mode 100644 index 4452f57a4..000000000 --- a/packages/sdk/test/utils/generatePromotionTier.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { generateCampaignWithOnePromotionTier } from './generateCampaignWithOnePromotionTier' - -export const generatePromotionTier = async () => { - const campaign = await generateCampaignWithOnePromotionTier() - if (!campaign.promotion.tiers?.[0]) { - throw new Error('Could not create promotion') - } - return campaign.promotion.tiers[0] -} diff --git a/packages/sdk/test/utils/generateRandomString.ts b/packages/sdk/test/utils/generateRandomString.ts index 8642ffad4..c1d58a152 100644 --- a/packages/sdk/test/utils/generateRandomString.ts +++ b/packages/sdk/test/utils/generateRandomString.ts @@ -1,4 +1,4 @@ -export const generateRandomString = (length: number) => { +export const generateRandomString = (length = 40) => { if (!length) { throw new Error('length must be greater than zero') } diff --git a/packages/sdk/test/validations.spec.ts b/packages/sdk/test/validations.spec.ts index 9ae05b16e..b3322b5ac 100644 --- a/packages/sdk/test/validations.spec.ts +++ b/packages/sdk/test/validations.spec.ts @@ -1,15 +1,17 @@ import { voucherifyClient as client } from './client' -import { generateVoucher } from './utils/generateVoucher' +import { createVoucher } from './utils/createVoucher' import { generateRandomString } from './utils/generateRandomString' describe('Validations API', () => { it('while validating not existing code, should get error message', async () => { - const response = await client.validations.validateVoucher(generateRandomString(55)) + const response = await client.validations.validateVoucher(generateRandomString(66)) + expect(response.valid).toBe(false) if (response.valid) { - //ResponseValidateVoucherTrue + // this `if` is only to narrow down type of response return } - //ResponseValidateVoucherFalse + // now as we narrowed down response type, we have access to attributes like `reason` or `error`, + // for more info check the interface `ResponseValidateVoucherFalse` itself expect(typeof response.reason).toBe('string') expect(typeof response.error?.message).toBe('string') expect(typeof response.error?.key).toBe('string') @@ -17,13 +19,15 @@ describe('Validations API', () => { }) it('should validate voucher without campaign', async () => { - const code = (await generateVoucher()).code + const code = (await createVoucher()).code const response = await client.validations.validateVoucher(code) + expect(response.valid).toBe(true) if (!response.valid) { - //ResponseValidateVoucherFalse + // this `if` is only to narrow down type of response return } - //ResponseValidateVoucherTrue + // now as we narrowed down response type, we have access to attributes like `discount.type` or `discount.amount_off`, + // for more info check the interface `ResponseValidateVoucherTrue` itself expect(response.discount?.type).toEqual('AMOUNT') if (response.discount?.type === 'AMOUNT') { expect(typeof response.discount.amount_off).toEqual('number') From 6f1c213d1b3ea421fcf5469bb5d5c7adb9487a66 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:03:19 +0200 Subject: [PATCH 11/65] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5f1e839eb..60ad692ab 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "engineStrict": true, "engines": { - "node": ">=14 <16" + "node": "^14 || ^16" }, "repository": { "type": "git", From 238b54bfbea5300e10861255804ee64fcfdbb864 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:06:31 +0200 Subject: [PATCH 12/65] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 60ad692ab..354543d84 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "engineStrict": true, "engines": { - "node": "^14 || ^16" + "node": "^14.15 || ^16" }, "repository": { "type": "git", From b580b54a5bc0ec8e2491b8549f65faaaa197277d Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:08:08 +0200 Subject: [PATCH 13/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index e9c58b859..296342811 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -37,4 +37,4 @@ In order to run tests you need to copy packages/sdk/.env.example to packages/sdk Tests uses REAL calls to Voucherify. You may reach the limit of your account if you are using sandbox account.**** **Workflow changes** -- Required version of node in `package.json` was changed from `14.15` to `16.x`. - This is not related to SDK usage, but rather to further contribution to the SDK. SDK +- Required version of node in `package.json` (root folder) was changed from `14.15` to `^14.15 || ^16`. - This is not related to SDK usage, but rather to further contribution to the SDK. From 87d34be7375bdc70ed419691c06b4424350765a0 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:12:53 +0200 Subject: [PATCH 14/65] Revert "node 16.20" This reverts commit f869c7992c441da3123fb536ff93e7a916ff2cd0. --- .github/workflows/docs.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .nvmrc | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 16c84a97b..ec2cfe317 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,10 +12,10 @@ jobs: - name: Check out Git repository uses: actions/checkout@v2 - - name: Use Node.js 16.20 + - name: Use Node.js 14.15 uses: actions/setup-node@v2 with: - node-version: 16.20 + node-version: 14.15 - name: Cache Yarn Dependencies uses: c-hive/gha-yarn-cache@v1 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ab5af44b5..73d087cb0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,10 +12,10 @@ jobs: - name: Check out Git repository uses: actions/checkout@v2 - - name: Use Node.js 16.20 + - name: Use Node.js 14.15 uses: actions/setup-node@v2 with: - node-version: 16.20 + node-version: 14.15 - name: Cache Yarn Dependencies uses: c-hive/gha-yarn-cache@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e65923f8..a4920f07a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,10 @@ jobs: # - Adjust this value if necessary once we have stable releases fetch-depth: 100 - - name: Setup Node.js 16.20 And npm Org + - name: Setup Node.js 14.15 And npm Org uses: actions/setup-node@v2 with: - node-version: 16.20 + node-version: 14.15 registry-url: "https://registry.npmjs.org" scope: "@voucherify" diff --git a/.nvmrc b/.nvmrc index 59ea99ee6..bccebbb4c 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -16.20 +14.15 From 4f982f6a74c38bdb301cdc270e14efdbdbc0a147 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:30:24 +0200 Subject: [PATCH 15/65] minor changes --- .changeset/tidy-comics-hear.md | 8 +++----- packages/sdk/package.json | 1 - 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index 296342811..2d8eaddce 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -30,11 +30,9 @@ return { success: false, reason: validation.reason || validation.error?.message #### FOR DEVELOPERS WORKING ON SDK IMPROVEMENTS: -**SDK Scripts changes (available from packages/sdk folder):** -- npm run build-and-test (build sdk and run tests) - -In order to run tests you need to copy packages/sdk/.env.example to packages/sdk/.env and fill the file with your credentials. -Tests uses REAL calls to Voucherify. You may reach the limit of your account if you are using sandbox account.**** +**IMPORTANT NOTE** +In order to run **sdk tests** you need to copy packages/sdk/.env.example to packages/sdk/.env and fill the file with your credentials. +Tests uses REAL calls to Voucherify. You may reach the limit of your account if you are using sandbox account. **Workflow changes** - Required version of node in `package.json` (root folder) was changed from `14.15` to `^14.15 || ^16`. - This is not related to SDK usage, but rather to further contribution to the SDK. diff --git a/packages/sdk/package.json b/packages/sdk/package.json index dcf65f763..9378604e5 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -27,7 +27,6 @@ "scripts": { "start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean --target node --name VoucherifySDK --format esm,umd", "build": "tsdx build --tsconfig tsconfig.build.json --target node --name VoucherifySDK --format esm,umd", - "build-and-test": "npm run build;tsdx test", "test": "tsdx test", "lint": "yarn lint:ts && yarn lint:eslint", "lint:ts": "tsc --noEmit -p ./tsconfig.build.json", From 0a500c7415688e3498953531f1714a8156c0b25e Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:33:40 +0200 Subject: [PATCH 16/65] Delete createCampaignWithOnePromotionTierAndRandomName.ts --- ...mpaignWithOnePromotionTierAndRandomName.ts | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 packages/sdk/test/utils/createCampaignWithOnePromotionTierAndRandomName.ts diff --git a/packages/sdk/test/utils/createCampaignWithOnePromotionTierAndRandomName.ts b/packages/sdk/test/utils/createCampaignWithOnePromotionTierAndRandomName.ts deleted file mode 100644 index 6e1617784..000000000 --- a/packages/sdk/test/utils/createCampaignWithOnePromotionTierAndRandomName.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { voucherifyClient as client } from '../client' -import { generateRandomString } from './generateRandomString' -import { DiscountVouchersTypesEnum } from '../../src' - -export const createCampaignWithOnePromotionTierAndRandomName = async () => { - return await client.promotions.create({ - name: generateRandomString(), - campaign_type: 'PROMOTION', - promotion: { - tiers: [ - { - name: generateRandomString(60), - action: { - discount: { - type: DiscountVouchersTypesEnum.AMOUNT, - amount_off: 1000, - }, - }, - }, - ], - }, - }) -} From 888db98f63ba87ba227820db06c3dca2bed8fbcf Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 16:44:31 +0200 Subject: [PATCH 17/65] requested changes --- .changeset/tidy-comics-hear.md | 32 ++++++++++++++++++- .../sdk/test/utils/generateRandomString.ts | 12 +++---- 2 files changed, 37 insertions(+), 7 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index 2d8eaddce..bec6b4148 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -9,6 +9,36 @@ - OrderObjectRedemptions - ResponseValidateVoucherFalse +**Interfaces changes** +- `PromotionsCreate` + - property: `promotion` + - property: `tier` + - changed: + - value of `banner` is not required +- `ApplicableTo` + - added: + - product_id?: string + - product_source_id?: string + - quantity_limit?: number + - aggregated_quantity_limit?: number +- `CustomerRequest` + - added: + - birthdate?: string +- `ValidationsValidateVoucherParams` + - property: `customer` + - added: + - address + - phone + - birthdate + - property: `order` + - added: + - status?: 'CREATED' | 'PAID' | 'CANCELED' | 'FULFILLED' + - customer?: CustomerRequest + - referrer?: CustomerRequest + - property: `reward` + - added + - points?: number + **Breaking changes:** - Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` @@ -28,7 +58,7 @@ if (response.valid) { return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } ``` -#### FOR DEVELOPERS WORKING ON SDK IMPROVEMENTS: +**FOR DEVELOPERS WORKING ON SDK IMPROVEMENTS:** **IMPORTANT NOTE** In order to run **sdk tests** you need to copy packages/sdk/.env.example to packages/sdk/.env and fill the file with your credentials. diff --git a/packages/sdk/test/utils/generateRandomString.ts b/packages/sdk/test/utils/generateRandomString.ts index c1d58a152..1c3634a80 100644 --- a/packages/sdk/test/utils/generateRandomString.ts +++ b/packages/sdk/test/utils/generateRandomString.ts @@ -1,3 +1,8 @@ +function getRandomIntInclusive(min: number, max: number) { + return Math.floor(Math.random() * (max - min + 1) + min) +} + +const seeds = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' export const generateRandomString = (length = 40) => { if (!length) { throw new Error('length must be greater than zero') @@ -8,14 +13,9 @@ export const generateRandomString = (length = 40) => { if (!Number.isInteger(length)) { throw new Error('length must an integer') } - function getRandomIntInclusive(min: number, max: number) { - return Math.floor(Math.random() * (max - min + 1) + min) - } - const seeds = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' - const seedsLength = seeds.length const tableOfStrings = [] while (tableOfStrings.length < length) { - const index = getRandomIntInclusive(0, seedsLength - 1) + const index = getRandomIntInclusive(0, seeds.length - 1) tableOfStrings.push(seeds.slice(index, index + 1)) } return tableOfStrings.join('') From 4d1aa28f347bb0ac86634439c85c36fb3538ef87 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 6 Sep 2023 17:11:17 +0200 Subject: [PATCH 18/65] docs --- docs/assets/js/search.js | 2 +- docs/classes/Validations.html | 8 +- docs/classes/VoucherifyError.html | 6 +- docs/docs.json | 10493 +++++++++------- docs/index.html | 21 +- docs/interfaces/ApplicableTo.html | 44 + docs/interfaces/CustomerRequest.html | 11 + docs/interfaces/DiscountUnitMultiple.html | 171 + .../DiscountUnitMultipleOneUnit.html | 204 + docs/interfaces/PromotionsCreate.html | 4 +- .../ResponseValidateVoucherFalse.html | 241 + ....html => ResponseValidateVoucherTrue.html} | 155 +- .../ValidationsValidateVoucherParams.html | 41 +- docs/modules.html | 42 +- 14 files changed, 6564 insertions(+), 4879 deletions(-) create mode 100644 docs/interfaces/DiscountUnitMultiple.html create mode 100644 docs/interfaces/DiscountUnitMultipleOneUnit.html create mode 100644 docs/interfaces/ResponseValidateVoucherFalse.html rename docs/interfaces/{ValidationsValidateVoucherResponse.html => ResponseValidateVoucherTrue.html} (55%) diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index f5e13c82a..7d9303b9e 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"4":"Enumeration","16":"Enumeration member","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Balance","url":"classes/Balance.html","classes":"tsd-kind-class"},{"id":1,"kind":512,"name":"constructor","url":"classes/Balance.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Balance"},{"id":2,"kind":2048,"name":"create","url":"classes/Balance.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Balance"},{"id":3,"kind":128,"name":"Campaigns","url":"classes/Campaigns.html","classes":"tsd-kind-class"},{"id":4,"kind":512,"name":"constructor","url":"classes/Campaigns.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Campaigns"},{"id":5,"kind":1024,"name":"qualifications","url":"classes/Campaigns.html#qualifications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Campaigns"},{"id":6,"kind":2048,"name":"create","url":"classes/Campaigns.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":7,"kind":2048,"name":"update","url":"classes/Campaigns.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":8,"kind":2048,"name":"get","url":"classes/Campaigns.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":9,"kind":2048,"name":"delete","url":"classes/Campaigns.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":10,"kind":2048,"name":"addVoucher","url":"classes/Campaigns.html#addVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":11,"kind":2048,"name":"addCertainVoucher","url":"classes/Campaigns.html#addCertainVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":12,"kind":2048,"name":"importVouchers","url":"classes/Campaigns.html#importVouchers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":13,"kind":2048,"name":"list","url":"classes/Campaigns.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":14,"kind":128,"name":"ClientSide","url":"classes/ClientSide.html","classes":"tsd-kind-class"},{"id":15,"kind":512,"name":"constructor","url":"classes/ClientSide.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ClientSide"},{"id":16,"kind":2048,"name":"setIdentity","url":"classes/ClientSide.html#setIdentity","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":17,"kind":2048,"name":"validate","url":"classes/ClientSide.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":18,"kind":2048,"name":"redeem","url":"classes/ClientSide.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":19,"kind":2048,"name":"publish","url":"classes/ClientSide.html#publish","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":20,"kind":2048,"name":"track","url":"classes/ClientSide.html#track","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":21,"kind":2048,"name":"listVouchers","url":"classes/ClientSide.html#listVouchers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":22,"kind":2048,"name":"createCustomer","url":"classes/ClientSide.html#createCustomer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":23,"kind":2048,"name":"listConsents","url":"classes/ClientSide.html#listConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":24,"kind":2048,"name":"updateConsents","url":"classes/ClientSide.html#updateConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":25,"kind":2048,"name":"validateStackable","url":"classes/ClientSide.html#validateStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":26,"kind":2048,"name":"redeemStackable","url":"classes/ClientSide.html#redeemStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":27,"kind":128,"name":"Consents","url":"classes/Consents.html","classes":"tsd-kind-class"},{"id":28,"kind":512,"name":"constructor","url":"classes/Consents.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Consents"},{"id":29,"kind":2048,"name":"list","url":"classes/Consents.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Consents"},{"id":30,"kind":128,"name":"Customers","url":"classes/Customers.html","classes":"tsd-kind-class"},{"id":31,"kind":512,"name":"constructor","url":"classes/Customers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Customers"},{"id":32,"kind":2048,"name":"create","url":"classes/Customers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":33,"kind":2048,"name":"get","url":"classes/Customers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":34,"kind":2048,"name":"list","url":"classes/Customers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":35,"kind":2048,"name":"scroll","url":"classes/Customers.html#scroll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":36,"kind":2048,"name":"update","url":"classes/Customers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":37,"kind":2048,"name":"delete","url":"classes/Customers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":38,"kind":2048,"name":"updateConsents","url":"classes/Customers.html#updateConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":39,"kind":2048,"name":"listActivities","url":"classes/Customers.html#listActivities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":40,"kind":128,"name":"Distributions","url":"classes/Distributions.html","classes":"tsd-kind-class"},{"id":41,"kind":512,"name":"constructor","url":"classes/Distributions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Distributions"},{"id":42,"kind":1024,"name":"publications","url":"classes/Distributions.html#publications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Distributions"},{"id":43,"kind":1024,"name":"exports","url":"classes/Distributions.html#exports","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Distributions"},{"id":44,"kind":128,"name":"Events","url":"classes/Events.html","classes":"tsd-kind-class"},{"id":45,"kind":512,"name":"constructor","url":"classes/Events.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Events"},{"id":46,"kind":2048,"name":"create","url":"classes/Events.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Events"},{"id":47,"kind":128,"name":"Exports","url":"classes/Exports.html","classes":"tsd-kind-class"},{"id":48,"kind":512,"name":"constructor","url":"classes/Exports.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Exports"},{"id":49,"kind":2048,"name":"create","url":"classes/Exports.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":50,"kind":2048,"name":"get","url":"classes/Exports.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":51,"kind":2048,"name":"delete","url":"classes/Exports.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":52,"kind":128,"name":"Loyalties","url":"classes/Loyalties.html","classes":"tsd-kind-class"},{"id":53,"kind":512,"name":"constructor","url":"classes/Loyalties.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Loyalties"},{"id":54,"kind":2048,"name":"list","url":"classes/Loyalties.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":55,"kind":2048,"name":"create","url":"classes/Loyalties.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":56,"kind":2048,"name":"get","url":"classes/Loyalties.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":57,"kind":2048,"name":"update","url":"classes/Loyalties.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":58,"kind":2048,"name":"delete","url":"classes/Loyalties.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":59,"kind":2048,"name":"listRewardAssignments","url":"classes/Loyalties.html#listRewardAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":60,"kind":2048,"name":"createRewardAssignments","url":"classes/Loyalties.html#createRewardAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":61,"kind":2048,"name":"updateRewardAssignment","url":"classes/Loyalties.html#updateRewardAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":62,"kind":2048,"name":"deleteRewardAssignment","url":"classes/Loyalties.html#deleteRewardAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":63,"kind":2048,"name":"listEarningRules","url":"classes/Loyalties.html#listEarningRules","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":64,"kind":2048,"name":"createEarningRule","url":"classes/Loyalties.html#createEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":65,"kind":2048,"name":"updateEarningRule","url":"classes/Loyalties.html#updateEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":66,"kind":2048,"name":"deleteEarningRule","url":"classes/Loyalties.html#deleteEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":67,"kind":2048,"name":"listMembers","url":"classes/Loyalties.html#listMembers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":68,"kind":2048,"name":"createMember","url":"classes/Loyalties.html#createMember","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":69,"kind":2048,"name":"getMember","url":"classes/Loyalties.html#getMember","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":70,"kind":2048,"name":"getMemberActivities","url":"classes/Loyalties.html#getMemberActivities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":71,"kind":2048,"name":"addPoints","url":"classes/Loyalties.html#addPoints","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":72,"kind":2048,"name":"redeemReward","url":"classes/Loyalties.html#redeemReward","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":73,"kind":128,"name":"Orders","url":"classes/Orders.html","classes":"tsd-kind-class"},{"id":74,"kind":512,"name":"constructor","url":"classes/Orders.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Orders"},{"id":75,"kind":2048,"name":"create","url":"classes/Orders.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":76,"kind":2048,"name":"get","url":"classes/Orders.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":77,"kind":2048,"name":"update","url":"classes/Orders.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":78,"kind":2048,"name":"list","url":"classes/Orders.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":79,"kind":2048,"name":"import","url":"classes/Orders.html#import","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":80,"kind":128,"name":"Products","url":"classes/Products.html","classes":"tsd-kind-class"},{"id":81,"kind":512,"name":"constructor","url":"classes/Products.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Products"},{"id":82,"kind":2048,"name":"create","url":"classes/Products.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":83,"kind":2048,"name":"get","url":"classes/Products.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":84,"kind":2048,"name":"update","url":"classes/Products.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":85,"kind":2048,"name":"bulkUpdateMetadata","url":"classes/Products.html#bulkUpdateMetadata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":86,"kind":2048,"name":"bulkUpdate","url":"classes/Products.html#bulkUpdate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":87,"kind":2048,"name":"delete","url":"classes/Products.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":88,"kind":2048,"name":"list","url":"classes/Products.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":89,"kind":2048,"name":"createSku","url":"classes/Products.html#createSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":90,"kind":2048,"name":"getSku","url":"classes/Products.html#getSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":91,"kind":2048,"name":"updateSku","url":"classes/Products.html#updateSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":92,"kind":2048,"name":"deleteSku","url":"classes/Products.html#deleteSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":93,"kind":2048,"name":"listSkus","url":"classes/Products.html#listSkus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":94,"kind":128,"name":"Promotions","url":"classes/Promotions.html","classes":"tsd-kind-class"},{"id":95,"kind":512,"name":"constructor","url":"classes/Promotions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Promotions"},{"id":96,"kind":1024,"name":"tiers","url":"classes/Promotions.html#tiers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Promotions"},{"id":97,"kind":2048,"name":"create","url":"classes/Promotions.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Promotions"},{"id":98,"kind":2048,"name":"validate","url":"classes/Promotions.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Promotions"},{"id":99,"kind":128,"name":"PromotionTiers","url":"classes/PromotionTiers.html","classes":"tsd-kind-class"},{"id":100,"kind":512,"name":"constructor","url":"classes/PromotionTiers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PromotionTiers"},{"id":101,"kind":2048,"name":"listAll","url":"classes/PromotionTiers.html#listAll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":102,"kind":2048,"name":"list","url":"classes/PromotionTiers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":103,"kind":2048,"name":"get","url":"classes/PromotionTiers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":104,"kind":2048,"name":"create","url":"classes/PromotionTiers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":105,"kind":2048,"name":"redeem","url":"classes/PromotionTiers.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":106,"kind":2048,"name":"update","url":"classes/PromotionTiers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":107,"kind":2048,"name":"delete","url":"classes/PromotionTiers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":108,"kind":128,"name":"Redemptions","url":"classes/Redemptions.html","classes":"tsd-kind-class"},{"id":109,"kind":512,"name":"constructor","url":"classes/Redemptions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Redemptions"},{"id":110,"kind":2048,"name":"redeem","url":"classes/Redemptions.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":111,"kind":2048,"name":"redeemStackable","url":"classes/Redemptions.html#redeemStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":112,"kind":2048,"name":"get","url":"classes/Redemptions.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":113,"kind":2048,"name":"list","url":"classes/Redemptions.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":114,"kind":2048,"name":"getForVoucher","url":"classes/Redemptions.html#getForVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":115,"kind":2048,"name":"rollback","url":"classes/Redemptions.html#rollback","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":116,"kind":2048,"name":"rollbackStackable","url":"classes/Redemptions.html#rollbackStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":117,"kind":128,"name":"RequestController","url":"classes/RequestController.html","classes":"tsd-kind-class"},{"id":118,"kind":512,"name":"constructor","url":"classes/RequestController.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"RequestController"},{"id":119,"kind":1024,"name":"baseURL","url":"classes/RequestController.html#baseURL","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":120,"kind":1024,"name":"basePath","url":"classes/RequestController.html#basePath","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":121,"kind":1024,"name":"headers","url":"classes/RequestController.html#headers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":122,"kind":1024,"name":"request","url":"classes/RequestController.html#request","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":123,"kind":1024,"name":"lastResponseHeaders","url":"classes/RequestController.html#lastResponseHeaders","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":124,"kind":1024,"name":"isLastResponseHeadersSet","url":"classes/RequestController.html#isLastResponseHeadersSet","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":125,"kind":1024,"name":"exposeErrorCause","url":"classes/RequestController.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":126,"kind":2048,"name":"isLastReponseHeadersSet","url":"classes/RequestController.html#isLastReponseHeadersSet","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":127,"kind":2048,"name":"getLastResponseHeaders","url":"classes/RequestController.html#getLastResponseHeaders","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":128,"kind":2048,"name":"setLastResponseHeaders","url":"classes/RequestController.html#setLastResponseHeaders","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":129,"kind":2048,"name":"setBaseUrl","url":"classes/RequestController.html#setBaseUrl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":130,"kind":2048,"name":"get","url":"classes/RequestController.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":131,"kind":2048,"name":"post","url":"classes/RequestController.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":132,"kind":2048,"name":"put","url":"classes/RequestController.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":133,"kind":2048,"name":"delete","url":"classes/RequestController.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":134,"kind":128,"name":"Rewards","url":"classes/Rewards.html","classes":"tsd-kind-class"},{"id":135,"kind":512,"name":"constructor","url":"classes/Rewards.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Rewards"},{"id":136,"kind":2048,"name":"list","url":"classes/Rewards.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":137,"kind":2048,"name":"create","url":"classes/Rewards.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":138,"kind":2048,"name":"get","url":"classes/Rewards.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":139,"kind":2048,"name":"update","url":"classes/Rewards.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":140,"kind":2048,"name":"delete","url":"classes/Rewards.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":141,"kind":2048,"name":"listAssignments","url":"classes/Rewards.html#listAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":142,"kind":2048,"name":"createAssignment","url":"classes/Rewards.html#createAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":143,"kind":2048,"name":"updateAssignment","url":"classes/Rewards.html#updateAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":144,"kind":2048,"name":"deleteAssignment","url":"classes/Rewards.html#deleteAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":145,"kind":128,"name":"Segments","url":"classes/Segments.html","classes":"tsd-kind-class"},{"id":146,"kind":512,"name":"constructor","url":"classes/Segments.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Segments"},{"id":147,"kind":2048,"name":"create","url":"classes/Segments.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":148,"kind":2048,"name":"get","url":"classes/Segments.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":149,"kind":2048,"name":"delete","url":"classes/Segments.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":150,"kind":2048,"name":"list","url":"classes/Segments.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":151,"kind":128,"name":"ValidationRules","url":"classes/ValidationRules.html","classes":"tsd-kind-class"},{"id":152,"kind":512,"name":"constructor","url":"classes/ValidationRules.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ValidationRules"},{"id":153,"kind":2048,"name":"create","url":"classes/ValidationRules.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":154,"kind":2048,"name":"get","url":"classes/ValidationRules.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":155,"kind":2048,"name":"update","url":"classes/ValidationRules.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":156,"kind":2048,"name":"delete","url":"classes/ValidationRules.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":157,"kind":2048,"name":"createAssignment","url":"classes/ValidationRules.html#createAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":158,"kind":2048,"name":"deleteAssignment","url":"classes/ValidationRules.html#deleteAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":159,"kind":2048,"name":"validate","url":"classes/ValidationRules.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":160,"kind":2048,"name":"list","url":"classes/ValidationRules.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":161,"kind":2048,"name":"listAssignments","url":"classes/ValidationRules.html#listAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":162,"kind":128,"name":"Validations","url":"classes/Validations.html","classes":"tsd-kind-class"},{"id":163,"kind":512,"name":"constructor","url":"classes/Validations.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Validations"},{"id":164,"kind":2048,"name":"validateVoucher","url":"classes/Validations.html#validateVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":165,"kind":2048,"name":"validate","url":"classes/Validations.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":166,"kind":2048,"name":"validateStackable","url":"classes/Validations.html#validateStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":167,"kind":128,"name":"VoucherifyError","url":"classes/VoucherifyError.html","classes":"tsd-kind-class"},{"id":168,"kind":512,"name":"constructor","url":"classes/VoucherifyError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"VoucherifyError"},{"id":169,"kind":1024,"name":"code","url":"classes/VoucherifyError.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":170,"kind":1024,"name":"key","url":"classes/VoucherifyError.html#key","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":171,"kind":1024,"name":"details","url":"classes/VoucherifyError.html#details","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":172,"kind":1024,"name":"request_id","url":"classes/VoucherifyError.html#request_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":173,"kind":1024,"name":"resource_id","url":"classes/VoucherifyError.html#resource_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":174,"kind":1024,"name":"resource_type","url":"classes/VoucherifyError.html#resource_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":175,"kind":1024,"name":"related_object_ids","url":"classes/VoucherifyError.html#related_object_ids","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":176,"kind":1024,"name":"related_object_type","url":"classes/VoucherifyError.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":177,"kind":1024,"name":"related_object_total","url":"classes/VoucherifyError.html#related_object_total","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":178,"kind":1024,"name":"cause","url":"classes/VoucherifyError.html#cause","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":179,"kind":128,"name":"Vouchers","url":"classes/Vouchers.html","classes":"tsd-kind-class"},{"id":180,"kind":512,"name":"constructor","url":"classes/Vouchers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Vouchers"},{"id":181,"kind":1024,"name":"qualifications","url":"classes/Vouchers.html#qualifications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vouchers"},{"id":182,"kind":1024,"name":"balance","url":"classes/Vouchers.html#balance","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vouchers"},{"id":183,"kind":2048,"name":"create","url":"classes/Vouchers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":184,"kind":2048,"name":"get","url":"classes/Vouchers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":185,"kind":2048,"name":"update","url":"classes/Vouchers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":186,"kind":2048,"name":"delete","url":"classes/Vouchers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":187,"kind":2048,"name":"list","url":"classes/Vouchers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":188,"kind":2048,"name":"enable","url":"classes/Vouchers.html#enable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":189,"kind":2048,"name":"disable","url":"classes/Vouchers.html#disable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":190,"kind":2048,"name":"import","url":"classes/Vouchers.html#import","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":191,"kind":2048,"name":"bulkUpdateMetadata","url":"classes/Vouchers.html#bulkUpdateMetadata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":192,"kind":2048,"name":"bulkUpdate","url":"classes/Vouchers.html#bulkUpdate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":193,"kind":2048,"name":"releaseValidationSession","url":"classes/Vouchers.html#releaseValidationSession","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":194,"kind":256,"name":"SimpleCustomer","url":"interfaces/SimpleCustomer.html","classes":"tsd-kind-interface"},{"id":195,"kind":1024,"name":"id","url":"interfaces/SimpleCustomer.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":196,"kind":1024,"name":"name","url":"interfaces/SimpleCustomer.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":197,"kind":1024,"name":"email","url":"interfaces/SimpleCustomer.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":198,"kind":1024,"name":"source_id","url":"interfaces/SimpleCustomer.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":199,"kind":1024,"name":"metadata","url":"interfaces/SimpleCustomer.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":200,"kind":1024,"name":"object","url":"interfaces/SimpleCustomer.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":201,"kind":256,"name":"CustomerObject","url":"interfaces/CustomerObject.html","classes":"tsd-kind-interface"},{"id":202,"kind":1024,"name":"id","url":"interfaces/CustomerObject.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":203,"kind":1024,"name":"source_id","url":"interfaces/CustomerObject.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":204,"kind":1024,"name":"name","url":"interfaces/CustomerObject.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":205,"kind":1024,"name":"email","url":"interfaces/CustomerObject.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":206,"kind":1024,"name":"phone","url":"interfaces/CustomerObject.html#phone","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":207,"kind":1024,"name":"description","url":"interfaces/CustomerObject.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":208,"kind":1024,"name":"address","url":"interfaces/CustomerObject.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":209,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":210,"kind":1024,"name":"city","url":"interfaces/CustomerObject.html#__type.city","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":211,"kind":1024,"name":"state","url":"interfaces/CustomerObject.html#__type.state","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":212,"kind":1024,"name":"line_1","url":"interfaces/CustomerObject.html#__type.line_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":213,"kind":1024,"name":"line_2","url":"interfaces/CustomerObject.html#__type.line_2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":214,"kind":1024,"name":"country","url":"interfaces/CustomerObject.html#__type.country","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":215,"kind":1024,"name":"postal_code","url":"interfaces/CustomerObject.html#__type.postal_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":216,"kind":1024,"name":"summary","url":"interfaces/CustomerObject.html#summary","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":217,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":218,"kind":1024,"name":"redemptions","url":"interfaces/CustomerObject.html#__type-2.redemptions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":219,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":220,"kind":1024,"name":"total_redeemed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_redeemed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":221,"kind":1024,"name":"total_failed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_failed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":222,"kind":1024,"name":"total_succeeded","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_succeeded","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":223,"kind":1024,"name":"total_rolled_back","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rolled_back","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":224,"kind":1024,"name":"total_rollback_failed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rollback_failed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":225,"kind":1024,"name":"total_rollback_succeeded","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rollback_succeeded","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":226,"kind":1024,"name":"gift","url":"interfaces/CustomerObject.html#__type-2.__type-4.gift","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":227,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":228,"kind":1024,"name":"redeemed_amount","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5.redeemed_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":229,"kind":1024,"name":"amount_to_go","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5.amount_to_go","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":230,"kind":1024,"name":"loyalty","url":"interfaces/CustomerObject.html#__type-2.__type-4.loyalty-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":231,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":232,"kind":1024,"name":"redeemed_points","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":233,"kind":1024,"name":"points_to_go","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6.points_to_go","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":234,"kind":1024,"name":"orders","url":"interfaces/CustomerObject.html#__type-2.orders","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":235,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":236,"kind":1024,"name":"total_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":237,"kind":1024,"name":"total_count","url":"interfaces/CustomerObject.html#__type-2.__type-3.total_count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":238,"kind":1024,"name":"average_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.average_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":239,"kind":1024,"name":"last_order_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.last_order_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":240,"kind":1024,"name":"last_order_date","url":"interfaces/CustomerObject.html#__type-2.__type-3.last_order_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":241,"kind":1024,"name":"loyalty","url":"interfaces/CustomerObject.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":242,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":243,"kind":1024,"name":"points","url":"interfaces/CustomerObject.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":244,"kind":1024,"name":"referred_customers","url":"interfaces/CustomerObject.html#__type-1.referred_customers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":245,"kind":1024,"name":"campaigns","url":"interfaces/CustomerObject.html#__type-1.campaigns","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":246,"kind":1024,"name":"metadata","url":"interfaces/CustomerObject.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":247,"kind":1024,"name":"created_at","url":"interfaces/CustomerObject.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":248,"kind":1024,"name":"object","url":"interfaces/CustomerObject.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":249,"kind":4194304,"name":"CustomerUnconfirmed","url":"modules.html#CustomerUnconfirmed","classes":"tsd-kind-type-alias"},{"id":250,"kind":256,"name":"CustomerRequest","url":"interfaces/CustomerRequest.html","classes":"tsd-kind-interface"},{"id":251,"kind":1024,"name":"id","url":"interfaces/CustomerRequest.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":252,"kind":1024,"name":"source_id","url":"interfaces/CustomerRequest.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":253,"kind":1024,"name":"name","url":"interfaces/CustomerRequest.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":254,"kind":1024,"name":"email","url":"interfaces/CustomerRequest.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":255,"kind":1024,"name":"metadata","url":"interfaces/CustomerRequest.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":256,"kind":1024,"name":"description","url":"interfaces/CustomerRequest.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":257,"kind":1024,"name":"address","url":"interfaces/CustomerRequest.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":258,"kind":65536,"name":"__type","url":"interfaces/CustomerRequest.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":259,"kind":1024,"name":"city","url":"interfaces/CustomerRequest.html#__type.city","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":260,"kind":1024,"name":"state","url":"interfaces/CustomerRequest.html#__type.state","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":261,"kind":1024,"name":"line_1","url":"interfaces/CustomerRequest.html#__type.line_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":262,"kind":1024,"name":"line_2","url":"interfaces/CustomerRequest.html#__type.line_2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":263,"kind":1024,"name":"country","url":"interfaces/CustomerRequest.html#__type.country","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":264,"kind":1024,"name":"postal_code","url":"interfaces/CustomerRequest.html#__type.postal_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":265,"kind":1024,"name":"phone","url":"interfaces/CustomerRequest.html#phone","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":266,"kind":256,"name":"CustomersCommonListRequest","url":"interfaces/CustomersCommonListRequest.html","classes":"tsd-kind-interface"},{"id":267,"kind":1024,"name":"limit","url":"interfaces/CustomersCommonListRequest.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":268,"kind":1024,"name":"page","url":"interfaces/CustomersCommonListRequest.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":269,"kind":1024,"name":"email","url":"interfaces/CustomersCommonListRequest.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":270,"kind":1024,"name":"city","url":"interfaces/CustomersCommonListRequest.html#city","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":271,"kind":1024,"name":"name","url":"interfaces/CustomersCommonListRequest.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":272,"kind":1024,"name":"order","url":"interfaces/CustomersCommonListRequest.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":273,"kind":1024,"name":"starting_after","url":"interfaces/CustomersCommonListRequest.html#starting_after","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":274,"kind":256,"name":"CustomersCommonListResponse","url":"interfaces/CustomersCommonListResponse.html","classes":"tsd-kind-interface"},{"id":275,"kind":1024,"name":"object","url":"interfaces/CustomersCommonListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":276,"kind":1024,"name":"total","url":"interfaces/CustomersCommonListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":277,"kind":1024,"name":"data_ref","url":"interfaces/CustomersCommonListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":278,"kind":1024,"name":"customers","url":"interfaces/CustomersCommonListResponse.html#customers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":279,"kind":1024,"name":"has_more","url":"interfaces/CustomersCommonListResponse.html#has_more","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":280,"kind":256,"name":"CustomerActivitiesListQueryParams","url":"interfaces/CustomerActivitiesListQueryParams.html","classes":"tsd-kind-interface"},{"id":281,"kind":1024,"name":"limit","url":"interfaces/CustomerActivitiesListQueryParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":282,"kind":1024,"name":"order","url":"interfaces/CustomerActivitiesListQueryParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":283,"kind":1024,"name":"starting_after","url":"interfaces/CustomerActivitiesListQueryParams.html#starting_after","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":284,"kind":1024,"name":"starting_after_id","url":"interfaces/CustomerActivitiesListQueryParams.html#starting_after_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":285,"kind":1024,"name":"campaign_type","url":"interfaces/CustomerActivitiesListQueryParams.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":286,"kind":1024,"name":"campaign_id","url":"interfaces/CustomerActivitiesListQueryParams.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":287,"kind":256,"name":"CustomerActivitiesListResponse","url":"interfaces/CustomerActivitiesListResponse.html","classes":"tsd-kind-interface"},{"id":288,"kind":1024,"name":"object","url":"interfaces/CustomerActivitiesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":289,"kind":1024,"name":"total","url":"interfaces/CustomerActivitiesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":290,"kind":1024,"name":"data_ref","url":"interfaces/CustomerActivitiesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":291,"kind":1024,"name":"data","url":"interfaces/CustomerActivitiesListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":292,"kind":4194304,"name":"CustomersCreateBody","url":"modules.html#CustomersCreateBody","classes":"tsd-kind-type-alias"},{"id":293,"kind":4194304,"name":"CustomersCreateResponse","url":"modules.html#CustomersCreateResponse","classes":"tsd-kind-type-alias"},{"id":294,"kind":4194304,"name":"CustomersGetResponse","url":"modules.html#CustomersGetResponse","classes":"tsd-kind-type-alias"},{"id":295,"kind":4194304,"name":"CustomersListParams","url":"modules.html#CustomersListParams","classes":"tsd-kind-type-alias"},{"id":296,"kind":4194304,"name":"CustomersListResponse","url":"modules.html#CustomersListResponse","classes":"tsd-kind-type-alias"},{"id":297,"kind":4194304,"name":"CustomersScrollParams","url":"modules.html#CustomersScrollParams","classes":"tsd-kind-type-alias"},{"id":298,"kind":4194304,"name":"CustomersScrollResponse","url":"modules.html#CustomersScrollResponse","classes":"tsd-kind-type-alias"},{"id":299,"kind":4194304,"name":"CustomersScrollYield","url":"modules.html#CustomersScrollYield","classes":"tsd-kind-type-alias"},{"id":300,"kind":4194304,"name":"CustomersUpdateParams","url":"modules.html#CustomersUpdateParams","classes":"tsd-kind-type-alias"},{"id":301,"kind":4194304,"name":"CustomersUpdateResponse","url":"modules.html#CustomersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":302,"kind":4194304,"name":"CustomersUpdateConsentsBody","url":"modules.html#CustomersUpdateConsentsBody","classes":"tsd-kind-type-alias"},{"id":303,"kind":256,"name":"BalanceCreateParams","url":"interfaces/BalanceCreateParams.html","classes":"tsd-kind-interface"},{"id":304,"kind":1024,"name":"amount","url":"interfaces/BalanceCreateParams.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateParams"},{"id":305,"kind":256,"name":"BalanceCreateResponse","url":"interfaces/BalanceCreateResponse.html","classes":"tsd-kind-interface"},{"id":306,"kind":1024,"name":"amount","url":"interfaces/BalanceCreateResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":307,"kind":1024,"name":"total","url":"interfaces/BalanceCreateResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":308,"kind":1024,"name":"balance","url":"interfaces/BalanceCreateResponse.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":309,"kind":1024,"name":"type","url":"interfaces/BalanceCreateResponse.html#type-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":310,"kind":1024,"name":"object","url":"interfaces/BalanceCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":311,"kind":1024,"name":"related_object","url":"interfaces/BalanceCreateResponse.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":312,"kind":65536,"name":"__type","url":"interfaces/BalanceCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":313,"kind":1024,"name":"type","url":"interfaces/BalanceCreateResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"BalanceCreateResponse.__type"},{"id":314,"kind":1024,"name":"id","url":"interfaces/BalanceCreateResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"BalanceCreateResponse.__type"},{"id":315,"kind":4194304,"name":"ClientSideCustomersUpdateConsentsBody","url":"modules.html#ClientSideCustomersUpdateConsentsBody","classes":"tsd-kind-type-alias"},{"id":316,"kind":4194304,"name":"ClientSideCustomersCreateParams","url":"modules.html#ClientSideCustomersCreateParams","classes":"tsd-kind-type-alias"},{"id":317,"kind":4194304,"name":"ClientSideCustomersCreateResponse","url":"modules.html#ClientSideCustomersCreateResponse","classes":"tsd-kind-type-alias"},{"id":318,"kind":256,"name":"ClientSideValidateParams","url":"interfaces/ClientSideValidateParams.html","classes":"tsd-kind-interface"},{"id":319,"kind":1024,"name":"code","url":"interfaces/ClientSideValidateParams.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":320,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideValidateParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":321,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateParams.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":322,"kind":1024,"name":"items","url":"interfaces/ClientSideValidateParams.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":323,"kind":1024,"name":"orderMetadata","url":"interfaces/ClientSideValidateParams.html#orderMetadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":324,"kind":1024,"name":"customer","url":"interfaces/ClientSideValidateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":325,"kind":1024,"name":"reward","url":"interfaces/ClientSideValidateParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":326,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":327,"kind":1024,"name":"id","url":"interfaces/ClientSideValidateParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateParams.__type"},{"id":328,"kind":1024,"name":"metadata","url":"interfaces/ClientSideValidateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":329,"kind":1024,"name":"session_type","url":"interfaces/ClientSideValidateParams.html#session_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":330,"kind":1024,"name":"session_key","url":"interfaces/ClientSideValidateParams.html#session_key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":331,"kind":1024,"name":"session_ttl","url":"interfaces/ClientSideValidateParams.html#session_ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":332,"kind":1024,"name":"session_ttl_unit","url":"interfaces/ClientSideValidateParams.html#session_ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":333,"kind":4194304,"name":"ClientSideListVouchersParams","url":"modules.html#ClientSideListVouchersParams","classes":"tsd-kind-type-alias"},{"id":334,"kind":4194304,"name":"ClientSideVoucherListing","url":"modules.html#ClientSideVoucherListing","classes":"tsd-kind-type-alias"},{"id":335,"kind":256,"name":"ClientSideListVouchersResponse","url":"interfaces/ClientSideListVouchersResponse.html","classes":"tsd-kind-interface"},{"id":336,"kind":1024,"name":"object","url":"interfaces/ClientSideListVouchersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":337,"kind":1024,"name":"total","url":"interfaces/ClientSideListVouchersResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":338,"kind":1024,"name":"data_ref","url":"interfaces/ClientSideListVouchersResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":339,"kind":1024,"name":"vouchers","url":"interfaces/ClientSideListVouchersResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":340,"kind":256,"name":"ClientSideValidateResponse","url":"interfaces/ClientSideValidateResponse.html","classes":"tsd-kind-interface"},{"id":341,"kind":1024,"name":"code","url":"interfaces/ClientSideValidateResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":342,"kind":1024,"name":"valid","url":"interfaces/ClientSideValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":343,"kind":1024,"name":"discount","url":"interfaces/ClientSideValidateResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":344,"kind":1024,"name":"applicable_to","url":"interfaces/ClientSideValidateResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":345,"kind":1024,"name":"order","url":"interfaces/ClientSideValidateResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":346,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":347,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.amount-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":348,"kind":1024,"name":"discount_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":349,"kind":1024,"name":"total_discount_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":350,"kind":1024,"name":"total_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":351,"kind":1024,"name":"items","url":"interfaces/ClientSideValidateResponse.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":352,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideValidateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":353,"kind":1024,"name":"campaign_id","url":"interfaces/ClientSideValidateResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":354,"kind":1024,"name":"loyalty","url":"interfaces/ClientSideValidateResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":355,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":356,"kind":1024,"name":"points_cost","url":"interfaces/ClientSideValidateResponse.html#__type-1.points_cost","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":357,"kind":1024,"name":"gift","url":"interfaces/ClientSideValidateResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":358,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":359,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":360,"kind":1024,"name":"balance","url":"interfaces/ClientSideValidateResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":361,"kind":1024,"name":"promotions","url":"interfaces/ClientSideValidateResponse.html#promotions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":362,"kind":256,"name":"ClientSideRedeemPayload","url":"interfaces/ClientSideRedeemPayload.html","classes":"tsd-kind-interface"},{"id":363,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideRedeemPayload.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":364,"kind":1024,"name":"customer","url":"interfaces/ClientSideRedeemPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":365,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemPayload.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":366,"kind":1024,"name":"metadata","url":"interfaces/ClientSideRedeemPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":367,"kind":1024,"name":"reward","url":"interfaces/ClientSideRedeemPayload.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":368,"kind":65536,"name":"__type","url":"interfaces/ClientSideRedeemPayload.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":369,"kind":1024,"name":"id","url":"interfaces/ClientSideRedeemPayload.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideRedeemPayload.__type"},{"id":370,"kind":1024,"name":"session","url":"interfaces/ClientSideRedeemPayload.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":371,"kind":256,"name":"ClientSideRedeemResponse","url":"interfaces/ClientSideRedeemResponse.html","classes":"tsd-kind-interface"},{"id":372,"kind":1024,"name":"id","url":"interfaces/ClientSideRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":373,"kind":1024,"name":"object","url":"interfaces/ClientSideRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":374,"kind":1024,"name":"date","url":"interfaces/ClientSideRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":375,"kind":1024,"name":"customer_id","url":"interfaces/ClientSideRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":376,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":377,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":378,"kind":1024,"name":"metadata","url":"interfaces/ClientSideRedeemResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":379,"kind":1024,"name":"result","url":"interfaces/ClientSideRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":380,"kind":1024,"name":"voucher","url":"interfaces/ClientSideRedeemResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":381,"kind":256,"name":"ClientSidePublishPayload","url":"interfaces/ClientSidePublishPayload.html","classes":"tsd-kind-interface"},{"id":382,"kind":1024,"name":"source_id","url":"interfaces/ClientSidePublishPayload.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":383,"kind":1024,"name":"channel","url":"interfaces/ClientSidePublishPayload.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":384,"kind":1024,"name":"customer","url":"interfaces/ClientSidePublishPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":385,"kind":1024,"name":"voucher","url":"interfaces/ClientSidePublishPayload.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":386,"kind":1024,"name":"metadata","url":"interfaces/ClientSidePublishPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":387,"kind":4194304,"name":"ClientSidePublishPreparedPayload","url":"modules.html#ClientSidePublishPreparedPayload","classes":"tsd-kind-type-alias"},{"id":388,"kind":256,"name":"ClientSidePublishQueryParams","url":"interfaces/ClientSidePublishQueryParams.html","classes":"tsd-kind-interface"},{"id":389,"kind":1024,"name":"join_once","url":"interfaces/ClientSidePublishQueryParams.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishQueryParams"},{"id":390,"kind":1024,"name":"campaign","url":"interfaces/ClientSidePublishQueryParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishQueryParams"},{"id":391,"kind":256,"name":"ClientSidePublishCampaign","url":"interfaces/ClientSidePublishCampaign.html","classes":"tsd-kind-interface"},{"id":392,"kind":1024,"name":"name","url":"interfaces/ClientSidePublishCampaign.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishCampaign"},{"id":393,"kind":1024,"name":"count","url":"interfaces/ClientSidePublishCampaign.html#count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishCampaign"},{"id":394,"kind":4194304,"name":"ClientSidePublishResponse","url":"modules.html#ClientSidePublishResponse","classes":"tsd-kind-type-alias"},{"id":395,"kind":256,"name":"ClientSideTrackLoyalty","url":"interfaces/ClientSideTrackLoyalty.html","classes":"tsd-kind-interface"},{"id":396,"kind":1024,"name":"code","url":"interfaces/ClientSideTrackLoyalty.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackLoyalty"},{"id":397,"kind":256,"name":"ClientSideTrackReferral","url":"interfaces/ClientSideTrackReferral.html","classes":"tsd-kind-interface"},{"id":398,"kind":1024,"name":"code","url":"interfaces/ClientSideTrackReferral.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackReferral"},{"id":399,"kind":256,"name":"ClientSideTrackPayload","url":"interfaces/ClientSideTrackPayload.html","classes":"tsd-kind-interface"},{"id":400,"kind":1024,"name":"event","url":"interfaces/ClientSideTrackPayload.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":401,"kind":1024,"name":"metadata","url":"interfaces/ClientSideTrackPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":402,"kind":1024,"name":"customer","url":"interfaces/ClientSideTrackPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":403,"kind":1024,"name":"loyalty","url":"interfaces/ClientSideTrackPayload.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":404,"kind":1024,"name":"referral","url":"interfaces/ClientSideTrackPayload.html#referral","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":405,"kind":256,"name":"ClientSideTrackResponse","url":"interfaces/ClientSideTrackResponse.html","classes":"tsd-kind-interface"},{"id":406,"kind":1024,"name":"object","url":"interfaces/ClientSideTrackResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackResponse"},{"id":407,"kind":1024,"name":"type","url":"interfaces/ClientSideTrackResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackResponse"},{"id":408,"kind":4194304,"name":"ClientSideRedeemOrder","url":"modules.html#ClientSideRedeemOrder","classes":"tsd-kind-type-alias"},{"id":409,"kind":256,"name":"ClientSideRedeemWidgetPayload","url":"interfaces/ClientSideRedeemWidgetPayload.html","classes":"tsd-kind-interface"},{"id":410,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemWidgetPayload.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemWidgetPayload"},{"id":411,"kind":65536,"name":"__type","url":"interfaces/ClientSideRedeemWidgetPayload.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideRedeemWidgetPayload"},{"id":412,"kind":1024,"name":"amount","url":"interfaces/ClientSideRedeemWidgetPayload.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideRedeemWidgetPayload.__type"},{"id":413,"kind":4194304,"name":"ClientSideTrackCustomer","url":"modules.html#ClientSideTrackCustomer","classes":"tsd-kind-type-alias"},{"id":414,"kind":4194304,"name":"ClientSideConsentsListResponse","url":"modules.html#ClientSideConsentsListResponse","classes":"tsd-kind-type-alias"},{"id":415,"kind":4194304,"name":"ClientSideValidationsValidateStackableParams","url":"modules.html#ClientSideValidationsValidateStackableParams","classes":"tsd-kind-type-alias"},{"id":416,"kind":4194304,"name":"ClientSideValidationValidateStackableResponse","url":"modules.html#ClientSideValidationValidateStackableResponse","classes":"tsd-kind-type-alias"},{"id":417,"kind":4194304,"name":"ClientSideRedemptionsRedeemStackableParams","url":"modules.html#ClientSideRedemptionsRedeemStackableParams","classes":"tsd-kind-type-alias"},{"id":418,"kind":4194304,"name":"ClientSideRedemptionsRedeemStackableResponse","url":"modules.html#ClientSideRedemptionsRedeemStackableResponse","classes":"tsd-kind-type-alias"},{"id":419,"kind":256,"name":"RedemptionsRedeemBody","url":"interfaces/RedemptionsRedeemBody.html","classes":"tsd-kind-interface"},{"id":420,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemBody.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":421,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":422,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":423,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemBody.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":424,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRedeemBody.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":425,"kind":1024,"name":"gift","url":"interfaces/RedemptionsRedeemBody.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":426,"kind":1024,"name":"session","url":"interfaces/RedemptionsRedeemBody.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":427,"kind":256,"name":"RedemptionsRedeemResponse","url":"interfaces/RedemptionsRedeemResponse.html","classes":"tsd-kind-interface"},{"id":428,"kind":1024,"name":"id","url":"interfaces/RedemptionsRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":429,"kind":1024,"name":"object","url":"interfaces/RedemptionsRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":430,"kind":1024,"name":"date","url":"interfaces/RedemptionsRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":431,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":432,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":433,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":434,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":435,"kind":1024,"name":"result","url":"interfaces/RedemptionsRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":436,"kind":1024,"name":"voucher","url":"interfaces/RedemptionsRedeemResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":437,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":438,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRedeemResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":439,"kind":1024,"name":"related_object_type","url":"interfaces/RedemptionsRedeemResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":440,"kind":1024,"name":"gift","url":"interfaces/RedemptionsRedeemResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":441,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":442,"kind":1024,"name":"amount","url":"interfaces/RedemptionsRedeemResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemResponse.__type"},{"id":443,"kind":1024,"name":"loyalty_card","url":"interfaces/RedemptionsRedeemResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":444,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":445,"kind":1024,"name":"points","url":"interfaces/RedemptionsRedeemResponse.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemResponse.__type"},{"id":446,"kind":1024,"name":"promotion_tier","url":"interfaces/RedemptionsRedeemResponse.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":447,"kind":1024,"name":"failure_code","url":"interfaces/RedemptionsRedeemResponse.html#failure_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":448,"kind":1024,"name":"failure_message","url":"interfaces/RedemptionsRedeemResponse.html#failure_message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":449,"kind":256,"name":"RedemptionsListParams","url":"interfaces/RedemptionsListParams.html","classes":"tsd-kind-interface"},{"id":450,"kind":1024,"name":"limit","url":"interfaces/RedemptionsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":451,"kind":1024,"name":"page","url":"interfaces/RedemptionsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":452,"kind":1024,"name":"result","url":"interfaces/RedemptionsListParams.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":453,"kind":1024,"name":"campaign","url":"interfaces/RedemptionsListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":454,"kind":1024,"name":"customer","url":"interfaces/RedemptionsListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":455,"kind":1024,"name":"created_at","url":"interfaces/RedemptionsListParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":456,"kind":65536,"name":"__type","url":"interfaces/RedemptionsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":457,"kind":1024,"name":"before","url":"interfaces/RedemptionsListParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsListParams.__type"},{"id":458,"kind":1024,"name":"after","url":"interfaces/RedemptionsListParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsListParams.__type"},{"id":459,"kind":256,"name":"Redemption","url":"interfaces/Redemption.html","classes":"tsd-kind-interface"},{"id":460,"kind":1024,"name":"id","url":"interfaces/Redemption.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":461,"kind":1024,"name":"object","url":"interfaces/Redemption.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":462,"kind":1024,"name":"date","url":"interfaces/Redemption.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":463,"kind":1024,"name":"customer_id","url":"interfaces/Redemption.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":464,"kind":1024,"name":"tracking_id","url":"interfaces/Redemption.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":465,"kind":1024,"name":"order","url":"interfaces/Redemption.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":466,"kind":1024,"name":"metadata","url":"interfaces/Redemption.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":467,"kind":1024,"name":"result","url":"interfaces/Redemption.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":468,"kind":1024,"name":"failure_code","url":"interfaces/Redemption.html#failure_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":469,"kind":1024,"name":"failure_message","url":"interfaces/Redemption.html#failure_message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":470,"kind":1024,"name":"customer","url":"interfaces/Redemption.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":471,"kind":1024,"name":"related_object_type","url":"interfaces/Redemption.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":472,"kind":1024,"name":"voucher","url":"interfaces/Redemption.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":473,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":474,"kind":1024,"name":"code","url":"interfaces/Redemption.html#__type-2.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":475,"kind":1024,"name":"campaign","url":"interfaces/Redemption.html#__type-2.campaign","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":476,"kind":1024,"name":"id","url":"interfaces/Redemption.html#__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":477,"kind":1024,"name":"object","url":"interfaces/Redemption.html#__type-2.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":478,"kind":1024,"name":"campaign_id","url":"interfaces/Redemption.html#__type-2.campaign_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":479,"kind":1024,"name":"gift","url":"interfaces/Redemption.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":480,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":481,"kind":1024,"name":"amount","url":"interfaces/Redemption.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":482,"kind":1024,"name":"loyalty_card","url":"interfaces/Redemption.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":483,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":484,"kind":1024,"name":"points","url":"interfaces/Redemption.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":485,"kind":256,"name":"RedemptionsListResponse","url":"interfaces/RedemptionsListResponse.html","classes":"tsd-kind-interface"},{"id":486,"kind":1024,"name":"object","url":"interfaces/RedemptionsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":487,"kind":1024,"name":"total","url":"interfaces/RedemptionsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":488,"kind":1024,"name":"data_ref","url":"interfaces/RedemptionsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":489,"kind":1024,"name":"redemptions","url":"interfaces/RedemptionsListResponse.html#redemptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":490,"kind":256,"name":"RedemptionsGetForVoucherResponse","url":"interfaces/RedemptionsGetForVoucherResponse.html","classes":"tsd-kind-interface"},{"id":491,"kind":1024,"name":"object","url":"interfaces/RedemptionsGetForVoucherResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":492,"kind":1024,"name":"total","url":"interfaces/RedemptionsGetForVoucherResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":493,"kind":1024,"name":"data_ref","url":"interfaces/RedemptionsGetForVoucherResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":494,"kind":1024,"name":"quantity","url":"interfaces/RedemptionsGetForVoucherResponse.html#quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":495,"kind":1024,"name":"redeemed_quantity","url":"interfaces/RedemptionsGetForVoucherResponse.html#redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":496,"kind":1024,"name":"redeemed_amount","url":"interfaces/RedemptionsGetForVoucherResponse.html#redeemed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":497,"kind":1024,"name":"redemption_entries","url":"interfaces/RedemptionsGetForVoucherResponse.html#redemption_entries","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":498,"kind":256,"name":"RedemptionsRollbackParams","url":"interfaces/RedemptionsRollbackParams.html","classes":"tsd-kind-interface"},{"id":499,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackParams.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":500,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":501,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":502,"kind":256,"name":"RedemptionsRollbackQueryParams","url":"interfaces/RedemptionsRollbackQueryParams.html","classes":"tsd-kind-interface"},{"id":503,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackQueryParams.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackQueryParams"},{"id":504,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackQueryParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackQueryParams"},{"id":505,"kind":256,"name":"RedemptionsRollbackPayload","url":"interfaces/RedemptionsRollbackPayload.html","classes":"tsd-kind-interface"},{"id":506,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackPayload"},{"id":507,"kind":256,"name":"RedemptionsRollbackResponse","url":"interfaces/RedemptionsRollbackResponse.html","classes":"tsd-kind-interface"},{"id":508,"kind":1024,"name":"id","url":"interfaces/RedemptionsRollbackResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":509,"kind":1024,"name":"object","url":"interfaces/RedemptionsRollbackResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":510,"kind":1024,"name":"date","url":"interfaces/RedemptionsRollbackResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":511,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRollbackResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":512,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":513,"kind":1024,"name":"redemption","url":"interfaces/RedemptionsRollbackResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":514,"kind":1024,"name":"amount","url":"interfaces/RedemptionsRollbackResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":515,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackResponse.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":516,"kind":1024,"name":"result","url":"interfaces/RedemptionsRollbackResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":517,"kind":1024,"name":"voucher","url":"interfaces/RedemptionsRollbackResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":518,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":519,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRollbackResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":520,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRollbackResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":521,"kind":1024,"name":"assignment_id","url":"interfaces/RedemptionsRollbackResponse.html#__type.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackResponse.__type"},{"id":522,"kind":1024,"name":"object","url":"interfaces/RedemptionsRollbackResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackResponse.__type"},{"id":523,"kind":4194304,"name":"SimpleRollback","url":"modules.html#SimpleRollback","classes":"tsd-kind-type-alias"},{"id":524,"kind":256,"name":"RedemptionsRedeemStackableParams","url":"interfaces/RedemptionsRedeemStackableParams.html","classes":"tsd-kind-interface"},{"id":525,"kind":1024,"name":"options","url":"interfaces/RedemptionsRedeemStackableParams.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":526,"kind":1024,"name":"redeemables","url":"interfaces/RedemptionsRedeemStackableParams.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":527,"kind":1024,"name":"session","url":"interfaces/RedemptionsRedeemStackableParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":528,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":529,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemStackableParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":530,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemStackableParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":531,"kind":4194304,"name":"RedemptionsRedeemStackableRedemptionResult","url":"modules.html#RedemptionsRedeemStackableRedemptionResult","classes":"tsd-kind-type-alias"},{"id":532,"kind":4194304,"name":"RedemptionsRedeemStackableOrderResponse","url":"modules.html#RedemptionsRedeemStackableOrderResponse","classes":"tsd-kind-type-alias"},{"id":533,"kind":256,"name":"RedemptionsRedeemStackableResponse","url":"interfaces/RedemptionsRedeemStackableResponse.html","classes":"tsd-kind-interface"},{"id":534,"kind":1024,"name":"redemptions","url":"interfaces/RedemptionsRedeemStackableResponse.html#redemptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":535,"kind":1024,"name":"parent_redemption","url":"interfaces/RedemptionsRedeemStackableResponse.html#parent_redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":536,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":537,"kind":1024,"name":"id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":538,"kind":1024,"name":"object","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":539,"kind":1024,"name":"date","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":540,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":541,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.tracking_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":542,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":543,"kind":1024,"name":"result","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.result","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":544,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.order-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":545,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":546,"kind":1024,"name":"related_object_type","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.related_object_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":547,"kind":1024,"name":"related_object_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.related_object_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":548,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":549,"kind":256,"name":"RedemptionsRollbackStackableResponse","url":"interfaces/RedemptionsRollbackStackableResponse.html","classes":"tsd-kind-interface"},{"id":550,"kind":1024,"name":"rollbacks","url":"interfaces/RedemptionsRollbackStackableResponse.html#rollbacks","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":551,"kind":1024,"name":"parent_rollback","url":"interfaces/RedemptionsRollbackStackableResponse.html#parent_rollback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":552,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":553,"kind":1024,"name":"id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":554,"kind":1024,"name":"date","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":555,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":556,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.tracking_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":557,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":558,"kind":1024,"name":"result","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.result","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":559,"kind":1024,"name":"order","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.order-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":560,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":561,"kind":1024,"name":"redemption","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":562,"kind":1024,"name":"order","url":"interfaces/RedemptionsRollbackStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":563,"kind":256,"name":"ValidationsValidateVoucherParams","url":"interfaces/ValidationsValidateVoucherParams.html","classes":"tsd-kind-interface"},{"id":564,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateVoucherParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":565,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":566,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":567,"kind":1024,"name":"source_id","url":"interfaces/ValidationsValidateVoucherParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":568,"kind":1024,"name":"name","url":"interfaces/ValidationsValidateVoucherParams.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":569,"kind":1024,"name":"email","url":"interfaces/ValidationsValidateVoucherParams.html#__type.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":570,"kind":1024,"name":"description","url":"interfaces/ValidationsValidateVoucherParams.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":571,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherParams.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":572,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateVoucherParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":573,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":574,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":575,"kind":1024,"name":"source_id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.source_id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":576,"kind":1024,"name":"amount","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":577,"kind":1024,"name":"items","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":578,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":579,"kind":1024,"name":"gift","url":"interfaces/ValidationsValidateVoucherParams.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":580,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":581,"kind":1024,"name":"credits","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.credits","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":582,"kind":1024,"name":"reward","url":"interfaces/ValidationsValidateVoucherParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":583,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":584,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-3.id-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":585,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateVoucherParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":586,"kind":256,"name":"ValidationsValidateVoucherResponse","url":"interfaces/ValidationsValidateVoucherResponse.html","classes":"tsd-kind-interface"},{"id":587,"kind":1024,"name":"applicable_to","url":"interfaces/ValidationsValidateVoucherResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":588,"kind":1024,"name":"inapplicable_to","url":"interfaces/ValidationsValidateVoucherResponse.html#inapplicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":589,"kind":1024,"name":"campaign","url":"interfaces/ValidationsValidateVoucherResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":590,"kind":1024,"name":"campaign_id","url":"interfaces/ValidationsValidateVoucherResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":591,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":592,"kind":1024,"name":"code","url":"interfaces/ValidationsValidateVoucherResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":593,"kind":1024,"name":"valid","url":"interfaces/ValidationsValidateVoucherResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":594,"kind":1024,"name":"discount","url":"interfaces/ValidationsValidateVoucherResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":595,"kind":1024,"name":"gift","url":"interfaces/ValidationsValidateVoucherResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":596,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":597,"kind":1024,"name":"amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":598,"kind":1024,"name":"balance","url":"interfaces/ValidationsValidateVoucherResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":599,"kind":1024,"name":"loyalty","url":"interfaces/ValidationsValidateVoucherResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":600,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":601,"kind":1024,"name":"points_cost","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-1.points_cost","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":602,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateVoucherResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":603,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":604,"kind":1024,"name":"amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.amount-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":605,"kind":1024,"name":"discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":606,"kind":1024,"name":"total_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":607,"kind":1024,"name":"total_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":608,"kind":1024,"name":"applied_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":609,"kind":1024,"name":"total_applied_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.total_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":610,"kind":1024,"name":"items","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":611,"kind":1024,"name":"initial_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.initial_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":612,"kind":1024,"name":"items_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.items_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":613,"kind":1024,"name":"items_applied_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.items_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":614,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":615,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateVoucherResponse.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":616,"kind":1024,"name":"start_date","url":"interfaces/ValidationsValidateVoucherResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":617,"kind":1024,"name":"expiration_date","url":"interfaces/ValidationsValidateVoucherResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":618,"kind":1024,"name":"tracking_id","url":"interfaces/ValidationsValidateVoucherResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":619,"kind":1024,"name":"error","url":"interfaces/ValidationsValidateVoucherResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":620,"kind":256,"name":"ValidationsValidateStackableParams","url":"interfaces/ValidationsValidateStackableParams.html","classes":"tsd-kind-interface"},{"id":621,"kind":1024,"name":"options","url":"interfaces/ValidationsValidateStackableParams.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":622,"kind":1024,"name":"redeemables","url":"interfaces/ValidationsValidateStackableParams.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":623,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateStackableParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":624,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateStackableParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":625,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateStackableParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":626,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateStackableParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":627,"kind":256,"name":"ValidationValidateStackableResponse","url":"interfaces/ValidationValidateStackableResponse.html","classes":"tsd-kind-interface"},{"id":628,"kind":1024,"name":"valid","url":"interfaces/ValidationValidateStackableResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":629,"kind":1024,"name":"tracking_id","url":"interfaces/ValidationValidateStackableResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":630,"kind":1024,"name":"session","url":"interfaces/ValidationValidateStackableResponse.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":631,"kind":1024,"name":"order","url":"interfaces/ValidationValidateStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":632,"kind":1024,"name":"redeemables","url":"interfaces/ValidationValidateStackableResponse.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":633,"kind":4194304,"name":"ValidationsValidateCode","url":"modules.html#ValidationsValidateCode","classes":"tsd-kind-type-alias"},{"id":634,"kind":4194304,"name":"ValidationsValidateContext","url":"modules.html#ValidationsValidateContext","classes":"tsd-kind-type-alias"},{"id":635,"kind":256,"name":"CampaignResponse","url":"interfaces/CampaignResponse.html","classes":"tsd-kind-interface"},{"id":636,"kind":1024,"name":"id","url":"interfaces/CampaignResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":637,"kind":1024,"name":"name","url":"interfaces/CampaignResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":638,"kind":1024,"name":"campaign_type","url":"interfaces/CampaignResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":639,"kind":1024,"name":"type","url":"interfaces/CampaignResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":640,"kind":1024,"name":"category","url":"interfaces/CampaignResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":641,"kind":1024,"name":"auto_join","url":"interfaces/CampaignResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":642,"kind":1024,"name":"join_once","url":"interfaces/CampaignResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":643,"kind":1024,"name":"description","url":"interfaces/CampaignResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":644,"kind":1024,"name":"start_date","url":"interfaces/CampaignResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":645,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/CampaignResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":646,"kind":65536,"name":"__type","url":"interfaces/CampaignResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":647,"kind":1024,"name":"data","url":"interfaces/CampaignResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":648,"kind":1024,"name":"object","url":"interfaces/CampaignResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":649,"kind":1024,"name":"total","url":"interfaces/CampaignResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":650,"kind":1024,"name":"data_ref","url":"interfaces/CampaignResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":651,"kind":1024,"name":"expiration_date","url":"interfaces/CampaignResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":652,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/CampaignResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":653,"kind":1024,"name":"validity_timeframe","url":"interfaces/CampaignResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":654,"kind":65536,"name":"__type","url":"interfaces/CampaignResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":655,"kind":1024,"name":"interval","url":"interfaces/CampaignResponse.html#__type-1.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":656,"kind":1024,"name":"duration","url":"interfaces/CampaignResponse.html#__type-1.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":657,"kind":1024,"name":"validity_day_of_week","url":"interfaces/CampaignResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":658,"kind":1024,"name":"metadata","url":"interfaces/CampaignResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":659,"kind":1024,"name":"created_at","url":"interfaces/CampaignResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":660,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/CampaignResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":661,"kind":1024,"name":"active","url":"interfaces/CampaignResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":662,"kind":1024,"name":"voucher","url":"interfaces/CampaignResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":663,"kind":1024,"name":"referral_program","url":"interfaces/CampaignResponse.html#referral_program","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":664,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/CampaignResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":665,"kind":1024,"name":"protected","url":"interfaces/CampaignResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":666,"kind":1024,"name":"vouchers_count","url":"interfaces/CampaignResponse.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":667,"kind":1024,"name":"object","url":"interfaces/CampaignResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":668,"kind":256,"name":"CampaignsQualificationsBody","url":"interfaces/CampaignsQualificationsBody.html","classes":"tsd-kind-interface"},{"id":669,"kind":1024,"name":"customer","url":"interfaces/CampaignsQualificationsBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsBody"},{"id":670,"kind":1024,"name":"order","url":"interfaces/CampaignsQualificationsBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsBody"},{"id":671,"kind":256,"name":"CampaignsQualificationsParams","url":"interfaces/CampaignsQualificationsParams.html","classes":"tsd-kind-interface"},{"id":672,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/CampaignsQualificationsParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":673,"kind":1024,"name":"order","url":"interfaces/CampaignsQualificationsParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":674,"kind":1024,"name":"limit","url":"interfaces/CampaignsQualificationsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":675,"kind":256,"name":"CampaignsQualificationsResponse","url":"interfaces/CampaignsQualificationsResponse.html","classes":"tsd-kind-interface"},{"id":676,"kind":1024,"name":"object","url":"interfaces/CampaignsQualificationsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":677,"kind":1024,"name":"total","url":"interfaces/CampaignsQualificationsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":678,"kind":1024,"name":"data_ref","url":"interfaces/CampaignsQualificationsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":679,"kind":1024,"name":"data","url":"interfaces/CampaignsQualificationsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":680,"kind":1024,"name":"id","url":"interfaces/CampaignsQualificationsResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":681,"kind":1024,"name":"created_at","url":"interfaces/CampaignsQualificationsResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":682,"kind":4194304,"name":"CampaignsCreateCampaign","url":"modules.html#CampaignsCreateCampaign","classes":"tsd-kind-type-alias"},{"id":683,"kind":4194304,"name":"CampaignsUpdateCampaign","url":"modules.html#CampaignsUpdateCampaign","classes":"tsd-kind-type-alias"},{"id":684,"kind":256,"name":"CampaignsDeleteParams","url":"interfaces/CampaignsDeleteParams.html","classes":"tsd-kind-interface"},{"id":685,"kind":1024,"name":"force","url":"interfaces/CampaignsDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsDeleteParams"},{"id":686,"kind":4194304,"name":"CampaignsAddVoucherBody","url":"modules.html#CampaignsAddVoucherBody","classes":"tsd-kind-type-alias"},{"id":687,"kind":256,"name":"CampaignsAddVoucherParams","url":"interfaces/CampaignsAddVoucherParams.html","classes":"tsd-kind-interface"},{"id":688,"kind":1024,"name":"vouchers_count","url":"interfaces/CampaignsAddVoucherParams.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsAddVoucherParams"},{"id":689,"kind":4194304,"name":"CampaignsAddCertainVoucherParams","url":"modules.html#CampaignsAddCertainVoucherParams","classes":"tsd-kind-type-alias"},{"id":690,"kind":4194304,"name":"CampaignsAddVoucherResponse","url":"modules.html#CampaignsAddVoucherResponse","classes":"tsd-kind-type-alias"},{"id":691,"kind":4194304,"name":"CampaignsAddCertainVoucherResponse","url":"modules.html#CampaignsAddCertainVoucherResponse","classes":"tsd-kind-type-alias"},{"id":692,"kind":4194304,"name":"CampaignsImportVouchers","url":"modules.html#CampaignsImportVouchers","classes":"tsd-kind-type-alias"},{"id":693,"kind":256,"name":"CampaignsListParams","url":"interfaces/CampaignsListParams.html","classes":"tsd-kind-interface"},{"id":694,"kind":1024,"name":"limit","url":"interfaces/CampaignsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":695,"kind":1024,"name":"page","url":"interfaces/CampaignsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":696,"kind":1024,"name":"campaign_type","url":"interfaces/CampaignsListParams.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":697,"kind":1024,"name":"filters","url":"interfaces/CampaignsListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":698,"kind":65536,"name":"__type","url":"interfaces/CampaignsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":699,"kind":1024,"name":"junction","url":"interfaces/CampaignsListParams.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignsListParams.__type"},{"id":700,"kind":256,"name":"CampaignsListResponse","url":"interfaces/CampaignsListResponse.html","classes":"tsd-kind-interface"},{"id":701,"kind":1024,"name":"object","url":"interfaces/CampaignsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":702,"kind":1024,"name":"total","url":"interfaces/CampaignsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":703,"kind":1024,"name":"data_ref","url":"interfaces/CampaignsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":704,"kind":1024,"name":"campaigns","url":"interfaces/CampaignsListResponse.html#campaigns","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":705,"kind":4194304,"name":"CampaignsVouchersImportResponse","url":"modules.html#CampaignsVouchersImportResponse","classes":"tsd-kind-type-alias"},{"id":706,"kind":65536,"name":"__type","url":"modules.html#CampaignsVouchersImportResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"CampaignsVouchersImportResponse"},{"id":707,"kind":1024,"name":"async_action_id","url":"modules.html#CampaignsVouchersImportResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignsVouchersImportResponse.__type"},{"id":708,"kind":4194304,"name":"CampaignsCreateCampaignResponse","url":"modules.html#CampaignsCreateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":709,"kind":4194304,"name":"CampaignsUpdateCampaignResponse","url":"modules.html#CampaignsUpdateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":710,"kind":4194304,"name":"CampaignsGetCampaignResponse","url":"modules.html#CampaignsGetCampaignResponse","classes":"tsd-kind-type-alias"},{"id":711,"kind":256,"name":"SimplePromotionTier","url":"interfaces/SimplePromotionTier.html","classes":"tsd-kind-interface"},{"id":712,"kind":1024,"name":"tracking_id","url":"interfaces/SimplePromotionTier.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":713,"kind":1024,"name":"metadata","url":"interfaces/SimplePromotionTier.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":714,"kind":1024,"name":"valid","url":"interfaces/SimplePromotionTier.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":715,"kind":1024,"name":"id","url":"interfaces/SimplePromotionTier.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":716,"kind":1024,"name":"name","url":"interfaces/SimplePromotionTier.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":717,"kind":1024,"name":"banner","url":"interfaces/SimplePromotionTier.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":718,"kind":1024,"name":"discount","url":"interfaces/SimplePromotionTier.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":719,"kind":1024,"name":"hierarchy","url":"interfaces/SimplePromotionTier.html#hierarchy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":720,"kind":1024,"name":"object","url":"interfaces/SimplePromotionTier.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":721,"kind":256,"name":"PromotionTier","url":"interfaces/PromotionTier.html","classes":"tsd-kind-interface"},{"id":722,"kind":1024,"name":"id","url":"interfaces/PromotionTier.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":723,"kind":1024,"name":"object","url":"interfaces/PromotionTier.html#object-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":724,"kind":1024,"name":"name","url":"interfaces/PromotionTier.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":725,"kind":1024,"name":"banner","url":"interfaces/PromotionTier.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":726,"kind":1024,"name":"campaign","url":"interfaces/PromotionTier.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":727,"kind":65536,"name":"__type","url":"interfaces/PromotionTier.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTier"},{"id":728,"kind":1024,"name":"id","url":"interfaces/PromotionTier.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":729,"kind":1024,"name":"object","url":"interfaces/PromotionTier.html#__type-1.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":730,"kind":1024,"name":"start_date","url":"interfaces/PromotionTier.html#__type-1.start_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":731,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionTier.html#__type-1.expiration_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":732,"kind":1024,"name":"active","url":"interfaces/PromotionTier.html#__type-1.active-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":733,"kind":1024,"name":"validation_rule_assignments","url":"interfaces/PromotionTier.html#validation_rule_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":734,"kind":1024,"name":"action","url":"interfaces/PromotionTier.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":735,"kind":65536,"name":"__type","url":"interfaces/PromotionTier.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTier"},{"id":736,"kind":1024,"name":"discount","url":"interfaces/PromotionTier.html#__type.discount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":737,"kind":1024,"name":"hierarchy","url":"interfaces/PromotionTier.html#hierarchy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":738,"kind":1024,"name":"metadata","url":"interfaces/PromotionTier.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":739,"kind":1024,"name":"active","url":"interfaces/PromotionTier.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":740,"kind":256,"name":"PromotionTiersListAllParams","url":"interfaces/PromotionTiersListAllParams.html","classes":"tsd-kind-interface"},{"id":741,"kind":1024,"name":"is_available","url":"interfaces/PromotionTiersListAllParams.html#is_available","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":742,"kind":1024,"name":"limit","url":"interfaces/PromotionTiersListAllParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":743,"kind":1024,"name":"page","url":"interfaces/PromotionTiersListAllParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":744,"kind":256,"name":"PromotionTiersListAllResponse","url":"interfaces/PromotionTiersListAllResponse.html","classes":"tsd-kind-interface"},{"id":745,"kind":1024,"name":"object","url":"interfaces/PromotionTiersListAllResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":746,"kind":1024,"name":"data_ref","url":"interfaces/PromotionTiersListAllResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":747,"kind":1024,"name":"tiers","url":"interfaces/PromotionTiersListAllResponse.html#tiers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":748,"kind":1024,"name":"has_more","url":"interfaces/PromotionTiersListAllResponse.html#has_more","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":749,"kind":4194304,"name":"PromotionTiersListResponse","url":"modules.html#PromotionTiersListResponse","classes":"tsd-kind-type-alias"},{"id":750,"kind":4194304,"name":"PromotionTierGetResponse","url":"modules.html#PromotionTierGetResponse","classes":"tsd-kind-type-alias"},{"id":751,"kind":256,"name":"PromotionTiersCreateParams","url":"interfaces/PromotionTiersCreateParams.html","classes":"tsd-kind-interface"},{"id":752,"kind":1024,"name":"name","url":"interfaces/PromotionTiersCreateParams.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":753,"kind":1024,"name":"banner","url":"interfaces/PromotionTiersCreateParams.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":754,"kind":1024,"name":"action","url":"interfaces/PromotionTiersCreateParams.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":755,"kind":65536,"name":"__type","url":"interfaces/PromotionTiersCreateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":756,"kind":1024,"name":"discount","url":"interfaces/PromotionTiersCreateParams.html#__type.discount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersCreateParams.__type"},{"id":757,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersCreateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":758,"kind":4194304,"name":"PromotionTiersCreateResponse","url":"modules.html#PromotionTiersCreateResponse","classes":"tsd-kind-type-alias"},{"id":759,"kind":256,"name":"PromotionTiersRedeemParams","url":"interfaces/PromotionTiersRedeemParams.html","classes":"tsd-kind-interface"},{"id":760,"kind":1024,"name":"customer","url":"interfaces/PromotionTiersRedeemParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":761,"kind":1024,"name":"order","url":"interfaces/PromotionTiersRedeemParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":762,"kind":65536,"name":"__type","url":"interfaces/PromotionTiersRedeemParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":763,"kind":1024,"name":"id","url":"interfaces/PromotionTiersRedeemParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":764,"kind":1024,"name":"source_id","url":"interfaces/PromotionTiersRedeemParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":765,"kind":1024,"name":"amount","url":"interfaces/PromotionTiersRedeemParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":766,"kind":1024,"name":"items","url":"interfaces/PromotionTiersRedeemParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":767,"kind":1024,"name":"status","url":"interfaces/PromotionTiersRedeemParams.html#__type.status","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":768,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersRedeemParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":769,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersRedeemParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":770,"kind":1024,"name":"session","url":"interfaces/PromotionTiersRedeemParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":771,"kind":256,"name":"PromotionTiersRedeemResponse","url":"interfaces/PromotionTiersRedeemResponse.html","classes":"tsd-kind-interface"},{"id":772,"kind":1024,"name":"id","url":"interfaces/PromotionTiersRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":773,"kind":1024,"name":"object","url":"interfaces/PromotionTiersRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":774,"kind":1024,"name":"date","url":"interfaces/PromotionTiersRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":775,"kind":1024,"name":"customer_id","url":"interfaces/PromotionTiersRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":776,"kind":1024,"name":"tracking_id","url":"interfaces/PromotionTiersRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":777,"kind":1024,"name":"order","url":"interfaces/PromotionTiersRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":778,"kind":1024,"name":"result","url":"interfaces/PromotionTiersRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":779,"kind":1024,"name":"promotion_tier","url":"interfaces/PromotionTiersRedeemResponse.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":780,"kind":256,"name":"PromotionTierRedeemDetailsSimple","url":"interfaces/PromotionTierRedeemDetailsSimple.html","classes":"tsd-kind-interface"},{"id":781,"kind":1024,"name":"id","url":"interfaces/PromotionTierRedeemDetailsSimple.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":782,"kind":1024,"name":"name","url":"interfaces/PromotionTierRedeemDetailsSimple.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":783,"kind":1024,"name":"banner","url":"interfaces/PromotionTierRedeemDetailsSimple.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":784,"kind":1024,"name":"campaign","url":"interfaces/PromotionTierRedeemDetailsSimple.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":785,"kind":65536,"name":"__type","url":"interfaces/PromotionTierRedeemDetailsSimple.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":786,"kind":1024,"name":"id","url":"interfaces/PromotionTierRedeemDetailsSimple.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTierRedeemDetailsSimple.__type"},{"id":787,"kind":4194304,"name":"PromotionTierRedeemDetails","url":"modules.html#PromotionTierRedeemDetails","classes":"tsd-kind-type-alias"},{"id":788,"kind":4194304,"name":"PromotionTiersUpdateParams","url":"modules.html#PromotionTiersUpdateParams","classes":"tsd-kind-type-alias"},{"id":789,"kind":4194304,"name":"PromotionTiersUpdateResponse","url":"modules.html#PromotionTiersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":790,"kind":256,"name":"PromotionsCreateResponse","url":"interfaces/PromotionsCreateResponse.html","classes":"tsd-kind-interface"},{"id":791,"kind":1024,"name":"id","url":"interfaces/PromotionsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":792,"kind":1024,"name":"name","url":"interfaces/PromotionsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":793,"kind":1024,"name":"campaign_type","url":"interfaces/PromotionsCreateResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":794,"kind":1024,"name":"type","url":"interfaces/PromotionsCreateResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":795,"kind":1024,"name":"description","url":"interfaces/PromotionsCreateResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":796,"kind":1024,"name":"start_date","url":"interfaces/PromotionsCreateResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":797,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionsCreateResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":798,"kind":1024,"name":"promotion","url":"interfaces/PromotionsCreateResponse.html#promotion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":799,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":800,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":801,"kind":1024,"name":"data_ref","url":"interfaces/PromotionsCreateResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":802,"kind":1024,"name":"tiers","url":"interfaces/PromotionsCreateResponse.html#__type.tiers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":803,"kind":1024,"name":"has_more","url":"interfaces/PromotionsCreateResponse.html#__type.has_more","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":804,"kind":1024,"name":"category","url":"interfaces/PromotionsCreateResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":805,"kind":1024,"name":"auto_join","url":"interfaces/PromotionsCreateResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":806,"kind":1024,"name":"join_once","url":"interfaces/PromotionsCreateResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":807,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/PromotionsCreateResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":808,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":809,"kind":1024,"name":"data","url":"interfaces/PromotionsCreateResponse.html#__type-1.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":810,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#__type-1.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":811,"kind":1024,"name":"total","url":"interfaces/PromotionsCreateResponse.html#__type-1.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":812,"kind":1024,"name":"data_ref","url":"interfaces/PromotionsCreateResponse.html#__type-1.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":813,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/PromotionsCreateResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":814,"kind":1024,"name":"validity_timeframe","url":"interfaces/PromotionsCreateResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":815,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":816,"kind":1024,"name":"interval","url":"interfaces/PromotionsCreateResponse.html#__type-2.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":817,"kind":1024,"name":"duration","url":"interfaces/PromotionsCreateResponse.html#__type-2.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":818,"kind":1024,"name":"validity_day_of_week","url":"interfaces/PromotionsCreateResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":819,"kind":1024,"name":"metadata","url":"interfaces/PromotionsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":820,"kind":1024,"name":"created_at","url":"interfaces/PromotionsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":821,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/PromotionsCreateResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":822,"kind":1024,"name":"active","url":"interfaces/PromotionsCreateResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":823,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/PromotionsCreateResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":824,"kind":1024,"name":"protected","url":"interfaces/PromotionsCreateResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":825,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":826,"kind":256,"name":"PromotionsCreate","url":"interfaces/PromotionsCreate.html","classes":"tsd-kind-interface"},{"id":827,"kind":1024,"name":"name","url":"interfaces/PromotionsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":828,"kind":1024,"name":"campaign_type","url":"interfaces/PromotionsCreate.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":829,"kind":1024,"name":"start_date","url":"interfaces/PromotionsCreate.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":830,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionsCreate.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":831,"kind":1024,"name":"promotion","url":"interfaces/PromotionsCreate.html#promotion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":832,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":833,"kind":1024,"name":"tiers","url":"interfaces/PromotionsCreate.html#__type.tiers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreate.__type"},{"id":834,"kind":256,"name":"PromotionsValidateParams","url":"interfaces/PromotionsValidateParams.html","classes":"tsd-kind-interface"},{"id":835,"kind":1024,"name":"customer","url":"interfaces/PromotionsValidateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":836,"kind":1024,"name":"order","url":"interfaces/PromotionsValidateParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":837,"kind":65536,"name":"__type","url":"interfaces/PromotionsValidateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":838,"kind":1024,"name":"id","url":"interfaces/PromotionsValidateParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":839,"kind":1024,"name":"source_id","url":"interfaces/PromotionsValidateParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":840,"kind":1024,"name":"items","url":"interfaces/PromotionsValidateParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":841,"kind":1024,"name":"amount","url":"interfaces/PromotionsValidateParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":842,"kind":1024,"name":"metadata","url":"interfaces/PromotionsValidateParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":843,"kind":1024,"name":"metadata","url":"interfaces/PromotionsValidateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":844,"kind":256,"name":"PromotionsValidateQueryParams","url":"interfaces/PromotionsValidateQueryParams.html","classes":"tsd-kind-interface"},{"id":845,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/PromotionsValidateQueryParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateQueryParams"},{"id":846,"kind":1024,"name":"filters","url":"interfaces/PromotionsValidateQueryParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateQueryParams"},{"id":847,"kind":256,"name":"PromotionsValidateResponse","url":"interfaces/PromotionsValidateResponse.html","classes":"tsd-kind-interface"},{"id":848,"kind":1024,"name":"valid","url":"interfaces/PromotionsValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":849,"kind":1024,"name":"promotions","url":"interfaces/PromotionsValidateResponse.html#promotions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":850,"kind":1024,"name":"tracking_id","url":"interfaces/PromotionsValidateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":851,"kind":256,"name":"LoyaltiesListParams","url":"interfaces/LoyaltiesListParams.html","classes":"tsd-kind-interface"},{"id":852,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListParams"},{"id":853,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListParams"},{"id":854,"kind":256,"name":"LoyaltiesListResponse","url":"interfaces/LoyaltiesListResponse.html","classes":"tsd-kind-interface"},{"id":855,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":856,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":857,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":858,"kind":1024,"name":"campaigns","url":"interfaces/LoyaltiesListResponse.html#campaigns","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":859,"kind":256,"name":"LoyaltiesCreateCampaign","url":"interfaces/LoyaltiesCreateCampaign.html","classes":"tsd-kind-interface"},{"id":860,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateCampaign.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":861,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesCreateCampaign.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":862,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesCreateCampaign.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":863,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaign.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":864,"kind":1024,"name":"vouchers_count","url":"interfaces/LoyaltiesCreateCampaign.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":865,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateCampaign.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":866,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":867,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.type-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":868,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesCreateCampaign.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":869,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":870,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-3.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":871,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesCreateCampaign.html#__type.loyalty_card","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":872,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":873,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":874,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":875,"kind":1024,"name":"code_config","url":"interfaces/LoyaltiesCreateCampaign.html#__type.code_config","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":876,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":877,"kind":1024,"name":"length","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":878,"kind":1024,"name":"charset","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":879,"kind":1024,"name":"pattern","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":880,"kind":1024,"name":"prefix","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":881,"kind":1024,"name":"suffix","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":882,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateCampaign.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":883,"kind":256,"name":"LoyaltiesCreateCampaignResponse","url":"interfaces/LoyaltiesCreateCampaignResponse.html","classes":"tsd-kind-interface"},{"id":884,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateCampaignResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":885,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateCampaignResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":886,"kind":1024,"name":"campaign_type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":887,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":888,"kind":1024,"name":"category","url":"interfaces/LoyaltiesCreateCampaignResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":889,"kind":1024,"name":"auto_join","url":"interfaces/LoyaltiesCreateCampaignResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":890,"kind":1024,"name":"join_once","url":"interfaces/LoyaltiesCreateCampaignResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":891,"kind":1024,"name":"description","url":"interfaces/LoyaltiesCreateCampaignResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":892,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesCreateCampaignResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":893,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":894,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":895,"kind":1024,"name":"data","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":896,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":897,"kind":1024,"name":"total","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":898,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":899,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesCreateCampaignResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":900,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/LoyaltiesCreateCampaignResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":901,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":902,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":903,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":904,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":905,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":906,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateCampaignResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":907,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesCreateCampaignResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":908,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/LoyaltiesCreateCampaignResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":909,"kind":1024,"name":"active","url":"interfaces/LoyaltiesCreateCampaignResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":910,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateCampaignResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":911,"kind":1024,"name":"referral_program","url":"interfaces/LoyaltiesCreateCampaignResponse.html#referral_program","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":912,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/LoyaltiesCreateCampaignResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":913,"kind":1024,"name":"protected","url":"interfaces/LoyaltiesCreateCampaignResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":914,"kind":1024,"name":"vouchers_count","url":"interfaces/LoyaltiesCreateCampaignResponse.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":915,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateCampaignResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":916,"kind":4194304,"name":"LoyaltiesGetCampaignResponse","url":"modules.html#LoyaltiesGetCampaignResponse","classes":"tsd-kind-type-alias"},{"id":917,"kind":256,"name":"LoyaltiesUpdateCampaign","url":"interfaces/LoyaltiesUpdateCampaign.html","classes":"tsd-kind-interface"},{"id":918,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateCampaign.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":919,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesUpdateCampaign.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":920,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesUpdateCampaign.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":921,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesUpdateCampaign.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":922,"kind":1024,"name":"description","url":"interfaces/LoyaltiesUpdateCampaign.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":923,"kind":1024,"name":"type","url":"interfaces/LoyaltiesUpdateCampaign.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":924,"kind":4194304,"name":"LoyaltiesUpdateCampaignResponse","url":"modules.html#LoyaltiesUpdateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":925,"kind":256,"name":"LoyaltiesDeleteCampaignParams","url":"interfaces/LoyaltiesDeleteCampaignParams.html","classes":"tsd-kind-interface"},{"id":926,"kind":1024,"name":"force","url":"interfaces/LoyaltiesDeleteCampaignParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesDeleteCampaignParams"},{"id":927,"kind":256,"name":"LoyaltiesListRewardAssignmentsParams","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":928,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsParams"},{"id":929,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsParams"},{"id":930,"kind":256,"name":"LoyaltiesListRewardAssignmentsResponse","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":931,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":932,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":933,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":934,"kind":1024,"name":"data","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":935,"kind":256,"name":"LoyaltiesCreateRewardAssignments","url":"interfaces/LoyaltiesCreateRewardAssignments.html","classes":"tsd-kind-interface"},{"id":936,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesCreateRewardAssignments.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":937,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesCreateRewardAssignments.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":938,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":939,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type"},{"id":940,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type"},{"id":941,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type.__type"},{"id":942,"kind":256,"name":"LoyaltiesCreateRewardAssignmentResponse","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html","classes":"tsd-kind-interface"},{"id":943,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":944,"kind":1024,"name":"reward_id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#reward_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":945,"kind":1024,"name":"related_object_id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":946,"kind":1024,"name":"related_object_type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":947,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":948,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":949,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type"},{"id":950,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type"},{"id":951,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type.__type"},{"id":952,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":953,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":954,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":955,"kind":256,"name":"LoyaltiesUpdateRewardAssignment","url":"interfaces/LoyaltiesUpdateRewardAssignment.html","classes":"tsd-kind-interface"},{"id":956,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":957,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":958,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":959,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type"},{"id":960,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type"},{"id":961,"kind":1024,"name":"points","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type.__type"},{"id":962,"kind":4194304,"name":"LoyaltiesUpdateRewardAssignmentResponse","url":"modules.html#LoyaltiesUpdateRewardAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":963,"kind":256,"name":"LoyaltiesListEarningRulesParams","url":"interfaces/LoyaltiesListEarningRulesParams.html","classes":"tsd-kind-interface"},{"id":964,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListEarningRulesParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesParams"},{"id":965,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListEarningRulesParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesParams"},{"id":966,"kind":256,"name":"LoyaltyFixed","url":"interfaces/LoyaltyFixed.html","classes":"tsd-kind-interface"},{"id":967,"kind":1024,"name":"type","url":"interfaces/LoyaltyFixed.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyFixed"},{"id":968,"kind":1024,"name":"points","url":"interfaces/LoyaltyFixed.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyFixed"},{"id":969,"kind":256,"name":"LoyaltyProportional","url":"interfaces/LoyaltyProportional.html","classes":"tsd-kind-interface"},{"id":970,"kind":1024,"name":"type","url":"interfaces/LoyaltyProportional.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":971,"kind":1024,"name":"order","url":"interfaces/LoyaltyProportional.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":972,"kind":65536,"name":"__type","url":"interfaces/LoyaltyProportional.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":973,"kind":1024,"name":"amount","url":"interfaces/LoyaltyProportional.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type"},{"id":974,"kind":65536,"name":"__type","url":"interfaces/LoyaltyProportional.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type"},{"id":975,"kind":1024,"name":"every","url":"interfaces/LoyaltyProportional.html#__type.__type-1.every","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type.__type"},{"id":976,"kind":1024,"name":"points","url":"interfaces/LoyaltyProportional.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type.__type"},{"id":977,"kind":256,"name":"LoyaltiesEarningRulesResponse","url":"interfaces/LoyaltiesEarningRulesResponse.html","classes":"tsd-kind-interface"},{"id":978,"kind":1024,"name":"id","url":"interfaces/LoyaltiesEarningRulesResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":979,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesEarningRulesResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":980,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesEarningRulesResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":981,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":982,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesEarningRulesResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":983,"kind":1024,"name":"segment","url":"interfaces/LoyaltiesEarningRulesResponse.html#segment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":984,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":985,"kind":1024,"name":"id","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":986,"kind":1024,"name":"event","url":"interfaces/LoyaltiesEarningRulesResponse.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":987,"kind":1024,"name":"source","url":"interfaces/LoyaltiesEarningRulesResponse.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":988,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":989,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":990,"kind":1024,"name":"object_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.object_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":991,"kind":1024,"name":"object_type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.object_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":992,"kind":1024,"name":"object","url":"interfaces/LoyaltiesEarningRulesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":993,"kind":1024,"name":"automation_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#automation_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":994,"kind":256,"name":"LoyaltiesListEarningRulesResponse","url":"interfaces/LoyaltiesListEarningRulesResponse.html","classes":"tsd-kind-interface"},{"id":995,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListEarningRulesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":996,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListEarningRulesResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":997,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListEarningRulesResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":998,"kind":1024,"name":"data","url":"interfaces/LoyaltiesListEarningRulesResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":999,"kind":256,"name":"LoyaltiesCreateEarningRule","url":"interfaces/LoyaltiesCreateEarningRule.html","classes":"tsd-kind-interface"},{"id":1000,"kind":1024,"name":"event","url":"interfaces/LoyaltiesCreateEarningRule.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1001,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesCreateEarningRule.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1002,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateEarningRule.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1003,"kind":1024,"name":"source","url":"interfaces/LoyaltiesCreateEarningRule.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1004,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1005,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-2.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1006,"kind":1024,"name":"custom_event","url":"interfaces/LoyaltiesCreateEarningRule.html#custom_event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1007,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1008,"kind":1024,"name":"schema_id","url":"interfaces/LoyaltiesCreateEarningRule.html#__type.schema_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1009,"kind":1024,"name":"segment","url":"interfaces/LoyaltiesCreateEarningRule.html#segment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1010,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1011,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1012,"kind":4194304,"name":"LoyaltiesCreateEarningRuleResponse","url":"modules.html#LoyaltiesCreateEarningRuleResponse","classes":"tsd-kind-type-alias"},{"id":1013,"kind":256,"name":"LoyaltiesUpdateEarningRule","url":"interfaces/LoyaltiesUpdateEarningRule.html","classes":"tsd-kind-interface"},{"id":1014,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateEarningRule.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1015,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesUpdateEarningRule.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1016,"kind":1024,"name":"source","url":"interfaces/LoyaltiesUpdateEarningRule.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1017,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1018,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type-1.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateEarningRule.__type"},{"id":1019,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesUpdateEarningRule.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1020,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1021,"kind":1024,"name":"points","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateEarningRule.__type"},{"id":1022,"kind":4194304,"name":"LoyaltiesUpdateEarningRuleResponse","url":"modules.html#LoyaltiesUpdateEarningRuleResponse","classes":"tsd-kind-type-alias"},{"id":1023,"kind":256,"name":"LoyaltiesListMembersParams","url":"interfaces/LoyaltiesListMembersParams.html","classes":"tsd-kind-interface"},{"id":1024,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListMembersParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1025,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListMembersParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1026,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesListMembersParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1027,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesListMembersParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1028,"kind":1024,"name":"before","url":"interfaces/LoyaltiesListMembersParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1029,"kind":1024,"name":"after","url":"interfaces/LoyaltiesListMembersParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1030,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesListMembersParams.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1031,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesListMembersParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1032,"kind":1024,"name":"before","url":"interfaces/LoyaltiesListMembersParams.html#__type-1.before-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1033,"kind":1024,"name":"after","url":"interfaces/LoyaltiesListMembersParams.html#__type-1.after-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1034,"kind":256,"name":"LoyaltiesVoucherResponse","url":"interfaces/LoyaltiesVoucherResponse.html","classes":"tsd-kind-interface"},{"id":1035,"kind":1024,"name":"id","url":"interfaces/LoyaltiesVoucherResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1036,"kind":1024,"name":"code","url":"interfaces/LoyaltiesVoucherResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1037,"kind":1024,"name":"campaign","url":"interfaces/LoyaltiesVoucherResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1038,"kind":1024,"name":"campaign_id","url":"interfaces/LoyaltiesVoucherResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1039,"kind":1024,"name":"category","url":"interfaces/LoyaltiesVoucherResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1040,"kind":1024,"name":"type","url":"interfaces/LoyaltiesVoucherResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1041,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesVoucherResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1042,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1043,"kind":1024,"name":"points","url":"interfaces/LoyaltiesVoucherResponse.html#__type.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1044,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesVoucherResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1045,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesVoucherResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1046,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesVoucherResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1047,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesVoucherResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1048,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1049,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1050,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1051,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesVoucherResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1052,"kind":1024,"name":"publish","url":"interfaces/LoyaltiesVoucherResponse.html#publish","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1053,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1054,"kind":1024,"name":"count","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1055,"kind":1024,"name":"entries","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1.entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1056,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesVoucherResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1057,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1058,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1059,"kind":1024,"name":"redeemed_points","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1060,"kind":1024,"name":"redeemed_quantity","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1061,"kind":1024,"name":"redemption_entries","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redemption_entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1062,"kind":1024,"name":"active","url":"interfaces/LoyaltiesVoucherResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1063,"kind":1024,"name":"additional_info","url":"interfaces/LoyaltiesVoucherResponse.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1064,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesVoucherResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1065,"kind":1024,"name":"is_referral_code","url":"interfaces/LoyaltiesVoucherResponse.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1066,"kind":1024,"name":"holder_id","url":"interfaces/LoyaltiesVoucherResponse.html#holder_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1067,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesVoucherResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1068,"kind":256,"name":"LoyaltiesListMembersResponse","url":"interfaces/LoyaltiesListMembersResponse.html","classes":"tsd-kind-interface"},{"id":1069,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListMembersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1070,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListMembersResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1071,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListMembersResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1072,"kind":1024,"name":"vouchers","url":"interfaces/LoyaltiesListMembersResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1073,"kind":256,"name":"LoyaltiesCreateMember","url":"interfaces/LoyaltiesCreateMember.html","classes":"tsd-kind-interface"},{"id":1074,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateMember.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1075,"kind":1024,"name":"channel","url":"interfaces/LoyaltiesCreateMember.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1076,"kind":1024,"name":"customer","url":"interfaces/LoyaltiesCreateMember.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1077,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateMember.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1078,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateMember.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1079,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateMember.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1080,"kind":1024,"name":"email","url":"interfaces/LoyaltiesCreateMember.html#__type.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1081,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateMember.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1082,"kind":1024,"name":"description","url":"interfaces/LoyaltiesCreateMember.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1083,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesCreateMember.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1084,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateMember.html#metadata-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1085,"kind":4194304,"name":"LoyaltiesCreateMemberResponse","url":"modules.html#LoyaltiesCreateMemberResponse","classes":"tsd-kind-type-alias"},{"id":1086,"kind":4194304,"name":"LoyaltiesGetMemberResponse","url":"modules.html#LoyaltiesGetMemberResponse","classes":"tsd-kind-type-alias"},{"id":1087,"kind":256,"name":"LoyaltiesGetMemberActivitiesResponse","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html","classes":"tsd-kind-interface"},{"id":1088,"kind":1024,"name":"object","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1089,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1090,"kind":1024,"name":"total","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1091,"kind":1024,"name":"activities","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#activities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1092,"kind":256,"name":"LoyaltiesAddPoints","url":"interfaces/LoyaltiesAddPoints.html","classes":"tsd-kind-interface"},{"id":1093,"kind":1024,"name":"points","url":"interfaces/LoyaltiesAddPoints.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPoints"},{"id":1094,"kind":256,"name":"LoyaltiesAddPointsResponse","url":"interfaces/LoyaltiesAddPointsResponse.html","classes":"tsd-kind-interface"},{"id":1095,"kind":1024,"name":"points","url":"interfaces/LoyaltiesAddPointsResponse.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1096,"kind":1024,"name":"total","url":"interfaces/LoyaltiesAddPointsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1097,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesAddPointsResponse.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1098,"kind":1024,"name":"type","url":"interfaces/LoyaltiesAddPointsResponse.html#type-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1099,"kind":1024,"name":"object","url":"interfaces/LoyaltiesAddPointsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1100,"kind":1024,"name":"related_object","url":"interfaces/LoyaltiesAddPointsResponse.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1101,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesAddPointsResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1102,"kind":1024,"name":"type","url":"interfaces/LoyaltiesAddPointsResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesAddPointsResponse.__type"},{"id":1103,"kind":1024,"name":"id","url":"interfaces/LoyaltiesAddPointsResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesAddPointsResponse.__type"},{"id":1104,"kind":256,"name":"LoyaltiesRedeemRewardParams","url":"interfaces/LoyaltiesRedeemRewardParams.html","classes":"tsd-kind-interface"},{"id":1105,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesRedeemRewardParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1106,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1107,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type-1.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1108,"kind":1024,"name":"order","url":"interfaces/LoyaltiesRedeemRewardParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1109,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1110,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1111,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1112,"kind":1024,"name":"amount","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1113,"kind":1024,"name":"items","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1114,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1115,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1116,"kind":256,"name":"LoyaltiesRedeemRewardResponse","url":"interfaces/LoyaltiesRedeemRewardResponse.html","classes":"tsd-kind-interface"},{"id":1117,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1118,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1119,"kind":1024,"name":"date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1120,"kind":1024,"name":"customer_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1121,"kind":1024,"name":"amount","url":"interfaces/LoyaltiesRedeemRewardResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1122,"kind":1024,"name":"order","url":"interfaces/LoyaltiesRedeemRewardResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1123,"kind":1024,"name":"customer","url":"interfaces/LoyaltiesRedeemRewardResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1124,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesRedeemRewardResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1125,"kind":1024,"name":"result","url":"interfaces/LoyaltiesRedeemRewardResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1126,"kind":1024,"name":"tracking_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1127,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesRedeemRewardResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1128,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1129,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.id-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1130,"kind":1024,"name":"code","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1131,"kind":1024,"name":"campaign","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.campaign","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1132,"kind":1024,"name":"campaign_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.campaign_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1133,"kind":1024,"name":"category","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.category","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1134,"kind":1024,"name":"type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1135,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.loyalty_card","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1136,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1137,"kind":1024,"name":"points","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1138,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1139,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.start_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1140,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.expiration_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1141,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1142,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1143,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1144,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1145,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1146,"kind":1024,"name":"publish","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.publish","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1147,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1148,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.object-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1149,"kind":1024,"name":"count","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1150,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1151,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1152,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1153,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.object-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1154,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1155,"kind":1024,"name":"redeemed_quantity","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1156,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1157,"kind":1024,"name":"redeemed_points","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1158,"kind":1024,"name":"active","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.active","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1159,"kind":1024,"name":"additional_info","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.additional_info","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1160,"kind":1024,"name":"assets","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.assets","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1161,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1162,"kind":1024,"name":"qr","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.qr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1163,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1164,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3.id-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1165,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1166,"kind":1024,"name":"barcode","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.barcode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1167,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1168,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1169,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1170,"kind":1024,"name":"is_referral_code","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.is_referral_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1171,"kind":1024,"name":"referrer_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1172,"kind":1024,"name":"holder_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.holder_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1173,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.created_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1174,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.updated_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1175,"kind":1024,"name":"holder","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.holder","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1176,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1177,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.id-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1178,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1179,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1180,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1181,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1182,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1183,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1184,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.object-5","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1185,"kind":1024,"name":"total","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1186,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1187,"kind":1024,"name":"data","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1188,"kind":256,"name":"LoyaltyPointsTransfer","url":"interfaces/LoyaltyPointsTransfer.html","classes":"tsd-kind-interface"},{"id":1189,"kind":1024,"name":"code","url":"interfaces/LoyaltyPointsTransfer.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyPointsTransfer"},{"id":1190,"kind":1024,"name":"points","url":"interfaces/LoyaltyPointsTransfer.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyPointsTransfer"},{"id":1191,"kind":4194304,"name":"VoucherType","url":"modules.html#VoucherType","classes":"tsd-kind-type-alias"},{"id":1192,"kind":256,"name":"SimpleVoucher","url":"interfaces/SimpleVoucher.html","classes":"tsd-kind-interface"},{"id":1193,"kind":1024,"name":"code_config","url":"interfaces/SimpleVoucher.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1194,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1195,"kind":1024,"name":"length","url":"interfaces/SimpleVoucher.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1196,"kind":1024,"name":"charset","url":"interfaces/SimpleVoucher.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1197,"kind":1024,"name":"pattern","url":"interfaces/SimpleVoucher.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1198,"kind":1024,"name":"prefix","url":"interfaces/SimpleVoucher.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1199,"kind":1024,"name":"suffix","url":"interfaces/SimpleVoucher.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1200,"kind":1024,"name":"type","url":"interfaces/SimpleVoucher.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1201,"kind":1024,"name":"is_referral_code","url":"interfaces/SimpleVoucher.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1202,"kind":1024,"name":"discount","url":"interfaces/SimpleVoucher.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1203,"kind":1024,"name":"loyalty_card","url":"interfaces/SimpleVoucher.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1204,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1205,"kind":1024,"name":"points","url":"interfaces/SimpleVoucher.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1206,"kind":1024,"name":"balance","url":"interfaces/SimpleVoucher.html#__type-1.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1207,"kind":1024,"name":"redemption","url":"interfaces/SimpleVoucher.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1208,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1209,"kind":1024,"name":"quantity","url":"interfaces/SimpleVoucher.html#__type-2.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1210,"kind":256,"name":"VouchersResponse","url":"interfaces/VouchersResponse.html","classes":"tsd-kind-interface"},{"id":1211,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#id-2","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1212,"kind":1024,"name":"code","url":"interfaces/VouchersResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1213,"kind":1024,"name":"campaign","url":"interfaces/VouchersResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1214,"kind":1024,"name":"category","url":"interfaces/VouchersResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1215,"kind":1024,"name":"type","url":"interfaces/VouchersResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1216,"kind":1024,"name":"discount","url":"interfaces/VouchersResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1217,"kind":1024,"name":"gift","url":"interfaces/VouchersResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1218,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1219,"kind":1024,"name":"amount","url":"interfaces/VouchersResponse.html#__type-3.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1220,"kind":1024,"name":"balance","url":"interfaces/VouchersResponse.html#__type-3.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1221,"kind":1024,"name":"loyalty_card","url":"interfaces/VouchersResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1222,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1223,"kind":1024,"name":"points","url":"interfaces/VouchersResponse.html#__type-4.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1224,"kind":1024,"name":"start_date","url":"interfaces/VouchersResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1225,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1226,"kind":1024,"name":"validity_timeframe","url":"interfaces/VouchersResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1227,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1228,"kind":1024,"name":"interval","url":"interfaces/VouchersResponse.html#__type-8.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1229,"kind":1024,"name":"duration","url":"interfaces/VouchersResponse.html#__type-8.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1230,"kind":1024,"name":"validity_day_of_week","url":"interfaces/VouchersResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1231,"kind":1024,"name":"publish","url":"interfaces/VouchersResponse.html#publish","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1232,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1233,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-5.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1234,"kind":1024,"name":"count","url":"interfaces/VouchersResponse.html#__type-5.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1235,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-5.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1236,"kind":1024,"name":"entries","url":"interfaces/VouchersResponse.html#__type-5.entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1237,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-5.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1238,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type-5.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1239,"kind":1024,"name":"redemption","url":"interfaces/VouchersResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1240,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1241,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-6.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1242,"kind":1024,"name":"quantity","url":"interfaces/VouchersResponse.html#__type-6.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1243,"kind":1024,"name":"redeemed_quantity","url":"interfaces/VouchersResponse.html#__type-6.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1244,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-6.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1245,"kind":1024,"name":"redemption_entries","url":"interfaces/VouchersResponse.html#__type-6.redemption_entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1246,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-6.total-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1247,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type-6.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1248,"kind":1024,"name":"active","url":"interfaces/VouchersResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1249,"kind":1024,"name":"additional_info","url":"interfaces/VouchersResponse.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1250,"kind":1024,"name":"metadata","url":"interfaces/VouchersResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1251,"kind":1024,"name":"assets","url":"interfaces/VouchersResponse.html#assets","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1252,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1253,"kind":1024,"name":"qr","url":"interfaces/VouchersResponse.html#__type.qr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1254,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1255,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#__type.__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1256,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type.__type-2.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1257,"kind":1024,"name":"barcode","url":"interfaces/VouchersResponse.html#__type.barcode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1258,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1259,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#__type.__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1260,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type.__type-1.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1261,"kind":1024,"name":"is_referral_code","url":"interfaces/VouchersResponse.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1262,"kind":1024,"name":"referrer_id","url":"interfaces/VouchersResponse.html#referrer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1263,"kind":1024,"name":"holder_id","url":"interfaces/VouchersResponse.html#holder_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1264,"kind":1024,"name":"updated_at","url":"interfaces/VouchersResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1265,"kind":1024,"name":"created_at","url":"interfaces/VouchersResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1266,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1267,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/VouchersResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1268,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1269,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-7.object-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1270,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-7.total-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1271,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-7.data_ref-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1272,"kind":1024,"name":"data","url":"interfaces/VouchersResponse.html#__type-7.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1273,"kind":256,"name":"VouchersQualificationExamineBody","url":"interfaces/VouchersQualificationExamineBody.html","classes":"tsd-kind-interface"},{"id":1274,"kind":1024,"name":"customer","url":"interfaces/VouchersQualificationExamineBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1275,"kind":1024,"name":"order","url":"interfaces/VouchersQualificationExamineBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1276,"kind":1024,"name":"reward","url":"interfaces/VouchersQualificationExamineBody.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1277,"kind":65536,"name":"__type","url":"interfaces/VouchersQualificationExamineBody.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1278,"kind":1024,"name":"id","url":"interfaces/VouchersQualificationExamineBody.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersQualificationExamineBody.__type"},{"id":1279,"kind":1024,"name":"assignment_id","url":"interfaces/VouchersQualificationExamineBody.html#__type.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersQualificationExamineBody.__type"},{"id":1280,"kind":1024,"name":"metadata","url":"interfaces/VouchersQualificationExamineBody.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1281,"kind":256,"name":"VouchersQualificationExamineParams","url":"interfaces/VouchersQualificationExamineParams.html","classes":"tsd-kind-interface"},{"id":1282,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/VouchersQualificationExamineParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1283,"kind":1024,"name":"order","url":"interfaces/VouchersQualificationExamineParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1284,"kind":1024,"name":"limit","url":"interfaces/VouchersQualificationExamineParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1285,"kind":256,"name":"VouchersQualificationExamineResponse","url":"interfaces/VouchersQualificationExamineResponse.html","classes":"tsd-kind-interface"},{"id":1286,"kind":1024,"name":"object","url":"interfaces/VouchersQualificationExamineResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1287,"kind":1024,"name":"total","url":"interfaces/VouchersQualificationExamineResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1288,"kind":1024,"name":"data_ref","url":"interfaces/VouchersQualificationExamineResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1289,"kind":1024,"name":"data","url":"interfaces/VouchersQualificationExamineResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1290,"kind":256,"name":"VouchersCreateParameters","url":"interfaces/VouchersCreateParameters.html","classes":"tsd-kind-interface"},{"id":1291,"kind":1024,"name":"active","url":"interfaces/VouchersCreateParameters.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1292,"kind":1024,"name":"code","url":"interfaces/VouchersCreateParameters.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1293,"kind":1024,"name":"code_config","url":"interfaces/VouchersCreateParameters.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1294,"kind":65536,"name":"__type","url":"interfaces/VouchersCreateParameters.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1295,"kind":1024,"name":"length","url":"interfaces/VouchersCreateParameters.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1296,"kind":1024,"name":"charset","url":"interfaces/VouchersCreateParameters.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1297,"kind":1024,"name":"pattern","url":"interfaces/VouchersCreateParameters.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1298,"kind":1024,"name":"prefix","url":"interfaces/VouchersCreateParameters.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1299,"kind":1024,"name":"suffix","url":"interfaces/VouchersCreateParameters.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1300,"kind":1024,"name":"redemption","url":"interfaces/VouchersCreateParameters.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1301,"kind":65536,"name":"__type","url":"interfaces/VouchersCreateParameters.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1302,"kind":1024,"name":"quantity","url":"interfaces/VouchersCreateParameters.html#__type-1.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1303,"kind":4194304,"name":"VouchersCreate","url":"modules.html#VouchersCreate","classes":"tsd-kind-type-alias"},{"id":1304,"kind":4194304,"name":"VouchersCreateResponse","url":"modules.html#VouchersCreateResponse","classes":"tsd-kind-type-alias"},{"id":1305,"kind":4194304,"name":"VouchersGetResponse","url":"modules.html#VouchersGetResponse","classes":"tsd-kind-type-alias"},{"id":1306,"kind":256,"name":"VouchersUpdate","url":"interfaces/VouchersUpdate.html","classes":"tsd-kind-interface"},{"id":1307,"kind":1024,"name":"code","url":"interfaces/VouchersUpdate.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1308,"kind":1024,"name":"category","url":"interfaces/VouchersUpdate.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1309,"kind":1024,"name":"start_date","url":"interfaces/VouchersUpdate.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1310,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersUpdate.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1311,"kind":1024,"name":"active","url":"interfaces/VouchersUpdate.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1312,"kind":1024,"name":"additional_info","url":"interfaces/VouchersUpdate.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1313,"kind":1024,"name":"metadata","url":"interfaces/VouchersUpdate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1314,"kind":1024,"name":"gift","url":"interfaces/VouchersUpdate.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1315,"kind":65536,"name":"__type","url":"interfaces/VouchersUpdate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1316,"kind":1024,"name":"amount","url":"interfaces/VouchersUpdate.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersUpdate.__type"},{"id":1317,"kind":4194304,"name":"VouchersUpdateResponse","url":"modules.html#VouchersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1318,"kind":256,"name":"VouchersDeleteParams","url":"interfaces/VouchersDeleteParams.html","classes":"tsd-kind-interface"},{"id":1319,"kind":1024,"name":"force","url":"interfaces/VouchersDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersDeleteParams"},{"id":1320,"kind":256,"name":"VouchersListParams","url":"interfaces/VouchersListParams.html","classes":"tsd-kind-interface"},{"id":1321,"kind":1024,"name":"limit","url":"interfaces/VouchersListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1322,"kind":1024,"name":"page","url":"interfaces/VouchersListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1323,"kind":1024,"name":"category","url":"interfaces/VouchersListParams.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1324,"kind":1024,"name":"campaign","url":"interfaces/VouchersListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1325,"kind":1024,"name":"customer","url":"interfaces/VouchersListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1326,"kind":1024,"name":"created_at","url":"interfaces/VouchersListParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1327,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1328,"kind":1024,"name":"after","url":"interfaces/VouchersListParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1329,"kind":1024,"name":"before","url":"interfaces/VouchersListParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1330,"kind":1024,"name":"updated_at","url":"interfaces/VouchersListParams.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1331,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1332,"kind":1024,"name":"after","url":"interfaces/VouchersListParams.html#__type-2.after-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1333,"kind":1024,"name":"before","url":"interfaces/VouchersListParams.html#__type-2.before-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1334,"kind":1024,"name":"order","url":"interfaces/VouchersListParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1335,"kind":1024,"name":"filters","url":"interfaces/VouchersListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1336,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1337,"kind":1024,"name":"junction","url":"interfaces/VouchersListParams.html#__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1338,"kind":256,"name":"VouchersListResponse","url":"interfaces/VouchersListResponse.html","classes":"tsd-kind-interface"},{"id":1339,"kind":1024,"name":"object","url":"interfaces/VouchersListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1340,"kind":1024,"name":"total","url":"interfaces/VouchersListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1341,"kind":1024,"name":"data_ref","url":"interfaces/VouchersListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1342,"kind":1024,"name":"vouchers","url":"interfaces/VouchersListResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1343,"kind":4194304,"name":"VouchersEnableResponse","url":"modules.html#VouchersEnableResponse","classes":"tsd-kind-type-alias"},{"id":1344,"kind":4194304,"name":"VouchersDisableResponse","url":"modules.html#VouchersDisableResponse","classes":"tsd-kind-type-alias"},{"id":1345,"kind":256,"name":"VouchersImport","url":"interfaces/VouchersImport.html","classes":"tsd-kind-interface"},{"id":1346,"kind":1024,"name":"code","url":"interfaces/VouchersImport.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1347,"kind":1024,"name":"category","url":"interfaces/VouchersImport.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1348,"kind":1024,"name":"type","url":"interfaces/VouchersImport.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1349,"kind":1024,"name":"discount","url":"interfaces/VouchersImport.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1350,"kind":1024,"name":"additional_info","url":"interfaces/VouchersImport.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1351,"kind":1024,"name":"start_date","url":"interfaces/VouchersImport.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1352,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersImport.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1353,"kind":1024,"name":"active","url":"interfaces/VouchersImport.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1354,"kind":1024,"name":"metadata","url":"interfaces/VouchersImport.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1355,"kind":1024,"name":"redemption","url":"interfaces/VouchersImport.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1356,"kind":65536,"name":"__type","url":"interfaces/VouchersImport.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1357,"kind":1024,"name":"quantity","url":"interfaces/VouchersImport.html#__type-1.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1358,"kind":1024,"name":"code_config","url":"interfaces/VouchersImport.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1359,"kind":65536,"name":"__type","url":"interfaces/VouchersImport.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1360,"kind":1024,"name":"length","url":"interfaces/VouchersImport.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1361,"kind":1024,"name":"charset","url":"interfaces/VouchersImport.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1362,"kind":1024,"name":"pattern","url":"interfaces/VouchersImport.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1363,"kind":1024,"name":"prefix","url":"interfaces/VouchersImport.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1364,"kind":1024,"name":"suffix","url":"interfaces/VouchersImport.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1365,"kind":256,"name":"VouchersBulkUpdateObject","url":"interfaces/VouchersBulkUpdateObject.html","classes":"tsd-kind-interface"},{"id":1366,"kind":1024,"name":"code","url":"interfaces/VouchersBulkUpdateObject.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateObject"},{"id":1367,"kind":1024,"name":"metadata","url":"interfaces/VouchersBulkUpdateObject.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateObject"},{"id":1368,"kind":4194304,"name":"VouchersBulkUpdate","url":"modules.html#VouchersBulkUpdate","classes":"tsd-kind-type-alias"},{"id":1369,"kind":256,"name":"VouchersBulkUpdateMetadata","url":"interfaces/VouchersBulkUpdateMetadata.html","classes":"tsd-kind-interface"},{"id":1370,"kind":1024,"name":"codes","url":"interfaces/VouchersBulkUpdateMetadata.html#codes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateMetadata"},{"id":1371,"kind":1024,"name":"metadata","url":"interfaces/VouchersBulkUpdateMetadata.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateMetadata"},{"id":1372,"kind":4194304,"name":"VouchersImportResponse","url":"modules.html#VouchersImportResponse","classes":"tsd-kind-type-alias"},{"id":1373,"kind":65536,"name":"__type","url":"modules.html#VouchersImportResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersImportResponse"},{"id":1374,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersImportResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImportResponse.__type"},{"id":1375,"kind":4194304,"name":"VouchersBulkUpdateMetadataResponse","url":"modules.html#VouchersBulkUpdateMetadataResponse","classes":"tsd-kind-type-alias"},{"id":1376,"kind":65536,"name":"__type","url":"modules.html#VouchersBulkUpdateMetadataResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersBulkUpdateMetadataResponse"},{"id":1377,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersBulkUpdateMetadataResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersBulkUpdateMetadataResponse.__type"},{"id":1378,"kind":4194304,"name":"VouchersBulkUpdateResponse","url":"modules.html#VouchersBulkUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1379,"kind":65536,"name":"__type","url":"modules.html#VouchersBulkUpdateResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersBulkUpdateResponse"},{"id":1380,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersBulkUpdateResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersBulkUpdateResponse.__type"},{"id":1381,"kind":256,"name":"ValidationRulesCreate","url":"interfaces/ValidationRulesCreate.html","classes":"tsd-kind-interface"},{"id":1382,"kind":1024,"name":"name","url":"interfaces/ValidationRulesCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1383,"kind":1024,"name":"error","url":"interfaces/ValidationRulesCreate.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1384,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1385,"kind":1024,"name":"message","url":"interfaces/ValidationRulesCreate.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreate.__type"},{"id":1386,"kind":1024,"name":"rules","url":"interfaces/ValidationRulesCreate.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1387,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreate.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1388,"kind":1024,"name":"logic","url":"interfaces/ValidationRulesCreate.html#__type-1.logic","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreate.__type"},{"id":1389,"kind":256,"name":"ValidationRulesCreateResponse","url":"interfaces/ValidationRulesCreateResponse.html","classes":"tsd-kind-interface"},{"id":1390,"kind":1024,"name":"id","url":"interfaces/ValidationRulesCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1391,"kind":1024,"name":"name","url":"interfaces/ValidationRulesCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1392,"kind":1024,"name":"error","url":"interfaces/ValidationRulesCreateResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1393,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1394,"kind":1024,"name":"message","url":"interfaces/ValidationRulesCreateResponse.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreateResponse.__type"},{"id":1395,"kind":1024,"name":"rules","url":"interfaces/ValidationRulesCreateResponse.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1396,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1397,"kind":1024,"name":"logic","url":"interfaces/ValidationRulesCreateResponse.html#__type-1.logic","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreateResponse.__type"},{"id":1398,"kind":1024,"name":"created_at","url":"interfaces/ValidationRulesCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1399,"kind":1024,"name":"updated_at","url":"interfaces/ValidationRulesCreateResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1400,"kind":1024,"name":"object","url":"interfaces/ValidationRulesCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1401,"kind":256,"name":"ValidationRulesValidateResponse","url":"interfaces/ValidationRulesValidateResponse.html","classes":"tsd-kind-interface"},{"id":1402,"kind":1024,"name":"valid","url":"interfaces/ValidationRulesValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1403,"kind":1024,"name":"rule_id","url":"interfaces/ValidationRulesValidateResponse.html#rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1404,"kind":1024,"name":"applicable_to","url":"interfaces/ValidationRulesValidateResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1405,"kind":4194304,"name":"ValidationRulesGetResponse","url":"modules.html#ValidationRulesGetResponse","classes":"tsd-kind-type-alias"},{"id":1406,"kind":4194304,"name":"ValidationRulesUpdate","url":"modules.html#ValidationRulesUpdate","classes":"tsd-kind-type-alias"},{"id":1407,"kind":4194304,"name":"ValidationRulesUpdateResponse","url":"modules.html#ValidationRulesUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1408,"kind":256,"name":"ValidationRulesCreateAssignment","url":"interfaces/ValidationRulesCreateAssignment.html","classes":"tsd-kind-interface"},{"id":1409,"kind":1024,"name":"voucher","url":"interfaces/ValidationRulesCreateAssignment.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1410,"kind":1024,"name":"campaign","url":"interfaces/ValidationRulesCreateAssignment.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1411,"kind":1024,"name":"promotion_tier","url":"interfaces/ValidationRulesCreateAssignment.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1412,"kind":256,"name":"ValidationRulesCreateAssignmentResponse","url":"interfaces/ValidationRulesCreateAssignmentResponse.html","classes":"tsd-kind-interface"},{"id":1413,"kind":1024,"name":"id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1414,"kind":1024,"name":"rule_id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1415,"kind":1024,"name":"related_object_id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1416,"kind":1024,"name":"related_object_type","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1417,"kind":1024,"name":"created_at","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1418,"kind":1024,"name":"updated_at","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1419,"kind":1024,"name":"object","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1420,"kind":256,"name":"ValidationRulesListParams","url":"interfaces/ValidationRulesListParams.html","classes":"tsd-kind-interface"},{"id":1421,"kind":1024,"name":"limit","url":"interfaces/ValidationRulesListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListParams"},{"id":1422,"kind":1024,"name":"page","url":"interfaces/ValidationRulesListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListParams"},{"id":1423,"kind":256,"name":"ValidationRulesListResponse","url":"interfaces/ValidationRulesListResponse.html","classes":"tsd-kind-interface"},{"id":1424,"kind":1024,"name":"object","url":"interfaces/ValidationRulesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1425,"kind":1024,"name":"total","url":"interfaces/ValidationRulesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1426,"kind":1024,"name":"data_ref","url":"interfaces/ValidationRulesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1427,"kind":1024,"name":"data","url":"interfaces/ValidationRulesListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1428,"kind":256,"name":"ValidationRulesListAssignmentsParams","url":"interfaces/ValidationRulesListAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":1429,"kind":1024,"name":"limit","url":"interfaces/ValidationRulesListAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsParams"},{"id":1430,"kind":1024,"name":"page","url":"interfaces/ValidationRulesListAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsParams"},{"id":1431,"kind":256,"name":"ValidationRulesListAssignmentsResponse","url":"interfaces/ValidationRulesListAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":1432,"kind":1024,"name":"object","url":"interfaces/ValidationRulesListAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1433,"kind":1024,"name":"total","url":"interfaces/ValidationRulesListAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1434,"kind":1024,"name":"data_ref","url":"interfaces/ValidationRulesListAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1435,"kind":1024,"name":"data","url":"interfaces/ValidationRulesListAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1436,"kind":256,"name":"RewardsListParams","url":"interfaces/RewardsListParams.html","classes":"tsd-kind-interface"},{"id":1437,"kind":1024,"name":"page","url":"interfaces/RewardsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListParams"},{"id":1438,"kind":1024,"name":"limit","url":"interfaces/RewardsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListParams"},{"id":1439,"kind":256,"name":"RewardsResponse","url":"interfaces/RewardsResponse.html","classes":"tsd-kind-interface"},{"id":1440,"kind":1024,"name":"id","url":"interfaces/RewardsResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1441,"kind":1024,"name":"name","url":"interfaces/RewardsResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1442,"kind":1024,"name":"stock","url":"interfaces/RewardsResponse.html#stock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1443,"kind":1024,"name":"redeemed","url":"interfaces/RewardsResponse.html#redeemed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1444,"kind":1024,"name":"attributes","url":"interfaces/RewardsResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1445,"kind":65536,"name":"__type","url":"interfaces/RewardsResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1446,"kind":1024,"name":"image_url","url":"interfaces/RewardsResponse.html#__type.image_url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsResponse.__type"},{"id":1447,"kind":1024,"name":"description","url":"interfaces/RewardsResponse.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsResponse.__type"},{"id":1448,"kind":1024,"name":"created_at","url":"interfaces/RewardsResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1449,"kind":1024,"name":"updated_at","url":"interfaces/RewardsResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1450,"kind":1024,"name":"object","url":"interfaces/RewardsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1451,"kind":4194304,"name":"RewardsCreateResponse","url":"modules.html#RewardsCreateResponse","classes":"tsd-kind-type-alias"},{"id":1452,"kind":256,"name":"RewardsListResponse","url":"interfaces/RewardsListResponse.html","classes":"tsd-kind-interface"},{"id":1453,"kind":1024,"name":"object","url":"interfaces/RewardsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1454,"kind":1024,"name":"total","url":"interfaces/RewardsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1455,"kind":1024,"name":"data_ref","url":"interfaces/RewardsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1456,"kind":1024,"name":"data","url":"interfaces/RewardsListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1457,"kind":4194304,"name":"RewardsType","url":"modules.html#RewardsType","classes":"tsd-kind-type-alias"},{"id":1458,"kind":4194304,"name":"RewardsTypeResponse","url":"modules.html#RewardsTypeResponse","classes":"tsd-kind-type-alias"},{"id":1459,"kind":4194304,"name":"RewardsCreate","url":"modules.html#RewardsCreate","classes":"tsd-kind-type-alias"},{"id":1460,"kind":4194304,"name":"RewardsGetResponse","url":"modules.html#RewardsGetResponse","classes":"tsd-kind-type-alias"},{"id":1461,"kind":4194304,"name":"RewardsUpdate","url":"modules.html#RewardsUpdate","classes":"tsd-kind-type-alias"},{"id":1462,"kind":4194304,"name":"RewardsUpdateResponse","url":"modules.html#RewardsUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1463,"kind":256,"name":"RewardsAssignmentObject","url":"interfaces/RewardsAssignmentObject.html","classes":"tsd-kind-interface"},{"id":1464,"kind":1024,"name":"id","url":"interfaces/RewardsAssignmentObject.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1465,"kind":1024,"name":"reward_id","url":"interfaces/RewardsAssignmentObject.html#reward_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1466,"kind":1024,"name":"related_object_id","url":"interfaces/RewardsAssignmentObject.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1467,"kind":1024,"name":"related_object_type","url":"interfaces/RewardsAssignmentObject.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1468,"kind":1024,"name":"parameters","url":"interfaces/RewardsAssignmentObject.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1469,"kind":65536,"name":"__type","url":"interfaces/RewardsAssignmentObject.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1470,"kind":1024,"name":"loyalty","url":"interfaces/RewardsAssignmentObject.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type"},{"id":1471,"kind":65536,"name":"__type","url":"interfaces/RewardsAssignmentObject.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type"},{"id":1472,"kind":1024,"name":"points","url":"interfaces/RewardsAssignmentObject.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type.__type"},{"id":1473,"kind":1024,"name":"created_at","url":"interfaces/RewardsAssignmentObject.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1474,"kind":1024,"name":"updated_at","url":"interfaces/RewardsAssignmentObject.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1475,"kind":1024,"name":"object","url":"interfaces/RewardsAssignmentObject.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1476,"kind":256,"name":"RewardsListAssignmentsParams","url":"interfaces/RewardsListAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":1477,"kind":1024,"name":"limit","url":"interfaces/RewardsListAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsParams"},{"id":1478,"kind":1024,"name":"page","url":"interfaces/RewardsListAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsParams"},{"id":1479,"kind":256,"name":"RewardsListAssignmentsResponse","url":"interfaces/RewardsListAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":1480,"kind":1024,"name":"total","url":"interfaces/RewardsListAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1481,"kind":1024,"name":"data","url":"interfaces/RewardsListAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1482,"kind":1024,"name":"object","url":"interfaces/RewardsListAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1483,"kind":1024,"name":"data_ref","url":"interfaces/RewardsListAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1484,"kind":256,"name":"RewardsCreateAssignment","url":"interfaces/RewardsCreateAssignment.html","classes":"tsd-kind-interface"},{"id":1485,"kind":1024,"name":"campaign","url":"interfaces/RewardsCreateAssignment.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1486,"kind":1024,"name":"parameters","url":"interfaces/RewardsCreateAssignment.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1487,"kind":65536,"name":"__type","url":"interfaces/RewardsCreateAssignment.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1488,"kind":1024,"name":"loyalty","url":"interfaces/RewardsCreateAssignment.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type"},{"id":1489,"kind":65536,"name":"__type","url":"interfaces/RewardsCreateAssignment.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type"},{"id":1490,"kind":1024,"name":"points","url":"interfaces/RewardsCreateAssignment.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type.__type"},{"id":1491,"kind":4194304,"name":"RewardsCreateAssignmentResponse","url":"modules.html#RewardsCreateAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":1492,"kind":4194304,"name":"RewardsUpdateAssignment","url":"modules.html#RewardsUpdateAssignment","classes":"tsd-kind-type-alias"},{"id":1493,"kind":4194304,"name":"RewardsUpdateAssignmentResponse","url":"modules.html#RewardsUpdateAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":1494,"kind":256,"name":"RewardRedemptionParams","url":"interfaces/RewardRedemptionParams.html","classes":"tsd-kind-interface"},{"id":1495,"kind":1024,"name":"points","url":"interfaces/RewardRedemptionParams.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1496,"kind":1024,"name":"assignment_id","url":"interfaces/RewardRedemptionParams.html#assignment_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1497,"kind":1024,"name":"id","url":"interfaces/RewardRedemptionParams.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1498,"kind":256,"name":"ProductsCreate","url":"interfaces/ProductsCreate.html","classes":"tsd-kind-interface"},{"id":1499,"kind":1024,"name":"name","url":"interfaces/ProductsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1500,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1501,"kind":1024,"name":"price","url":"interfaces/ProductsCreate.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1502,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreate.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1503,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1504,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreate.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1505,"kind":256,"name":"ProductsGetResponseSkus","url":"interfaces/ProductsGetResponseSkus.html","classes":"tsd-kind-interface"},{"id":1506,"kind":1024,"name":"skus","url":"interfaces/ProductsGetResponseSkus.html#skus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsGetResponseSkus"},{"id":1507,"kind":65536,"name":"__type","url":"interfaces/ProductsGetResponseSkus.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ProductsGetResponseSkus"},{"id":1508,"kind":1024,"name":"object","url":"interfaces/ProductsGetResponseSkus.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1509,"kind":1024,"name":"total","url":"interfaces/ProductsGetResponseSkus.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1510,"kind":1024,"name":"data","url":"interfaces/ProductsGetResponseSkus.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1511,"kind":256,"name":"ProductsCreateResponse","url":"interfaces/ProductsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1512,"kind":1024,"name":"id","url":"interfaces/ProductsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1513,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1514,"kind":1024,"name":"object","url":"interfaces/ProductsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1515,"kind":1024,"name":"name","url":"interfaces/ProductsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1516,"kind":1024,"name":"price","url":"interfaces/ProductsCreateResponse.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1517,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1518,"kind":1024,"name":"created_at","url":"interfaces/ProductsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1519,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreateResponse.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1520,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1521,"kind":4194304,"name":"ProductsGetResponse","url":"modules.html#ProductsGetResponse","classes":"tsd-kind-type-alias"},{"id":1522,"kind":4194304,"name":"ProductsUpdate","url":"modules.html#ProductsUpdate","classes":"tsd-kind-type-alias"},{"id":1523,"kind":65536,"name":"__type","url":"modules.html#ProductsUpdate.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsUpdate"},{"id":1524,"kind":1024,"name":"name","url":"modules.html#ProductsUpdate.__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1525,"kind":1024,"name":"id","url":"modules.html#ProductsUpdate.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1526,"kind":1024,"name":"source_id","url":"modules.html#ProductsUpdate.__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1527,"kind":1024,"name":"attributes","url":"modules.html#ProductsUpdate.__type.attributes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1528,"kind":1024,"name":"price","url":"modules.html#ProductsUpdate.__type.price","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1529,"kind":1024,"name":"image_url","url":"modules.html#ProductsUpdate.__type.image_url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1530,"kind":1024,"name":"metadata","url":"modules.html#ProductsUpdate.__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1531,"kind":4194304,"name":"ProductsUpdateResponse","url":"modules.html#ProductsUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1532,"kind":256,"name":"ProductsBulkUpdateMetadata","url":"interfaces/ProductsBulkUpdateMetadata.html","classes":"tsd-kind-interface"},{"id":1533,"kind":1024,"name":"source_ids","url":"interfaces/ProductsBulkUpdateMetadata.html#source_ids","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsBulkUpdateMetadata"},{"id":1534,"kind":1024,"name":"metadata","url":"interfaces/ProductsBulkUpdateMetadata.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsBulkUpdateMetadata"},{"id":1535,"kind":4194304,"name":"ProductsBulkUpdate","url":"modules.html#ProductsBulkUpdate","classes":"tsd-kind-type-alias"},{"id":1536,"kind":4194304,"name":"ProductsBulkUpdateResponse","url":"modules.html#ProductsBulkUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1537,"kind":65536,"name":"__type","url":"modules.html#ProductsBulkUpdateResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsBulkUpdateResponse"},{"id":1538,"kind":1024,"name":"async_action_id","url":"modules.html#ProductsBulkUpdateResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsBulkUpdateResponse.__type"},{"id":1539,"kind":4194304,"name":"ProductsBulkUpdateMetadataResponse","url":"modules.html#ProductsBulkUpdateMetadataResponse","classes":"tsd-kind-type-alias"},{"id":1540,"kind":65536,"name":"__type","url":"modules.html#ProductsBulkUpdateMetadataResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsBulkUpdateMetadataResponse"},{"id":1541,"kind":1024,"name":"async_action_id","url":"modules.html#ProductsBulkUpdateMetadataResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsBulkUpdateMetadataResponse.__type"},{"id":1542,"kind":256,"name":"ProductsDeleteParams","url":"interfaces/ProductsDeleteParams.html","classes":"tsd-kind-interface"},{"id":1543,"kind":1024,"name":"force","url":"interfaces/ProductsDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsDeleteParams"},{"id":1544,"kind":256,"name":"ProductsListParams","url":"interfaces/ProductsListParams.html","classes":"tsd-kind-interface"},{"id":1545,"kind":1024,"name":"page","url":"interfaces/ProductsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListParams"},{"id":1546,"kind":1024,"name":"limit","url":"interfaces/ProductsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListParams"},{"id":1547,"kind":256,"name":"ProductsListResponse","url":"interfaces/ProductsListResponse.html","classes":"tsd-kind-interface"},{"id":1548,"kind":1024,"name":"object","url":"interfaces/ProductsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1549,"kind":1024,"name":"total","url":"interfaces/ProductsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1550,"kind":1024,"name":"data_ref","url":"interfaces/ProductsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1551,"kind":1024,"name":"products","url":"interfaces/ProductsListResponse.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1552,"kind":256,"name":"ProductsCreateSku","url":"interfaces/ProductsCreateSku.html","classes":"tsd-kind-interface"},{"id":1553,"kind":1024,"name":"sku","url":"interfaces/ProductsCreateSku.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1554,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateSku.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1555,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateSku.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1556,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateSku.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1557,"kind":1024,"name":"price","url":"interfaces/ProductsCreateSku.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1558,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreateSku.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1559,"kind":1024,"name":"currency","url":"interfaces/ProductsCreateSku.html#currency","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1560,"kind":256,"name":"ProductsCreateSkuResponse","url":"interfaces/ProductsCreateSkuResponse.html","classes":"tsd-kind-interface"},{"id":1561,"kind":1024,"name":"id","url":"interfaces/ProductsCreateSkuResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1562,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateSkuResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1563,"kind":1024,"name":"sku","url":"interfaces/ProductsCreateSkuResponse.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1564,"kind":1024,"name":"price","url":"interfaces/ProductsCreateSkuResponse.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1565,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateSkuResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1566,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateSkuResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1567,"kind":1024,"name":"updated_at","url":"interfaces/ProductsCreateSkuResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1568,"kind":1024,"name":"currency","url":"interfaces/ProductsCreateSkuResponse.html#currency","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1569,"kind":1024,"name":"created_at","url":"interfaces/ProductsCreateSkuResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1570,"kind":1024,"name":"object","url":"interfaces/ProductsCreateSkuResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1571,"kind":4194304,"name":"ProductsGetSkuResponse","url":"modules.html#ProductsGetSkuResponse","classes":"tsd-kind-type-alias"},{"id":1572,"kind":4194304,"name":"ProductsUpdateSku","url":"modules.html#ProductsUpdateSku","classes":"tsd-kind-type-alias"},{"id":1573,"kind":4194304,"name":"ProductsUpdateSkuResponse","url":"modules.html#ProductsUpdateSkuResponse","classes":"tsd-kind-type-alias"},{"id":1574,"kind":256,"name":"ProductsDeleteSkuParams","url":"interfaces/ProductsDeleteSkuParams.html","classes":"tsd-kind-interface"},{"id":1575,"kind":1024,"name":"force","url":"interfaces/ProductsDeleteSkuParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsDeleteSkuParams"},{"id":1576,"kind":256,"name":"ProductsListSkus","url":"interfaces/ProductsListSkus.html","classes":"tsd-kind-interface"},{"id":1577,"kind":1024,"name":"object","url":"interfaces/ProductsListSkus.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1578,"kind":1024,"name":"total","url":"interfaces/ProductsListSkus.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1579,"kind":1024,"name":"skus","url":"interfaces/ProductsListSkus.html#skus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1580,"kind":256,"name":"SimpleProduct","url":"interfaces/SimpleProduct.html","classes":"tsd-kind-interface"},{"id":1581,"kind":1024,"name":"id","url":"interfaces/SimpleProduct.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1582,"kind":1024,"name":"source_id","url":"interfaces/SimpleProduct.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1583,"kind":1024,"name":"name","url":"interfaces/SimpleProduct.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1584,"kind":256,"name":"SimpleSku","url":"interfaces/SimpleSku.html","classes":"tsd-kind-interface"},{"id":1585,"kind":1024,"name":"id","url":"interfaces/SimpleSku.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1586,"kind":1024,"name":"source_id","url":"interfaces/SimpleSku.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1587,"kind":1024,"name":"sku","url":"interfaces/SimpleSku.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1588,"kind":256,"name":"VoucherDiscount","url":"interfaces/VoucherDiscount.html","classes":"tsd-kind-interface"},{"id":1589,"kind":1024,"name":"type","url":"interfaces/VoucherDiscount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1590,"kind":1024,"name":"unit_off","url":"interfaces/VoucherDiscount.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1591,"kind":1024,"name":"unit_off_formula","url":"interfaces/VoucherDiscount.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1592,"kind":1024,"name":"effect","url":"interfaces/VoucherDiscount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1593,"kind":1024,"name":"amount_off","url":"interfaces/VoucherDiscount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1594,"kind":1024,"name":"amount_off_formula","url":"interfaces/VoucherDiscount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1595,"kind":1024,"name":"percent_off","url":"interfaces/VoucherDiscount.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1596,"kind":1024,"name":"percent_off_formula","url":"interfaces/VoucherDiscount.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1597,"kind":1024,"name":"amount_limit","url":"interfaces/VoucherDiscount.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1598,"kind":256,"name":"DistributionsPublicationsListParams","url":"interfaces/DistributionsPublicationsListParams.html","classes":"tsd-kind-interface"},{"id":1599,"kind":1024,"name":"limit","url":"interfaces/DistributionsPublicationsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1600,"kind":1024,"name":"page","url":"interfaces/DistributionsPublicationsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1601,"kind":1024,"name":"order","url":"interfaces/DistributionsPublicationsListParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1602,"kind":1024,"name":"campaign","url":"interfaces/DistributionsPublicationsListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1603,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1604,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsListParams.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1605,"kind":1024,"name":"result","url":"interfaces/DistributionsPublicationsListParams.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1606,"kind":1024,"name":"voucher_type","url":"interfaces/DistributionsPublicationsListParams.html#voucher_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1607,"kind":1024,"name":"is_referral_code","url":"interfaces/DistributionsPublicationsListParams.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1608,"kind":1024,"name":"filters","url":"interfaces/DistributionsPublicationsListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1609,"kind":65536,"name":"__type","url":"interfaces/DistributionsPublicationsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1610,"kind":1024,"name":"junction","url":"interfaces/DistributionsPublicationsListParams.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsListParams.__type"},{"id":1611,"kind":256,"name":"DistributionsPublicationsListResponse","url":"interfaces/DistributionsPublicationsListResponse.html","classes":"tsd-kind-interface"},{"id":1612,"kind":1024,"name":"object","url":"interfaces/DistributionsPublicationsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1613,"kind":1024,"name":"total","url":"interfaces/DistributionsPublicationsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1614,"kind":1024,"name":"data_ref","url":"interfaces/DistributionsPublicationsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1615,"kind":1024,"name":"publications","url":"interfaces/DistributionsPublicationsListResponse.html#publications","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1616,"kind":256,"name":"DistributionsPublicationsCreateParams","url":"interfaces/DistributionsPublicationsCreateParams.html","classes":"tsd-kind-interface"},{"id":1617,"kind":1024,"name":"join_once","url":"interfaces/DistributionsPublicationsCreateParams.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1618,"kind":1024,"name":"source_id","url":"interfaces/DistributionsPublicationsCreateParams.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1619,"kind":1024,"name":"campaign","url":"interfaces/DistributionsPublicationsCreateParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1620,"kind":65536,"name":"__type","url":"interfaces/DistributionsPublicationsCreateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1621,"kind":1024,"name":"name","url":"interfaces/DistributionsPublicationsCreateParams.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsCreateParams.__type"},{"id":1622,"kind":1024,"name":"count","url":"interfaces/DistributionsPublicationsCreateParams.html#__type.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsCreateParams.__type"},{"id":1623,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsCreateParams.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1624,"kind":1024,"name":"channel","url":"interfaces/DistributionsPublicationsCreateParams.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1625,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsCreateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1626,"kind":256,"name":"DistributionsPublicationsCreateResponse","url":"interfaces/DistributionsPublicationsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1627,"kind":1024,"name":"id","url":"interfaces/DistributionsPublicationsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1628,"kind":1024,"name":"object","url":"interfaces/DistributionsPublicationsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1629,"kind":1024,"name":"created_at","url":"interfaces/DistributionsPublicationsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1630,"kind":1024,"name":"customer_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1631,"kind":1024,"name":"tracking_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1632,"kind":1024,"name":"metadata","url":"interfaces/DistributionsPublicationsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1633,"kind":1024,"name":"channel","url":"interfaces/DistributionsPublicationsCreateResponse.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1634,"kind":1024,"name":"source_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1635,"kind":1024,"name":"result","url":"interfaces/DistributionsPublicationsCreateResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1636,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsCreateResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1637,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsCreateResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1638,"kind":256,"name":"SegmentsCreate","url":"interfaces/SegmentsCreate.html","classes":"tsd-kind-interface"},{"id":1639,"kind":1024,"name":"name","url":"interfaces/SegmentsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1640,"kind":1024,"name":"type","url":"interfaces/SegmentsCreate.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1641,"kind":1024,"name":"filter","url":"interfaces/SegmentsCreate.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1642,"kind":65536,"name":"__type","url":"interfaces/SegmentsCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1643,"kind":1024,"name":"junction","url":"interfaces/SegmentsCreate.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SegmentsCreate.__type"},{"id":1644,"kind":1024,"name":"customers","url":"interfaces/SegmentsCreate.html#customers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1645,"kind":256,"name":"SegmentsCreateResponse","url":"interfaces/SegmentsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1646,"kind":1024,"name":"id","url":"interfaces/SegmentsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1647,"kind":1024,"name":"name","url":"interfaces/SegmentsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1648,"kind":1024,"name":"created_at","url":"interfaces/SegmentsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1649,"kind":1024,"name":"metadata","url":"interfaces/SegmentsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1650,"kind":1024,"name":"filter","url":"interfaces/SegmentsCreateResponse.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1651,"kind":65536,"name":"__type","url":"interfaces/SegmentsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1652,"kind":1024,"name":"junction","url":"interfaces/SegmentsCreateResponse.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SegmentsCreateResponse.__type"},{"id":1653,"kind":1024,"name":"type","url":"interfaces/SegmentsCreateResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1654,"kind":1024,"name":"object","url":"interfaces/SegmentsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1655,"kind":4194304,"name":"SegmentsGetResponse","url":"modules.html#SegmentsGetResponse","classes":"tsd-kind-type-alias"},{"id":1656,"kind":256,"name":"SegmentsListResponse","url":"interfaces/SegmentsListResponse.html","classes":"tsd-kind-interface"},{"id":1657,"kind":1024,"name":"object","url":"interfaces/SegmentsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1658,"kind":1024,"name":"total","url":"interfaces/SegmentsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1659,"kind":1024,"name":"data_ref","url":"interfaces/SegmentsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1660,"kind":1024,"name":"data","url":"interfaces/SegmentsListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1661,"kind":256,"name":"ExportResource","url":"interfaces/ExportResource.html","classes":"tsd-kind-interface"},{"id":1662,"kind":1024,"name":"exported_object","url":"interfaces/ExportResource.html#exported_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportResource"},{"id":1663,"kind":1024,"name":"parameters","url":"interfaces/ExportResource.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportResource"},{"id":1664,"kind":65536,"name":"__type","url":"interfaces/ExportResource.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportResource"},{"id":1665,"kind":1024,"name":"order","url":"interfaces/ExportResource.html#__type.order","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1666,"kind":1024,"name":"fields","url":"interfaces/ExportResource.html#__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1667,"kind":1024,"name":"filters","url":"interfaces/ExportResource.html#__type.filters","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1668,"kind":65536,"name":"__type","url":"interfaces/ExportResource.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1669,"kind":1024,"name":"junction","url":"interfaces/ExportResource.html#__type.__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type.__type"},{"id":1670,"kind":256,"name":"ExportsCreateResponse","url":"interfaces/ExportsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1671,"kind":1024,"name":"id","url":"interfaces/ExportsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1672,"kind":1024,"name":"object","url":"interfaces/ExportsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1673,"kind":1024,"name":"created_at","url":"interfaces/ExportsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1674,"kind":1024,"name":"status","url":"interfaces/ExportsCreateResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1675,"kind":1024,"name":"channel","url":"interfaces/ExportsCreateResponse.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1676,"kind":1024,"name":"exported_object","url":"interfaces/ExportsCreateResponse.html#exported_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1677,"kind":1024,"name":"parameters","url":"interfaces/ExportsCreateResponse.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1678,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1679,"kind":1024,"name":"fields","url":"interfaces/ExportsCreateResponse.html#__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1680,"kind":1024,"name":"filters","url":"interfaces/ExportsCreateResponse.html#__type.filters","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1681,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1682,"kind":1024,"name":"junction","url":"interfaces/ExportsCreateResponse.html#__type.__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type.__type"},{"id":1683,"kind":1024,"name":"result","url":"interfaces/ExportsCreateResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1684,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1685,"kind":1024,"name":"url","url":"interfaces/ExportsCreateResponse.html#__type-2.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1686,"kind":4194304,"name":"ExportsGetResponse","url":"modules.html#ExportsGetResponse","classes":"tsd-kind-type-alias"},{"id":1687,"kind":256,"name":"OrdersItem","url":"interfaces/OrdersItem.html","classes":"tsd-kind-interface"},{"id":1688,"kind":1024,"name":"sku_id","url":"interfaces/OrdersItem.html#sku_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1689,"kind":1024,"name":"product_id","url":"interfaces/OrdersItem.html#product_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1690,"kind":1024,"name":"related_object","url":"interfaces/OrdersItem.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1691,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#source_id-2","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1692,"kind":1024,"name":"discount_quantity","url":"interfaces/OrdersItem.html#discount_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1693,"kind":1024,"name":"initial_quantity","url":"interfaces/OrdersItem.html#initial_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1694,"kind":1024,"name":"quantity","url":"interfaces/OrdersItem.html#quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1695,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1696,"kind":1024,"name":"amount","url":"interfaces/OrdersItem.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1697,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersItem.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1698,"kind":1024,"name":"initial_amount","url":"interfaces/OrdersItem.html#initial_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1699,"kind":1024,"name":"applied_discount_amount","url":"interfaces/OrdersItem.html#applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1700,"kind":1024,"name":"subtotal_amount","url":"interfaces/OrdersItem.html#subtotal_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1701,"kind":1024,"name":"product","url":"interfaces/OrdersItem.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1702,"kind":65536,"name":"__type","url":"interfaces/OrdersItem.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1703,"kind":1024,"name":"id","url":"interfaces/OrdersItem.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1704,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1705,"kind":1024,"name":"override","url":"interfaces/OrdersItem.html#__type.override","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1706,"kind":1024,"name":"name","url":"interfaces/OrdersItem.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1707,"kind":1024,"name":"metadata","url":"interfaces/OrdersItem.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1708,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#__type.price-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1709,"kind":1024,"name":"sku","url":"interfaces/OrdersItem.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1710,"kind":65536,"name":"__type","url":"interfaces/OrdersItem.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1711,"kind":1024,"name":"id","url":"interfaces/OrdersItem.html#__type-1.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1712,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#__type-1.source_id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1713,"kind":1024,"name":"override","url":"interfaces/OrdersItem.html#__type-1.override-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1714,"kind":1024,"name":"sku","url":"interfaces/OrdersItem.html#__type-1.sku-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1715,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#__type-1.price-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1716,"kind":1024,"name":"object","url":"interfaces/OrdersItem.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1717,"kind":1024,"name":"metadata","url":"interfaces/OrdersItem.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1718,"kind":256,"name":"OrdersCreate","url":"interfaces/OrdersCreate.html","classes":"tsd-kind-interface"},{"id":1719,"kind":1024,"name":"source_id","url":"interfaces/OrdersCreate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1720,"kind":1024,"name":"status","url":"interfaces/OrdersCreate.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1721,"kind":1024,"name":"customer","url":"interfaces/OrdersCreate.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1722,"kind":1024,"name":"amount","url":"interfaces/OrdersCreate.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1723,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersCreate.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1724,"kind":1024,"name":"items","url":"interfaces/OrdersCreate.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1725,"kind":1024,"name":"metadata","url":"interfaces/OrdersCreate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1726,"kind":256,"name":"OrdersCreateResponse","url":"interfaces/OrdersCreateResponse.html","classes":"tsd-kind-interface"},{"id":1727,"kind":1024,"name":"id","url":"interfaces/OrdersCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1728,"kind":1024,"name":"source_id","url":"interfaces/OrdersCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1729,"kind":1024,"name":"created_at","url":"interfaces/OrdersCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1730,"kind":1024,"name":"updated_at","url":"interfaces/OrdersCreateResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1731,"kind":1024,"name":"status","url":"interfaces/OrdersCreateResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1732,"kind":1024,"name":"amount","url":"interfaces/OrdersCreateResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1733,"kind":1024,"name":"initial_amount","url":"interfaces/OrdersCreateResponse.html#initial_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1734,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersCreateResponse.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1735,"kind":1024,"name":"items_discount_amount","url":"interfaces/OrdersCreateResponse.html#items_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1736,"kind":1024,"name":"total_discount_amount","url":"interfaces/OrdersCreateResponse.html#total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1737,"kind":1024,"name":"applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1738,"kind":1024,"name":"items_applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#items_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1739,"kind":1024,"name":"total_amount","url":"interfaces/OrdersCreateResponse.html#total_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1740,"kind":1024,"name":"total_applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#total_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1741,"kind":1024,"name":"items","url":"interfaces/OrdersCreateResponse.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1742,"kind":1024,"name":"metadata","url":"interfaces/OrdersCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1743,"kind":1024,"name":"customer","url":"interfaces/OrdersCreateResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1744,"kind":1024,"name":"object","url":"interfaces/OrdersCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1745,"kind":4194304,"name":"OrdersGetResponse","url":"modules.html#OrdersGetResponse","classes":"tsd-kind-type-alias"},{"id":1746,"kind":256,"name":"OrdersUpdate","url":"interfaces/OrdersUpdate.html","classes":"tsd-kind-interface"},{"id":1747,"kind":1024,"name":"id","url":"interfaces/OrdersUpdate.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1748,"kind":1024,"name":"source_id","url":"interfaces/OrdersUpdate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1749,"kind":1024,"name":"status","url":"interfaces/OrdersUpdate.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1750,"kind":1024,"name":"items","url":"interfaces/OrdersUpdate.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1751,"kind":1024,"name":"amount","url":"interfaces/OrdersUpdate.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1752,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersUpdate.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1753,"kind":1024,"name":"metadata","url":"interfaces/OrdersUpdate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1754,"kind":1024,"name":"customer","url":"interfaces/OrdersUpdate.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1755,"kind":65536,"name":"__type","url":"interfaces/OrdersUpdate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1756,"kind":1024,"name":"id","url":"interfaces/OrdersUpdate.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersUpdate.__type"},{"id":1757,"kind":4194304,"name":"OrdersUpdateResponse","url":"modules.html#OrdersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1758,"kind":256,"name":"OrdersListParams","url":"interfaces/OrdersListParams.html","classes":"tsd-kind-interface"},{"id":1759,"kind":1024,"name":"limit","url":"interfaces/OrdersListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListParams"},{"id":1760,"kind":1024,"name":"page","url":"interfaces/OrdersListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListParams"},{"id":1761,"kind":256,"name":"OrdersListResponse","url":"interfaces/OrdersListResponse.html","classes":"tsd-kind-interface"},{"id":1762,"kind":1024,"name":"object","url":"interfaces/OrdersListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1763,"kind":1024,"name":"total","url":"interfaces/OrdersListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1764,"kind":1024,"name":"data_ref","url":"interfaces/OrdersListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1765,"kind":1024,"name":"orders","url":"interfaces/OrdersListResponse.html#orders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1766,"kind":256,"name":"Consent","url":"interfaces/Consent.html","classes":"tsd-kind-interface"},{"id":1767,"kind":1024,"name":"id","url":"interfaces/Consent.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1768,"kind":1024,"name":"name","url":"interfaces/Consent.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1769,"kind":1024,"name":"description","url":"interfaces/Consent.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1770,"kind":1024,"name":"category","url":"interfaces/Consent.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1771,"kind":1024,"name":"created_at","url":"interfaces/Consent.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1772,"kind":1024,"name":"updated_at","url":"interfaces/Consent.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1773,"kind":1024,"name":"object","url":"interfaces/Consent.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1774,"kind":256,"name":"ConsentsListResponse","url":"interfaces/ConsentsListResponse.html","classes":"tsd-kind-interface"},{"id":1775,"kind":1024,"name":"groups","url":"interfaces/ConsentsListResponse.html#groups","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1776,"kind":65536,"name":"__type","url":"interfaces/ConsentsListResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1777,"kind":1024,"name":"object","url":"interfaces/ConsentsListResponse.html#__type-1.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1778,"kind":1024,"name":"total","url":"interfaces/ConsentsListResponse.html#__type-1.total-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1779,"kind":1024,"name":"data_ref","url":"interfaces/ConsentsListResponse.html#__type-1.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1780,"kind":1024,"name":"data","url":"interfaces/ConsentsListResponse.html#__type-1.data-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1781,"kind":1024,"name":"consents","url":"interfaces/ConsentsListResponse.html#consents","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1782,"kind":65536,"name":"__type","url":"interfaces/ConsentsListResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1783,"kind":1024,"name":"object","url":"interfaces/ConsentsListResponse.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1784,"kind":1024,"name":"total","url":"interfaces/ConsentsListResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1785,"kind":1024,"name":"data_ref","url":"interfaces/ConsentsListResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1786,"kind":1024,"name":"data","url":"interfaces/ConsentsListResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1787,"kind":256,"name":"EventsParams","url":"interfaces/EventsParams.html","classes":"tsd-kind-interface"},{"id":1788,"kind":1024,"name":"event","url":"interfaces/EventsParams.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1789,"kind":1024,"name":"customer","url":"interfaces/EventsParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1790,"kind":1024,"name":"metadata","url":"interfaces/EventsParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1791,"kind":1024,"name":"referral","url":"interfaces/EventsParams.html#referral","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1792,"kind":65536,"name":"__type","url":"interfaces/EventsParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"EventsParams"},{"id":1793,"kind":1024,"name":"code","url":"interfaces/EventsParams.html#__type-1.code-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1794,"kind":1024,"name":"referrer_id","url":"interfaces/EventsParams.html#__type-1.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1795,"kind":1024,"name":"loyalty","url":"interfaces/EventsParams.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1796,"kind":65536,"name":"__type","url":"interfaces/EventsParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"EventsParams"},{"id":1797,"kind":1024,"name":"code","url":"interfaces/EventsParams.html#__type.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1798,"kind":256,"name":"EventsResponse","url":"interfaces/EventsResponse.html","classes":"tsd-kind-interface"},{"id":1799,"kind":1024,"name":"object","url":"interfaces/EventsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsResponse"},{"id":1800,"kind":1024,"name":"type","url":"interfaces/EventsResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsResponse"},{"id":1801,"kind":256,"name":"StackableOptions","url":"interfaces/StackableOptions.html","classes":"tsd-kind-interface"},{"id":1802,"kind":1024,"name":"expand","url":"interfaces/StackableOptions.html#expand","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableOptions"},{"id":1803,"kind":4194304,"name":"StackableRedeemableObject","url":"modules.html#StackableRedeemableObject","classes":"tsd-kind-type-alias"},{"id":1804,"kind":256,"name":"StackableRedeemableParams","url":"interfaces/StackableRedeemableParams.html","classes":"tsd-kind-interface"},{"id":1805,"kind":1024,"name":"object","url":"interfaces/StackableRedeemableParams.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1806,"kind":1024,"name":"id","url":"interfaces/StackableRedeemableParams.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1807,"kind":1024,"name":"reward","url":"interfaces/StackableRedeemableParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1808,"kind":1024,"name":"gift","url":"interfaces/StackableRedeemableParams.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1809,"kind":4194304,"name":"StackableRedeemableResponseStatus","url":"modules.html#StackableRedeemableResponseStatus","classes":"tsd-kind-type-alias"},{"id":1810,"kind":256,"name":"StackableRedeemableResultDiscountUnit","url":"interfaces/StackableRedeemableResultDiscountUnit.html","classes":"tsd-kind-interface"},{"id":1811,"kind":1024,"name":"effect","url":"interfaces/StackableRedeemableResultDiscountUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1812,"kind":1024,"name":"unit_off","url":"interfaces/StackableRedeemableResultDiscountUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1813,"kind":1024,"name":"unit_type","url":"interfaces/StackableRedeemableResultDiscountUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1814,"kind":1024,"name":"sku","url":"interfaces/StackableRedeemableResultDiscountUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1815,"kind":1024,"name":"product","url":"interfaces/StackableRedeemableResultDiscountUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1816,"kind":256,"name":"StackableRedeemableResultDiscount","url":"interfaces/StackableRedeemableResultDiscount.html","classes":"tsd-kind-interface"},{"id":1817,"kind":1024,"name":"type","url":"interfaces/StackableRedeemableResultDiscount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1818,"kind":1024,"name":"effect","url":"interfaces/StackableRedeemableResultDiscount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1819,"kind":1024,"name":"amount_off","url":"interfaces/StackableRedeemableResultDiscount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1820,"kind":1024,"name":"amount_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1821,"kind":1024,"name":"percent_off","url":"interfaces/StackableRedeemableResultDiscount.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1822,"kind":1024,"name":"percent_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1823,"kind":1024,"name":"amount_limit","url":"interfaces/StackableRedeemableResultDiscount.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1824,"kind":1024,"name":"fixed_amount","url":"interfaces/StackableRedeemableResultDiscount.html#fixed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1825,"kind":1024,"name":"fixed_amount_formula","url":"interfaces/StackableRedeemableResultDiscount.html#fixed_amount_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1826,"kind":1024,"name":"unit_off","url":"interfaces/StackableRedeemableResultDiscount.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1827,"kind":1024,"name":"unit_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1828,"kind":1024,"name":"unit_type","url":"interfaces/StackableRedeemableResultDiscount.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1829,"kind":1024,"name":"sku","url":"interfaces/StackableRedeemableResultDiscount.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1830,"kind":1024,"name":"product","url":"interfaces/StackableRedeemableResultDiscount.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1831,"kind":1024,"name":"units","url":"interfaces/StackableRedeemableResultDiscount.html#units","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1832,"kind":256,"name":"StackableRedeemableResultGift","url":"interfaces/StackableRedeemableResultGift.html","classes":"tsd-kind-interface"},{"id":1833,"kind":1024,"name":"credits","url":"interfaces/StackableRedeemableResultGift.html#credits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultGift"},{"id":1834,"kind":256,"name":"StackableRedeemableResultLoyaltyCard","url":"interfaces/StackableRedeemableResultLoyaltyCard.html","classes":"tsd-kind-interface"},{"id":1835,"kind":1024,"name":"points","url":"interfaces/StackableRedeemableResultLoyaltyCard.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultLoyaltyCard"},{"id":1836,"kind":1024,"name":"transfers","url":"interfaces/StackableRedeemableResultLoyaltyCard.html#transfers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultLoyaltyCard"},{"id":1837,"kind":256,"name":"StackableRedeemableResultResponse","url":"interfaces/StackableRedeemableResultResponse.html","classes":"tsd-kind-interface"},{"id":1838,"kind":1024,"name":"discount","url":"interfaces/StackableRedeemableResultResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1839,"kind":1024,"name":"gift","url":"interfaces/StackableRedeemableResultResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1840,"kind":1024,"name":"loyalty_card","url":"interfaces/StackableRedeemableResultResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1841,"kind":1024,"name":"error","url":"interfaces/StackableRedeemableResultResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1842,"kind":256,"name":"StackableRedeemableResponse","url":"interfaces/StackableRedeemableResponse.html","classes":"tsd-kind-interface"},{"id":1843,"kind":1024,"name":"status","url":"interfaces/StackableRedeemableResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1844,"kind":1024,"name":"id","url":"interfaces/StackableRedeemableResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1845,"kind":1024,"name":"object","url":"interfaces/StackableRedeemableResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1846,"kind":1024,"name":"order","url":"interfaces/StackableRedeemableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1847,"kind":1024,"name":"applicable_to","url":"interfaces/StackableRedeemableResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1848,"kind":1024,"name":"inapplicable_to","url":"interfaces/StackableRedeemableResponse.html#inapplicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1849,"kind":1024,"name":"result","url":"interfaces/StackableRedeemableResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1850,"kind":1024,"name":"metadata","url":"interfaces/StackableRedeemableResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1851,"kind":256,"name":"GiftRedemptionParams","url":"interfaces/GiftRedemptionParams.html","classes":"tsd-kind-interface"},{"id":1852,"kind":1024,"name":"credits","url":"interfaces/GiftRedemptionParams.html#credits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GiftRedemptionParams"},{"id":1853,"kind":4194304,"name":"ValidationSessionType","url":"modules.html#ValidationSessionType","classes":"tsd-kind-type-alias"},{"id":1854,"kind":4194304,"name":"ValidationSessionTTLUnit","url":"modules.html#ValidationSessionTTLUnit","classes":"tsd-kind-type-alias"},{"id":1855,"kind":256,"name":"ValidationSessionParams","url":"interfaces/ValidationSessionParams.html","classes":"tsd-kind-interface"},{"id":1856,"kind":1024,"name":"key","url":"interfaces/ValidationSessionParams.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1857,"kind":1024,"name":"type","url":"interfaces/ValidationSessionParams.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1858,"kind":1024,"name":"ttl","url":"interfaces/ValidationSessionParams.html#ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1859,"kind":1024,"name":"ttl_unit","url":"interfaces/ValidationSessionParams.html#ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1860,"kind":256,"name":"ValidationSessionResponse","url":"interfaces/ValidationSessionResponse.html","classes":"tsd-kind-interface"},{"id":1861,"kind":1024,"name":"key","url":"interfaces/ValidationSessionResponse.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1862,"kind":1024,"name":"type","url":"interfaces/ValidationSessionResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1863,"kind":1024,"name":"ttl","url":"interfaces/ValidationSessionResponse.html#ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1864,"kind":1024,"name":"ttl_unit","url":"interfaces/ValidationSessionResponse.html#ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1865,"kind":256,"name":"ValidationSessionReleaseParams","url":"interfaces/ValidationSessionReleaseParams.html","classes":"tsd-kind-interface"},{"id":1866,"kind":1024,"name":"key","url":"interfaces/ValidationSessionReleaseParams.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionReleaseParams"},{"id":1867,"kind":4194304,"name":"ApplicableToEffect","url":"modules.html#ApplicableToEffect","classes":"tsd-kind-type-alias"},{"id":1868,"kind":256,"name":"ApplicableTo","url":"interfaces/ApplicableTo.html","classes":"tsd-kind-interface"},{"id":1869,"kind":1024,"name":"object","url":"interfaces/ApplicableTo.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1870,"kind":1024,"name":"id","url":"interfaces/ApplicableTo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1871,"kind":1024,"name":"source_id","url":"interfaces/ApplicableTo.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1872,"kind":1024,"name":"strict","url":"interfaces/ApplicableTo.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1873,"kind":1024,"name":"price","url":"interfaces/ApplicableTo.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1874,"kind":1024,"name":"price_formula","url":"interfaces/ApplicableTo.html#price_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1875,"kind":1024,"name":"effect","url":"interfaces/ApplicableTo.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1876,"kind":256,"name":"ApplicableToResultList","url":"interfaces/ApplicableToResultList.html","classes":"tsd-kind-interface"},{"id":1877,"kind":1024,"name":"object","url":"interfaces/ApplicableToResultList.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1878,"kind":1024,"name":"total","url":"interfaces/ApplicableToResultList.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1879,"kind":1024,"name":"data","url":"interfaces/ApplicableToResultList.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1880,"kind":4194304,"name":"DiscountVouchersTypes","url":"modules.html#DiscountVouchersTypes","classes":"tsd-kind-type-alias"},{"id":1881,"kind":4,"name":"DiscountVouchersTypesEnum","url":"enums/DiscountVouchersTypesEnum.html","classes":"tsd-kind-enum"},{"id":1882,"kind":16,"name":"AMOUNT","url":"enums/DiscountVouchersTypesEnum.html#AMOUNT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1883,"kind":16,"name":"PERCENT","url":"enums/DiscountVouchersTypesEnum.html#PERCENT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1884,"kind":16,"name":"UNIT","url":"enums/DiscountVouchersTypesEnum.html#UNIT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1885,"kind":16,"name":"FIXED","url":"enums/DiscountVouchersTypesEnum.html#FIXED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1886,"kind":4194304,"name":"DiscountVouchersEffectTypes","url":"modules.html#DiscountVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1887,"kind":4194304,"name":"DiscountUnitVouchersEffectTypes","url":"modules.html#DiscountUnitVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1888,"kind":4194304,"name":"DiscountAmountVouchersEffectTypes","url":"modules.html#DiscountAmountVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1889,"kind":4194304,"name":"DiscountPercentVouchersEffectTypes","url":"modules.html#DiscountPercentVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1890,"kind":4194304,"name":"DiscountFixedVouchersEffectTypes","url":"modules.html#DiscountFixedVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1891,"kind":256,"name":"DiscountUnit","url":"interfaces/DiscountUnit.html","classes":"tsd-kind-interface"},{"id":1892,"kind":1024,"name":"type","url":"interfaces/DiscountUnit.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1893,"kind":1024,"name":"unit_off","url":"interfaces/DiscountUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1894,"kind":1024,"name":"unit_off_formula","url":"interfaces/DiscountUnit.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1895,"kind":1024,"name":"effect","url":"interfaces/DiscountUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1896,"kind":1024,"name":"unit_type","url":"interfaces/DiscountUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1897,"kind":1024,"name":"product","url":"interfaces/DiscountUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1898,"kind":1024,"name":"sku","url":"interfaces/DiscountUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1899,"kind":256,"name":"DiscountAmount","url":"interfaces/DiscountAmount.html","classes":"tsd-kind-interface"},{"id":1900,"kind":1024,"name":"type","url":"interfaces/DiscountAmount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1901,"kind":1024,"name":"amount_off","url":"interfaces/DiscountAmount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1902,"kind":1024,"name":"amount_off_formula","url":"interfaces/DiscountAmount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1903,"kind":1024,"name":"effect","url":"interfaces/DiscountAmount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1904,"kind":256,"name":"DiscountPercent","url":"interfaces/DiscountPercent.html","classes":"tsd-kind-interface"},{"id":1905,"kind":1024,"name":"type","url":"interfaces/DiscountPercent.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1906,"kind":1024,"name":"percent_off","url":"interfaces/DiscountPercent.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1907,"kind":1024,"name":"percent_off_formula","url":"interfaces/DiscountPercent.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1908,"kind":1024,"name":"amount_limit","url":"interfaces/DiscountPercent.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1909,"kind":1024,"name":"effect","url":"interfaces/DiscountPercent.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1910,"kind":256,"name":"DiscountFixed","url":"interfaces/DiscountFixed.html","classes":"tsd-kind-interface"},{"id":1911,"kind":1024,"name":"type","url":"interfaces/DiscountFixed.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1912,"kind":1024,"name":"fixed_amount","url":"interfaces/DiscountFixed.html#fixed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1913,"kind":1024,"name":"fixed_amount_formula","url":"interfaces/DiscountFixed.html#fixed_amount_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1914,"kind":1024,"name":"effect","url":"interfaces/DiscountFixed.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1915,"kind":64,"name":"VoucherifyServerSide","url":"modules.html#VoucherifyServerSide","classes":"tsd-kind-function"},{"id":1916,"kind":256,"name":"VoucherifyServerSideOptions","url":"interfaces/VoucherifyServerSideOptions.html","classes":"tsd-kind-interface"},{"id":1917,"kind":1024,"name":"apiUrl","url":"interfaces/VoucherifyServerSideOptions.html#apiUrl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1918,"kind":1024,"name":"applicationId","url":"interfaces/VoucherifyServerSideOptions.html#applicationId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1919,"kind":1024,"name":"secretKey","url":"interfaces/VoucherifyServerSideOptions.html#secretKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1920,"kind":1024,"name":"apiVersion","url":"interfaces/VoucherifyServerSideOptions.html#apiVersion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1921,"kind":1024,"name":"channel","url":"interfaces/VoucherifyServerSideOptions.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1922,"kind":1024,"name":"dangerouslySetSecretKeyInBrowser","url":"interfaces/VoucherifyServerSideOptions.html#dangerouslySetSecretKeyInBrowser","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1923,"kind":1024,"name":"customHeaders","url":"interfaces/VoucherifyServerSideOptions.html#customHeaders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1924,"kind":1024,"name":"exposeErrorCause","url":"interfaces/VoucherifyServerSideOptions.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1925,"kind":64,"name":"VoucherifyClientSide","url":"modules.html#VoucherifyClientSide","classes":"tsd-kind-function"},{"id":1926,"kind":256,"name":"VoucherifyClientSideOptions","url":"interfaces/VoucherifyClientSideOptions.html","classes":"tsd-kind-interface"},{"id":1927,"kind":1024,"name":"apiUrl","url":"interfaces/VoucherifyClientSideOptions.html#apiUrl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1928,"kind":1024,"name":"clientApplicationId","url":"interfaces/VoucherifyClientSideOptions.html#clientApplicationId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1929,"kind":1024,"name":"clientSecretKey","url":"interfaces/VoucherifyClientSideOptions.html#clientSecretKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1930,"kind":1024,"name":"trackingId","url":"interfaces/VoucherifyClientSideOptions.html#trackingId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1931,"kind":1024,"name":"origin","url":"interfaces/VoucherifyClientSideOptions.html#origin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1932,"kind":1024,"name":"customHeaders","url":"interfaces/VoucherifyClientSideOptions.html#customHeaders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1933,"kind":1024,"name":"exposeErrorCause","url":"interfaces/VoucherifyClientSideOptions.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,49.652]],["parent/0",[]],["name/1",[1,44.998]],["parent/1",[0,4.621]],["name/2",[2,48.937]],["parent/2",[0,4.621]],["name/3",[3,48.937]],["parent/3",[]],["name/4",[1,44.998]],["parent/4",[3,4.554]],["name/5",[4,66.516]],["parent/5",[3,4.554]],["name/6",[2,48.937]],["parent/6",[3,4.554]],["name/7",[5,53.166]],["parent/7",[3,4.554]],["name/8",[6,49.652]],["parent/8",[3,4.554]],["name/9",[7,51.255]],["parent/9",[3,4.554]],["name/10",[8,71.624]],["parent/10",[3,4.554]],["name/11",[9,71.624]],["parent/11",[3,4.554]],["name/12",[10,71.624]],["parent/12",[3,4.554]],["name/13",[11,50.421]],["parent/13",[3,4.554]],["name/14",[12,49.652]],["parent/14",[]],["name/15",[1,44.998]],["parent/15",[12,4.621]],["name/16",[13,71.624]],["parent/16",[12,4.621]],["name/17",[14,60.638]],["parent/17",[12,4.621]],["name/18",[15,63.151]],["parent/18",[12,4.621]],["name/19",[16,60.638]],["parent/19",[12,4.621]],["name/20",[17,71.624]],["parent/20",[12,4.621]],["name/21",[18,71.624]],["parent/21",[12,4.621]],["name/22",[19,71.624]],["parent/22",[12,4.621]],["name/23",[20,71.624]],["parent/23",[12,4.621]],["name/24",[21,66.516]],["parent/24",[12,4.621]],["name/25",[22,66.516]],["parent/25",[12,4.621]],["name/26",[23,66.516]],["parent/26",[12,4.621]],["name/27",[24,60.638]],["parent/27",[]],["name/28",[1,44.998]],["parent/28",[24,5.643]],["name/29",[11,50.421]],["parent/29",[24,5.643]],["name/30",[25,50.421]],["parent/30",[]],["name/31",[1,44.998]],["parent/31",[25,4.692]],["name/32",[2,48.937]],["parent/32",[25,4.692]],["name/33",[6,49.652]],["parent/33",[25,4.692]],["name/34",[11,50.421]],["parent/34",[25,4.692]],["name/35",[26,71.624]],["parent/35",[25,4.692]],["name/36",[5,53.166]],["parent/36",[25,4.692]],["name/37",[7,51.255]],["parent/37",[25,4.692]],["name/38",[21,66.516]],["parent/38",[25,4.692]],["name/39",[27,71.624]],["parent/39",[25,4.692]],["name/40",[28,60.638]],["parent/40",[]],["name/41",[1,44.998]],["parent/41",[28,5.643]],["name/42",[29,66.516]],["parent/42",[28,5.643]],["name/43",[30,56.961]],["parent/43",[28,5.643]],["name/44",[31,63.151]],["parent/44",[]],["name/45",[1,44.998]],["parent/45",[31,5.877]],["name/46",[2,48.937]],["parent/46",[31,5.877]],["name/47",[30,56.961]],["parent/47",[]],["name/48",[1,44.998]],["parent/48",[30,5.301]],["name/49",[2,48.937]],["parent/49",[30,5.301]],["name/50",[6,49.652]],["parent/50",[30,5.301]],["name/51",[7,51.255]],["parent/51",[30,5.301]],["name/52",[32,44.998]],["parent/52",[]],["name/53",[1,44.998]],["parent/53",[32,4.188]],["name/54",[11,50.421]],["parent/54",[32,4.188]],["name/55",[2,48.937]],["parent/55",[32,4.188]],["name/56",[6,49.652]],["parent/56",[32,4.188]],["name/57",[5,53.166]],["parent/57",[32,4.188]],["name/58",[7,51.255]],["parent/58",[32,4.188]],["name/59",[33,71.624]],["parent/59",[32,4.188]],["name/60",[34,71.624]],["parent/60",[32,4.188]],["name/61",[35,71.624]],["parent/61",[32,4.188]],["name/62",[36,71.624]],["parent/62",[32,4.188]],["name/63",[37,71.624]],["parent/63",[32,4.188]],["name/64",[38,71.624]],["parent/64",[32,4.188]],["name/65",[39,71.624]],["parent/65",[32,4.188]],["name/66",[40,71.624]],["parent/66",[32,4.188]],["name/67",[41,71.624]],["parent/67",[32,4.188]],["name/68",[42,71.624]],["parent/68",[32,4.188]],["name/69",[43,71.624]],["parent/69",[32,4.188]],["name/70",[44,71.624]],["parent/70",[32,4.188]],["name/71",[45,71.624]],["parent/71",[32,4.188]],["name/72",[46,71.624]],["parent/72",[32,4.188]],["name/73",[47,53.166]],["parent/73",[]],["name/74",[1,44.998]],["parent/74",[47,4.948]],["name/75",[2,48.937]],["parent/75",[47,4.948]],["name/76",[6,49.652]],["parent/76",[47,4.948]],["name/77",[5,53.166]],["parent/77",[47,4.948]],["name/78",[11,50.421]],["parent/78",[47,4.948]],["name/79",[48,66.516]],["parent/79",[47,4.948]],["name/80",[49,48.27]],["parent/80",[]],["name/81",[1,44.998]],["parent/81",[49,4.492]],["name/82",[2,48.937]],["parent/82",[49,4.492]],["name/83",[6,49.652]],["parent/83",[49,4.492]],["name/84",[5,53.166]],["parent/84",[49,4.492]],["name/85",[50,66.516]],["parent/85",[49,4.492]],["name/86",[51,66.516]],["parent/86",[49,4.492]],["name/87",[7,51.255]],["parent/87",[49,4.492]],["name/88",[11,50.421]],["parent/88",[49,4.492]],["name/89",[52,71.624]],["parent/89",[49,4.492]],["name/90",[53,71.624]],["parent/90",[49,4.492]],["name/91",[54,71.624]],["parent/91",[49,4.492]],["name/92",[55,71.624]],["parent/92",[49,4.492]],["name/93",[56,71.624]],["parent/93",[49,4.492]],["name/94",[57,55.53]],["parent/94",[]],["name/95",[1,44.998]],["parent/95",[57,5.168]],["name/96",[58,60.638]],["parent/96",[57,5.168]],["name/97",[2,48.937]],["parent/97",[57,5.168]],["name/98",[14,60.638]],["parent/98",[57,5.168]],["name/99",[59,53.166]],["parent/99",[]],["name/100",[1,44.998]],["parent/100",[59,4.948]],["name/101",[60,71.624]],["parent/101",[59,4.948]],["name/102",[11,50.421]],["parent/102",[59,4.948]],["name/103",[6,49.652]],["parent/103",[59,4.948]],["name/104",[2,48.937]],["parent/104",[59,4.948]],["name/105",[15,63.151]],["parent/105",[59,4.948]],["name/106",[5,53.166]],["parent/106",[59,4.948]],["name/107",[7,51.255]],["parent/107",[59,4.948]],["name/108",[61,50.421]],["parent/108",[]],["name/109",[1,44.998]],["parent/109",[61,4.692]],["name/110",[15,63.151]],["parent/110",[61,4.692]],["name/111",[23,66.516]],["parent/111",[61,4.692]],["name/112",[6,49.652]],["parent/112",[61,4.692]],["name/113",[11,50.421]],["parent/113",[61,4.692]],["name/114",[62,71.624]],["parent/114",[61,4.692]],["name/115",[63,71.624]],["parent/115",[61,4.692]],["name/116",[64,71.624]],["parent/116",[61,4.692]],["name/117",[65,47.057]],["parent/117",[]],["name/118",[1,44.998]],["parent/118",[65,4.379]],["name/119",[66,71.624]],["parent/119",[65,4.379]],["name/120",[67,71.624]],["parent/120",[65,4.379]],["name/121",[68,71.624]],["parent/121",[65,4.379]],["name/122",[69,71.624]],["parent/122",[65,4.379]],["name/123",[70,71.624]],["parent/123",[65,4.379]],["name/124",[71,71.624]],["parent/124",[65,4.379]],["name/125",[72,63.151]],["parent/125",[65,4.379]],["name/126",[73,71.624]],["parent/126",[65,4.379]],["name/127",[74,71.624]],["parent/127",[65,4.379]],["name/128",[75,71.624]],["parent/128",[65,4.379]],["name/129",[76,71.624]],["parent/129",[65,4.379]],["name/130",[6,49.652]],["parent/130",[65,4.379]],["name/131",[77,71.624]],["parent/131",[65,4.379]],["name/132",[78,71.624]],["parent/132",[65,4.379]],["name/133",[7,51.255]],["parent/133",[65,4.379]],["name/134",[79,51.255]],["parent/134",[]],["name/135",[1,44.998]],["parent/135",[79,4.77]],["name/136",[11,50.421]],["parent/136",[79,4.77]],["name/137",[2,48.937]],["parent/137",[79,4.77]],["name/138",[6,49.652]],["parent/138",[79,4.77]],["name/139",[5,53.166]],["parent/139",[79,4.77]],["name/140",[7,51.255]],["parent/140",[79,4.77]],["name/141",[80,66.516]],["parent/141",[79,4.77]],["name/142",[81,66.516]],["parent/142",[79,4.77]],["name/143",[82,71.624]],["parent/143",[79,4.77]],["name/144",[83,66.516]],["parent/144",[79,4.77]],["name/145",[84,56.961]],["parent/145",[]],["name/146",[1,44.998]],["parent/146",[84,5.301]],["name/147",[2,48.937]],["parent/147",[84,5.301]],["name/148",[6,49.652]],["parent/148",[84,5.301]],["name/149",[7,51.255]],["parent/149",[84,5.301]],["name/150",[11,50.421]],["parent/150",[84,5.301]],["name/151",[85,51.255]],["parent/151",[]],["name/152",[1,44.998]],["parent/152",[85,4.77]],["name/153",[2,48.937]],["parent/153",[85,4.77]],["name/154",[6,49.652]],["parent/154",[85,4.77]],["name/155",[5,53.166]],["parent/155",[85,4.77]],["name/156",[7,51.255]],["parent/156",[85,4.77]],["name/157",[81,66.516]],["parent/157",[85,4.77]],["name/158",[83,66.516]],["parent/158",[85,4.77]],["name/159",[14,60.638]],["parent/159",[85,4.77]],["name/160",[11,50.421]],["parent/160",[85,4.77]],["name/161",[80,66.516]],["parent/161",[85,4.77]],["name/162",[86,58.631]],["parent/162",[]],["name/163",[1,44.998]],["parent/163",[86,5.457]],["name/164",[87,71.624]],["parent/164",[86,5.457]],["name/165",[14,60.638]],["parent/165",[86,5.457]],["name/166",[22,66.516]],["parent/166",[86,5.457]],["name/167",[88,50.421]],["parent/167",[]],["name/168",[1,44.998]],["parent/168",[88,4.692]],["name/169",[89,47.057]],["parent/169",[88,4.692]],["name/170",[90,60.638]],["parent/170",[88,4.692]],["name/171",[91,71.624]],["parent/171",[88,4.692]],["name/172",[92,71.624]],["parent/172",[88,4.692]],["name/173",[93,71.624]],["parent/173",[88,4.692]],["name/174",[94,71.624]],["parent/174",[88,4.692]],["name/175",[95,71.624]],["parent/175",[88,4.692]],["name/176",[96,55.53]],["parent/176",[88,4.692]],["name/177",[97,71.624]],["parent/177",[88,4.692]],["name/178",[98,71.624]],["parent/178",[88,4.692]],["name/179",[99,46.501]],["parent/179",[]],["name/180",[1,44.998]],["parent/180",[99,4.328]],["name/181",[4,66.516]],["parent/181",[99,4.328]],["name/182",[0,49.652]],["parent/182",[99,4.328]],["name/183",[2,48.937]],["parent/183",[99,4.328]],["name/184",[6,49.652]],["parent/184",[99,4.328]],["name/185",[5,53.166]],["parent/185",[99,4.328]],["name/186",[7,51.255]],["parent/186",[99,4.328]],["name/187",[11,50.421]],["parent/187",[99,4.328]],["name/188",[100,71.624]],["parent/188",[99,4.328]],["name/189",[101,71.624]],["parent/189",[99,4.328]],["name/190",[48,66.516]],["parent/190",[99,4.328]],["name/191",[50,66.516]],["parent/191",[99,4.328]],["name/192",[51,66.516]],["parent/192",[99,4.328]],["name/193",[102,71.624]],["parent/193",[99,4.328]],["name/194",[103,55.53]],["parent/194",[]],["name/195",[104,32.982]],["parent/195",[103,5.168]],["name/196",[105,42.18]],["parent/196",[103,5.168]],["name/197",[106,56.961]],["parent/197",[103,5.168]],["name/198",[107,42.537]],["parent/198",[103,5.168]],["name/199",[108,34.988]],["parent/199",[103,5.168]],["name/200",[109,31.921]],["parent/200",[103,5.168]],["name/201",[110,47.645]],["parent/201",[]],["name/202",[104,32.982]],["parent/202",[110,4.434]],["name/203",[107,42.537]],["parent/203",[110,4.434]],["name/204",[105,42.18]],["parent/204",[110,4.434]],["name/205",[106,56.961]],["parent/205",[110,4.434]],["name/206",[111,66.516]],["parent/206",[110,4.434]],["name/207",[112,52.165]],["parent/207",[110,4.434]],["name/208",[113,66.516]],["parent/208",[110,4.434]],["name/209",[114,26.298]],["parent/209",[110,4.434]],["name/210",[115,63.151]],["parent/210",[116,4.621]],["name/211",[117,66.516]],["parent/211",[116,4.621]],["name/212",[118,66.516]],["parent/212",[116,4.621]],["name/213",[119,66.516]],["parent/213",[116,4.621]],["name/214",[120,66.516]],["parent/214",[116,4.621]],["name/215",[121,66.516]],["parent/215",[116,4.621]],["name/216",[122,71.624]],["parent/216",[110,4.434]],["name/217",[114,26.298]],["parent/217",[110,4.434]],["name/218",[61,50.421]],["parent/218",[116,4.621]],["name/219",[114,26.298]],["parent/219",[116,4.621]],["name/220",[123,71.624]],["parent/220",[124,4.492]],["name/221",[125,71.624]],["parent/221",[124,4.492]],["name/222",[126,71.624]],["parent/222",[124,4.492]],["name/223",[127,71.624]],["parent/223",[124,4.492]],["name/224",[128,71.624]],["parent/224",[124,4.492]],["name/225",[129,71.624]],["parent/225",[124,4.492]],["name/226",[130,51.255]],["parent/226",[124,4.492]],["name/227",[114,26.298]],["parent/227",[124,4.492]],["name/228",[131,66.516]],["parent/228",[132,5.643]],["name/229",[133,71.624]],["parent/229",[132,5.643]],["name/230",[134,48.937]],["parent/230",[124,4.492]],["name/231",[114,26.298]],["parent/231",[124,4.492]],["name/232",[135,63.151]],["parent/232",[132,5.643]],["name/233",[136,71.624]],["parent/233",[132,5.643]],["name/234",[47,53.166]],["parent/234",[116,4.621]],["name/235",[114,26.298]],["parent/235",[116,4.621]],["name/236",[137,60.638]],["parent/236",[124,4.492]],["name/237",[138,71.624]],["parent/237",[124,4.492]],["name/238",[139,71.624]],["parent/238",[124,4.492]],["name/239",[140,71.624]],["parent/239",[124,4.492]],["name/240",[141,71.624]],["parent/240",[124,4.492]],["name/241",[134,48.937]],["parent/241",[110,4.434]],["name/242",[114,26.298]],["parent/242",[110,4.434]],["name/243",[142,44.998]],["parent/243",[116,4.621]],["name/244",[143,71.624]],["parent/244",[116,4.621]],["name/245",[3,48.937]],["parent/245",[116,4.621]],["name/246",[108,34.988]],["parent/246",[110,4.434]],["name/247",[144,44.109]],["parent/247",[110,4.434]],["name/248",[109,31.921]],["parent/248",[110,4.434]],["name/249",[145,71.624]],["parent/249",[]],["name/250",[146,52.165]],["parent/250",[]],["name/251",[104,32.982]],["parent/251",[146,4.855]],["name/252",[107,42.537]],["parent/252",[146,4.855]],["name/253",[105,42.18]],["parent/253",[146,4.855]],["name/254",[106,56.961]],["parent/254",[146,4.855]],["name/255",[108,34.988]],["parent/255",[146,4.855]],["name/256",[112,52.165]],["parent/256",[146,4.855]],["name/257",[113,66.516]],["parent/257",[146,4.855]],["name/258",[114,26.298]],["parent/258",[146,4.855]],["name/259",[115,63.151]],["parent/259",[147,5.301]],["name/260",[117,66.516]],["parent/260",[147,5.301]],["name/261",[118,66.516]],["parent/261",[147,5.301]],["name/262",[119,66.516]],["parent/262",[147,5.301]],["name/263",[120,66.516]],["parent/263",[147,5.301]],["name/264",[121,66.516]],["parent/264",[147,5.301]],["name/265",[111,66.516]],["parent/265",[146,4.855]],["name/266",[148,54.278]],["parent/266",[]],["name/267",[149,45.974]],["parent/267",[148,5.051]],["name/268",[150,47.645]],["parent/268",[148,5.051]],["name/269",[106,56.961]],["parent/269",[148,5.051]],["name/270",[115,63.151]],["parent/270",[148,5.051]],["name/271",[105,42.18]],["parent/271",[148,5.051]],["name/272",[151,40.866]],["parent/272",[148,5.051]],["name/273",[152,66.516]],["parent/273",[148,5.051]],["name/274",[153,56.961]],["parent/274",[]],["name/275",[109,31.921]],["parent/275",[153,5.301]],["name/276",[154,39.706]],["parent/276",[153,5.301]],["name/277",[155,40.563]],["parent/277",[153,5.301]],["name/278",[25,50.421]],["parent/278",[153,5.301]],["name/279",[156,63.151]],["parent/279",[153,5.301]],["name/280",[157,55.53]],["parent/280",[]],["name/281",[149,45.974]],["parent/281",[157,5.168]],["name/282",[151,40.866]],["parent/282",[157,5.168]],["name/283",[152,66.516]],["parent/283",[157,5.168]],["name/284",[158,71.624]],["parent/284",[157,5.168]],["name/285",[159,56.961]],["parent/285",[157,5.168]],["name/286",[160,56.961]],["parent/286",[157,5.168]],["name/287",[161,58.631]],["parent/287",[]],["name/288",[109,31.921]],["parent/288",[161,5.457]],["name/289",[154,39.706]],["parent/289",[161,5.457]],["name/290",[155,40.563]],["parent/290",[161,5.457]],["name/291",[162,45.974]],["parent/291",[161,5.457]],["name/292",[163,71.624]],["parent/292",[]],["name/293",[164,71.624]],["parent/293",[]],["name/294",[165,71.624]],["parent/294",[]],["name/295",[166,71.624]],["parent/295",[]],["name/296",[167,71.624]],["parent/296",[]],["name/297",[168,71.624]],["parent/297",[]],["name/298",[169,71.624]],["parent/298",[]],["name/299",[170,71.624]],["parent/299",[]],["name/300",[171,71.624]],["parent/300",[]],["name/301",[172,71.624]],["parent/301",[]],["name/302",[173,71.624]],["parent/302",[]],["name/303",[174,66.516]],["parent/303",[]],["name/304",[175,43.692]],["parent/304",[174,6.19]],["name/305",[176,54.278]],["parent/305",[]],["name/306",[175,43.692]],["parent/306",[176,5.051]],["name/307",[154,39.706]],["parent/307",[176,5.051]],["name/308",[0,49.652]],["parent/308",[176,5.051]],["name/309",[177,41.835]],["parent/309",[176,5.051]],["name/310",[109,31.921]],["parent/310",[176,5.051]],["name/311",[178,63.151]],["parent/311",[176,5.051]],["name/312",[114,26.298]],["parent/312",[176,5.051]],["name/313",[177,41.835]],["parent/313",[179,6.19]],["name/314",[104,32.982]],["parent/314",[179,6.19]],["name/315",[180,71.624]],["parent/315",[]],["name/316",[181,71.624]],["parent/316",[]],["name/317",[182,71.624]],["parent/317",[]],["name/318",[183,48.937]],["parent/318",[]],["name/319",[89,47.057]],["parent/319",[183,4.554]],["name/320",[184,45.974]],["parent/320",[183,4.554]],["name/321",[175,43.692]],["parent/321",[183,4.554]],["name/322",[185,52.165]],["parent/322",[183,4.554]],["name/323",[186,71.624]],["parent/323",[183,4.554]],["name/324",[187,41.501]],["parent/324",[183,4.554]],["name/325",[188,51.255]],["parent/325",[183,4.554]],["name/326",[114,26.298]],["parent/326",[183,4.554]],["name/327",[104,32.982]],["parent/327",[189,6.666]],["name/328",[108,34.988]],["parent/328",[183,4.554]],["name/329",[190,71.624]],["parent/329",[183,4.554]],["name/330",[191,71.624]],["parent/330",[183,4.554]],["name/331",[192,71.624]],["parent/331",[183,4.554]],["name/332",[193,71.624]],["parent/332",[183,4.554]],["name/333",[194,71.624]],["parent/333",[]],["name/334",[195,71.624]],["parent/334",[]],["name/335",[196,58.631]],["parent/335",[]],["name/336",[109,31.921]],["parent/336",[196,5.457]],["name/337",[154,39.706]],["parent/337",[196,5.457]],["name/338",[155,40.563]],["parent/338",[196,5.457]],["name/339",[99,46.501]],["parent/339",[196,5.457]],["name/340",[197,48.937]],["parent/340",[]],["name/341",[89,47.057]],["parent/341",[197,4.554]],["name/342",[198,56.961]],["parent/342",[197,4.554]],["name/343",[199,53.166]],["parent/343",[197,4.554]],["name/344",[200,60.638]],["parent/344",[197,4.554]],["name/345",[151,40.866]],["parent/345",[197,4.554]],["name/346",[114,26.298]],["parent/346",[197,4.554]],["name/347",[175,43.692]],["parent/347",[201,5.051]],["name/348",[202,56.961]],["parent/348",[201,5.051]],["name/349",[203,63.151]],["parent/349",[201,5.051]],["name/350",[137,60.638]],["parent/350",[201,5.051]],["name/351",[185,52.165]],["parent/351",[201,5.051]],["name/352",[184,45.974]],["parent/352",[197,4.554]],["name/353",[160,56.961]],["parent/353",[197,4.554]],["name/354",[134,48.937]],["parent/354",[197,4.554]],["name/355",[114,26.298]],["parent/355",[197,4.554]],["name/356",[204,66.516]],["parent/356",[201,5.051]],["name/357",[130,51.255]],["parent/357",[197,4.554]],["name/358",[114,26.298]],["parent/358",[197,4.554]],["name/359",[175,43.692]],["parent/359",[201,5.051]],["name/360",[0,49.652]],["parent/360",[201,5.051]],["name/361",[57,55.53]],["parent/361",[197,4.554]],["name/362",[205,54.278]],["parent/362",[]],["name/363",[184,45.974]],["parent/363",[205,5.051]],["name/364",[187,41.501]],["parent/364",[205,5.051]],["name/365",[151,40.866]],["parent/365",[205,5.051]],["name/366",[108,34.988]],["parent/366",[205,5.051]],["name/367",[188,51.255]],["parent/367",[205,5.051]],["name/368",[114,26.298]],["parent/368",[205,5.051]],["name/369",[104,32.982]],["parent/369",[206,6.666]],["name/370",[207,54.278]],["parent/370",[205,5.051]],["name/371",[208,52.165]],["parent/371",[]],["name/372",[104,32.982]],["parent/372",[208,4.855]],["name/373",[109,31.921]],["parent/373",[208,4.855]],["name/374",[209,54.278]],["parent/374",[208,4.855]],["name/375",[210,53.166]],["parent/375",[208,4.855]],["name/376",[184,45.974]],["parent/376",[208,4.855]],["name/377",[151,40.866]],["parent/377",[208,4.855]],["name/378",[108,34.988]],["parent/378",[208,4.855]],["name/379",[211,49.652]],["parent/379",[208,4.855]],["name/380",[212,48.937]],["parent/380",[208,4.855]],["name/381",[213,56.961]],["parent/381",[]],["name/382",[107,42.537]],["parent/382",[213,5.301]],["name/383",[214,56.961]],["parent/383",[213,5.301]],["name/384",[187,41.501]],["parent/384",[213,5.301]],["name/385",[212,48.937]],["parent/385",[213,5.301]],["name/386",[108,34.988]],["parent/386",[213,5.301]],["name/387",[215,71.624]],["parent/387",[]],["name/388",[216,63.151]],["parent/388",[]],["name/389",[217,58.631]],["parent/389",[216,5.877]],["name/390",[218,48.937]],["parent/390",[216,5.877]],["name/391",[219,63.151]],["parent/391",[]],["name/392",[105,42.18]],["parent/392",[219,5.877]],["name/393",[220,58.631]],["parent/393",[219,5.877]],["name/394",[221,71.624]],["parent/394",[]],["name/395",[222,66.516]],["parent/395",[]],["name/396",[89,47.057]],["parent/396",[222,6.19]],["name/397",[223,66.516]],["parent/397",[]],["name/398",[89,47.057]],["parent/398",[223,6.19]],["name/399",[224,56.961]],["parent/399",[]],["name/400",[225,60.638]],["parent/400",[224,5.301]],["name/401",[108,34.988]],["parent/401",[224,5.301]],["name/402",[187,41.501]],["parent/402",[224,5.301]],["name/403",[134,48.937]],["parent/403",[224,5.301]],["name/404",[226,66.516]],["parent/404",[224,5.301]],["name/405",[227,63.151]],["parent/405",[]],["name/406",[109,31.921]],["parent/406",[227,5.877]],["name/407",[177,41.835]],["parent/407",[227,5.877]],["name/408",[228,71.624]],["parent/408",[]],["name/409",[229,63.151]],["parent/409",[]],["name/410",[151,40.866]],["parent/410",[229,5.877]],["name/411",[114,26.298]],["parent/411",[229,5.877]],["name/412",[175,43.692]],["parent/412",[230,6.666]],["name/413",[231,71.624]],["parent/413",[]],["name/414",[232,71.624]],["parent/414",[]],["name/415",[233,71.624]],["parent/415",[]],["name/416",[234,71.624]],["parent/416",[]],["name/417",[235,71.624]],["parent/417",[]],["name/418",[236,71.624]],["parent/418",[]],["name/419",[237,54.278]],["parent/419",[]],["name/420",[184,45.974]],["parent/420",[237,5.051]],["name/421",[187,41.501]],["parent/421",[237,5.051]],["name/422",[151,40.866]],["parent/422",[237,5.051]],["name/423",[108,34.988]],["parent/423",[237,5.051]],["name/424",[188,51.255]],["parent/424",[237,5.051]],["name/425",[130,51.255]],["parent/425",[237,5.051]],["name/426",[207,54.278]],["parent/426",[237,5.051]],["name/427",[238,45.474]],["parent/427",[]],["name/428",[104,32.982]],["parent/428",[238,4.232]],["name/429",[109,31.921]],["parent/429",[238,4.232]],["name/430",[209,54.278]],["parent/430",[238,4.232]],["name/431",[210,53.166]],["parent/431",[238,4.232]],["name/432",[184,45.974]],["parent/432",[238,4.232]],["name/433",[151,40.866]],["parent/433",[238,4.232]],["name/434",[108,34.988]],["parent/434",[238,4.232]],["name/435",[211,49.652]],["parent/435",[238,4.232]],["name/436",[212,48.937]],["parent/436",[238,4.232]],["name/437",[187,41.501]],["parent/437",[238,4.232]],["name/438",[188,51.255]],["parent/438",[238,4.232]],["name/439",[96,55.53]],["parent/439",[238,4.232]],["name/440",[130,51.255]],["parent/440",[238,4.232]],["name/441",[114,26.298]],["parent/441",[238,4.232]],["name/442",[175,43.692]],["parent/442",[239,6.19]],["name/443",[240,54.278]],["parent/443",[238,4.232]],["name/444",[114,26.298]],["parent/444",[238,4.232]],["name/445",[142,44.998]],["parent/445",[239,6.19]],["name/446",[241,63.151]],["parent/446",[238,4.232]],["name/447",[242,66.516]],["parent/447",[238,4.232]],["name/448",[243,66.516]],["parent/448",[238,4.232]],["name/449",[244,54.278]],["parent/449",[]],["name/450",[149,45.974]],["parent/450",[244,5.051]],["name/451",[150,47.645]],["parent/451",[244,5.051]],["name/452",[211,49.652]],["parent/452",[244,5.051]],["name/453",[218,48.937]],["parent/453",[244,5.051]],["name/454",[187,41.501]],["parent/454",[244,5.051]],["name/455",[144,44.109]],["parent/455",[244,5.051]],["name/456",[114,26.298]],["parent/456",[244,5.051]],["name/457",[245,58.631]],["parent/457",[246,6.19]],["name/458",[247,58.631]],["parent/458",[246,6.19]],["name/459",[248,42.18]],["parent/459",[]],["name/460",[104,32.982]],["parent/460",[248,3.925]],["name/461",[109,31.921]],["parent/461",[248,3.925]],["name/462",[209,54.278]],["parent/462",[248,3.925]],["name/463",[210,53.166]],["parent/463",[248,3.925]],["name/464",[184,45.974]],["parent/464",[248,3.925]],["name/465",[151,40.866]],["parent/465",[248,3.925]],["name/466",[108,34.988]],["parent/466",[248,3.925]],["name/467",[211,49.652]],["parent/467",[248,3.925]],["name/468",[242,66.516]],["parent/468",[248,3.925]],["name/469",[243,66.516]],["parent/469",[248,3.925]],["name/470",[187,41.501]],["parent/470",[248,3.925]],["name/471",[96,55.53]],["parent/471",[248,3.925]],["name/472",[212,48.937]],["parent/472",[248,3.925]],["name/473",[114,26.298]],["parent/473",[248,3.925]],["name/474",[89,47.057]],["parent/474",[249,5.168]],["name/475",[218,48.937]],["parent/475",[249,5.168]],["name/476",[104,32.982]],["parent/476",[249,5.168]],["name/477",[109,31.921]],["parent/477",[249,5.168]],["name/478",[160,56.961]],["parent/478",[249,5.168]],["name/479",[130,51.255]],["parent/479",[248,3.925]],["name/480",[114,26.298]],["parent/480",[248,3.925]],["name/481",[175,43.692]],["parent/481",[249,5.168]],["name/482",[240,54.278]],["parent/482",[248,3.925]],["name/483",[114,26.298]],["parent/483",[248,3.925]],["name/484",[142,44.998]],["parent/484",[249,5.168]],["name/485",[250,58.631]],["parent/485",[]],["name/486",[109,31.921]],["parent/486",[250,5.457]],["name/487",[154,39.706]],["parent/487",[250,5.457]],["name/488",[155,40.563]],["parent/488",[250,5.457]],["name/489",[61,50.421]],["parent/489",[250,5.457]],["name/490",[251,54.278]],["parent/490",[]],["name/491",[109,31.921]],["parent/491",[251,5.051]],["name/492",[154,39.706]],["parent/492",[251,5.051]],["name/493",[155,40.563]],["parent/493",[251,5.051]],["name/494",[252,53.166]],["parent/494",[251,5.051]],["name/495",[253,60.638]],["parent/495",[251,5.051]],["name/496",[131,66.516]],["parent/496",[251,5.051]],["name/497",[254,63.151]],["parent/497",[251,5.051]],["name/498",[255,60.638]],["parent/498",[]],["name/499",[256,63.151]],["parent/499",[255,5.643]],["name/500",[184,45.974]],["parent/500",[255,5.643]],["name/501",[187,41.501]],["parent/501",[255,5.643]],["name/502",[257,63.151]],["parent/502",[]],["name/503",[256,63.151]],["parent/503",[257,5.877]],["name/504",[184,45.974]],["parent/504",[257,5.877]],["name/505",[258,66.516]],["parent/505",[]],["name/506",[187,41.501]],["parent/506",[258,6.19]],["name/507",[259,48.937]],["parent/507",[]],["name/508",[104,32.982]],["parent/508",[259,4.554]],["name/509",[109,31.921]],["parent/509",[259,4.554]],["name/510",[209,54.278]],["parent/510",[259,4.554]],["name/511",[210,53.166]],["parent/511",[259,4.554]],["name/512",[184,45.974]],["parent/512",[259,4.554]],["name/513",[248,42.18]],["parent/513",[259,4.554]],["name/514",[175,43.692]],["parent/514",[259,4.554]],["name/515",[256,63.151]],["parent/515",[259,4.554]],["name/516",[211,49.652]],["parent/516",[259,4.554]],["name/517",[212,48.937]],["parent/517",[259,4.554]],["name/518",[187,41.501]],["parent/518",[259,4.554]],["name/519",[188,51.255]],["parent/519",[259,4.554]],["name/520",[114,26.298]],["parent/520",[259,4.554]],["name/521",[260,63.151]],["parent/521",[261,6.19]],["name/522",[109,31.921]],["parent/522",[261,6.19]],["name/523",[262,71.624]],["parent/523",[]],["name/524",[263,55.53]],["parent/524",[]],["name/525",[264,66.516]],["parent/525",[263,5.168]],["name/526",[265,63.151]],["parent/526",[263,5.168]],["name/527",[207,54.278]],["parent/527",[263,5.168]],["name/528",[151,40.866]],["parent/528",[263,5.168]],["name/529",[187,41.501]],["parent/529",[263,5.168]],["name/530",[108,34.988]],["parent/530",[263,5.168]],["name/531",[266,71.624]],["parent/531",[]],["name/532",[267,71.624]],["parent/532",[]],["name/533",[268,58.631]],["parent/533",[]],["name/534",[61,50.421]],["parent/534",[268,5.457]],["name/535",[269,71.624]],["parent/535",[268,5.457]],["name/536",[114,26.298]],["parent/536",[268,5.457]],["name/537",[104,32.982]],["parent/537",[270,4.77]],["name/538",[109,31.921]],["parent/538",[270,4.77]],["name/539",[209,54.278]],["parent/539",[270,4.77]],["name/540",[210,53.166]],["parent/540",[270,4.77]],["name/541",[184,45.974]],["parent/541",[270,4.77]],["name/542",[108,34.988]],["parent/542",[270,4.77]],["name/543",[211,49.652]],["parent/543",[270,4.77]],["name/544",[151,40.866]],["parent/544",[270,4.77]],["name/545",[187,41.501]],["parent/545",[270,4.77]],["name/546",[96,55.53]],["parent/546",[270,4.77]],["name/547",[271,60.638]],["parent/547",[270,4.77]],["name/548",[151,40.866]],["parent/548",[268,5.457]],["name/549",[272,58.631]],["parent/549",[]],["name/550",[273,71.624]],["parent/550",[272,5.457]],["name/551",[274,71.624]],["parent/551",[272,5.457]],["name/552",[114,26.298]],["parent/552",[272,5.457]],["name/553",[104,32.982]],["parent/553",[275,4.948]],["name/554",[209,54.278]],["parent/554",[275,4.948]],["name/555",[210,53.166]],["parent/555",[275,4.948]],["name/556",[184,45.974]],["parent/556",[275,4.948]],["name/557",[108,34.988]],["parent/557",[275,4.948]],["name/558",[211,49.652]],["parent/558",[275,4.948]],["name/559",[151,40.866]],["parent/559",[275,4.948]],["name/560",[187,41.501]],["parent/560",[275,4.948]],["name/561",[248,42.18]],["parent/561",[275,4.948]],["name/562",[151,40.866]],["parent/562",[272,5.457]],["name/563",[276,52.165]],["parent/563",[]],["name/564",[187,41.501]],["parent/564",[276,4.855]],["name/565",[114,26.298]],["parent/565",[276,4.855]],["name/566",[104,32.982]],["parent/566",[277,4.621]],["name/567",[107,42.537]],["parent/567",[277,4.621]],["name/568",[105,42.18]],["parent/568",[277,4.621]],["name/569",[106,56.961]],["parent/569",[277,4.621]],["name/570",[112,52.165]],["parent/570",[277,4.621]],["name/571",[108,34.988]],["parent/571",[277,4.621]],["name/572",[151,40.866]],["parent/572",[276,4.855]],["name/573",[114,26.298]],["parent/573",[276,4.855]],["name/574",[104,32.982]],["parent/574",[277,4.621]],["name/575",[107,42.537]],["parent/575",[277,4.621]],["name/576",[175,43.692]],["parent/576",[277,4.621]],["name/577",[185,52.165]],["parent/577",[277,4.621]],["name/578",[108,34.988]],["parent/578",[277,4.621]],["name/579",[130,51.255]],["parent/579",[276,4.855]],["name/580",[114,26.298]],["parent/580",[276,4.855]],["name/581",[278,63.151]],["parent/581",[277,4.621]],["name/582",[188,51.255]],["parent/582",[276,4.855]],["name/583",[114,26.298]],["parent/583",[276,4.855]],["name/584",[104,32.982]],["parent/584",[277,4.621]],["name/585",[207,54.278]],["parent/585",[276,4.855]],["name/586",[279,45.474]],["parent/586",[]],["name/587",[200,60.638]],["parent/587",[279,4.232]],["name/588",[280,66.516]],["parent/588",[279,4.232]],["name/589",[218,48.937]],["parent/589",[279,4.232]],["name/590",[160,56.961]],["parent/590",[279,4.232]],["name/591",[108,34.988]],["parent/591",[279,4.232]],["name/592",[89,47.057]],["parent/592",[279,4.232]],["name/593",[198,56.961]],["parent/593",[279,4.232]],["name/594",[199,53.166]],["parent/594",[279,4.232]],["name/595",[130,51.255]],["parent/595",[279,4.232]],["name/596",[114,26.298]],["parent/596",[279,4.232]],["name/597",[175,43.692]],["parent/597",[281,4.554]],["name/598",[0,49.652]],["parent/598",[281,4.554]],["name/599",[134,48.937]],["parent/599",[279,4.232]],["name/600",[114,26.298]],["parent/600",[279,4.232]],["name/601",[204,66.516]],["parent/601",[281,4.554]],["name/602",[151,40.866]],["parent/602",[279,4.232]],["name/603",[114,26.298]],["parent/603",[279,4.232]],["name/604",[175,43.692]],["parent/604",[281,4.554]],["name/605",[202,56.961]],["parent/605",[281,4.554]],["name/606",[203,63.151]],["parent/606",[281,4.554]],["name/607",[137,60.638]],["parent/607",[281,4.554]],["name/608",[282,63.151]],["parent/608",[281,4.554]],["name/609",[283,66.516]],["parent/609",[281,4.554]],["name/610",[185,52.165]],["parent/610",[281,4.554]],["name/611",[284,63.151]],["parent/611",[281,4.554]],["name/612",[285,66.516]],["parent/612",[281,4.554]],["name/613",[286,66.516]],["parent/613",[281,4.554]],["name/614",[108,34.988]],["parent/614",[281,4.554]],["name/615",[207,54.278]],["parent/615",[279,4.232]],["name/616",[287,49.652]],["parent/616",[279,4.232]],["name/617",[288,49.652]],["parent/617",[279,4.232]],["name/618",[184,45.974]],["parent/618",[279,4.232]],["name/619",[289,60.638]],["parent/619",[279,4.232]],["name/620",[290,55.53]],["parent/620",[]],["name/621",[264,66.516]],["parent/621",[290,5.168]],["name/622",[265,63.151]],["parent/622",[290,5.168]],["name/623",[207,54.278]],["parent/623",[290,5.168]],["name/624",[151,40.866]],["parent/624",[290,5.168]],["name/625",[187,41.501]],["parent/625",[290,5.168]],["name/626",[108,34.988]],["parent/626",[290,5.168]],["name/627",[291,56.961]],["parent/627",[]],["name/628",[198,56.961]],["parent/628",[291,5.301]],["name/629",[184,45.974]],["parent/629",[291,5.301]],["name/630",[207,54.278]],["parent/630",[291,5.301]],["name/631",[151,40.866]],["parent/631",[291,5.301]],["name/632",[265,63.151]],["parent/632",[291,5.301]],["name/633",[292,71.624]],["parent/633",[]],["name/634",[293,71.624]],["parent/634",[]],["name/635",[294,42.537]],["parent/635",[]],["name/636",[104,32.982]],["parent/636",[294,3.959]],["name/637",[105,42.18]],["parent/637",[294,3.959]],["name/638",[159,56.961]],["parent/638",[294,3.959]],["name/639",[177,41.835]],["parent/639",[294,3.959]],["name/640",[295,52.165]],["parent/640",[294,3.959]],["name/641",[296,63.151]],["parent/641",[294,3.959]],["name/642",[217,58.631]],["parent/642",[294,3.959]],["name/643",[112,52.165]],["parent/643",[294,3.959]],["name/644",[287,49.652]],["parent/644",[294,3.959]],["name/645",[297,58.631]],["parent/645",[294,3.959]],["name/646",[114,26.298]],["parent/646",[294,3.959]],["name/647",[162,45.974]],["parent/647",[298,5.301]],["name/648",[109,31.921]],["parent/648",[298,5.301]],["name/649",[154,39.706]],["parent/649",[298,5.301]],["name/650",[155,40.563]],["parent/650",[298,5.301]],["name/651",[288,49.652]],["parent/651",[294,3.959]],["name/652",[299,63.151]],["parent/652",[294,3.959]],["name/653",[300,56.961]],["parent/653",[294,3.959]],["name/654",[114,26.298]],["parent/654",[294,3.959]],["name/655",[301,56.961]],["parent/655",[298,5.301]],["name/656",[302,56.961]],["parent/656",[298,5.301]],["name/657",[303,56.961]],["parent/657",[294,3.959]],["name/658",[108,34.988]],["parent/658",[294,3.959]],["name/659",[144,44.109]],["parent/659",[294,3.959]],["name/660",[304,63.151]],["parent/660",[294,3.959]],["name/661",[305,51.255]],["parent/661",[294,3.959]],["name/662",[212,48.937]],["parent/662",[294,3.959]],["name/663",[306,66.516]],["parent/663",[294,3.959]],["name/664",[307,63.151]],["parent/664",[294,3.959]],["name/665",[308,63.151]],["parent/665",[294,3.959]],["name/666",[309,60.638]],["parent/666",[294,3.959]],["name/667",[109,31.921]],["parent/667",[294,3.959]],["name/668",[310,63.151]],["parent/668",[]],["name/669",[187,41.501]],["parent/669",[310,5.877]],["name/670",[151,40.866]],["parent/670",[310,5.877]],["name/671",[311,60.638]],["parent/671",[]],["name/672",[312,63.151]],["parent/672",[311,5.643]],["name/673",[151,40.866]],["parent/673",[311,5.643]],["name/674",[149,45.974]],["parent/674",[311,5.643]],["name/675",[313,55.53]],["parent/675",[]],["name/676",[109,31.921]],["parent/676",[313,5.168]],["name/677",[154,39.706]],["parent/677",[313,5.168]],["name/678",[155,40.563]],["parent/678",[313,5.168]],["name/679",[162,45.974]],["parent/679",[313,5.168]],["name/680",[104,32.982]],["parent/680",[313,5.168]],["name/681",[144,44.109]],["parent/681",[313,5.168]],["name/682",[314,71.624]],["parent/682",[]],["name/683",[315,71.624]],["parent/683",[]],["name/684",[316,66.516]],["parent/684",[]],["name/685",[317,58.631]],["parent/685",[316,6.19]],["name/686",[318,71.624]],["parent/686",[]],["name/687",[319,66.516]],["parent/687",[]],["name/688",[309,60.638]],["parent/688",[319,6.19]],["name/689",[320,71.624]],["parent/689",[]],["name/690",[321,71.624]],["parent/690",[]],["name/691",[322,71.624]],["parent/691",[]],["name/692",[323,71.624]],["parent/692",[]],["name/693",[324,56.961]],["parent/693",[]],["name/694",[149,45.974]],["parent/694",[324,5.301]],["name/695",[150,47.645]],["parent/695",[324,5.301]],["name/696",[159,56.961]],["parent/696",[324,5.301]],["name/697",[325,56.961]],["parent/697",[324,5.301]],["name/698",[114,26.298]],["parent/698",[324,5.301]],["name/699",[326,55.53]],["parent/699",[327,6.666]],["name/700",[328,58.631]],["parent/700",[]],["name/701",[109,31.921]],["parent/701",[328,5.457]],["name/702",[154,39.706]],["parent/702",[328,5.457]],["name/703",[155,40.563]],["parent/703",[328,5.457]],["name/704",[3,48.937]],["parent/704",[328,5.457]],["name/705",[329,66.516]],["parent/705",[]],["name/706",[114,26.298]],["parent/706",[329,6.19]],["name/707",[330,56.961]],["parent/707",[331,6.666]],["name/708",[332,71.624]],["parent/708",[]],["name/709",[333,71.624]],["parent/709",[]],["name/710",[334,71.624]],["parent/710",[]],["name/711",[335,52.165]],["parent/711",[]],["name/712",[184,45.974]],["parent/712",[335,4.855]],["name/713",[108,34.988]],["parent/713",[335,4.855]],["name/714",[198,56.961]],["parent/714",[335,4.855]],["name/715",[104,32.982]],["parent/715",[335,4.855]],["name/716",[105,42.18]],["parent/716",[335,4.855]],["name/717",[336,55.53]],["parent/717",[335,4.855]],["name/718",[199,53.166]],["parent/718",[335,4.855]],["name/719",[337,66.516]],["parent/719",[335,4.855]],["name/720",[109,31.921]],["parent/720",[335,4.855]],["name/721",[338,49.652]],["parent/721",[]],["name/722",[104,32.982]],["parent/722",[338,4.621]],["name/723",[109,31.921]],["parent/723",[338,4.621]],["name/724",[105,42.18]],["parent/724",[338,4.621]],["name/725",[336,55.53]],["parent/725",[338,4.621]],["name/726",[218,48.937]],["parent/726",[338,4.621]],["name/727",[114,26.298]],["parent/727",[338,4.621]],["name/728",[104,32.982]],["parent/728",[339,5.301]],["name/729",[109,31.921]],["parent/729",[339,5.301]],["name/730",[287,49.652]],["parent/730",[339,5.301]],["name/731",[288,49.652]],["parent/731",[339,5.301]],["name/732",[305,51.255]],["parent/732",[339,5.301]],["name/733",[340,71.624]],["parent/733",[338,4.621]],["name/734",[341,66.516]],["parent/734",[338,4.621]],["name/735",[114,26.298]],["parent/735",[338,4.621]],["name/736",[199,53.166]],["parent/736",[339,5.301]],["name/737",[337,66.516]],["parent/737",[338,4.621]],["name/738",[108,34.988]],["parent/738",[338,4.621]],["name/739",[305,51.255]],["parent/739",[338,4.621]],["name/740",[342,60.638]],["parent/740",[]],["name/741",[343,71.624]],["parent/741",[342,5.643]],["name/742",[149,45.974]],["parent/742",[342,5.643]],["name/743",[150,47.645]],["parent/743",[342,5.643]],["name/744",[344,58.631]],["parent/744",[]],["name/745",[109,31.921]],["parent/745",[344,5.457]],["name/746",[155,40.563]],["parent/746",[344,5.457]],["name/747",[58,60.638]],["parent/747",[344,5.457]],["name/748",[156,63.151]],["parent/748",[344,5.457]],["name/749",[345,71.624]],["parent/749",[]],["name/750",[346,71.624]],["parent/750",[]],["name/751",[347,56.961]],["parent/751",[]],["name/752",[105,42.18]],["parent/752",[347,5.301]],["name/753",[336,55.53]],["parent/753",[347,5.301]],["name/754",[341,66.516]],["parent/754",[347,5.301]],["name/755",[114,26.298]],["parent/755",[347,5.301]],["name/756",[199,53.166]],["parent/756",[348,6.666]],["name/757",[108,34.988]],["parent/757",[347,5.301]],["name/758",[349,71.624]],["parent/758",[]],["name/759",[350,56.961]],["parent/759",[]],["name/760",[187,41.501]],["parent/760",[350,5.301]],["name/761",[151,40.866]],["parent/761",[350,5.301]],["name/762",[114,26.298]],["parent/762",[350,5.301]],["name/763",[104,32.982]],["parent/763",[351,5.301]],["name/764",[107,42.537]],["parent/764",[351,5.301]],["name/765",[175,43.692]],["parent/765",[351,5.301]],["name/766",[185,52.165]],["parent/766",[351,5.301]],["name/767",[352,56.961]],["parent/767",[351,5.301]],["name/768",[108,34.988]],["parent/768",[351,5.301]],["name/769",[108,34.988]],["parent/769",[350,5.301]],["name/770",[207,54.278]],["parent/770",[350,5.301]],["name/771",[353,53.166]],["parent/771",[]],["name/772",[104,32.982]],["parent/772",[353,4.948]],["name/773",[109,31.921]],["parent/773",[353,4.948]],["name/774",[209,54.278]],["parent/774",[353,4.948]],["name/775",[210,53.166]],["parent/775",[353,4.948]],["name/776",[184,45.974]],["parent/776",[353,4.948]],["name/777",[151,40.866]],["parent/777",[353,4.948]],["name/778",[211,49.652]],["parent/778",[353,4.948]],["name/779",[241,63.151]],["parent/779",[353,4.948]],["name/780",[354,56.961]],["parent/780",[]],["name/781",[104,32.982]],["parent/781",[354,5.301]],["name/782",[105,42.18]],["parent/782",[354,5.301]],["name/783",[336,55.53]],["parent/783",[354,5.301]],["name/784",[218,48.937]],["parent/784",[354,5.301]],["name/785",[114,26.298]],["parent/785",[354,5.301]],["name/786",[104,32.982]],["parent/786",[355,6.666]],["name/787",[356,71.624]],["parent/787",[]],["name/788",[357,71.624]],["parent/788",[]],["name/789",[358,71.624]],["parent/789",[]],["name/790",[359,42.907]],["parent/790",[]],["name/791",[104,32.982]],["parent/791",[359,3.993]],["name/792",[105,42.18]],["parent/792",[359,3.993]],["name/793",[159,56.961]],["parent/793",[359,3.993]],["name/794",[177,41.835]],["parent/794",[359,3.993]],["name/795",[112,52.165]],["parent/795",[359,3.993]],["name/796",[287,49.652]],["parent/796",[359,3.993]],["name/797",[288,49.652]],["parent/797",[359,3.993]],["name/798",[360,66.516]],["parent/798",[359,3.993]],["name/799",[114,26.298]],["parent/799",[359,3.993]],["name/800",[109,31.921]],["parent/800",[361,4.855]],["name/801",[155,40.563]],["parent/801",[361,4.855]],["name/802",[58,60.638]],["parent/802",[361,4.855]],["name/803",[156,63.151]],["parent/803",[361,4.855]],["name/804",[295,52.165]],["parent/804",[359,3.993]],["name/805",[296,63.151]],["parent/805",[359,3.993]],["name/806",[217,58.631]],["parent/806",[359,3.993]],["name/807",[297,58.631]],["parent/807",[359,3.993]],["name/808",[114,26.298]],["parent/808",[359,3.993]],["name/809",[162,45.974]],["parent/809",[361,4.855]],["name/810",[109,31.921]],["parent/810",[361,4.855]],["name/811",[154,39.706]],["parent/811",[361,4.855]],["name/812",[155,40.563]],["parent/812",[361,4.855]],["name/813",[299,63.151]],["parent/813",[359,3.993]],["name/814",[300,56.961]],["parent/814",[359,3.993]],["name/815",[114,26.298]],["parent/815",[359,3.993]],["name/816",[301,56.961]],["parent/816",[361,4.855]],["name/817",[302,56.961]],["parent/817",[361,4.855]],["name/818",[303,56.961]],["parent/818",[359,3.993]],["name/819",[108,34.988]],["parent/819",[359,3.993]],["name/820",[144,44.109]],["parent/820",[359,3.993]],["name/821",[304,63.151]],["parent/821",[359,3.993]],["name/822",[305,51.255]],["parent/822",[359,3.993]],["name/823",[307,63.151]],["parent/823",[359,3.993]],["name/824",[308,63.151]],["parent/824",[359,3.993]],["name/825",[109,31.921]],["parent/825",[359,3.993]],["name/826",[362,55.53]],["parent/826",[]],["name/827",[105,42.18]],["parent/827",[362,5.168]],["name/828",[159,56.961]],["parent/828",[362,5.168]],["name/829",[287,49.652]],["parent/829",[362,5.168]],["name/830",[288,49.652]],["parent/830",[362,5.168]],["name/831",[360,66.516]],["parent/831",[362,5.168]],["name/832",[114,26.298]],["parent/832",[362,5.168]],["name/833",[58,60.638]],["parent/833",[363,6.666]],["name/834",[364,58.631]],["parent/834",[]],["name/835",[187,41.501]],["parent/835",[364,5.457]],["name/836",[151,40.866]],["parent/836",[364,5.457]],["name/837",[114,26.298]],["parent/837",[364,5.457]],["name/838",[104,32.982]],["parent/838",[365,5.457]],["name/839",[107,42.537]],["parent/839",[365,5.457]],["name/840",[185,52.165]],["parent/840",[365,5.457]],["name/841",[175,43.692]],["parent/841",[365,5.457]],["name/842",[108,34.988]],["parent/842",[365,5.457]],["name/843",[108,34.988]],["parent/843",[364,5.457]],["name/844",[366,63.151]],["parent/844",[]],["name/845",[312,63.151]],["parent/845",[366,5.877]],["name/846",[325,56.961]],["parent/846",[366,5.877]],["name/847",[367,60.638]],["parent/847",[]],["name/848",[198,56.961]],["parent/848",[367,5.643]],["name/849",[57,55.53]],["parent/849",[367,5.643]],["name/850",[184,45.974]],["parent/850",[367,5.643]],["name/851",[368,63.151]],["parent/851",[]],["name/852",[149,45.974]],["parent/852",[368,5.877]],["name/853",[150,47.645]],["parent/853",[368,5.877]],["name/854",[369,58.631]],["parent/854",[]],["name/855",[109,31.921]],["parent/855",[369,5.457]],["name/856",[154,39.706]],["parent/856",[369,5.457]],["name/857",[155,40.563]],["parent/857",[369,5.457]],["name/858",[3,48.937]],["parent/858",[369,5.457]],["name/859",[370,53.166]],["parent/859",[]],["name/860",[105,42.18]],["parent/860",[370,4.948]],["name/861",[287,49.652]],["parent/861",[370,4.948]],["name/862",[288,49.652]],["parent/862",[370,4.948]],["name/863",[177,41.835]],["parent/863",[370,4.948]],["name/864",[309,60.638]],["parent/864",[370,4.948]],["name/865",[212,48.937]],["parent/865",[370,4.948]],["name/866",[114,26.298]],["parent/866",[370,4.948]],["name/867",[177,41.835]],["parent/867",[371,5.168]],["name/868",[248,42.18]],["parent/868",[371,5.168]],["name/869",[114,26.298]],["parent/869",[371,5.168]],["name/870",[252,53.166]],["parent/870",[372,5.051]],["name/871",[240,54.278]],["parent/871",[371,5.168]],["name/872",[114,26.298]],["parent/872",[371,5.168]],["name/873",[142,44.998]],["parent/873",[372,5.051]],["name/874",[0,49.652]],["parent/874",[372,5.051]],["name/875",[373,60.638]],["parent/875",[371,5.168]],["name/876",[114,26.298]],["parent/876",[371,5.168]],["name/877",[374,60.638]],["parent/877",[372,5.051]],["name/878",[375,60.638]],["parent/878",[372,5.051]],["name/879",[376,60.638]],["parent/879",[372,5.051]],["name/880",[377,60.638]],["parent/880",[372,5.051]],["name/881",[378,60.638]],["parent/881",[372,5.051]],["name/882",[108,34.988]],["parent/882",[370,4.948]],["name/883",[379,42.537]],["parent/883",[]],["name/884",[104,32.982]],["parent/884",[379,3.959]],["name/885",[105,42.18]],["parent/885",[379,3.959]],["name/886",[159,56.961]],["parent/886",[379,3.959]],["name/887",[177,41.835]],["parent/887",[379,3.959]],["name/888",[295,52.165]],["parent/888",[379,3.959]],["name/889",[296,63.151]],["parent/889",[379,3.959]],["name/890",[217,58.631]],["parent/890",[379,3.959]],["name/891",[112,52.165]],["parent/891",[379,3.959]],["name/892",[287,49.652]],["parent/892",[379,3.959]],["name/893",[297,58.631]],["parent/893",[379,3.959]],["name/894",[114,26.298]],["parent/894",[379,3.959]],["name/895",[162,45.974]],["parent/895",[380,5.301]],["name/896",[109,31.921]],["parent/896",[380,5.301]],["name/897",[154,39.706]],["parent/897",[380,5.301]],["name/898",[155,40.563]],["parent/898",[380,5.301]],["name/899",[288,49.652]],["parent/899",[379,3.959]],["name/900",[299,63.151]],["parent/900",[379,3.959]],["name/901",[300,56.961]],["parent/901",[379,3.959]],["name/902",[114,26.298]],["parent/902",[379,3.959]],["name/903",[301,56.961]],["parent/903",[380,5.301]],["name/904",[302,56.961]],["parent/904",[380,5.301]],["name/905",[303,56.961]],["parent/905",[379,3.959]],["name/906",[108,34.988]],["parent/906",[379,3.959]],["name/907",[144,44.109]],["parent/907",[379,3.959]],["name/908",[304,63.151]],["parent/908",[379,3.959]],["name/909",[305,51.255]],["parent/909",[379,3.959]],["name/910",[212,48.937]],["parent/910",[379,3.959]],["name/911",[306,66.516]],["parent/911",[379,3.959]],["name/912",[307,63.151]],["parent/912",[379,3.959]],["name/913",[308,63.151]],["parent/913",[379,3.959]],["name/914",[309,60.638]],["parent/914",[379,3.959]],["name/915",[109,31.921]],["parent/915",[379,3.959]],["name/916",[381,71.624]],["parent/916",[]],["name/917",[382,55.53]],["parent/917",[]],["name/918",[104,32.982]],["parent/918",[382,5.168]],["name/919",[287,49.652]],["parent/919",[382,5.168]],["name/920",[288,49.652]],["parent/920",[382,5.168]],["name/921",[108,34.988]],["parent/921",[382,5.168]],["name/922",[112,52.165]],["parent/922",[382,5.168]],["name/923",[177,41.835]],["parent/923",[382,5.168]],["name/924",[383,71.624]],["parent/924",[]],["name/925",[384,66.516]],["parent/925",[]],["name/926",[317,58.631]],["parent/926",[384,6.19]],["name/927",[385,63.151]],["parent/927",[]],["name/928",[149,45.974]],["parent/928",[385,5.877]],["name/929",[150,47.645]],["parent/929",[385,5.877]],["name/930",[386,58.631]],["parent/930",[]],["name/931",[109,31.921]],["parent/931",[386,5.457]],["name/932",[154,39.706]],["parent/932",[386,5.457]],["name/933",[155,40.563]],["parent/933",[386,5.457]],["name/934",[162,45.974]],["parent/934",[386,5.457]],["name/935",[387,60.638]],["parent/935",[]],["name/936",[188,51.255]],["parent/936",[387,5.643]],["name/937",[388,55.53]],["parent/937",[387,5.643]],["name/938",[114,26.298]],["parent/938",[387,5.643]],["name/939",[134,48.937]],["parent/939",[389,6.19]],["name/940",[114,26.298]],["parent/940",[389,6.19]],["name/941",[142,44.998]],["parent/941",[390,6.666]],["name/942",[391,52.165]],["parent/942",[]],["name/943",[104,32.982]],["parent/943",[391,4.855]],["name/944",[392,66.516]],["parent/944",[391,4.855]],["name/945",[271,60.638]],["parent/945",[391,4.855]],["name/946",[96,55.53]],["parent/946",[391,4.855]],["name/947",[388,55.53]],["parent/947",[391,4.855]],["name/948",[114,26.298]],["parent/948",[391,4.855]],["name/949",[134,48.937]],["parent/949",[393,6.19]],["name/950",[114,26.298]],["parent/950",[393,6.19]],["name/951",[142,44.998]],["parent/951",[394,6.666]],["name/952",[144,44.109]],["parent/952",[391,4.855]],["name/953",[395,48.937]],["parent/953",[391,4.855]],["name/954",[109,31.921]],["parent/954",[391,4.855]],["name/955",[396,60.638]],["parent/955",[]],["name/956",[104,32.982]],["parent/956",[396,5.643]],["name/957",[388,55.53]],["parent/957",[396,5.643]],["name/958",[114,26.298]],["parent/958",[396,5.643]],["name/959",[134,48.937]],["parent/959",[397,6.19]],["name/960",[114,26.298]],["parent/960",[397,6.19]],["name/961",[142,44.998]],["parent/961",[398,6.666]],["name/962",[399,71.624]],["parent/962",[]],["name/963",[400,63.151]],["parent/963",[]],["name/964",[149,45.974]],["parent/964",[400,5.877]],["name/965",[150,47.645]],["parent/965",[400,5.877]],["name/966",[401,63.151]],["parent/966",[]],["name/967",[177,41.835]],["parent/967",[401,5.877]],["name/968",[142,44.998]],["parent/968",[401,5.877]],["name/969",[402,60.638]],["parent/969",[]],["name/970",[177,41.835]],["parent/970",[402,5.643]],["name/971",[151,40.866]],["parent/971",[402,5.643]],["name/972",[114,26.298]],["parent/972",[402,5.643]],["name/973",[175,43.692]],["parent/973",[403,6.19]],["name/974",[114,26.298]],["parent/974",[403,6.19]],["name/975",[404,71.624]],["parent/975",[405,6.19]],["name/976",[142,44.998]],["parent/976",[405,6.19]],["name/977",[406,49.652]],["parent/977",[]],["name/978",[104,32.982]],["parent/978",[406,4.621]],["name/979",[144,44.109]],["parent/979",[406,4.621]],["name/980",[395,48.937]],["parent/980",[406,4.621]],["name/981",[407,63.151]],["parent/981",[406,4.621]],["name/982",[134,48.937]],["parent/982",[406,4.621]],["name/983",[408,66.516]],["parent/983",[406,4.621]],["name/984",[114,26.298]],["parent/984",[406,4.621]],["name/985",[104,32.982]],["parent/985",[409,5.643]],["name/986",[225,60.638]],["parent/986",[406,4.621]],["name/987",[410,63.151]],["parent/987",[406,4.621]],["name/988",[114,26.298]],["parent/988",[406,4.621]],["name/989",[336,55.53]],["parent/989",[409,5.643]],["name/990",[411,71.624]],["parent/990",[409,5.643]],["name/991",[412,71.624]],["parent/991",[409,5.643]],["name/992",[109,31.921]],["parent/992",[406,4.621]],["name/993",[413,71.624]],["parent/993",[406,4.621]],["name/994",[414,58.631]],["parent/994",[]],["name/995",[109,31.921]],["parent/995",[414,5.457]],["name/996",[154,39.706]],["parent/996",[414,5.457]],["name/997",[155,40.563]],["parent/997",[414,5.457]],["name/998",[162,45.974]],["parent/998",[414,5.457]],["name/999",[415,52.165]],["parent/999",[]],["name/1000",[225,60.638]],["parent/1000",[415,4.855]],["name/1001",[407,63.151]],["parent/1001",[415,4.855]],["name/1002",[134,48.937]],["parent/1002",[415,4.855]],["name/1003",[410,63.151]],["parent/1003",[415,4.855]],["name/1004",[114,26.298]],["parent/1004",[415,4.855]],["name/1005",[336,55.53]],["parent/1005",[416,5.877]],["name/1006",[417,71.624]],["parent/1006",[415,4.855]],["name/1007",[114,26.298]],["parent/1007",[415,4.855]],["name/1008",[418,71.624]],["parent/1008",[416,5.877]],["name/1009",[408,66.516]],["parent/1009",[415,4.855]],["name/1010",[114,26.298]],["parent/1010",[415,4.855]],["name/1011",[104,32.982]],["parent/1011",[416,5.877]],["name/1012",[419,71.624]],["parent/1012",[]],["name/1013",[420,55.53]],["parent/1013",[]],["name/1014",[104,32.982]],["parent/1014",[420,5.168]],["name/1015",[407,63.151]],["parent/1015",[420,5.168]],["name/1016",[410,63.151]],["parent/1016",[420,5.168]],["name/1017",[114,26.298]],["parent/1017",[420,5.168]],["name/1018",[336,55.53]],["parent/1018",[421,6.19]],["name/1019",[134,48.937]],["parent/1019",[420,5.168]],["name/1020",[114,26.298]],["parent/1020",[420,5.168]],["name/1021",[142,44.998]],["parent/1021",[421,6.19]],["name/1022",[422,71.624]],["parent/1022",[]],["name/1023",[423,55.53]],["parent/1023",[]],["name/1024",[149,45.974]],["parent/1024",[423,5.168]],["name/1025",[150,47.645]],["parent/1025",[423,5.168]],["name/1026",[144,44.109]],["parent/1026",[423,5.168]],["name/1027",[114,26.298]],["parent/1027",[423,5.168]],["name/1028",[245,58.631]],["parent/1028",[424,5.643]],["name/1029",[247,58.631]],["parent/1029",[424,5.643]],["name/1030",[395,48.937]],["parent/1030",[423,5.168]],["name/1031",[114,26.298]],["parent/1031",[423,5.168]],["name/1032",[245,58.631]],["parent/1032",[424,5.643]],["name/1033",[247,58.631]],["parent/1033",[424,5.643]],["name/1034",[425,43.692]],["parent/1034",[]],["name/1035",[104,32.982]],["parent/1035",[425,4.066]],["name/1036",[89,47.057]],["parent/1036",[425,4.066]],["name/1037",[218,48.937]],["parent/1037",[425,4.066]],["name/1038",[160,56.961]],["parent/1038",[425,4.066]],["name/1039",[295,52.165]],["parent/1039",[425,4.066]],["name/1040",[177,41.835]],["parent/1040",[425,4.066]],["name/1041",[240,54.278]],["parent/1041",[425,4.066]],["name/1042",[114,26.298]],["parent/1042",[425,4.066]],["name/1043",[142,44.998]],["parent/1043",[426,4.855]],["name/1044",[0,49.652]],["parent/1044",[426,4.855]],["name/1045",[287,49.652]],["parent/1045",[425,4.066]],["name/1046",[288,49.652]],["parent/1046",[425,4.066]],["name/1047",[300,56.961]],["parent/1047",[425,4.066]],["name/1048",[114,26.298]],["parent/1048",[425,4.066]],["name/1049",[301,56.961]],["parent/1049",[426,4.855]],["name/1050",[302,56.961]],["parent/1050",[426,4.855]],["name/1051",[303,56.961]],["parent/1051",[425,4.066]],["name/1052",[16,60.638]],["parent/1052",[425,4.066]],["name/1053",[114,26.298]],["parent/1053",[425,4.066]],["name/1054",[220,58.631]],["parent/1054",[426,4.855]],["name/1055",[427,66.516]],["parent/1055",[426,4.855]],["name/1056",[248,42.18]],["parent/1056",[425,4.066]],["name/1057",[114,26.298]],["parent/1057",[425,4.066]],["name/1058",[252,53.166]],["parent/1058",[426,4.855]],["name/1059",[135,63.151]],["parent/1059",[426,4.855]],["name/1060",[253,60.638]],["parent/1060",[426,4.855]],["name/1061",[254,63.151]],["parent/1061",[426,4.855]],["name/1062",[305,51.255]],["parent/1062",[425,4.066]],["name/1063",[428,58.631]],["parent/1063",[425,4.066]],["name/1064",[108,34.988]],["parent/1064",[425,4.066]],["name/1065",[429,58.631]],["parent/1065",[425,4.066]],["name/1066",[430,63.151]],["parent/1066",[425,4.066]],["name/1067",[395,48.937]],["parent/1067",[425,4.066]],["name/1068",[431,58.631]],["parent/1068",[]],["name/1069",[109,31.921]],["parent/1069",[431,5.457]],["name/1070",[154,39.706]],["parent/1070",[431,5.457]],["name/1071",[155,40.563]],["parent/1071",[431,5.457]],["name/1072",[99,46.501]],["parent/1072",[431,5.457]],["name/1073",[432,56.961]],["parent/1073",[]],["name/1074",[212,48.937]],["parent/1074",[432,5.301]],["name/1075",[214,56.961]],["parent/1075",[432,5.301]],["name/1076",[187,41.501]],["parent/1076",[432,5.301]],["name/1077",[114,26.298]],["parent/1077",[432,5.301]],["name/1078",[104,32.982]],["parent/1078",[433,5.301]],["name/1079",[105,42.18]],["parent/1079",[433,5.301]],["name/1080",[106,56.961]],["parent/1080",[433,5.301]],["name/1081",[108,34.988]],["parent/1081",[433,5.301]],["name/1082",[112,52.165]],["parent/1082",[433,5.301]],["name/1083",[107,42.537]],["parent/1083",[433,5.301]],["name/1084",[108,34.988]],["parent/1084",[432,5.301]],["name/1085",[434,71.624]],["parent/1085",[]],["name/1086",[435,71.624]],["parent/1086",[]],["name/1087",[436,58.631]],["parent/1087",[]],["name/1088",[109,31.921]],["parent/1088",[436,5.457]],["name/1089",[155,40.563]],["parent/1089",[436,5.457]],["name/1090",[154,39.706]],["parent/1090",[436,5.457]],["name/1091",[437,71.624]],["parent/1091",[436,5.457]],["name/1092",[438,66.516]],["parent/1092",[]],["name/1093",[142,44.998]],["parent/1093",[438,6.19]],["name/1094",[439,54.278]],["parent/1094",[]],["name/1095",[142,44.998]],["parent/1095",[439,5.051]],["name/1096",[154,39.706]],["parent/1096",[439,5.051]],["name/1097",[0,49.652]],["parent/1097",[439,5.051]],["name/1098",[177,41.835]],["parent/1098",[439,5.051]],["name/1099",[109,31.921]],["parent/1099",[439,5.051]],["name/1100",[178,63.151]],["parent/1100",[439,5.051]],["name/1101",[114,26.298]],["parent/1101",[439,5.051]],["name/1102",[177,41.835]],["parent/1102",[440,6.19]],["name/1103",[104,32.982]],["parent/1103",[440,6.19]],["name/1104",[441,56.961]],["parent/1104",[]],["name/1105",[188,51.255]],["parent/1105",[441,5.301]],["name/1106",[114,26.298]],["parent/1106",[441,5.301]],["name/1107",[104,32.982]],["parent/1107",[442,5.301]],["name/1108",[151,40.866]],["parent/1108",[441,5.301]],["name/1109",[114,26.298]],["parent/1109",[441,5.301]],["name/1110",[104,32.982]],["parent/1110",[442,5.301]],["name/1111",[107,42.537]],["parent/1111",[442,5.301]],["name/1112",[175,43.692]],["parent/1112",[442,5.301]],["name/1113",[185,52.165]],["parent/1113",[442,5.301]],["name/1114",[108,34.988]],["parent/1114",[442,5.301]],["name/1115",[108,34.988]],["parent/1115",[441,5.301]],["name/1116",[443,49.652]],["parent/1116",[]],["name/1117",[104,32.982]],["parent/1117",[443,4.621]],["name/1118",[109,31.921]],["parent/1118",[443,4.621]],["name/1119",[209,54.278]],["parent/1119",[443,4.621]],["name/1120",[210,53.166]],["parent/1120",[443,4.621]],["name/1121",[175,43.692]],["parent/1121",[443,4.621]],["name/1122",[151,40.866]],["parent/1122",[443,4.621]],["name/1123",[187,41.501]],["parent/1123",[443,4.621]],["name/1124",[188,51.255]],["parent/1124",[443,4.621]],["name/1125",[211,49.652]],["parent/1125",[443,4.621]],["name/1126",[184,45.974]],["parent/1126",[443,4.621]],["name/1127",[212,48.937]],["parent/1127",[443,4.621]],["name/1128",[114,26.298]],["parent/1128",[443,4.621]],["name/1129",[104,32.982]],["parent/1129",[444,3.832]],["name/1130",[89,47.057]],["parent/1130",[444,3.832]],["name/1131",[218,48.937]],["parent/1131",[444,3.832]],["name/1132",[160,56.961]],["parent/1132",[444,3.832]],["name/1133",[295,52.165]],["parent/1133",[444,3.832]],["name/1134",[177,41.835]],["parent/1134",[444,3.832]],["name/1135",[240,54.278]],["parent/1135",[444,3.832]],["name/1136",[114,26.298]],["parent/1136",[444,3.832]],["name/1137",[142,44.998]],["parent/1137",[445,4.066]],["name/1138",[0,49.652]],["parent/1138",[445,4.066]],["name/1139",[287,49.652]],["parent/1139",[444,3.832]],["name/1140",[288,49.652]],["parent/1140",[444,3.832]],["name/1141",[300,56.961]],["parent/1141",[444,3.832]],["name/1142",[114,26.298]],["parent/1142",[444,3.832]],["name/1143",[301,56.961]],["parent/1143",[445,4.066]],["name/1144",[302,56.961]],["parent/1144",[445,4.066]],["name/1145",[303,56.961]],["parent/1145",[444,3.832]],["name/1146",[16,60.638]],["parent/1146",[444,3.832]],["name/1147",[114,26.298]],["parent/1147",[444,3.832]],["name/1148",[109,31.921]],["parent/1148",[445,4.066]],["name/1149",[220,58.631]],["parent/1149",[445,4.066]],["name/1150",[446,53.166]],["parent/1150",[445,4.066]],["name/1151",[248,42.18]],["parent/1151",[444,3.832]],["name/1152",[114,26.298]],["parent/1152",[444,3.832]],["name/1153",[109,31.921]],["parent/1153",[445,4.066]],["name/1154",[252,53.166]],["parent/1154",[445,4.066]],["name/1155",[253,60.638]],["parent/1155",[445,4.066]],["name/1156",[446,53.166]],["parent/1156",[445,4.066]],["name/1157",[135,63.151]],["parent/1157",[445,4.066]],["name/1158",[305,51.255]],["parent/1158",[444,3.832]],["name/1159",[428,58.631]],["parent/1159",[444,3.832]],["name/1160",[447,66.516]],["parent/1160",[444,3.832]],["name/1161",[114,26.298]],["parent/1161",[444,3.832]],["name/1162",[448,66.516]],["parent/1162",[445,4.066]],["name/1163",[114,26.298]],["parent/1163",[445,4.066]],["name/1164",[104,32.982]],["parent/1164",[449,5.643]],["name/1165",[446,53.166]],["parent/1165",[449,5.643]],["name/1166",[450,66.516]],["parent/1166",[445,4.066]],["name/1167",[114,26.298]],["parent/1167",[445,4.066]],["name/1168",[104,32.982]],["parent/1168",[449,5.643]],["name/1169",[446,53.166]],["parent/1169",[449,5.643]],["name/1170",[429,58.631]],["parent/1170",[444,3.832]],["name/1171",[451,63.151]],["parent/1171",[444,3.832]],["name/1172",[430,63.151]],["parent/1172",[444,3.832]],["name/1173",[144,44.109]],["parent/1173",[444,3.832]],["name/1174",[395,48.937]],["parent/1174",[444,3.832]],["name/1175",[452,71.624]],["parent/1175",[444,3.832]],["name/1176",[114,26.298]],["parent/1176",[444,3.832]],["name/1177",[104,32.982]],["parent/1177",[445,4.066]],["name/1178",[107,42.537]],["parent/1178",[445,4.066]],["name/1179",[108,34.988]],["parent/1179",[445,4.066]],["name/1180",[109,31.921]],["parent/1180",[445,4.066]],["name/1181",[109,31.921]],["parent/1181",[444,3.832]],["name/1182",[297,58.631]],["parent/1182",[444,3.832]],["name/1183",[114,26.298]],["parent/1183",[444,3.832]],["name/1184",[109,31.921]],["parent/1184",[445,4.066]],["name/1185",[154,39.706]],["parent/1185",[445,4.066]],["name/1186",[155,40.563]],["parent/1186",[445,4.066]],["name/1187",[162,45.974]],["parent/1187",[445,4.066]],["name/1188",[453,63.151]],["parent/1188",[]],["name/1189",[89,47.057]],["parent/1189",[453,5.877]],["name/1190",[142,44.998]],["parent/1190",[453,5.877]],["name/1191",[454,71.624]],["parent/1191",[]],["name/1192",[455,52.165]],["parent/1192",[]],["name/1193",[373,60.638]],["parent/1193",[455,4.855]],["name/1194",[114,26.298]],["parent/1194",[455,4.855]],["name/1195",[374,60.638]],["parent/1195",[456,5.051]],["name/1196",[375,60.638]],["parent/1196",[456,5.051]],["name/1197",[376,60.638]],["parent/1197",[456,5.051]],["name/1198",[377,60.638]],["parent/1198",[456,5.051]],["name/1199",[378,60.638]],["parent/1199",[456,5.051]],["name/1200",[177,41.835]],["parent/1200",[455,4.855]],["name/1201",[429,58.631]],["parent/1201",[455,4.855]],["name/1202",[199,53.166]],["parent/1202",[455,4.855]],["name/1203",[240,54.278]],["parent/1203",[455,4.855]],["name/1204",[114,26.298]],["parent/1204",[455,4.855]],["name/1205",[142,44.998]],["parent/1205",[456,5.051]],["name/1206",[0,49.652]],["parent/1206",[456,5.051]],["name/1207",[248,42.18]],["parent/1207",[455,4.855]],["name/1208",[114,26.298]],["parent/1208",[455,4.855]],["name/1209",[252,53.166]],["parent/1209",[456,5.051]],["name/1210",[457,40.563]],["parent/1210",[]],["name/1211",[104,32.982]],["parent/1211",[457,3.775]],["name/1212",[89,47.057]],["parent/1212",[457,3.775]],["name/1213",[218,48.937]],["parent/1213",[457,3.775]],["name/1214",[295,52.165]],["parent/1214",[457,3.775]],["name/1215",[177,41.835]],["parent/1215",[457,3.775]],["name/1216",[199,53.166]],["parent/1216",[457,3.775]],["name/1217",[130,51.255]],["parent/1217",[457,3.775]],["name/1218",[114,26.298]],["parent/1218",[457,3.775]],["name/1219",[175,43.692]],["parent/1219",[458,3.993]],["name/1220",[0,49.652]],["parent/1220",[458,3.993]],["name/1221",[240,54.278]],["parent/1221",[457,3.775]],["name/1222",[114,26.298]],["parent/1222",[457,3.775]],["name/1223",[142,44.998]],["parent/1223",[458,3.993]],["name/1224",[287,49.652]],["parent/1224",[457,3.775]],["name/1225",[288,49.652]],["parent/1225",[457,3.775]],["name/1226",[300,56.961]],["parent/1226",[457,3.775]],["name/1227",[114,26.298]],["parent/1227",[457,3.775]],["name/1228",[301,56.961]],["parent/1228",[458,3.993]],["name/1229",[302,56.961]],["parent/1229",[458,3.993]],["name/1230",[303,56.961]],["parent/1230",[457,3.775]],["name/1231",[16,60.638]],["parent/1231",[457,3.775]],["name/1232",[114,26.298]],["parent/1232",[457,3.775]],["name/1233",[109,31.921]],["parent/1233",[458,3.993]],["name/1234",[220,58.631]],["parent/1234",[458,3.993]],["name/1235",[155,40.563]],["parent/1235",[458,3.993]],["name/1236",[427,66.516]],["parent/1236",[458,3.993]],["name/1237",[154,39.706]],["parent/1237",[458,3.993]],["name/1238",[446,53.166]],["parent/1238",[458,3.993]],["name/1239",[248,42.18]],["parent/1239",[457,3.775]],["name/1240",[114,26.298]],["parent/1240",[457,3.775]],["name/1241",[109,31.921]],["parent/1241",[458,3.993]],["name/1242",[252,53.166]],["parent/1242",[458,3.993]],["name/1243",[253,60.638]],["parent/1243",[458,3.993]],["name/1244",[155,40.563]],["parent/1244",[458,3.993]],["name/1245",[254,63.151]],["parent/1245",[458,3.993]],["name/1246",[154,39.706]],["parent/1246",[458,3.993]],["name/1247",[446,53.166]],["parent/1247",[458,3.993]],["name/1248",[305,51.255]],["parent/1248",[457,3.775]],["name/1249",[428,58.631]],["parent/1249",[457,3.775]],["name/1250",[108,34.988]],["parent/1250",[457,3.775]],["name/1251",[447,66.516]],["parent/1251",[457,3.775]],["name/1252",[114,26.298]],["parent/1252",[457,3.775]],["name/1253",[448,66.516]],["parent/1253",[458,3.993]],["name/1254",[114,26.298]],["parent/1254",[458,3.993]],["name/1255",[104,32.982]],["parent/1255",[459,5.643]],["name/1256",[446,53.166]],["parent/1256",[459,5.643]],["name/1257",[450,66.516]],["parent/1257",[458,3.993]],["name/1258",[114,26.298]],["parent/1258",[458,3.993]],["name/1259",[104,32.982]],["parent/1259",[459,5.643]],["name/1260",[446,53.166]],["parent/1260",[459,5.643]],["name/1261",[429,58.631]],["parent/1261",[457,3.775]],["name/1262",[451,63.151]],["parent/1262",[457,3.775]],["name/1263",[430,63.151]],["parent/1263",[457,3.775]],["name/1264",[395,48.937]],["parent/1264",[457,3.775]],["name/1265",[144,44.109]],["parent/1265",[457,3.775]],["name/1266",[109,31.921]],["parent/1266",[457,3.775]],["name/1267",[297,58.631]],["parent/1267",[457,3.775]],["name/1268",[114,26.298]],["parent/1268",[457,3.775]],["name/1269",[109,31.921]],["parent/1269",[458,3.993]],["name/1270",[154,39.706]],["parent/1270",[458,3.993]],["name/1271",[155,40.563]],["parent/1271",[458,3.993]],["name/1272",[162,45.974]],["parent/1272",[458,3.993]],["name/1273",[460,56.961]],["parent/1273",[]],["name/1274",[187,41.501]],["parent/1274",[460,5.301]],["name/1275",[151,40.866]],["parent/1275",[460,5.301]],["name/1276",[188,51.255]],["parent/1276",[460,5.301]],["name/1277",[114,26.298]],["parent/1277",[460,5.301]],["name/1278",[104,32.982]],["parent/1278",[461,6.19]],["name/1279",[260,63.151]],["parent/1279",[461,6.19]],["name/1280",[108,34.988]],["parent/1280",[460,5.301]],["name/1281",[462,60.638]],["parent/1281",[]],["name/1282",[312,63.151]],["parent/1282",[462,5.643]],["name/1283",[151,40.866]],["parent/1283",[462,5.643]],["name/1284",[149,45.974]],["parent/1284",[462,5.643]],["name/1285",[463,58.631]],["parent/1285",[]],["name/1286",[109,31.921]],["parent/1286",[463,5.457]],["name/1287",[154,39.706]],["parent/1287",[463,5.457]],["name/1288",[155,40.563]],["parent/1288",[463,5.457]],["name/1289",[162,45.974]],["parent/1289",[463,5.457]],["name/1290",[464,55.53]],["parent/1290",[]],["name/1291",[305,51.255]],["parent/1291",[464,5.168]],["name/1292",[89,47.057]],["parent/1292",[464,5.168]],["name/1293",[373,60.638]],["parent/1293",[464,5.168]],["name/1294",[114,26.298]],["parent/1294",[464,5.168]],["name/1295",[374,60.638]],["parent/1295",[465,5.301]],["name/1296",[375,60.638]],["parent/1296",[465,5.301]],["name/1297",[376,60.638]],["parent/1297",[465,5.301]],["name/1298",[377,60.638]],["parent/1298",[465,5.301]],["name/1299",[378,60.638]],["parent/1299",[465,5.301]],["name/1300",[248,42.18]],["parent/1300",[464,5.168]],["name/1301",[114,26.298]],["parent/1301",[464,5.168]],["name/1302",[252,53.166]],["parent/1302",[465,5.301]],["name/1303",[466,71.624]],["parent/1303",[]],["name/1304",[467,71.624]],["parent/1304",[]],["name/1305",[468,71.624]],["parent/1305",[]],["name/1306",[469,52.165]],["parent/1306",[]],["name/1307",[89,47.057]],["parent/1307",[469,4.855]],["name/1308",[295,52.165]],["parent/1308",[469,4.855]],["name/1309",[287,49.652]],["parent/1309",[469,4.855]],["name/1310",[288,49.652]],["parent/1310",[469,4.855]],["name/1311",[305,51.255]],["parent/1311",[469,4.855]],["name/1312",[428,58.631]],["parent/1312",[469,4.855]],["name/1313",[108,34.988]],["parent/1313",[469,4.855]],["name/1314",[130,51.255]],["parent/1314",[469,4.855]],["name/1315",[114,26.298]],["parent/1315",[469,4.855]],["name/1316",[175,43.692]],["parent/1316",[470,6.666]],["name/1317",[471,71.624]],["parent/1317",[]],["name/1318",[472,66.516]],["parent/1318",[]],["name/1319",[317,58.631]],["parent/1319",[472,6.19]],["name/1320",[473,49.652]],["parent/1320",[]],["name/1321",[149,45.974]],["parent/1321",[473,4.621]],["name/1322",[150,47.645]],["parent/1322",[473,4.621]],["name/1323",[295,52.165]],["parent/1323",[473,4.621]],["name/1324",[218,48.937]],["parent/1324",[473,4.621]],["name/1325",[187,41.501]],["parent/1325",[473,4.621]],["name/1326",[144,44.109]],["parent/1326",[473,4.621]],["name/1327",[114,26.298]],["parent/1327",[473,4.621]],["name/1328",[247,58.631]],["parent/1328",[474,5.457]],["name/1329",[245,58.631]],["parent/1329",[474,5.457]],["name/1330",[395,48.937]],["parent/1330",[473,4.621]],["name/1331",[114,26.298]],["parent/1331",[473,4.621]],["name/1332",[247,58.631]],["parent/1332",[474,5.457]],["name/1333",[245,58.631]],["parent/1333",[474,5.457]],["name/1334",[151,40.866]],["parent/1334",[473,4.621]],["name/1335",[325,56.961]],["parent/1335",[473,4.621]],["name/1336",[114,26.298]],["parent/1336",[473,4.621]],["name/1337",[326,55.53]],["parent/1337",[474,5.457]],["name/1338",[475,58.631]],["parent/1338",[]],["name/1339",[109,31.921]],["parent/1339",[475,5.457]],["name/1340",[154,39.706]],["parent/1340",[475,5.457]],["name/1341",[155,40.563]],["parent/1341",[475,5.457]],["name/1342",[99,46.501]],["parent/1342",[475,5.457]],["name/1343",[476,71.624]],["parent/1343",[]],["name/1344",[477,71.624]],["parent/1344",[]],["name/1345",[478,48.937]],["parent/1345",[]],["name/1346",[89,47.057]],["parent/1346",[478,4.554]],["name/1347",[295,52.165]],["parent/1347",[478,4.554]],["name/1348",[177,41.835]],["parent/1348",[478,4.554]],["name/1349",[199,53.166]],["parent/1349",[478,4.554]],["name/1350",[428,58.631]],["parent/1350",[478,4.554]],["name/1351",[287,49.652]],["parent/1351",[478,4.554]],["name/1352",[288,49.652]],["parent/1352",[478,4.554]],["name/1353",[305,51.255]],["parent/1353",[478,4.554]],["name/1354",[108,34.988]],["parent/1354",[478,4.554]],["name/1355",[248,42.18]],["parent/1355",[478,4.554]],["name/1356",[114,26.298]],["parent/1356",[478,4.554]],["name/1357",[252,53.166]],["parent/1357",[479,5.301]],["name/1358",[373,60.638]],["parent/1358",[478,4.554]],["name/1359",[114,26.298]],["parent/1359",[478,4.554]],["name/1360",[374,60.638]],["parent/1360",[479,5.301]],["name/1361",[375,60.638]],["parent/1361",[479,5.301]],["name/1362",[376,60.638]],["parent/1362",[479,5.301]],["name/1363",[377,60.638]],["parent/1363",[479,5.301]],["name/1364",[378,60.638]],["parent/1364",[479,5.301]],["name/1365",[480,63.151]],["parent/1365",[]],["name/1366",[89,47.057]],["parent/1366",[480,5.877]],["name/1367",[108,34.988]],["parent/1367",[480,5.877]],["name/1368",[481,71.624]],["parent/1368",[]],["name/1369",[482,63.151]],["parent/1369",[]],["name/1370",[483,71.624]],["parent/1370",[482,5.877]],["name/1371",[108,34.988]],["parent/1371",[482,5.877]],["name/1372",[484,66.516]],["parent/1372",[]],["name/1373",[114,26.298]],["parent/1373",[484,6.19]],["name/1374",[330,56.961]],["parent/1374",[485,6.666]],["name/1375",[486,66.516]],["parent/1375",[]],["name/1376",[114,26.298]],["parent/1376",[486,6.19]],["name/1377",[330,56.961]],["parent/1377",[487,6.666]],["name/1378",[488,66.516]],["parent/1378",[]],["name/1379",[114,26.298]],["parent/1379",[488,6.19]],["name/1380",[330,56.961]],["parent/1380",[489,6.666]],["name/1381",[490,56.961]],["parent/1381",[]],["name/1382",[105,42.18]],["parent/1382",[490,5.301]],["name/1383",[289,60.638]],["parent/1383",[490,5.301]],["name/1384",[114,26.298]],["parent/1384",[490,5.301]],["name/1385",[491,66.516]],["parent/1385",[492,6.19]],["name/1386",[493,66.516]],["parent/1386",[490,5.301]],["name/1387",[114,26.298]],["parent/1387",[490,5.301]],["name/1388",[494,66.516]],["parent/1388",[492,6.19]],["name/1389",[495,52.165]],["parent/1389",[]],["name/1390",[104,32.982]],["parent/1390",[495,4.855]],["name/1391",[105,42.18]],["parent/1391",[495,4.855]],["name/1392",[289,60.638]],["parent/1392",[495,4.855]],["name/1393",[114,26.298]],["parent/1393",[495,4.855]],["name/1394",[491,66.516]],["parent/1394",[496,6.19]],["name/1395",[493,66.516]],["parent/1395",[495,4.855]],["name/1396",[114,26.298]],["parent/1396",[495,4.855]],["name/1397",[494,66.516]],["parent/1397",[496,6.19]],["name/1398",[144,44.109]],["parent/1398",[495,4.855]],["name/1399",[395,48.937]],["parent/1399",[495,4.855]],["name/1400",[109,31.921]],["parent/1400",[495,4.855]],["name/1401",[497,60.638]],["parent/1401",[]],["name/1402",[198,56.961]],["parent/1402",[497,5.643]],["name/1403",[498,66.516]],["parent/1403",[497,5.643]],["name/1404",[200,60.638]],["parent/1404",[497,5.643]],["name/1405",[499,71.624]],["parent/1405",[]],["name/1406",[500,71.624]],["parent/1406",[]],["name/1407",[501,71.624]],["parent/1407",[]],["name/1408",[502,60.638]],["parent/1408",[]],["name/1409",[212,48.937]],["parent/1409",[502,5.643]],["name/1410",[218,48.937]],["parent/1410",[502,5.643]],["name/1411",[241,63.151]],["parent/1411",[502,5.643]],["name/1412",[503,54.278]],["parent/1412",[]],["name/1413",[104,32.982]],["parent/1413",[503,5.051]],["name/1414",[498,66.516]],["parent/1414",[503,5.051]],["name/1415",[271,60.638]],["parent/1415",[503,5.051]],["name/1416",[96,55.53]],["parent/1416",[503,5.051]],["name/1417",[144,44.109]],["parent/1417",[503,5.051]],["name/1418",[395,48.937]],["parent/1418",[503,5.051]],["name/1419",[109,31.921]],["parent/1419",[503,5.051]],["name/1420",[504,63.151]],["parent/1420",[]],["name/1421",[149,45.974]],["parent/1421",[504,5.877]],["name/1422",[150,47.645]],["parent/1422",[504,5.877]],["name/1423",[505,58.631]],["parent/1423",[]],["name/1424",[109,31.921]],["parent/1424",[505,5.457]],["name/1425",[154,39.706]],["parent/1425",[505,5.457]],["name/1426",[155,40.563]],["parent/1426",[505,5.457]],["name/1427",[162,45.974]],["parent/1427",[505,5.457]],["name/1428",[506,63.151]],["parent/1428",[]],["name/1429",[149,45.974]],["parent/1429",[506,5.877]],["name/1430",[150,47.645]],["parent/1430",[506,5.877]],["name/1431",[507,58.631]],["parent/1431",[]],["name/1432",[109,31.921]],["parent/1432",[507,5.457]],["name/1433",[154,39.706]],["parent/1433",[507,5.457]],["name/1434",[155,40.563]],["parent/1434",[507,5.457]],["name/1435",[162,45.974]],["parent/1435",[507,5.457]],["name/1436",[508,63.151]],["parent/1436",[]],["name/1437",[150,47.645]],["parent/1437",[508,5.877]],["name/1438",[149,45.974]],["parent/1438",[508,5.877]],["name/1439",[509,52.165]],["parent/1439",[]],["name/1440",[104,32.982]],["parent/1440",[509,4.855]],["name/1441",[105,42.18]],["parent/1441",[509,4.855]],["name/1442",[510,71.624]],["parent/1442",[509,4.855]],["name/1443",[511,71.624]],["parent/1443",[509,4.855]],["name/1444",[512,56.961]],["parent/1444",[509,4.855]],["name/1445",[114,26.298]],["parent/1445",[509,4.855]],["name/1446",[513,58.631]],["parent/1446",[514,6.19]],["name/1447",[112,52.165]],["parent/1447",[514,6.19]],["name/1448",[144,44.109]],["parent/1448",[509,4.855]],["name/1449",[395,48.937]],["parent/1449",[509,4.855]],["name/1450",[109,31.921]],["parent/1450",[509,4.855]],["name/1451",[515,71.624]],["parent/1451",[]],["name/1452",[516,58.631]],["parent/1452",[]],["name/1453",[109,31.921]],["parent/1453",[516,5.457]],["name/1454",[154,39.706]],["parent/1454",[516,5.457]],["name/1455",[155,40.563]],["parent/1455",[516,5.457]],["name/1456",[162,45.974]],["parent/1456",[516,5.457]],["name/1457",[517,71.624]],["parent/1457",[]],["name/1458",[518,71.624]],["parent/1458",[]],["name/1459",[519,71.624]],["parent/1459",[]],["name/1460",[520,71.624]],["parent/1460",[]],["name/1461",[521,71.624]],["parent/1461",[]],["name/1462",[522,71.624]],["parent/1462",[]],["name/1463",[523,52.165]],["parent/1463",[]],["name/1464",[104,32.982]],["parent/1464",[523,4.855]],["name/1465",[392,66.516]],["parent/1465",[523,4.855]],["name/1466",[271,60.638]],["parent/1466",[523,4.855]],["name/1467",[96,55.53]],["parent/1467",[523,4.855]],["name/1468",[388,55.53]],["parent/1468",[523,4.855]],["name/1469",[114,26.298]],["parent/1469",[523,4.855]],["name/1470",[134,48.937]],["parent/1470",[524,6.19]],["name/1471",[114,26.298]],["parent/1471",[524,6.19]],["name/1472",[142,44.998]],["parent/1472",[525,6.666]],["name/1473",[144,44.109]],["parent/1473",[523,4.855]],["name/1474",[395,48.937]],["parent/1474",[523,4.855]],["name/1475",[109,31.921]],["parent/1475",[523,4.855]],["name/1476",[526,63.151]],["parent/1476",[]],["name/1477",[149,45.974]],["parent/1477",[526,5.877]],["name/1478",[150,47.645]],["parent/1478",[526,5.877]],["name/1479",[527,58.631]],["parent/1479",[]],["name/1480",[154,39.706]],["parent/1480",[527,5.457]],["name/1481",[162,45.974]],["parent/1481",[527,5.457]],["name/1482",[109,31.921]],["parent/1482",[527,5.457]],["name/1483",[155,40.563]],["parent/1483",[527,5.457]],["name/1484",[528,60.638]],["parent/1484",[]],["name/1485",[218,48.937]],["parent/1485",[528,5.643]],["name/1486",[388,55.53]],["parent/1486",[528,5.643]],["name/1487",[114,26.298]],["parent/1487",[528,5.643]],["name/1488",[134,48.937]],["parent/1488",[529,6.19]],["name/1489",[114,26.298]],["parent/1489",[529,6.19]],["name/1490",[142,44.998]],["parent/1490",[530,6.666]],["name/1491",[531,71.624]],["parent/1491",[]],["name/1492",[532,71.624]],["parent/1492",[]],["name/1493",[533,71.624]],["parent/1493",[]],["name/1494",[534,60.638]],["parent/1494",[]],["name/1495",[142,44.998]],["parent/1495",[534,5.643]],["name/1496",[260,63.151]],["parent/1496",[534,5.643]],["name/1497",[104,32.982]],["parent/1497",[534,5.643]],["name/1498",[535,55.53]],["parent/1498",[]],["name/1499",[105,42.18]],["parent/1499",[535,5.168]],["name/1500",[107,42.537]],["parent/1500",[535,5.168]],["name/1501",[536,53.166]],["parent/1501",[535,5.168]],["name/1502",[512,56.961]],["parent/1502",[535,5.168]],["name/1503",[108,34.988]],["parent/1503",[535,5.168]],["name/1504",[513,58.631]],["parent/1504",[535,5.168]],["name/1505",[537,63.151]],["parent/1505",[]],["name/1506",[538,66.516]],["parent/1506",[537,5.877]],["name/1507",[114,26.298]],["parent/1507",[537,5.877]],["name/1508",[109,31.921]],["parent/1508",[539,5.877]],["name/1509",[154,39.706]],["parent/1509",[539,5.877]],["name/1510",[162,45.974]],["parent/1510",[539,5.877]],["name/1511",[540,52.165]],["parent/1511",[]],["name/1512",[104,32.982]],["parent/1512",[540,4.855]],["name/1513",[107,42.537]],["parent/1513",[540,4.855]],["name/1514",[109,31.921]],["parent/1514",[540,4.855]],["name/1515",[105,42.18]],["parent/1515",[540,4.855]],["name/1516",[536,53.166]],["parent/1516",[540,4.855]],["name/1517",[512,56.961]],["parent/1517",[540,4.855]],["name/1518",[144,44.109]],["parent/1518",[540,4.855]],["name/1519",[513,58.631]],["parent/1519",[540,4.855]],["name/1520",[108,34.988]],["parent/1520",[540,4.855]],["name/1521",[541,71.624]],["parent/1521",[]],["name/1522",[542,66.516]],["parent/1522",[]],["name/1523",[114,26.298]],["parent/1523",[542,6.19]],["name/1524",[105,42.18]],["parent/1524",[543,5.168]],["name/1525",[104,32.982]],["parent/1525",[543,5.168]],["name/1526",[107,42.537]],["parent/1526",[543,5.168]],["name/1527",[512,56.961]],["parent/1527",[543,5.168]],["name/1528",[536,53.166]],["parent/1528",[543,5.168]],["name/1529",[513,58.631]],["parent/1529",[543,5.168]],["name/1530",[108,34.988]],["parent/1530",[543,5.168]],["name/1531",[544,71.624]],["parent/1531",[]],["name/1532",[545,63.151]],["parent/1532",[]],["name/1533",[546,71.624]],["parent/1533",[545,5.877]],["name/1534",[108,34.988]],["parent/1534",[545,5.877]],["name/1535",[547,71.624]],["parent/1535",[]],["name/1536",[548,66.516]],["parent/1536",[]],["name/1537",[114,26.298]],["parent/1537",[548,6.19]],["name/1538",[330,56.961]],["parent/1538",[549,6.666]],["name/1539",[550,66.516]],["parent/1539",[]],["name/1540",[114,26.298]],["parent/1540",[550,6.19]],["name/1541",[330,56.961]],["parent/1541",[551,6.666]],["name/1542",[552,66.516]],["parent/1542",[]],["name/1543",[317,58.631]],["parent/1543",[552,6.19]],["name/1544",[553,63.151]],["parent/1544",[]],["name/1545",[150,47.645]],["parent/1545",[553,5.877]],["name/1546",[149,45.974]],["parent/1546",[553,5.877]],["name/1547",[554,58.631]],["parent/1547",[]],["name/1548",[109,31.921]],["parent/1548",[554,5.457]],["name/1549",[154,39.706]],["parent/1549",[554,5.457]],["name/1550",[155,40.563]],["parent/1550",[554,5.457]],["name/1551",[49,48.27]],["parent/1551",[554,5.457]],["name/1552",[555,54.278]],["parent/1552",[]],["name/1553",[556,54.278]],["parent/1553",[555,5.051]],["name/1554",[107,42.537]],["parent/1554",[555,5.051]],["name/1555",[512,56.961]],["parent/1555",[555,5.051]],["name/1556",[108,34.988]],["parent/1556",[555,5.051]],["name/1557",[536,53.166]],["parent/1557",[555,5.051]],["name/1558",[513,58.631]],["parent/1558",[555,5.051]],["name/1559",[557,66.516]],["parent/1559",[555,5.051]],["name/1560",[558,51.255]],["parent/1560",[]],["name/1561",[104,32.982]],["parent/1561",[558,4.77]],["name/1562",[107,42.537]],["parent/1562",[558,4.77]],["name/1563",[556,54.278]],["parent/1563",[558,4.77]],["name/1564",[536,53.166]],["parent/1564",[558,4.77]],["name/1565",[512,56.961]],["parent/1565",[558,4.77]],["name/1566",[108,34.988]],["parent/1566",[558,4.77]],["name/1567",[395,48.937]],["parent/1567",[558,4.77]],["name/1568",[557,66.516]],["parent/1568",[558,4.77]],["name/1569",[144,44.109]],["parent/1569",[558,4.77]],["name/1570",[109,31.921]],["parent/1570",[558,4.77]],["name/1571",[559,71.624]],["parent/1571",[]],["name/1572",[560,71.624]],["parent/1572",[]],["name/1573",[561,71.624]],["parent/1573",[]],["name/1574",[562,66.516]],["parent/1574",[]],["name/1575",[317,58.631]],["parent/1575",[562,6.19]],["name/1576",[563,60.638]],["parent/1576",[]],["name/1577",[109,31.921]],["parent/1577",[563,5.643]],["name/1578",[154,39.706]],["parent/1578",[563,5.643]],["name/1579",[538,66.516]],["parent/1579",[563,5.643]],["name/1580",[564,60.638]],["parent/1580",[]],["name/1581",[104,32.982]],["parent/1581",[564,5.643]],["name/1582",[107,42.537]],["parent/1582",[564,5.643]],["name/1583",[105,42.18]],["parent/1583",[564,5.643]],["name/1584",[565,60.638]],["parent/1584",[]],["name/1585",[104,32.982]],["parent/1585",[565,5.643]],["name/1586",[107,42.537]],["parent/1586",[565,5.643]],["name/1587",[556,54.278]],["parent/1587",[565,5.643]],["name/1588",[566,52.165]],["parent/1588",[]],["name/1589",[177,41.835]],["parent/1589",[566,4.855]],["name/1590",[567,60.638]],["parent/1590",[566,4.855]],["name/1591",[568,63.151]],["parent/1591",[566,4.855]],["name/1592",[569,54.278]],["parent/1592",[566,4.855]],["name/1593",[570,63.151]],["parent/1593",[566,4.855]],["name/1594",[571,63.151]],["parent/1594",[566,4.855]],["name/1595",[572,63.151]],["parent/1595",[566,4.855]],["name/1596",[573,63.151]],["parent/1596",[566,4.855]],["name/1597",[574,63.151]],["parent/1597",[566,4.855]],["name/1598",[575,50.421]],["parent/1598",[]],["name/1599",[149,45.974]],["parent/1599",[575,4.692]],["name/1600",[150,47.645]],["parent/1600",[575,4.692]],["name/1601",[151,40.866]],["parent/1601",[575,4.692]],["name/1602",[218,48.937]],["parent/1602",[575,4.692]],["name/1603",[187,41.501]],["parent/1603",[575,4.692]],["name/1604",[212,48.937]],["parent/1604",[575,4.692]],["name/1605",[211,49.652]],["parent/1605",[575,4.692]],["name/1606",[576,71.624]],["parent/1606",[575,4.692]],["name/1607",[429,58.631]],["parent/1607",[575,4.692]],["name/1608",[325,56.961]],["parent/1608",[575,4.692]],["name/1609",[114,26.298]],["parent/1609",[575,4.692]],["name/1610",[326,55.53]],["parent/1610",[577,6.666]],["name/1611",[578,58.631]],["parent/1611",[]],["name/1612",[109,31.921]],["parent/1612",[578,5.457]],["name/1613",[154,39.706]],["parent/1613",[578,5.457]],["name/1614",[155,40.563]],["parent/1614",[578,5.457]],["name/1615",[29,66.516]],["parent/1615",[578,5.457]],["name/1616",[579,54.278]],["parent/1616",[]],["name/1617",[217,58.631]],["parent/1617",[579,5.051]],["name/1618",[107,42.537]],["parent/1618",[579,5.051]],["name/1619",[218,48.937]],["parent/1619",[579,5.051]],["name/1620",[114,26.298]],["parent/1620",[579,5.051]],["name/1621",[105,42.18]],["parent/1621",[580,6.19]],["name/1622",[220,58.631]],["parent/1622",[580,6.19]],["name/1623",[212,48.937]],["parent/1623",[579,5.051]],["name/1624",[214,56.961]],["parent/1624",[579,5.051]],["name/1625",[187,41.501]],["parent/1625",[579,5.051]],["name/1626",[581,50.421]],["parent/1626",[]],["name/1627",[104,32.982]],["parent/1627",[581,4.692]],["name/1628",[109,31.921]],["parent/1628",[581,4.692]],["name/1629",[144,44.109]],["parent/1629",[581,4.692]],["name/1630",[210,53.166]],["parent/1630",[581,4.692]],["name/1631",[184,45.974]],["parent/1631",[581,4.692]],["name/1632",[108,34.988]],["parent/1632",[581,4.692]],["name/1633",[214,56.961]],["parent/1633",[581,4.692]],["name/1634",[107,42.537]],["parent/1634",[581,4.692]],["name/1635",[211,49.652]],["parent/1635",[581,4.692]],["name/1636",[187,41.501]],["parent/1636",[581,4.692]],["name/1637",[212,48.937]],["parent/1637",[581,4.692]],["name/1638",[582,56.961]],["parent/1638",[]],["name/1639",[105,42.18]],["parent/1639",[582,5.301]],["name/1640",[177,41.835]],["parent/1640",[582,5.301]],["name/1641",[583,66.516]],["parent/1641",[582,5.301]],["name/1642",[114,26.298]],["parent/1642",[582,5.301]],["name/1643",[326,55.53]],["parent/1643",[584,6.666]],["name/1644",[25,50.421]],["parent/1644",[582,5.301]],["name/1645",[585,53.166]],["parent/1645",[]],["name/1646",[104,32.982]],["parent/1646",[585,4.948]],["name/1647",[105,42.18]],["parent/1647",[585,4.948]],["name/1648",[144,44.109]],["parent/1648",[585,4.948]],["name/1649",[108,34.988]],["parent/1649",[585,4.948]],["name/1650",[583,66.516]],["parent/1650",[585,4.948]],["name/1651",[114,26.298]],["parent/1651",[585,4.948]],["name/1652",[326,55.53]],["parent/1652",[586,6.666]],["name/1653",[177,41.835]],["parent/1653",[585,4.948]],["name/1654",[109,31.921]],["parent/1654",[585,4.948]],["name/1655",[587,71.624]],["parent/1655",[]],["name/1656",[588,58.631]],["parent/1656",[]],["name/1657",[109,31.921]],["parent/1657",[588,5.457]],["name/1658",[154,39.706]],["parent/1658",[588,5.457]],["name/1659",[155,40.563]],["parent/1659",[588,5.457]],["name/1660",[162,45.974]],["parent/1660",[588,5.457]],["name/1661",[589,60.638]],["parent/1661",[]],["name/1662",[590,66.516]],["parent/1662",[589,5.643]],["name/1663",[388,55.53]],["parent/1663",[589,5.643]],["name/1664",[114,26.298]],["parent/1664",[589,5.643]],["name/1665",[151,40.866]],["parent/1665",[591,5.643]],["name/1666",[592,66.516]],["parent/1666",[591,5.643]],["name/1667",[325,56.961]],["parent/1667",[591,5.643]],["name/1668",[114,26.298]],["parent/1668",[591,5.643]],["name/1669",[326,55.53]],["parent/1669",[593,6.666]],["name/1670",[594,51.255]],["parent/1670",[]],["name/1671",[104,32.982]],["parent/1671",[594,4.77]],["name/1672",[109,31.921]],["parent/1672",[594,4.77]],["name/1673",[144,44.109]],["parent/1673",[594,4.77]],["name/1674",[352,56.961]],["parent/1674",[594,4.77]],["name/1675",[214,56.961]],["parent/1675",[594,4.77]],["name/1676",[590,66.516]],["parent/1676",[594,4.77]],["name/1677",[388,55.53]],["parent/1677",[594,4.77]],["name/1678",[114,26.298]],["parent/1678",[594,4.77]],["name/1679",[592,66.516]],["parent/1679",[595,5.643]],["name/1680",[325,56.961]],["parent/1680",[595,5.643]],["name/1681",[114,26.298]],["parent/1681",[595,5.643]],["name/1682",[326,55.53]],["parent/1682",[596,6.666]],["name/1683",[211,49.652]],["parent/1683",[594,4.77]],["name/1684",[114,26.298]],["parent/1684",[594,4.77]],["name/1685",[446,53.166]],["parent/1685",[595,5.643]],["name/1686",[597,71.624]],["parent/1686",[]],["name/1687",[598,45.474]],["parent/1687",[]],["name/1688",[599,71.624]],["parent/1688",[598,4.232]],["name/1689",[600,71.624]],["parent/1689",[598,4.232]],["name/1690",[178,63.151]],["parent/1690",[598,4.232]],["name/1691",[107,42.537]],["parent/1691",[598,4.232]],["name/1692",[601,71.624]],["parent/1692",[598,4.232]],["name/1693",[602,71.624]],["parent/1693",[598,4.232]],["name/1694",[252,53.166]],["parent/1694",[598,4.232]],["name/1695",[536,53.166]],["parent/1695",[598,4.232]],["name/1696",[175,43.692]],["parent/1696",[598,4.232]],["name/1697",[202,56.961]],["parent/1697",[598,4.232]],["name/1698",[284,63.151]],["parent/1698",[598,4.232]],["name/1699",[282,63.151]],["parent/1699",[598,4.232]],["name/1700",[603,71.624]],["parent/1700",[598,4.232]],["name/1701",[604,60.638]],["parent/1701",[598,4.232]],["name/1702",[114,26.298]],["parent/1702",[598,4.232]],["name/1703",[104,32.982]],["parent/1703",[605,4.77]],["name/1704",[107,42.537]],["parent/1704",[605,4.77]],["name/1705",[606,66.516]],["parent/1705",[605,4.77]],["name/1706",[105,42.18]],["parent/1706",[605,4.77]],["name/1707",[108,34.988]],["parent/1707",[605,4.77]],["name/1708",[536,53.166]],["parent/1708",[605,4.77]],["name/1709",[556,54.278]],["parent/1709",[598,4.232]],["name/1710",[114,26.298]],["parent/1710",[598,4.232]],["name/1711",[104,32.982]],["parent/1711",[605,4.77]],["name/1712",[107,42.537]],["parent/1712",[605,4.77]],["name/1713",[606,66.516]],["parent/1713",[605,4.77]],["name/1714",[556,54.278]],["parent/1714",[605,4.77]],["name/1715",[536,53.166]],["parent/1715",[605,4.77]],["name/1716",[109,31.921]],["parent/1716",[598,4.232]],["name/1717",[108,34.988]],["parent/1717",[598,4.232]],["name/1718",[607,54.278]],["parent/1718",[]],["name/1719",[107,42.537]],["parent/1719",[607,5.051]],["name/1720",[352,56.961]],["parent/1720",[607,5.051]],["name/1721",[187,41.501]],["parent/1721",[607,5.051]],["name/1722",[175,43.692]],["parent/1722",[607,5.051]],["name/1723",[202,56.961]],["parent/1723",[607,5.051]],["name/1724",[185,52.165]],["parent/1724",[607,5.051]],["name/1725",[108,34.988]],["parent/1725",[607,5.051]],["name/1726",[608,45.974]],["parent/1726",[]],["name/1727",[104,32.982]],["parent/1727",[608,4.279]],["name/1728",[107,42.537]],["parent/1728",[608,4.279]],["name/1729",[144,44.109]],["parent/1729",[608,4.279]],["name/1730",[395,48.937]],["parent/1730",[608,4.279]],["name/1731",[352,56.961]],["parent/1731",[608,4.279]],["name/1732",[175,43.692]],["parent/1732",[608,4.279]],["name/1733",[284,63.151]],["parent/1733",[608,4.279]],["name/1734",[202,56.961]],["parent/1734",[608,4.279]],["name/1735",[285,66.516]],["parent/1735",[608,4.279]],["name/1736",[203,63.151]],["parent/1736",[608,4.279]],["name/1737",[282,63.151]],["parent/1737",[608,4.279]],["name/1738",[286,66.516]],["parent/1738",[608,4.279]],["name/1739",[137,60.638]],["parent/1739",[608,4.279]],["name/1740",[283,66.516]],["parent/1740",[608,4.279]],["name/1741",[185,52.165]],["parent/1741",[608,4.279]],["name/1742",[108,34.988]],["parent/1742",[608,4.279]],["name/1743",[187,41.501]],["parent/1743",[608,4.279]],["name/1744",[109,31.921]],["parent/1744",[608,4.279]],["name/1745",[609,71.624]],["parent/1745",[]],["name/1746",[610,52.165]],["parent/1746",[]],["name/1747",[104,32.982]],["parent/1747",[610,4.855]],["name/1748",[107,42.537]],["parent/1748",[610,4.855]],["name/1749",[352,56.961]],["parent/1749",[610,4.855]],["name/1750",[185,52.165]],["parent/1750",[610,4.855]],["name/1751",[175,43.692]],["parent/1751",[610,4.855]],["name/1752",[202,56.961]],["parent/1752",[610,4.855]],["name/1753",[108,34.988]],["parent/1753",[610,4.855]],["name/1754",[187,41.501]],["parent/1754",[610,4.855]],["name/1755",[114,26.298]],["parent/1755",[610,4.855]],["name/1756",[104,32.982]],["parent/1756",[611,6.666]],["name/1757",[612,71.624]],["parent/1757",[]],["name/1758",[613,63.151]],["parent/1758",[]],["name/1759",[149,45.974]],["parent/1759",[613,5.877]],["name/1760",[150,47.645]],["parent/1760",[613,5.877]],["name/1761",[614,58.631]],["parent/1761",[]],["name/1762",[109,31.921]],["parent/1762",[614,5.457]],["name/1763",[154,39.706]],["parent/1763",[614,5.457]],["name/1764",[155,40.563]],["parent/1764",[614,5.457]],["name/1765",[47,53.166]],["parent/1765",[614,5.457]],["name/1766",[615,54.278]],["parent/1766",[]],["name/1767",[104,32.982]],["parent/1767",[615,5.051]],["name/1768",[105,42.18]],["parent/1768",[615,5.051]],["name/1769",[112,52.165]],["parent/1769",[615,5.051]],["name/1770",[295,52.165]],["parent/1770",[615,5.051]],["name/1771",[144,44.109]],["parent/1771",[615,5.051]],["name/1772",[395,48.937]],["parent/1772",[615,5.051]],["name/1773",[109,31.921]],["parent/1773",[615,5.051]],["name/1774",[616,58.631]],["parent/1774",[]],["name/1775",[617,71.624]],["parent/1775",[616,5.457]],["name/1776",[114,26.298]],["parent/1776",[616,5.457]],["name/1777",[109,31.921]],["parent/1777",[618,5.051]],["name/1778",[154,39.706]],["parent/1778",[618,5.051]],["name/1779",[155,40.563]],["parent/1779",[618,5.051]],["name/1780",[162,45.974]],["parent/1780",[618,5.051]],["name/1781",[24,60.638]],["parent/1781",[616,5.457]],["name/1782",[114,26.298]],["parent/1782",[616,5.457]],["name/1783",[109,31.921]],["parent/1783",[618,5.051]],["name/1784",[154,39.706]],["parent/1784",[618,5.051]],["name/1785",[155,40.563]],["parent/1785",[618,5.051]],["name/1786",[162,45.974]],["parent/1786",[618,5.051]],["name/1787",[619,54.278]],["parent/1787",[]],["name/1788",[225,60.638]],["parent/1788",[619,5.051]],["name/1789",[187,41.501]],["parent/1789",[619,5.051]],["name/1790",[108,34.988]],["parent/1790",[619,5.051]],["name/1791",[226,66.516]],["parent/1791",[619,5.051]],["name/1792",[114,26.298]],["parent/1792",[619,5.051]],["name/1793",[89,47.057]],["parent/1793",[620,5.877]],["name/1794",[451,63.151]],["parent/1794",[620,5.877]],["name/1795",[134,48.937]],["parent/1795",[619,5.051]],["name/1796",[114,26.298]],["parent/1796",[619,5.051]],["name/1797",[89,47.057]],["parent/1797",[620,5.877]],["name/1798",[621,63.151]],["parent/1798",[]],["name/1799",[109,31.921]],["parent/1799",[621,5.877]],["name/1800",[177,41.835]],["parent/1800",[621,5.877]],["name/1801",[622,66.516]],["parent/1801",[]],["name/1802",[623,71.624]],["parent/1802",[622,6.19]],["name/1803",[624,71.624]],["parent/1803",[]],["name/1804",[625,58.631]],["parent/1804",[]],["name/1805",[109,31.921]],["parent/1805",[625,5.457]],["name/1806",[104,32.982]],["parent/1806",[625,5.457]],["name/1807",[188,51.255]],["parent/1807",[625,5.457]],["name/1808",[130,51.255]],["parent/1808",[625,5.457]],["name/1809",[626,71.624]],["parent/1809",[]],["name/1810",[627,56.961]],["parent/1810",[]],["name/1811",[569,54.278]],["parent/1811",[627,5.301]],["name/1812",[567,60.638]],["parent/1812",[627,5.301]],["name/1813",[628,63.151]],["parent/1813",[627,5.301]],["name/1814",[556,54.278]],["parent/1814",[627,5.301]],["name/1815",[604,60.638]],["parent/1815",[627,5.301]],["name/1816",[629,47.645]],["parent/1816",[]],["name/1817",[177,41.835]],["parent/1817",[629,4.434]],["name/1818",[569,54.278]],["parent/1818",[629,4.434]],["name/1819",[570,63.151]],["parent/1819",[629,4.434]],["name/1820",[571,63.151]],["parent/1820",[629,4.434]],["name/1821",[572,63.151]],["parent/1821",[629,4.434]],["name/1822",[573,63.151]],["parent/1822",[629,4.434]],["name/1823",[574,63.151]],["parent/1823",[629,4.434]],["name/1824",[630,66.516]],["parent/1824",[629,4.434]],["name/1825",[631,66.516]],["parent/1825",[629,4.434]],["name/1826",[567,60.638]],["parent/1826",[629,4.434]],["name/1827",[568,63.151]],["parent/1827",[629,4.434]],["name/1828",[628,63.151]],["parent/1828",[629,4.434]],["name/1829",[556,54.278]],["parent/1829",[629,4.434]],["name/1830",[604,60.638]],["parent/1830",[629,4.434]],["name/1831",[632,71.624]],["parent/1831",[629,4.434]],["name/1832",[633,66.516]],["parent/1832",[]],["name/1833",[278,63.151]],["parent/1833",[633,6.19]],["name/1834",[634,63.151]],["parent/1834",[]],["name/1835",[142,44.998]],["parent/1835",[634,5.877]],["name/1836",[635,71.624]],["parent/1836",[634,5.877]],["name/1837",[636,58.631]],["parent/1837",[]],["name/1838",[199,53.166]],["parent/1838",[636,5.457]],["name/1839",[130,51.255]],["parent/1839",[636,5.457]],["name/1840",[240,54.278]],["parent/1840",[636,5.457]],["name/1841",[289,60.638]],["parent/1841",[636,5.457]],["name/1842",[637,53.166]],["parent/1842",[]],["name/1843",[352,56.961]],["parent/1843",[637,4.948]],["name/1844",[104,32.982]],["parent/1844",[637,4.948]],["name/1845",[109,31.921]],["parent/1845",[637,4.948]],["name/1846",[151,40.866]],["parent/1846",[637,4.948]],["name/1847",[200,60.638]],["parent/1847",[637,4.948]],["name/1848",[280,66.516]],["parent/1848",[637,4.948]],["name/1849",[211,49.652]],["parent/1849",[637,4.948]],["name/1850",[108,34.988]],["parent/1850",[637,4.948]],["name/1851",[638,66.516]],["parent/1851",[]],["name/1852",[278,63.151]],["parent/1852",[638,6.19]],["name/1853",[639,71.624]],["parent/1853",[]],["name/1854",[640,71.624]],["parent/1854",[]],["name/1855",[641,58.631]],["parent/1855",[]],["name/1856",[90,60.638]],["parent/1856",[641,5.457]],["name/1857",[177,41.835]],["parent/1857",[641,5.457]],["name/1858",[642,66.516]],["parent/1858",[641,5.457]],["name/1859",[643,66.516]],["parent/1859",[641,5.457]],["name/1860",[644,58.631]],["parent/1860",[]],["name/1861",[90,60.638]],["parent/1861",[644,5.457]],["name/1862",[177,41.835]],["parent/1862",[644,5.457]],["name/1863",[642,66.516]],["parent/1863",[644,5.457]],["name/1864",[643,66.516]],["parent/1864",[644,5.457]],["name/1865",[645,66.516]],["parent/1865",[]],["name/1866",[90,60.638]],["parent/1866",[645,6.19]],["name/1867",[646,71.624]],["parent/1867",[]],["name/1868",[647,54.278]],["parent/1868",[]],["name/1869",[109,31.921]],["parent/1869",[647,5.051]],["name/1870",[104,32.982]],["parent/1870",[647,5.051]],["name/1871",[107,42.537]],["parent/1871",[647,5.051]],["name/1872",[648,71.624]],["parent/1872",[647,5.051]],["name/1873",[536,53.166]],["parent/1873",[647,5.051]],["name/1874",[649,71.624]],["parent/1874",[647,5.051]],["name/1875",[569,54.278]],["parent/1875",[647,5.051]],["name/1876",[650,60.638]],["parent/1876",[]],["name/1877",[109,31.921]],["parent/1877",[650,5.643]],["name/1878",[154,39.706]],["parent/1878",[650,5.643]],["name/1879",[162,45.974]],["parent/1879",[650,5.643]],["name/1880",[651,71.624]],["parent/1880",[]],["name/1881",[652,58.631]],["parent/1881",[]],["name/1882",[175,43.692]],["parent/1882",[652,5.457]],["name/1883",[653,71.624]],["parent/1883",[652,5.457]],["name/1884",[654,71.624]],["parent/1884",[652,5.457]],["name/1885",[655,71.624]],["parent/1885",[652,5.457]],["name/1886",[656,71.624]],["parent/1886",[]],["name/1887",[657,71.624]],["parent/1887",[]],["name/1888",[658,71.624]],["parent/1888",[]],["name/1889",[659,71.624]],["parent/1889",[]],["name/1890",[660,71.624]],["parent/1890",[]],["name/1891",[661,54.278]],["parent/1891",[]],["name/1892",[177,41.835]],["parent/1892",[661,5.051]],["name/1893",[567,60.638]],["parent/1893",[661,5.051]],["name/1894",[568,63.151]],["parent/1894",[661,5.051]],["name/1895",[569,54.278]],["parent/1895",[661,5.051]],["name/1896",[628,63.151]],["parent/1896",[661,5.051]],["name/1897",[604,60.638]],["parent/1897",[661,5.051]],["name/1898",[556,54.278]],["parent/1898",[661,5.051]],["name/1899",[662,58.631]],["parent/1899",[]],["name/1900",[177,41.835]],["parent/1900",[662,5.457]],["name/1901",[570,63.151]],["parent/1901",[662,5.457]],["name/1902",[571,63.151]],["parent/1902",[662,5.457]],["name/1903",[569,54.278]],["parent/1903",[662,5.457]],["name/1904",[663,56.961]],["parent/1904",[]],["name/1905",[177,41.835]],["parent/1905",[663,5.301]],["name/1906",[572,63.151]],["parent/1906",[663,5.301]],["name/1907",[573,63.151]],["parent/1907",[663,5.301]],["name/1908",[574,63.151]],["parent/1908",[663,5.301]],["name/1909",[569,54.278]],["parent/1909",[663,5.301]],["name/1910",[664,58.631]],["parent/1910",[]],["name/1911",[177,41.835]],["parent/1911",[664,5.457]],["name/1912",[630,66.516]],["parent/1912",[664,5.457]],["name/1913",[631,66.516]],["parent/1913",[664,5.457]],["name/1914",[569,54.278]],["parent/1914",[664,5.457]],["name/1915",[665,71.624]],["parent/1915",[]],["name/1916",[666,53.166]],["parent/1916",[]],["name/1917",[667,66.516]],["parent/1917",[666,4.948]],["name/1918",[668,71.624]],["parent/1918",[666,4.948]],["name/1919",[669,71.624]],["parent/1919",[666,4.948]],["name/1920",[670,71.624]],["parent/1920",[666,4.948]],["name/1921",[214,56.961]],["parent/1921",[666,4.948]],["name/1922",[671,71.624]],["parent/1922",[666,4.948]],["name/1923",[672,66.516]],["parent/1923",[666,4.948]],["name/1924",[72,63.151]],["parent/1924",[666,4.948]],["name/1925",[673,71.624]],["parent/1925",[]],["name/1926",[674,54.278]],["parent/1926",[]],["name/1927",[667,66.516]],["parent/1927",[674,5.051]],["name/1928",[675,71.624]],["parent/1928",[674,5.051]],["name/1929",[676,71.624]],["parent/1929",[674,5.051]],["name/1930",[677,71.624]],["parent/1930",[674,5.051]],["name/1931",[678,71.624]],["parent/1931",[674,5.051]],["name/1932",[672,66.516]],["parent/1932",[674,5.051]],["name/1933",[72,63.151]],["parent/1933",[674,5.051]]],"invertedIndex":[["__type",{"_index":114,"name":{"209":{},"217":{},"219":{},"227":{},"231":{},"235":{},"242":{},"258":{},"312":{},"326":{},"346":{},"355":{},"358":{},"368":{},"411":{},"441":{},"444":{},"456":{},"473":{},"480":{},"483":{},"520":{},"536":{},"552":{},"565":{},"573":{},"580":{},"583":{},"596":{},"600":{},"603":{},"646":{},"654":{},"698":{},"706":{},"727":{},"735":{},"755":{},"762":{},"785":{},"799":{},"808":{},"815":{},"832":{},"837":{},"866":{},"869":{},"872":{},"876":{},"894":{},"902":{},"938":{},"940":{},"948":{},"950":{},"958":{},"960":{},"972":{},"974":{},"984":{},"988":{},"1004":{},"1007":{},"1010":{},"1017":{},"1020":{},"1027":{},"1031":{},"1042":{},"1048":{},"1053":{},"1057":{},"1077":{},"1101":{},"1106":{},"1109":{},"1128":{},"1136":{},"1142":{},"1147":{},"1152":{},"1161":{},"1163":{},"1167":{},"1176":{},"1183":{},"1194":{},"1204":{},"1208":{},"1218":{},"1222":{},"1227":{},"1232":{},"1240":{},"1252":{},"1254":{},"1258":{},"1268":{},"1277":{},"1294":{},"1301":{},"1315":{},"1327":{},"1331":{},"1336":{},"1356":{},"1359":{},"1373":{},"1376":{},"1379":{},"1384":{},"1387":{},"1393":{},"1396":{},"1445":{},"1469":{},"1471":{},"1487":{},"1489":{},"1507":{},"1523":{},"1537":{},"1540":{},"1609":{},"1620":{},"1642":{},"1651":{},"1664":{},"1668":{},"1678":{},"1681":{},"1684":{},"1702":{},"1710":{},"1755":{},"1776":{},"1782":{},"1792":{},"1796":{}},"parent":{}}],["action",{"_index":341,"name":{"734":{},"754":{}},"parent":{}}],["active",{"_index":305,"name":{"661":{},"732":{},"739":{},"822":{},"909":{},"1062":{},"1158":{},"1248":{},"1291":{},"1311":{},"1353":{}},"parent":{}}],["activities",{"_index":437,"name":{"1091":{}},"parent":{}}],["activity_duration_after_publishing",{"_index":299,"name":{"652":{},"813":{},"900":{}},"parent":{}}],["addcertainvoucher",{"_index":9,"name":{"11":{}},"parent":{}}],["additional_info",{"_index":428,"name":{"1063":{},"1159":{},"1249":{},"1312":{},"1350":{}},"parent":{}}],["addpoints",{"_index":45,"name":{"71":{}},"parent":{}}],["address",{"_index":113,"name":{"208":{},"257":{}},"parent":{}}],["addvoucher",{"_index":8,"name":{"10":{}},"parent":{}}],["after",{"_index":247,"name":{"458":{},"1029":{},"1033":{},"1328":{},"1332":{}},"parent":{}}],["amount",{"_index":175,"name":{"304":{},"306":{},"321":{},"347":{},"359":{},"412":{},"442":{},"481":{},"514":{},"576":{},"597":{},"604":{},"765":{},"841":{},"973":{},"1112":{},"1121":{},"1219":{},"1316":{},"1696":{},"1722":{},"1732":{},"1751":{},"1882":{}},"parent":{}}],["amount_limit",{"_index":574,"name":{"1597":{},"1823":{},"1908":{}},"parent":{}}],["amount_off",{"_index":570,"name":{"1593":{},"1819":{},"1901":{}},"parent":{}}],["amount_off_formula",{"_index":571,"name":{"1594":{},"1820":{},"1902":{}},"parent":{}}],["amount_to_go",{"_index":133,"name":{"229":{}},"parent":{}}],["apiurl",{"_index":667,"name":{"1917":{},"1927":{}},"parent":{}}],["apiversion",{"_index":670,"name":{"1920":{}},"parent":{}}],["applicable_to",{"_index":200,"name":{"344":{},"587":{},"1404":{},"1847":{}},"parent":{}}],["applicableto",{"_index":647,"name":{"1868":{}},"parent":{"1869":{},"1870":{},"1871":{},"1872":{},"1873":{},"1874":{},"1875":{}}}],["applicabletoeffect",{"_index":646,"name":{"1867":{}},"parent":{}}],["applicabletoresultlist",{"_index":650,"name":{"1876":{}},"parent":{"1877":{},"1878":{},"1879":{}}}],["applicationid",{"_index":668,"name":{"1918":{}},"parent":{}}],["applied_discount_amount",{"_index":282,"name":{"608":{},"1699":{},"1737":{}},"parent":{}}],["assets",{"_index":447,"name":{"1160":{},"1251":{}},"parent":{}}],["assignment_id",{"_index":260,"name":{"521":{},"1279":{},"1496":{}},"parent":{}}],["async_action_id",{"_index":330,"name":{"707":{},"1374":{},"1377":{},"1380":{},"1538":{},"1541":{}},"parent":{}}],["attributes",{"_index":512,"name":{"1444":{},"1502":{},"1517":{},"1527":{},"1555":{},"1565":{}},"parent":{}}],["audiencerulesonly",{"_index":312,"name":{"672":{},"845":{},"1282":{}},"parent":{}}],["auto_join",{"_index":296,"name":{"641":{},"805":{},"889":{}},"parent":{}}],["automation_id",{"_index":413,"name":{"993":{}},"parent":{}}],["average_amount",{"_index":139,"name":{"238":{}},"parent":{}}],["balance",{"_index":0,"name":{"0":{},"182":{},"308":{},"360":{},"598":{},"874":{},"1044":{},"1097":{},"1138":{},"1206":{},"1220":{}},"parent":{"1":{},"2":{}}}],["balancecreateparams",{"_index":174,"name":{"303":{}},"parent":{"304":{}}}],["balancecreateresponse",{"_index":176,"name":{"305":{}},"parent":{"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{}}}],["balancecreateresponse.__type",{"_index":179,"name":{},"parent":{"313":{},"314":{}}}],["banner",{"_index":336,"name":{"717":{},"725":{},"753":{},"783":{},"989":{},"1005":{},"1018":{}},"parent":{}}],["barcode",{"_index":450,"name":{"1166":{},"1257":{}},"parent":{}}],["basepath",{"_index":67,"name":{"120":{}},"parent":{}}],["baseurl",{"_index":66,"name":{"119":{}},"parent":{}}],["before",{"_index":245,"name":{"457":{},"1028":{},"1032":{},"1329":{},"1333":{}},"parent":{}}],["bulkupdate",{"_index":51,"name":{"86":{},"192":{}},"parent":{}}],["bulkupdatemetadata",{"_index":50,"name":{"85":{},"191":{}},"parent":{}}],["campaign",{"_index":218,"name":{"390":{},"453":{},"475":{},"589":{},"726":{},"784":{},"1037":{},"1131":{},"1213":{},"1324":{},"1410":{},"1485":{},"1602":{},"1619":{}},"parent":{}}],["campaign_id",{"_index":160,"name":{"286":{},"353":{},"478":{},"590":{},"1038":{},"1132":{}},"parent":{}}],["campaign_type",{"_index":159,"name":{"285":{},"638":{},"696":{},"793":{},"828":{},"886":{}},"parent":{}}],["campaignresponse",{"_index":294,"name":{"635":{}},"parent":{"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"651":{},"652":{},"653":{},"654":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{},"667":{}}}],["campaignresponse.__type",{"_index":298,"name":{},"parent":{"647":{},"648":{},"649":{},"650":{},"655":{},"656":{}}}],["campaigns",{"_index":3,"name":{"3":{},"245":{},"704":{},"858":{}},"parent":{"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{}}}],["campaignsaddcertainvoucherparams",{"_index":320,"name":{"689":{}},"parent":{}}],["campaignsaddcertainvoucherresponse",{"_index":322,"name":{"691":{}},"parent":{}}],["campaignsaddvoucherbody",{"_index":318,"name":{"686":{}},"parent":{}}],["campaignsaddvoucherparams",{"_index":319,"name":{"687":{}},"parent":{"688":{}}}],["campaignsaddvoucherresponse",{"_index":321,"name":{"690":{}},"parent":{}}],["campaignscreatecampaign",{"_index":314,"name":{"682":{}},"parent":{}}],["campaignscreatecampaignresponse",{"_index":332,"name":{"708":{}},"parent":{}}],["campaignsdeleteparams",{"_index":316,"name":{"684":{}},"parent":{"685":{}}}],["campaignsgetcampaignresponse",{"_index":334,"name":{"710":{}},"parent":{}}],["campaignsimportvouchers",{"_index":323,"name":{"692":{}},"parent":{}}],["campaignslistparams",{"_index":324,"name":{"693":{}},"parent":{"694":{},"695":{},"696":{},"697":{},"698":{}}}],["campaignslistparams.__type",{"_index":327,"name":{},"parent":{"699":{}}}],["campaignslistresponse",{"_index":328,"name":{"700":{}},"parent":{"701":{},"702":{},"703":{},"704":{}}}],["campaignsqualificationsbody",{"_index":310,"name":{"668":{}},"parent":{"669":{},"670":{}}}],["campaignsqualificationsparams",{"_index":311,"name":{"671":{}},"parent":{"672":{},"673":{},"674":{}}}],["campaignsqualificationsresponse",{"_index":313,"name":{"675":{}},"parent":{"676":{},"677":{},"678":{},"679":{},"680":{},"681":{}}}],["campaignsupdatecampaign",{"_index":315,"name":{"683":{}},"parent":{}}],["campaignsupdatecampaignresponse",{"_index":333,"name":{"709":{}},"parent":{}}],["campaignsvouchersimportresponse",{"_index":329,"name":{"705":{}},"parent":{"706":{}}}],["campaignsvouchersimportresponse.__type",{"_index":331,"name":{},"parent":{"707":{}}}],["category",{"_index":295,"name":{"640":{},"804":{},"888":{},"1039":{},"1133":{},"1214":{},"1308":{},"1323":{},"1347":{},"1770":{}},"parent":{}}],["cause",{"_index":98,"name":{"178":{}},"parent":{}}],["channel",{"_index":214,"name":{"383":{},"1075":{},"1624":{},"1633":{},"1675":{},"1921":{}},"parent":{}}],["charset",{"_index":375,"name":{"878":{},"1196":{},"1296":{},"1361":{}},"parent":{}}],["city",{"_index":115,"name":{"210":{},"259":{},"270":{}},"parent":{}}],["clientapplicationid",{"_index":675,"name":{"1928":{}},"parent":{}}],["clientsecretkey",{"_index":676,"name":{"1929":{}},"parent":{}}],["clientside",{"_index":12,"name":{"14":{}},"parent":{"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{}}}],["clientsideconsentslistresponse",{"_index":232,"name":{"414":{}},"parent":{}}],["clientsidecustomerscreateparams",{"_index":181,"name":{"316":{}},"parent":{}}],["clientsidecustomerscreateresponse",{"_index":182,"name":{"317":{}},"parent":{}}],["clientsidecustomersupdateconsentsbody",{"_index":180,"name":{"315":{}},"parent":{}}],["clientsidelistvouchersparams",{"_index":194,"name":{"333":{}},"parent":{}}],["clientsidelistvouchersresponse",{"_index":196,"name":{"335":{}},"parent":{"336":{},"337":{},"338":{},"339":{}}}],["clientsidepublishcampaign",{"_index":219,"name":{"391":{}},"parent":{"392":{},"393":{}}}],["clientsidepublishpayload",{"_index":213,"name":{"381":{}},"parent":{"382":{},"383":{},"384":{},"385":{},"386":{}}}],["clientsidepublishpreparedpayload",{"_index":215,"name":{"387":{}},"parent":{}}],["clientsidepublishqueryparams",{"_index":216,"name":{"388":{}},"parent":{"389":{},"390":{}}}],["clientsidepublishresponse",{"_index":221,"name":{"394":{}},"parent":{}}],["clientsideredeemorder",{"_index":228,"name":{"408":{}},"parent":{}}],["clientsideredeempayload",{"_index":205,"name":{"362":{}},"parent":{"363":{},"364":{},"365":{},"366":{},"367":{},"368":{},"370":{}}}],["clientsideredeempayload.__type",{"_index":206,"name":{},"parent":{"369":{}}}],["clientsideredeemresponse",{"_index":208,"name":{"371":{}},"parent":{"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{}}}],["clientsideredeemwidgetpayload",{"_index":229,"name":{"409":{}},"parent":{"410":{},"411":{}}}],["clientsideredeemwidgetpayload.__type",{"_index":230,"name":{},"parent":{"412":{}}}],["clientsideredemptionsredeemstackableparams",{"_index":235,"name":{"417":{}},"parent":{}}],["clientsideredemptionsredeemstackableresponse",{"_index":236,"name":{"418":{}},"parent":{}}],["clientsidetrackcustomer",{"_index":231,"name":{"413":{}},"parent":{}}],["clientsidetrackloyalty",{"_index":222,"name":{"395":{}},"parent":{"396":{}}}],["clientsidetrackpayload",{"_index":224,"name":{"399":{}},"parent":{"400":{},"401":{},"402":{},"403":{},"404":{}}}],["clientsidetrackreferral",{"_index":223,"name":{"397":{}},"parent":{"398":{}}}],["clientsidetrackresponse",{"_index":227,"name":{"405":{}},"parent":{"406":{},"407":{}}}],["clientsidevalidateparams",{"_index":183,"name":{"318":{}},"parent":{"319":{},"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["clientsidevalidateparams.__type",{"_index":189,"name":{},"parent":{"327":{}}}],["clientsidevalidateresponse",{"_index":197,"name":{"340":{}},"parent":{"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"352":{},"353":{},"354":{},"355":{},"357":{},"358":{},"361":{}}}],["clientsidevalidateresponse.__type",{"_index":201,"name":{},"parent":{"347":{},"348":{},"349":{},"350":{},"351":{},"356":{},"359":{},"360":{}}}],["clientsidevalidationsvalidatestackableparams",{"_index":233,"name":{"415":{}},"parent":{}}],["clientsidevalidationvalidatestackableresponse",{"_index":234,"name":{"416":{}},"parent":{}}],["clientsidevoucherlisting",{"_index":195,"name":{"334":{}},"parent":{}}],["code",{"_index":89,"name":{"169":{},"319":{},"341":{},"396":{},"398":{},"474":{},"592":{},"1036":{},"1130":{},"1189":{},"1212":{},"1292":{},"1307":{},"1346":{},"1366":{},"1793":{},"1797":{}},"parent":{}}],["code_config",{"_index":373,"name":{"875":{},"1193":{},"1293":{},"1358":{}},"parent":{}}],["codes",{"_index":483,"name":{"1370":{}},"parent":{}}],["consent",{"_index":615,"name":{"1766":{}},"parent":{"1767":{},"1768":{},"1769":{},"1770":{},"1771":{},"1772":{},"1773":{}}}],["consents",{"_index":24,"name":{"27":{},"1781":{}},"parent":{"28":{},"29":{}}}],["consentslistresponse",{"_index":616,"name":{"1774":{}},"parent":{"1775":{},"1776":{},"1781":{},"1782":{}}}],["consentslistresponse.__type",{"_index":618,"name":{},"parent":{"1777":{},"1778":{},"1779":{},"1780":{},"1783":{},"1784":{},"1785":{},"1786":{}}}],["constructor",{"_index":1,"name":{"1":{},"4":{},"15":{},"28":{},"31":{},"41":{},"45":{},"48":{},"53":{},"74":{},"81":{},"95":{},"100":{},"109":{},"118":{},"135":{},"146":{},"152":{},"163":{},"168":{},"180":{}},"parent":{}}],["count",{"_index":220,"name":{"393":{},"1054":{},"1149":{},"1234":{},"1622":{}},"parent":{}}],["country",{"_index":120,"name":{"214":{},"263":{}},"parent":{}}],["create",{"_index":2,"name":{"2":{},"6":{},"32":{},"46":{},"49":{},"55":{},"75":{},"82":{},"97":{},"104":{},"137":{},"147":{},"153":{},"183":{}},"parent":{}}],["createassignment",{"_index":81,"name":{"142":{},"157":{}},"parent":{}}],["createcustomer",{"_index":19,"name":{"22":{}},"parent":{}}],["created_at",{"_index":144,"name":{"247":{},"455":{},"659":{},"681":{},"820":{},"907":{},"952":{},"979":{},"1026":{},"1173":{},"1265":{},"1326":{},"1398":{},"1417":{},"1448":{},"1473":{},"1518":{},"1569":{},"1629":{},"1648":{},"1673":{},"1729":{},"1771":{}},"parent":{}}],["createearningrule",{"_index":38,"name":{"64":{}},"parent":{}}],["createmember",{"_index":42,"name":{"68":{}},"parent":{}}],["createrewardassignments",{"_index":34,"name":{"60":{}},"parent":{}}],["createsku",{"_index":52,"name":{"89":{}},"parent":{}}],["credits",{"_index":278,"name":{"581":{},"1833":{},"1852":{}},"parent":{}}],["currency",{"_index":557,"name":{"1559":{},"1568":{}},"parent":{}}],["custom_event",{"_index":417,"name":{"1006":{}},"parent":{}}],["customer",{"_index":187,"name":{"324":{},"364":{},"384":{},"402":{},"421":{},"437":{},"454":{},"470":{},"501":{},"506":{},"518":{},"529":{},"545":{},"560":{},"564":{},"625":{},"669":{},"760":{},"835":{},"1076":{},"1123":{},"1274":{},"1325":{},"1603":{},"1625":{},"1636":{},"1721":{},"1743":{},"1754":{},"1789":{}},"parent":{}}],["customer_id",{"_index":210,"name":{"375":{},"431":{},"463":{},"511":{},"540":{},"555":{},"775":{},"1120":{},"1630":{}},"parent":{}}],["customeractivitieslistqueryparams",{"_index":157,"name":{"280":{}},"parent":{"281":{},"282":{},"283":{},"284":{},"285":{},"286":{}}}],["customeractivitieslistresponse",{"_index":161,"name":{"287":{}},"parent":{"288":{},"289":{},"290":{},"291":{}}}],["customerobject",{"_index":110,"name":{"201":{}},"parent":{"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"216":{},"217":{},"241":{},"242":{},"246":{},"247":{},"248":{}}}],["customerobject.__type",{"_index":116,"name":{},"parent":{"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"218":{},"219":{},"234":{},"235":{},"243":{},"244":{},"245":{}}}],["customerobject.__type.__type",{"_index":124,"name":{},"parent":{"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"230":{},"231":{},"236":{},"237":{},"238":{},"239":{},"240":{}}}],["customerobject.__type.__type.__type",{"_index":132,"name":{},"parent":{"228":{},"229":{},"232":{},"233":{}}}],["customerrequest",{"_index":146,"name":{"250":{}},"parent":{"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"265":{}}}],["customerrequest.__type",{"_index":147,"name":{},"parent":{"259":{},"260":{},"261":{},"262":{},"263":{},"264":{}}}],["customers",{"_index":25,"name":{"30":{},"278":{},"1644":{}},"parent":{"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{}}}],["customerscommonlistrequest",{"_index":148,"name":{"266":{}},"parent":{"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{}}}],["customerscommonlistresponse",{"_index":153,"name":{"274":{}},"parent":{"275":{},"276":{},"277":{},"278":{},"279":{}}}],["customerscreatebody",{"_index":163,"name":{"292":{}},"parent":{}}],["customerscreateresponse",{"_index":164,"name":{"293":{}},"parent":{}}],["customersgetresponse",{"_index":165,"name":{"294":{}},"parent":{}}],["customerslistparams",{"_index":166,"name":{"295":{}},"parent":{}}],["customerslistresponse",{"_index":167,"name":{"296":{}},"parent":{}}],["customersscrollparams",{"_index":168,"name":{"297":{}},"parent":{}}],["customersscrollresponse",{"_index":169,"name":{"298":{}},"parent":{}}],["customersscrollyield",{"_index":170,"name":{"299":{}},"parent":{}}],["customersupdateconsentsbody",{"_index":173,"name":{"302":{}},"parent":{}}],["customersupdateparams",{"_index":171,"name":{"300":{}},"parent":{}}],["customersupdateresponse",{"_index":172,"name":{"301":{}},"parent":{}}],["customerunconfirmed",{"_index":145,"name":{"249":{}},"parent":{}}],["customheaders",{"_index":672,"name":{"1923":{},"1932":{}},"parent":{}}],["dangerouslysetsecretkeyinbrowser",{"_index":671,"name":{"1922":{}},"parent":{}}],["data",{"_index":162,"name":{"291":{},"647":{},"679":{},"809":{},"895":{},"934":{},"998":{},"1187":{},"1272":{},"1289":{},"1427":{},"1435":{},"1456":{},"1481":{},"1510":{},"1660":{},"1780":{},"1786":{},"1879":{}},"parent":{}}],["data_ref",{"_index":155,"name":{"277":{},"290":{},"338":{},"488":{},"493":{},"650":{},"678":{},"703":{},"746":{},"801":{},"812":{},"857":{},"898":{},"933":{},"997":{},"1071":{},"1089":{},"1186":{},"1235":{},"1244":{},"1271":{},"1288":{},"1341":{},"1426":{},"1434":{},"1455":{},"1483":{},"1550":{},"1614":{},"1659":{},"1764":{},"1779":{},"1785":{}},"parent":{}}],["date",{"_index":209,"name":{"374":{},"430":{},"462":{},"510":{},"539":{},"554":{},"774":{},"1119":{}},"parent":{}}],["delete",{"_index":7,"name":{"9":{},"37":{},"51":{},"58":{},"87":{},"107":{},"133":{},"140":{},"149":{},"156":{},"186":{}},"parent":{}}],["deleteassignment",{"_index":83,"name":{"144":{},"158":{}},"parent":{}}],["deleteearningrule",{"_index":40,"name":{"66":{}},"parent":{}}],["deleterewardassignment",{"_index":36,"name":{"62":{}},"parent":{}}],["deletesku",{"_index":55,"name":{"92":{}},"parent":{}}],["description",{"_index":112,"name":{"207":{},"256":{},"570":{},"643":{},"795":{},"891":{},"922":{},"1082":{},"1447":{},"1769":{}},"parent":{}}],["details",{"_index":91,"name":{"171":{}},"parent":{}}],["disable",{"_index":101,"name":{"189":{}},"parent":{}}],["discount",{"_index":199,"name":{"343":{},"594":{},"718":{},"736":{},"756":{},"1202":{},"1216":{},"1349":{},"1838":{}},"parent":{}}],["discount_amount",{"_index":202,"name":{"348":{},"605":{},"1697":{},"1723":{},"1734":{},"1752":{}},"parent":{}}],["discount_quantity",{"_index":601,"name":{"1692":{}},"parent":{}}],["discountamount",{"_index":662,"name":{"1899":{}},"parent":{"1900":{},"1901":{},"1902":{},"1903":{}}}],["discountamountvoucherseffecttypes",{"_index":658,"name":{"1888":{}},"parent":{}}],["discountfixed",{"_index":664,"name":{"1910":{}},"parent":{"1911":{},"1912":{},"1913":{},"1914":{}}}],["discountfixedvoucherseffecttypes",{"_index":660,"name":{"1890":{}},"parent":{}}],["discountpercent",{"_index":663,"name":{"1904":{}},"parent":{"1905":{},"1906":{},"1907":{},"1908":{},"1909":{}}}],["discountpercentvoucherseffecttypes",{"_index":659,"name":{"1889":{}},"parent":{}}],["discountunit",{"_index":661,"name":{"1891":{}},"parent":{"1892":{},"1893":{},"1894":{},"1895":{},"1896":{},"1897":{},"1898":{}}}],["discountunitvoucherseffecttypes",{"_index":657,"name":{"1887":{}},"parent":{}}],["discountvoucherseffecttypes",{"_index":656,"name":{"1886":{}},"parent":{}}],["discountvoucherstypes",{"_index":651,"name":{"1880":{}},"parent":{}}],["discountvoucherstypesenum",{"_index":652,"name":{"1881":{}},"parent":{"1882":{},"1883":{},"1884":{},"1885":{}}}],["distributions",{"_index":28,"name":{"40":{}},"parent":{"41":{},"42":{},"43":{}}}],["distributionspublicationscreateparams",{"_index":579,"name":{"1616":{}},"parent":{"1617":{},"1618":{},"1619":{},"1620":{},"1623":{},"1624":{},"1625":{}}}],["distributionspublicationscreateparams.__type",{"_index":580,"name":{},"parent":{"1621":{},"1622":{}}}],["distributionspublicationscreateresponse",{"_index":581,"name":{"1626":{}},"parent":{"1627":{},"1628":{},"1629":{},"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{}}}],["distributionspublicationslistparams",{"_index":575,"name":{"1598":{}},"parent":{"1599":{},"1600":{},"1601":{},"1602":{},"1603":{},"1604":{},"1605":{},"1606":{},"1607":{},"1608":{},"1609":{}}}],["distributionspublicationslistparams.__type",{"_index":577,"name":{},"parent":{"1610":{}}}],["distributionspublicationslistresponse",{"_index":578,"name":{"1611":{}},"parent":{"1612":{},"1613":{},"1614":{},"1615":{}}}],["duration",{"_index":302,"name":{"656":{},"817":{},"904":{},"1050":{},"1144":{},"1229":{}},"parent":{}}],["effect",{"_index":569,"name":{"1592":{},"1811":{},"1818":{},"1875":{},"1895":{},"1903":{},"1909":{},"1914":{}},"parent":{}}],["email",{"_index":106,"name":{"197":{},"205":{},"254":{},"269":{},"569":{},"1080":{}},"parent":{}}],["enable",{"_index":100,"name":{"188":{}},"parent":{}}],["entries",{"_index":427,"name":{"1055":{},"1236":{}},"parent":{}}],["error",{"_index":289,"name":{"619":{},"1383":{},"1392":{},"1841":{}},"parent":{}}],["event",{"_index":225,"name":{"400":{},"986":{},"1000":{},"1788":{}},"parent":{}}],["events",{"_index":31,"name":{"44":{}},"parent":{"45":{},"46":{}}}],["eventsparams",{"_index":619,"name":{"1787":{}},"parent":{"1788":{},"1789":{},"1790":{},"1791":{},"1792":{},"1795":{},"1796":{}}}],["eventsparams.__type",{"_index":620,"name":{},"parent":{"1793":{},"1794":{},"1797":{}}}],["eventsresponse",{"_index":621,"name":{"1798":{}},"parent":{"1799":{},"1800":{}}}],["every",{"_index":404,"name":{"975":{}},"parent":{}}],["expand",{"_index":623,"name":{"1802":{}},"parent":{}}],["expiration_date",{"_index":288,"name":{"617":{},"651":{},"731":{},"797":{},"830":{},"862":{},"899":{},"920":{},"1046":{},"1140":{},"1225":{},"1310":{},"1352":{}},"parent":{}}],["exported_object",{"_index":590,"name":{"1662":{},"1676":{}},"parent":{}}],["exportresource",{"_index":589,"name":{"1661":{}},"parent":{"1662":{},"1663":{},"1664":{}}}],["exportresource.__type",{"_index":591,"name":{},"parent":{"1665":{},"1666":{},"1667":{},"1668":{}}}],["exportresource.__type.__type",{"_index":593,"name":{},"parent":{"1669":{}}}],["exports",{"_index":30,"name":{"43":{},"47":{}},"parent":{"48":{},"49":{},"50":{},"51":{}}}],["exportscreateresponse",{"_index":594,"name":{"1670":{}},"parent":{"1671":{},"1672":{},"1673":{},"1674":{},"1675":{},"1676":{},"1677":{},"1678":{},"1683":{},"1684":{}}}],["exportscreateresponse.__type",{"_index":595,"name":{},"parent":{"1679":{},"1680":{},"1681":{},"1685":{}}}],["exportscreateresponse.__type.__type",{"_index":596,"name":{},"parent":{"1682":{}}}],["exportsgetresponse",{"_index":597,"name":{"1686":{}},"parent":{}}],["exposeerrorcause",{"_index":72,"name":{"125":{},"1924":{},"1933":{}},"parent":{}}],["failure_code",{"_index":242,"name":{"447":{},"468":{}},"parent":{}}],["failure_message",{"_index":243,"name":{"448":{},"469":{}},"parent":{}}],["fields",{"_index":592,"name":{"1666":{},"1679":{}},"parent":{}}],["filter",{"_index":583,"name":{"1641":{},"1650":{}},"parent":{}}],["filters",{"_index":325,"name":{"697":{},"846":{},"1335":{},"1608":{},"1667":{},"1680":{}},"parent":{}}],["fixed",{"_index":655,"name":{"1885":{}},"parent":{}}],["fixed_amount",{"_index":630,"name":{"1824":{},"1912":{}},"parent":{}}],["fixed_amount_formula",{"_index":631,"name":{"1825":{},"1913":{}},"parent":{}}],["force",{"_index":317,"name":{"685":{},"926":{},"1319":{},"1543":{},"1575":{}},"parent":{}}],["get",{"_index":6,"name":{"8":{},"33":{},"50":{},"56":{},"76":{},"83":{},"103":{},"112":{},"130":{},"138":{},"148":{},"154":{},"184":{}},"parent":{}}],["getforvoucher",{"_index":62,"name":{"114":{}},"parent":{}}],["getlastresponseheaders",{"_index":74,"name":{"127":{}},"parent":{}}],["getmember",{"_index":43,"name":{"69":{}},"parent":{}}],["getmemberactivities",{"_index":44,"name":{"70":{}},"parent":{}}],["getsku",{"_index":53,"name":{"90":{}},"parent":{}}],["gift",{"_index":130,"name":{"226":{},"357":{},"425":{},"440":{},"479":{},"579":{},"595":{},"1217":{},"1314":{},"1808":{},"1839":{}},"parent":{}}],["giftredemptionparams",{"_index":638,"name":{"1851":{}},"parent":{"1852":{}}}],["groups",{"_index":617,"name":{"1775":{}},"parent":{}}],["has_more",{"_index":156,"name":{"279":{},"748":{},"803":{}},"parent":{}}],["headers",{"_index":68,"name":{"121":{}},"parent":{}}],["hierarchy",{"_index":337,"name":{"719":{},"737":{}},"parent":{}}],["holder",{"_index":452,"name":{"1175":{}},"parent":{}}],["holder_id",{"_index":430,"name":{"1066":{},"1172":{},"1263":{}},"parent":{}}],["id",{"_index":104,"name":{"195":{},"202":{},"251":{},"314":{},"327":{},"369":{},"372":{},"428":{},"460":{},"476":{},"508":{},"537":{},"553":{},"566":{},"574":{},"584":{},"636":{},"680":{},"715":{},"722":{},"728":{},"763":{},"772":{},"781":{},"786":{},"791":{},"838":{},"884":{},"918":{},"943":{},"956":{},"978":{},"985":{},"1011":{},"1014":{},"1035":{},"1078":{},"1103":{},"1107":{},"1110":{},"1117":{},"1129":{},"1164":{},"1168":{},"1177":{},"1211":{},"1255":{},"1259":{},"1278":{},"1390":{},"1413":{},"1440":{},"1464":{},"1497":{},"1512":{},"1525":{},"1561":{},"1581":{},"1585":{},"1627":{},"1646":{},"1671":{},"1703":{},"1711":{},"1727":{},"1747":{},"1756":{},"1767":{},"1806":{},"1844":{},"1870":{}},"parent":{}}],["image_url",{"_index":513,"name":{"1446":{},"1504":{},"1519":{},"1529":{},"1558":{}},"parent":{}}],["import",{"_index":48,"name":{"79":{},"190":{}},"parent":{}}],["importvouchers",{"_index":10,"name":{"12":{}},"parent":{}}],["inapplicable_to",{"_index":280,"name":{"588":{},"1848":{}},"parent":{}}],["initial_amount",{"_index":284,"name":{"611":{},"1698":{},"1733":{}},"parent":{}}],["initial_quantity",{"_index":602,"name":{"1693":{}},"parent":{}}],["interval",{"_index":301,"name":{"655":{},"816":{},"903":{},"1049":{},"1143":{},"1228":{}},"parent":{}}],["is_available",{"_index":343,"name":{"741":{}},"parent":{}}],["is_referral_code",{"_index":429,"name":{"1065":{},"1170":{},"1201":{},"1261":{},"1607":{}},"parent":{}}],["islastreponseheadersset",{"_index":73,"name":{"126":{}},"parent":{}}],["islastresponseheadersset",{"_index":71,"name":{"124":{}},"parent":{}}],["items",{"_index":185,"name":{"322":{},"351":{},"577":{},"610":{},"766":{},"840":{},"1113":{},"1724":{},"1741":{},"1750":{}},"parent":{}}],["items_applied_discount_amount",{"_index":286,"name":{"613":{},"1738":{}},"parent":{}}],["items_discount_amount",{"_index":285,"name":{"612":{},"1735":{}},"parent":{}}],["join_once",{"_index":217,"name":{"389":{},"642":{},"806":{},"890":{},"1617":{}},"parent":{}}],["junction",{"_index":326,"name":{"699":{},"1337":{},"1610":{},"1643":{},"1652":{},"1669":{},"1682":{}},"parent":{}}],["key",{"_index":90,"name":{"170":{},"1856":{},"1861":{},"1866":{}},"parent":{}}],["last_order_amount",{"_index":140,"name":{"239":{}},"parent":{}}],["last_order_date",{"_index":141,"name":{"240":{}},"parent":{}}],["lastresponseheaders",{"_index":70,"name":{"123":{}},"parent":{}}],["length",{"_index":374,"name":{"877":{},"1195":{},"1295":{},"1360":{}},"parent":{}}],["limit",{"_index":149,"name":{"267":{},"281":{},"450":{},"674":{},"694":{},"742":{},"852":{},"928":{},"964":{},"1024":{},"1284":{},"1321":{},"1421":{},"1429":{},"1438":{},"1477":{},"1546":{},"1599":{},"1759":{}},"parent":{}}],["line_1",{"_index":118,"name":{"212":{},"261":{}},"parent":{}}],["line_2",{"_index":119,"name":{"213":{},"262":{}},"parent":{}}],["list",{"_index":11,"name":{"13":{},"29":{},"34":{},"54":{},"78":{},"88":{},"102":{},"113":{},"136":{},"150":{},"160":{},"187":{}},"parent":{}}],["listactivities",{"_index":27,"name":{"39":{}},"parent":{}}],["listall",{"_index":60,"name":{"101":{}},"parent":{}}],["listassignments",{"_index":80,"name":{"141":{},"161":{}},"parent":{}}],["listconsents",{"_index":20,"name":{"23":{}},"parent":{}}],["listearningrules",{"_index":37,"name":{"63":{}},"parent":{}}],["listmembers",{"_index":41,"name":{"67":{}},"parent":{}}],["listrewardassignments",{"_index":33,"name":{"59":{}},"parent":{}}],["listskus",{"_index":56,"name":{"93":{}},"parent":{}}],["listvouchers",{"_index":18,"name":{"21":{}},"parent":{}}],["logic",{"_index":494,"name":{"1388":{},"1397":{}},"parent":{}}],["loyalties",{"_index":32,"name":{"52":{}},"parent":{"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{}}}],["loyaltiesaddpoints",{"_index":438,"name":{"1092":{}},"parent":{"1093":{}}}],["loyaltiesaddpointsresponse",{"_index":439,"name":{"1094":{}},"parent":{"1095":{},"1096":{},"1097":{},"1098":{},"1099":{},"1100":{},"1101":{}}}],["loyaltiesaddpointsresponse.__type",{"_index":440,"name":{},"parent":{"1102":{},"1103":{}}}],["loyaltiescreatecampaign",{"_index":370,"name":{"859":{}},"parent":{"860":{},"861":{},"862":{},"863":{},"864":{},"865":{},"866":{},"882":{}}}],["loyaltiescreatecampaign.__type",{"_index":371,"name":{},"parent":{"867":{},"868":{},"869":{},"871":{},"872":{},"875":{},"876":{}}}],["loyaltiescreatecampaign.__type.__type",{"_index":372,"name":{},"parent":{"870":{},"873":{},"874":{},"877":{},"878":{},"879":{},"880":{},"881":{}}}],["loyaltiescreatecampaignresponse",{"_index":379,"name":{"883":{}},"parent":{"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{},"893":{},"894":{},"899":{},"900":{},"901":{},"902":{},"905":{},"906":{},"907":{},"908":{},"909":{},"910":{},"911":{},"912":{},"913":{},"914":{},"915":{}}}],["loyaltiescreatecampaignresponse.__type",{"_index":380,"name":{},"parent":{"895":{},"896":{},"897":{},"898":{},"903":{},"904":{}}}],["loyaltiescreateearningrule",{"_index":415,"name":{"999":{}},"parent":{"1000":{},"1001":{},"1002":{},"1003":{},"1004":{},"1006":{},"1007":{},"1009":{},"1010":{}}}],["loyaltiescreateearningrule.__type",{"_index":416,"name":{},"parent":{"1005":{},"1008":{},"1011":{}}}],["loyaltiescreateearningruleresponse",{"_index":419,"name":{"1012":{}},"parent":{}}],["loyaltiescreatemember",{"_index":432,"name":{"1073":{}},"parent":{"1074":{},"1075":{},"1076":{},"1077":{},"1084":{}}}],["loyaltiescreatemember.__type",{"_index":433,"name":{},"parent":{"1078":{},"1079":{},"1080":{},"1081":{},"1082":{},"1083":{}}}],["loyaltiescreatememberresponse",{"_index":434,"name":{"1085":{}},"parent":{}}],["loyaltiescreaterewardassignmentresponse",{"_index":391,"name":{"942":{}},"parent":{"943":{},"944":{},"945":{},"946":{},"947":{},"948":{},"952":{},"953":{},"954":{}}}],["loyaltiescreaterewardassignmentresponse.__type",{"_index":393,"name":{},"parent":{"949":{},"950":{}}}],["loyaltiescreaterewardassignmentresponse.__type.__type",{"_index":394,"name":{},"parent":{"951":{}}}],["loyaltiescreaterewardassignments",{"_index":387,"name":{"935":{}},"parent":{"936":{},"937":{},"938":{}}}],["loyaltiescreaterewardassignments.__type",{"_index":389,"name":{},"parent":{"939":{},"940":{}}}],["loyaltiescreaterewardassignments.__type.__type",{"_index":390,"name":{},"parent":{"941":{}}}],["loyaltiesdeletecampaignparams",{"_index":384,"name":{"925":{}},"parent":{"926":{}}}],["loyaltiesearningrulesresponse",{"_index":406,"name":{"977":{}},"parent":{"978":{},"979":{},"980":{},"981":{},"982":{},"983":{},"984":{},"986":{},"987":{},"988":{},"992":{},"993":{}}}],["loyaltiesearningrulesresponse.__type",{"_index":409,"name":{},"parent":{"985":{},"989":{},"990":{},"991":{}}}],["loyaltiesgetcampaignresponse",{"_index":381,"name":{"916":{}},"parent":{}}],["loyaltiesgetmemberactivitiesresponse",{"_index":436,"name":{"1087":{}},"parent":{"1088":{},"1089":{},"1090":{},"1091":{}}}],["loyaltiesgetmemberresponse",{"_index":435,"name":{"1086":{}},"parent":{}}],["loyaltieslistearningrulesparams",{"_index":400,"name":{"963":{}},"parent":{"964":{},"965":{}}}],["loyaltieslistearningrulesresponse",{"_index":414,"name":{"994":{}},"parent":{"995":{},"996":{},"997":{},"998":{}}}],["loyaltieslistmembersparams",{"_index":423,"name":{"1023":{}},"parent":{"1024":{},"1025":{},"1026":{},"1027":{},"1030":{},"1031":{}}}],["loyaltieslistmembersparams.__type",{"_index":424,"name":{},"parent":{"1028":{},"1029":{},"1032":{},"1033":{}}}],["loyaltieslistmembersresponse",{"_index":431,"name":{"1068":{}},"parent":{"1069":{},"1070":{},"1071":{},"1072":{}}}],["loyaltieslistparams",{"_index":368,"name":{"851":{}},"parent":{"852":{},"853":{}}}],["loyaltieslistresponse",{"_index":369,"name":{"854":{}},"parent":{"855":{},"856":{},"857":{},"858":{}}}],["loyaltieslistrewardassignmentsparams",{"_index":385,"name":{"927":{}},"parent":{"928":{},"929":{}}}],["loyaltieslistrewardassignmentsresponse",{"_index":386,"name":{"930":{}},"parent":{"931":{},"932":{},"933":{},"934":{}}}],["loyaltiesredeemrewardparams",{"_index":441,"name":{"1104":{}},"parent":{"1105":{},"1106":{},"1108":{},"1109":{},"1115":{}}}],["loyaltiesredeemrewardparams.__type",{"_index":442,"name":{},"parent":{"1107":{},"1110":{},"1111":{},"1112":{},"1113":{},"1114":{}}}],["loyaltiesredeemrewardresponse",{"_index":443,"name":{"1116":{}},"parent":{"1117":{},"1118":{},"1119":{},"1120":{},"1121":{},"1122":{},"1123":{},"1124":{},"1125":{},"1126":{},"1127":{},"1128":{}}}],["loyaltiesredeemrewardresponse.__type",{"_index":444,"name":{},"parent":{"1129":{},"1130":{},"1131":{},"1132":{},"1133":{},"1134":{},"1135":{},"1136":{},"1139":{},"1140":{},"1141":{},"1142":{},"1145":{},"1146":{},"1147":{},"1151":{},"1152":{},"1158":{},"1159":{},"1160":{},"1161":{},"1170":{},"1171":{},"1172":{},"1173":{},"1174":{},"1175":{},"1176":{},"1181":{},"1182":{},"1183":{}}}],["loyaltiesredeemrewardresponse.__type.__type",{"_index":445,"name":{},"parent":{"1137":{},"1138":{},"1143":{},"1144":{},"1148":{},"1149":{},"1150":{},"1153":{},"1154":{},"1155":{},"1156":{},"1157":{},"1162":{},"1163":{},"1166":{},"1167":{},"1177":{},"1178":{},"1179":{},"1180":{},"1184":{},"1185":{},"1186":{},"1187":{}}}],["loyaltiesredeemrewardresponse.__type.__type.__type",{"_index":449,"name":{},"parent":{"1164":{},"1165":{},"1168":{},"1169":{}}}],["loyaltiesupdatecampaign",{"_index":382,"name":{"917":{}},"parent":{"918":{},"919":{},"920":{},"921":{},"922":{},"923":{}}}],["loyaltiesupdatecampaignresponse",{"_index":383,"name":{"924":{}},"parent":{}}],["loyaltiesupdateearningrule",{"_index":420,"name":{"1013":{}},"parent":{"1014":{},"1015":{},"1016":{},"1017":{},"1019":{},"1020":{}}}],["loyaltiesupdateearningrule.__type",{"_index":421,"name":{},"parent":{"1018":{},"1021":{}}}],["loyaltiesupdateearningruleresponse",{"_index":422,"name":{"1022":{}},"parent":{}}],["loyaltiesupdaterewardassignment",{"_index":396,"name":{"955":{}},"parent":{"956":{},"957":{},"958":{}}}],["loyaltiesupdaterewardassignment.__type",{"_index":397,"name":{},"parent":{"959":{},"960":{}}}],["loyaltiesupdaterewardassignment.__type.__type",{"_index":398,"name":{},"parent":{"961":{}}}],["loyaltiesupdaterewardassignmentresponse",{"_index":399,"name":{"962":{}},"parent":{}}],["loyaltiesvoucherresponse",{"_index":425,"name":{"1034":{}},"parent":{"1035":{},"1036":{},"1037":{},"1038":{},"1039":{},"1040":{},"1041":{},"1042":{},"1045":{},"1046":{},"1047":{},"1048":{},"1051":{},"1052":{},"1053":{},"1056":{},"1057":{},"1062":{},"1063":{},"1064":{},"1065":{},"1066":{},"1067":{}}}],["loyaltiesvoucherresponse.__type",{"_index":426,"name":{},"parent":{"1043":{},"1044":{},"1049":{},"1050":{},"1054":{},"1055":{},"1058":{},"1059":{},"1060":{},"1061":{}}}],["loyalty",{"_index":134,"name":{"230":{},"241":{},"354":{},"403":{},"599":{},"939":{},"949":{},"959":{},"982":{},"1002":{},"1019":{},"1470":{},"1488":{},"1795":{}},"parent":{}}],["loyalty_card",{"_index":240,"name":{"443":{},"482":{},"871":{},"1041":{},"1135":{},"1203":{},"1221":{},"1840":{}},"parent":{}}],["loyaltyfixed",{"_index":401,"name":{"966":{}},"parent":{"967":{},"968":{}}}],["loyaltypointstransfer",{"_index":453,"name":{"1188":{}},"parent":{"1189":{},"1190":{}}}],["loyaltyproportional",{"_index":402,"name":{"969":{}},"parent":{"970":{},"971":{},"972":{}}}],["loyaltyproportional.__type",{"_index":403,"name":{},"parent":{"973":{},"974":{}}}],["loyaltyproportional.__type.__type",{"_index":405,"name":{},"parent":{"975":{},"976":{}}}],["message",{"_index":491,"name":{"1385":{},"1394":{}},"parent":{}}],["metadata",{"_index":108,"name":{"199":{},"246":{},"255":{},"328":{},"366":{},"378":{},"386":{},"401":{},"423":{},"434":{},"466":{},"530":{},"542":{},"557":{},"571":{},"578":{},"591":{},"614":{},"626":{},"658":{},"713":{},"738":{},"757":{},"768":{},"769":{},"819":{},"842":{},"843":{},"882":{},"906":{},"921":{},"1064":{},"1081":{},"1084":{},"1114":{},"1115":{},"1179":{},"1250":{},"1280":{},"1313":{},"1354":{},"1367":{},"1371":{},"1503":{},"1520":{},"1530":{},"1534":{},"1556":{},"1566":{},"1632":{},"1649":{},"1707":{},"1717":{},"1725":{},"1742":{},"1753":{},"1790":{},"1850":{}},"parent":{}}],["name",{"_index":105,"name":{"196":{},"204":{},"253":{},"271":{},"392":{},"568":{},"637":{},"716":{},"724":{},"752":{},"782":{},"792":{},"827":{},"860":{},"885":{},"1079":{},"1382":{},"1391":{},"1441":{},"1499":{},"1515":{},"1524":{},"1583":{},"1621":{},"1639":{},"1647":{},"1706":{},"1768":{}},"parent":{}}],["object",{"_index":109,"name":{"200":{},"248":{},"275":{},"288":{},"310":{},"336":{},"373":{},"406":{},"429":{},"461":{},"477":{},"486":{},"491":{},"509":{},"522":{},"538":{},"648":{},"667":{},"676":{},"701":{},"720":{},"723":{},"729":{},"745":{},"773":{},"800":{},"810":{},"825":{},"855":{},"896":{},"915":{},"931":{},"954":{},"992":{},"995":{},"1069":{},"1088":{},"1099":{},"1118":{},"1148":{},"1153":{},"1180":{},"1181":{},"1184":{},"1233":{},"1241":{},"1266":{},"1269":{},"1286":{},"1339":{},"1400":{},"1419":{},"1424":{},"1432":{},"1450":{},"1453":{},"1475":{},"1482":{},"1508":{},"1514":{},"1548":{},"1570":{},"1577":{},"1612":{},"1628":{},"1654":{},"1657":{},"1672":{},"1716":{},"1744":{},"1762":{},"1773":{},"1777":{},"1783":{},"1799":{},"1805":{},"1845":{},"1869":{},"1877":{}},"parent":{}}],["object_id",{"_index":411,"name":{"990":{}},"parent":{}}],["object_type",{"_index":412,"name":{"991":{}},"parent":{}}],["options",{"_index":264,"name":{"525":{},"621":{}},"parent":{}}],["order",{"_index":151,"name":{"272":{},"282":{},"345":{},"365":{},"377":{},"410":{},"422":{},"433":{},"465":{},"528":{},"544":{},"548":{},"559":{},"562":{},"572":{},"602":{},"624":{},"631":{},"670":{},"673":{},"761":{},"777":{},"836":{},"971":{},"1108":{},"1122":{},"1275":{},"1283":{},"1334":{},"1601":{},"1665":{},"1846":{}},"parent":{}}],["ordermetadata",{"_index":186,"name":{"323":{}},"parent":{}}],["orders",{"_index":47,"name":{"73":{},"234":{},"1765":{}},"parent":{"74":{},"75":{},"76":{},"77":{},"78":{},"79":{}}}],["orderscreate",{"_index":607,"name":{"1718":{}},"parent":{"1719":{},"1720":{},"1721":{},"1722":{},"1723":{},"1724":{},"1725":{}}}],["orderscreateresponse",{"_index":608,"name":{"1726":{}},"parent":{"1727":{},"1728":{},"1729":{},"1730":{},"1731":{},"1732":{},"1733":{},"1734":{},"1735":{},"1736":{},"1737":{},"1738":{},"1739":{},"1740":{},"1741":{},"1742":{},"1743":{},"1744":{}}}],["ordersgetresponse",{"_index":609,"name":{"1745":{}},"parent":{}}],["ordersitem",{"_index":598,"name":{"1687":{}},"parent":{"1688":{},"1689":{},"1690":{},"1691":{},"1692":{},"1693":{},"1694":{},"1695":{},"1696":{},"1697":{},"1698":{},"1699":{},"1700":{},"1701":{},"1702":{},"1709":{},"1710":{},"1716":{},"1717":{}}}],["ordersitem.__type",{"_index":605,"name":{},"parent":{"1703":{},"1704":{},"1705":{},"1706":{},"1707":{},"1708":{},"1711":{},"1712":{},"1713":{},"1714":{},"1715":{}}}],["orderslistparams",{"_index":613,"name":{"1758":{}},"parent":{"1759":{},"1760":{}}}],["orderslistresponse",{"_index":614,"name":{"1761":{}},"parent":{"1762":{},"1763":{},"1764":{},"1765":{}}}],["ordersupdate",{"_index":610,"name":{"1746":{}},"parent":{"1747":{},"1748":{},"1749":{},"1750":{},"1751":{},"1752":{},"1753":{},"1754":{},"1755":{}}}],["ordersupdate.__type",{"_index":611,"name":{},"parent":{"1756":{}}}],["ordersupdateresponse",{"_index":612,"name":{"1757":{}},"parent":{}}],["origin",{"_index":678,"name":{"1931":{}},"parent":{}}],["override",{"_index":606,"name":{"1705":{},"1713":{}},"parent":{}}],["page",{"_index":150,"name":{"268":{},"451":{},"695":{},"743":{},"853":{},"929":{},"965":{},"1025":{},"1322":{},"1422":{},"1430":{},"1437":{},"1478":{},"1545":{},"1600":{},"1760":{}},"parent":{}}],["parameters",{"_index":388,"name":{"937":{},"947":{},"957":{},"1468":{},"1486":{},"1663":{},"1677":{}},"parent":{}}],["parent_redemption",{"_index":269,"name":{"535":{}},"parent":{}}],["parent_rollback",{"_index":274,"name":{"551":{}},"parent":{}}],["pattern",{"_index":376,"name":{"879":{},"1197":{},"1297":{},"1362":{}},"parent":{}}],["percent",{"_index":653,"name":{"1883":{}},"parent":{}}],["percent_off",{"_index":572,"name":{"1595":{},"1821":{},"1906":{}},"parent":{}}],["percent_off_formula",{"_index":573,"name":{"1596":{},"1822":{},"1907":{}},"parent":{}}],["phone",{"_index":111,"name":{"206":{},"265":{}},"parent":{}}],["points",{"_index":142,"name":{"243":{},"445":{},"484":{},"873":{},"941":{},"951":{},"961":{},"968":{},"976":{},"1021":{},"1043":{},"1093":{},"1095":{},"1137":{},"1190":{},"1205":{},"1223":{},"1472":{},"1490":{},"1495":{},"1835":{}},"parent":{}}],["points_cost",{"_index":204,"name":{"356":{},"601":{}},"parent":{}}],["points_to_go",{"_index":136,"name":{"233":{}},"parent":{}}],["post",{"_index":77,"name":{"131":{}},"parent":{}}],["postal_code",{"_index":121,"name":{"215":{},"264":{}},"parent":{}}],["prefix",{"_index":377,"name":{"880":{},"1198":{},"1298":{},"1363":{}},"parent":{}}],["price",{"_index":536,"name":{"1501":{},"1516":{},"1528":{},"1557":{},"1564":{},"1695":{},"1708":{},"1715":{},"1873":{}},"parent":{}}],["price_formula",{"_index":649,"name":{"1874":{}},"parent":{}}],["product",{"_index":604,"name":{"1701":{},"1815":{},"1830":{},"1897":{}},"parent":{}}],["product_id",{"_index":600,"name":{"1689":{}},"parent":{}}],["products",{"_index":49,"name":{"80":{},"1551":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{}}}],["productsbulkupdate",{"_index":547,"name":{"1535":{}},"parent":{}}],["productsbulkupdatemetadata",{"_index":545,"name":{"1532":{}},"parent":{"1533":{},"1534":{}}}],["productsbulkupdatemetadataresponse",{"_index":550,"name":{"1539":{}},"parent":{"1540":{}}}],["productsbulkupdatemetadataresponse.__type",{"_index":551,"name":{},"parent":{"1541":{}}}],["productsbulkupdateresponse",{"_index":548,"name":{"1536":{}},"parent":{"1537":{}}}],["productsbulkupdateresponse.__type",{"_index":549,"name":{},"parent":{"1538":{}}}],["productscreate",{"_index":535,"name":{"1498":{}},"parent":{"1499":{},"1500":{},"1501":{},"1502":{},"1503":{},"1504":{}}}],["productscreateresponse",{"_index":540,"name":{"1511":{}},"parent":{"1512":{},"1513":{},"1514":{},"1515":{},"1516":{},"1517":{},"1518":{},"1519":{},"1520":{}}}],["productscreatesku",{"_index":555,"name":{"1552":{}},"parent":{"1553":{},"1554":{},"1555":{},"1556":{},"1557":{},"1558":{},"1559":{}}}],["productscreateskuresponse",{"_index":558,"name":{"1560":{}},"parent":{"1561":{},"1562":{},"1563":{},"1564":{},"1565":{},"1566":{},"1567":{},"1568":{},"1569":{},"1570":{}}}],["productsdeleteparams",{"_index":552,"name":{"1542":{}},"parent":{"1543":{}}}],["productsdeleteskuparams",{"_index":562,"name":{"1574":{}},"parent":{"1575":{}}}],["productsgetresponse",{"_index":541,"name":{"1521":{}},"parent":{}}],["productsgetresponseskus",{"_index":537,"name":{"1505":{}},"parent":{"1506":{},"1507":{}}}],["productsgetresponseskus.__type",{"_index":539,"name":{},"parent":{"1508":{},"1509":{},"1510":{}}}],["productsgetskuresponse",{"_index":559,"name":{"1571":{}},"parent":{}}],["productslistparams",{"_index":553,"name":{"1544":{}},"parent":{"1545":{},"1546":{}}}],["productslistresponse",{"_index":554,"name":{"1547":{}},"parent":{"1548":{},"1549":{},"1550":{},"1551":{}}}],["productslistskus",{"_index":563,"name":{"1576":{}},"parent":{"1577":{},"1578":{},"1579":{}}}],["productsupdate",{"_index":542,"name":{"1522":{}},"parent":{"1523":{}}}],["productsupdate.__type",{"_index":543,"name":{},"parent":{"1524":{},"1525":{},"1526":{},"1527":{},"1528":{},"1529":{},"1530":{}}}],["productsupdateresponse",{"_index":544,"name":{"1531":{}},"parent":{}}],["productsupdatesku",{"_index":560,"name":{"1572":{}},"parent":{}}],["productsupdateskuresponse",{"_index":561,"name":{"1573":{}},"parent":{}}],["promotion",{"_index":360,"name":{"798":{},"831":{}},"parent":{}}],["promotion_tier",{"_index":241,"name":{"446":{},"779":{},"1411":{}},"parent":{}}],["promotions",{"_index":57,"name":{"94":{},"361":{},"849":{}},"parent":{"95":{},"96":{},"97":{},"98":{}}}],["promotionscreate",{"_index":362,"name":{"826":{}},"parent":{"827":{},"828":{},"829":{},"830":{},"831":{},"832":{}}}],["promotionscreate.__type",{"_index":363,"name":{},"parent":{"833":{}}}],["promotionscreateresponse",{"_index":359,"name":{"790":{}},"parent":{"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"804":{},"805":{},"806":{},"807":{},"808":{},"813":{},"814":{},"815":{},"818":{},"819":{},"820":{},"821":{},"822":{},"823":{},"824":{},"825":{}}}],["promotionscreateresponse.__type",{"_index":361,"name":{},"parent":{"800":{},"801":{},"802":{},"803":{},"809":{},"810":{},"811":{},"812":{},"816":{},"817":{}}}],["promotionsvalidateparams",{"_index":364,"name":{"834":{}},"parent":{"835":{},"836":{},"837":{},"843":{}}}],["promotionsvalidateparams.__type",{"_index":365,"name":{},"parent":{"838":{},"839":{},"840":{},"841":{},"842":{}}}],["promotionsvalidatequeryparams",{"_index":366,"name":{"844":{}},"parent":{"845":{},"846":{}}}],["promotionsvalidateresponse",{"_index":367,"name":{"847":{}},"parent":{"848":{},"849":{},"850":{}}}],["promotiontier",{"_index":338,"name":{"721":{}},"parent":{"722":{},"723":{},"724":{},"725":{},"726":{},"727":{},"733":{},"734":{},"735":{},"737":{},"738":{},"739":{}}}],["promotiontier.__type",{"_index":339,"name":{},"parent":{"728":{},"729":{},"730":{},"731":{},"732":{},"736":{}}}],["promotiontiergetresponse",{"_index":346,"name":{"750":{}},"parent":{}}],["promotiontierredeemdetails",{"_index":356,"name":{"787":{}},"parent":{}}],["promotiontierredeemdetailssimple",{"_index":354,"name":{"780":{}},"parent":{"781":{},"782":{},"783":{},"784":{},"785":{}}}],["promotiontierredeemdetailssimple.__type",{"_index":355,"name":{},"parent":{"786":{}}}],["promotiontiers",{"_index":59,"name":{"99":{}},"parent":{"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{}}}],["promotiontierscreateparams",{"_index":347,"name":{"751":{}},"parent":{"752":{},"753":{},"754":{},"755":{},"757":{}}}],["promotiontierscreateparams.__type",{"_index":348,"name":{},"parent":{"756":{}}}],["promotiontierscreateresponse",{"_index":349,"name":{"758":{}},"parent":{}}],["promotiontierslistallparams",{"_index":342,"name":{"740":{}},"parent":{"741":{},"742":{},"743":{}}}],["promotiontierslistallresponse",{"_index":344,"name":{"744":{}},"parent":{"745":{},"746":{},"747":{},"748":{}}}],["promotiontierslistresponse",{"_index":345,"name":{"749":{}},"parent":{}}],["promotiontiersredeemparams",{"_index":350,"name":{"759":{}},"parent":{"760":{},"761":{},"762":{},"769":{},"770":{}}}],["promotiontiersredeemparams.__type",{"_index":351,"name":{},"parent":{"763":{},"764":{},"765":{},"766":{},"767":{},"768":{}}}],["promotiontiersredeemresponse",{"_index":353,"name":{"771":{}},"parent":{"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{}}}],["promotiontiersupdateparams",{"_index":357,"name":{"788":{}},"parent":{}}],["promotiontiersupdateresponse",{"_index":358,"name":{"789":{}},"parent":{}}],["protected",{"_index":308,"name":{"665":{},"824":{},"913":{}},"parent":{}}],["publications",{"_index":29,"name":{"42":{},"1615":{}},"parent":{}}],["publish",{"_index":16,"name":{"19":{},"1052":{},"1146":{},"1231":{}},"parent":{}}],["put",{"_index":78,"name":{"132":{}},"parent":{}}],["qr",{"_index":448,"name":{"1162":{},"1253":{}},"parent":{}}],["qualifications",{"_index":4,"name":{"5":{},"181":{}},"parent":{}}],["quantity",{"_index":252,"name":{"494":{},"870":{},"1058":{},"1154":{},"1209":{},"1242":{},"1302":{},"1357":{},"1694":{}},"parent":{}}],["reason",{"_index":256,"name":{"499":{},"503":{},"515":{}},"parent":{}}],["redeem",{"_index":15,"name":{"18":{},"105":{},"110":{}},"parent":{}}],["redeemables",{"_index":265,"name":{"526":{},"622":{},"632":{}},"parent":{}}],["redeemed",{"_index":511,"name":{"1443":{}},"parent":{}}],["redeemed_amount",{"_index":131,"name":{"228":{},"496":{}},"parent":{}}],["redeemed_points",{"_index":135,"name":{"232":{},"1059":{},"1157":{}},"parent":{}}],["redeemed_quantity",{"_index":253,"name":{"495":{},"1060":{},"1155":{},"1243":{}},"parent":{}}],["redeemreward",{"_index":46,"name":{"72":{}},"parent":{}}],["redeemstackable",{"_index":23,"name":{"26":{},"111":{}},"parent":{}}],["redemption",{"_index":248,"name":{"459":{},"513":{},"561":{},"868":{},"1056":{},"1151":{},"1207":{},"1239":{},"1300":{},"1355":{}},"parent":{"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"479":{},"480":{},"482":{},"483":{}}}],["redemption.__type",{"_index":249,"name":{},"parent":{"474":{},"475":{},"476":{},"477":{},"478":{},"481":{},"484":{}}}],["redemption_entries",{"_index":254,"name":{"497":{},"1061":{},"1245":{}},"parent":{}}],["redemptions",{"_index":61,"name":{"108":{},"218":{},"489":{},"534":{}},"parent":{"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{}}}],["redemptionsgetforvoucherresponse",{"_index":251,"name":{"490":{}},"parent":{"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{}}}],["redemptionslistparams",{"_index":244,"name":{"449":{}},"parent":{"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{}}}],["redemptionslistparams.__type",{"_index":246,"name":{},"parent":{"457":{},"458":{}}}],["redemptionslistresponse",{"_index":250,"name":{"485":{}},"parent":{"486":{},"487":{},"488":{},"489":{}}}],["redemptionsredeembody",{"_index":237,"name":{"419":{}},"parent":{"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{}}}],["redemptionsredeemresponse",{"_index":238,"name":{"427":{}},"parent":{"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"443":{},"444":{},"446":{},"447":{},"448":{}}}],["redemptionsredeemresponse.__type",{"_index":239,"name":{},"parent":{"442":{},"445":{}}}],["redemptionsredeemstackableorderresponse",{"_index":267,"name":{"532":{}},"parent":{}}],["redemptionsredeemstackableparams",{"_index":263,"name":{"524":{}},"parent":{"525":{},"526":{},"527":{},"528":{},"529":{},"530":{}}}],["redemptionsredeemstackableredemptionresult",{"_index":266,"name":{"531":{}},"parent":{}}],["redemptionsredeemstackableresponse",{"_index":268,"name":{"533":{}},"parent":{"534":{},"535":{},"536":{},"548":{}}}],["redemptionsredeemstackableresponse.__type",{"_index":270,"name":{},"parent":{"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{}}}],["redemptionsrollbackparams",{"_index":255,"name":{"498":{}},"parent":{"499":{},"500":{},"501":{}}}],["redemptionsrollbackpayload",{"_index":258,"name":{"505":{}},"parent":{"506":{}}}],["redemptionsrollbackqueryparams",{"_index":257,"name":{"502":{}},"parent":{"503":{},"504":{}}}],["redemptionsrollbackresponse",{"_index":259,"name":{"507":{}},"parent":{"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{}}}],["redemptionsrollbackresponse.__type",{"_index":261,"name":{},"parent":{"521":{},"522":{}}}],["redemptionsrollbackstackableresponse",{"_index":272,"name":{"549":{}},"parent":{"550":{},"551":{},"552":{},"562":{}}}],["redemptionsrollbackstackableresponse.__type",{"_index":275,"name":{},"parent":{"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{}}}],["referral",{"_index":226,"name":{"404":{},"1791":{}},"parent":{}}],["referral_program",{"_index":306,"name":{"663":{},"911":{}},"parent":{}}],["referred_customers",{"_index":143,"name":{"244":{}},"parent":{}}],["referrer_id",{"_index":451,"name":{"1171":{},"1262":{},"1794":{}},"parent":{}}],["related_object",{"_index":178,"name":{"311":{},"1100":{},"1690":{}},"parent":{}}],["related_object_id",{"_index":271,"name":{"547":{},"945":{},"1415":{},"1466":{}},"parent":{}}],["related_object_ids",{"_index":95,"name":{"175":{}},"parent":{}}],["related_object_total",{"_index":97,"name":{"177":{}},"parent":{}}],["related_object_type",{"_index":96,"name":{"176":{},"439":{},"471":{},"546":{},"946":{},"1416":{},"1467":{}},"parent":{}}],["releasevalidationsession",{"_index":102,"name":{"193":{}},"parent":{}}],["request",{"_index":69,"name":{"122":{}},"parent":{}}],["request_id",{"_index":92,"name":{"172":{}},"parent":{}}],["requestcontroller",{"_index":65,"name":{"117":{}},"parent":{"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{},"133":{}}}],["resource_id",{"_index":93,"name":{"173":{}},"parent":{}}],["resource_type",{"_index":94,"name":{"174":{}},"parent":{}}],["result",{"_index":211,"name":{"379":{},"435":{},"452":{},"467":{},"516":{},"543":{},"558":{},"778":{},"1125":{},"1605":{},"1635":{},"1683":{},"1849":{}},"parent":{}}],["reward",{"_index":188,"name":{"325":{},"367":{},"424":{},"438":{},"519":{},"582":{},"936":{},"1105":{},"1124":{},"1276":{},"1807":{}},"parent":{}}],["reward_id",{"_index":392,"name":{"944":{},"1465":{}},"parent":{}}],["rewardredemptionparams",{"_index":534,"name":{"1494":{}},"parent":{"1495":{},"1496":{},"1497":{}}}],["rewards",{"_index":79,"name":{"134":{}},"parent":{"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{}}}],["rewardsassignmentobject",{"_index":523,"name":{"1463":{}},"parent":{"1464":{},"1465":{},"1466":{},"1467":{},"1468":{},"1469":{},"1473":{},"1474":{},"1475":{}}}],["rewardsassignmentobject.__type",{"_index":524,"name":{},"parent":{"1470":{},"1471":{}}}],["rewardsassignmentobject.__type.__type",{"_index":525,"name":{},"parent":{"1472":{}}}],["rewardscreate",{"_index":519,"name":{"1459":{}},"parent":{}}],["rewardscreateassignment",{"_index":528,"name":{"1484":{}},"parent":{"1485":{},"1486":{},"1487":{}}}],["rewardscreateassignment.__type",{"_index":529,"name":{},"parent":{"1488":{},"1489":{}}}],["rewardscreateassignment.__type.__type",{"_index":530,"name":{},"parent":{"1490":{}}}],["rewardscreateassignmentresponse",{"_index":531,"name":{"1491":{}},"parent":{}}],["rewardscreateresponse",{"_index":515,"name":{"1451":{}},"parent":{}}],["rewardsgetresponse",{"_index":520,"name":{"1460":{}},"parent":{}}],["rewardslistassignmentsparams",{"_index":526,"name":{"1476":{}},"parent":{"1477":{},"1478":{}}}],["rewardslistassignmentsresponse",{"_index":527,"name":{"1479":{}},"parent":{"1480":{},"1481":{},"1482":{},"1483":{}}}],["rewardslistparams",{"_index":508,"name":{"1436":{}},"parent":{"1437":{},"1438":{}}}],["rewardslistresponse",{"_index":516,"name":{"1452":{}},"parent":{"1453":{},"1454":{},"1455":{},"1456":{}}}],["rewardsresponse",{"_index":509,"name":{"1439":{}},"parent":{"1440":{},"1441":{},"1442":{},"1443":{},"1444":{},"1445":{},"1448":{},"1449":{},"1450":{}}}],["rewardsresponse.__type",{"_index":514,"name":{},"parent":{"1446":{},"1447":{}}}],["rewardstype",{"_index":517,"name":{"1457":{}},"parent":{}}],["rewardstyperesponse",{"_index":518,"name":{"1458":{}},"parent":{}}],["rewardsupdate",{"_index":521,"name":{"1461":{}},"parent":{}}],["rewardsupdateassignment",{"_index":532,"name":{"1492":{}},"parent":{}}],["rewardsupdateassignmentresponse",{"_index":533,"name":{"1493":{}},"parent":{}}],["rewardsupdateresponse",{"_index":522,"name":{"1462":{}},"parent":{}}],["rollback",{"_index":63,"name":{"115":{}},"parent":{}}],["rollbacks",{"_index":273,"name":{"550":{}},"parent":{}}],["rollbackstackable",{"_index":64,"name":{"116":{}},"parent":{}}],["rule_id",{"_index":498,"name":{"1403":{},"1414":{}},"parent":{}}],["rules",{"_index":493,"name":{"1386":{},"1395":{}},"parent":{}}],["schema_id",{"_index":418,"name":{"1008":{}},"parent":{}}],["scroll",{"_index":26,"name":{"35":{}},"parent":{}}],["secretkey",{"_index":669,"name":{"1919":{}},"parent":{}}],["segment",{"_index":408,"name":{"983":{},"1009":{}},"parent":{}}],["segments",{"_index":84,"name":{"145":{}},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["segmentscreate",{"_index":582,"name":{"1638":{}},"parent":{"1639":{},"1640":{},"1641":{},"1642":{},"1644":{}}}],["segmentscreate.__type",{"_index":584,"name":{},"parent":{"1643":{}}}],["segmentscreateresponse",{"_index":585,"name":{"1645":{}},"parent":{"1646":{},"1647":{},"1648":{},"1649":{},"1650":{},"1651":{},"1653":{},"1654":{}}}],["segmentscreateresponse.__type",{"_index":586,"name":{},"parent":{"1652":{}}}],["segmentsgetresponse",{"_index":587,"name":{"1655":{}},"parent":{}}],["segmentslistresponse",{"_index":588,"name":{"1656":{}},"parent":{"1657":{},"1658":{},"1659":{},"1660":{}}}],["session",{"_index":207,"name":{"370":{},"426":{},"527":{},"585":{},"615":{},"623":{},"630":{},"770":{}},"parent":{}}],["session_key",{"_index":191,"name":{"330":{}},"parent":{}}],["session_ttl",{"_index":192,"name":{"331":{}},"parent":{}}],["session_ttl_unit",{"_index":193,"name":{"332":{}},"parent":{}}],["session_type",{"_index":190,"name":{"329":{}},"parent":{}}],["setbaseurl",{"_index":76,"name":{"129":{}},"parent":{}}],["setidentity",{"_index":13,"name":{"16":{}},"parent":{}}],["setlastresponseheaders",{"_index":75,"name":{"128":{}},"parent":{}}],["simplecustomer",{"_index":103,"name":{"194":{}},"parent":{"195":{},"196":{},"197":{},"198":{},"199":{},"200":{}}}],["simpleproduct",{"_index":564,"name":{"1580":{}},"parent":{"1581":{},"1582":{},"1583":{}}}],["simplepromotiontier",{"_index":335,"name":{"711":{}},"parent":{"712":{},"713":{},"714":{},"715":{},"716":{},"717":{},"718":{},"719":{},"720":{}}}],["simplerollback",{"_index":262,"name":{"523":{}},"parent":{}}],["simplesku",{"_index":565,"name":{"1584":{}},"parent":{"1585":{},"1586":{},"1587":{}}}],["simplevoucher",{"_index":455,"name":{"1192":{}},"parent":{"1193":{},"1194":{},"1200":{},"1201":{},"1202":{},"1203":{},"1204":{},"1207":{},"1208":{}}}],["simplevoucher.__type",{"_index":456,"name":{},"parent":{"1195":{},"1196":{},"1197":{},"1198":{},"1199":{},"1205":{},"1206":{},"1209":{}}}],["sku",{"_index":556,"name":{"1553":{},"1563":{},"1587":{},"1709":{},"1714":{},"1814":{},"1829":{},"1898":{}},"parent":{}}],["sku_id",{"_index":599,"name":{"1688":{}},"parent":{}}],["skus",{"_index":538,"name":{"1506":{},"1579":{}},"parent":{}}],["source",{"_index":410,"name":{"987":{},"1003":{},"1016":{}},"parent":{}}],["source_id",{"_index":107,"name":{"198":{},"203":{},"252":{},"382":{},"567":{},"575":{},"764":{},"839":{},"1083":{},"1111":{},"1178":{},"1500":{},"1513":{},"1526":{},"1554":{},"1562":{},"1582":{},"1586":{},"1618":{},"1634":{},"1691":{},"1704":{},"1712":{},"1719":{},"1728":{},"1748":{},"1871":{}},"parent":{}}],["source_ids",{"_index":546,"name":{"1533":{}},"parent":{}}],["stackableoptions",{"_index":622,"name":{"1801":{}},"parent":{"1802":{}}}],["stackableredeemableobject",{"_index":624,"name":{"1803":{}},"parent":{}}],["stackableredeemableparams",{"_index":625,"name":{"1804":{}},"parent":{"1805":{},"1806":{},"1807":{},"1808":{}}}],["stackableredeemableresponse",{"_index":637,"name":{"1842":{}},"parent":{"1843":{},"1844":{},"1845":{},"1846":{},"1847":{},"1848":{},"1849":{},"1850":{}}}],["stackableredeemableresponsestatus",{"_index":626,"name":{"1809":{}},"parent":{}}],["stackableredeemableresultdiscount",{"_index":629,"name":{"1816":{}},"parent":{"1817":{},"1818":{},"1819":{},"1820":{},"1821":{},"1822":{},"1823":{},"1824":{},"1825":{},"1826":{},"1827":{},"1828":{},"1829":{},"1830":{},"1831":{}}}],["stackableredeemableresultdiscountunit",{"_index":627,"name":{"1810":{}},"parent":{"1811":{},"1812":{},"1813":{},"1814":{},"1815":{}}}],["stackableredeemableresultgift",{"_index":633,"name":{"1832":{}},"parent":{"1833":{}}}],["stackableredeemableresultloyaltycard",{"_index":634,"name":{"1834":{}},"parent":{"1835":{},"1836":{}}}],["stackableredeemableresultresponse",{"_index":636,"name":{"1837":{}},"parent":{"1838":{},"1839":{},"1840":{},"1841":{}}}],["start_date",{"_index":287,"name":{"616":{},"644":{},"730":{},"796":{},"829":{},"861":{},"892":{},"919":{},"1045":{},"1139":{},"1224":{},"1309":{},"1351":{}},"parent":{}}],["starting_after",{"_index":152,"name":{"273":{},"283":{}},"parent":{}}],["starting_after_id",{"_index":158,"name":{"284":{}},"parent":{}}],["state",{"_index":117,"name":{"211":{},"260":{}},"parent":{}}],["status",{"_index":352,"name":{"767":{},"1674":{},"1720":{},"1731":{},"1749":{},"1843":{}},"parent":{}}],["stock",{"_index":510,"name":{"1442":{}},"parent":{}}],["strict",{"_index":648,"name":{"1872":{}},"parent":{}}],["subtotal_amount",{"_index":603,"name":{"1700":{}},"parent":{}}],["suffix",{"_index":378,"name":{"881":{},"1199":{},"1299":{},"1364":{}},"parent":{}}],["summary",{"_index":122,"name":{"216":{}},"parent":{}}],["tiers",{"_index":58,"name":{"96":{},"747":{},"802":{},"833":{}},"parent":{}}],["total",{"_index":154,"name":{"276":{},"289":{},"307":{},"337":{},"487":{},"492":{},"649":{},"677":{},"702":{},"811":{},"856":{},"897":{},"932":{},"996":{},"1070":{},"1090":{},"1096":{},"1185":{},"1237":{},"1246":{},"1270":{},"1287":{},"1340":{},"1425":{},"1433":{},"1454":{},"1480":{},"1509":{},"1549":{},"1578":{},"1613":{},"1658":{},"1763":{},"1778":{},"1784":{},"1878":{}},"parent":{}}],["total_amount",{"_index":137,"name":{"236":{},"350":{},"607":{},"1739":{}},"parent":{}}],["total_applied_discount_amount",{"_index":283,"name":{"609":{},"1740":{}},"parent":{}}],["total_count",{"_index":138,"name":{"237":{}},"parent":{}}],["total_discount_amount",{"_index":203,"name":{"349":{},"606":{},"1736":{}},"parent":{}}],["total_failed",{"_index":125,"name":{"221":{}},"parent":{}}],["total_redeemed",{"_index":123,"name":{"220":{}},"parent":{}}],["total_rollback_failed",{"_index":128,"name":{"224":{}},"parent":{}}],["total_rollback_succeeded",{"_index":129,"name":{"225":{}},"parent":{}}],["total_rolled_back",{"_index":127,"name":{"223":{}},"parent":{}}],["total_succeeded",{"_index":126,"name":{"222":{}},"parent":{}}],["track",{"_index":17,"name":{"20":{}},"parent":{}}],["tracking_id",{"_index":184,"name":{"320":{},"352":{},"363":{},"376":{},"420":{},"432":{},"464":{},"500":{},"504":{},"512":{},"541":{},"556":{},"618":{},"629":{},"712":{},"776":{},"850":{},"1126":{},"1631":{}},"parent":{}}],["trackingid",{"_index":677,"name":{"1930":{}},"parent":{}}],["transfers",{"_index":635,"name":{"1836":{}},"parent":{}}],["ttl",{"_index":642,"name":{"1858":{},"1863":{}},"parent":{}}],["ttl_unit",{"_index":643,"name":{"1859":{},"1864":{}},"parent":{}}],["type",{"_index":177,"name":{"309":{},"313":{},"407":{},"639":{},"794":{},"863":{},"867":{},"887":{},"923":{},"967":{},"970":{},"1040":{},"1098":{},"1102":{},"1134":{},"1200":{},"1215":{},"1348":{},"1589":{},"1640":{},"1653":{},"1800":{},"1817":{},"1857":{},"1862":{},"1892":{},"1900":{},"1905":{},"1911":{}},"parent":{}}],["unit",{"_index":654,"name":{"1884":{}},"parent":{}}],["unit_off",{"_index":567,"name":{"1590":{},"1812":{},"1826":{},"1893":{}},"parent":{}}],["unit_off_formula",{"_index":568,"name":{"1591":{},"1827":{},"1894":{}},"parent":{}}],["unit_type",{"_index":628,"name":{"1813":{},"1828":{},"1896":{}},"parent":{}}],["units",{"_index":632,"name":{"1831":{}},"parent":{}}],["update",{"_index":5,"name":{"7":{},"36":{},"57":{},"77":{},"84":{},"106":{},"139":{},"155":{},"185":{}},"parent":{}}],["updateassignment",{"_index":82,"name":{"143":{}},"parent":{}}],["updateconsents",{"_index":21,"name":{"24":{},"38":{}},"parent":{}}],["updated_at",{"_index":395,"name":{"953":{},"980":{},"1030":{},"1067":{},"1174":{},"1264":{},"1330":{},"1399":{},"1418":{},"1449":{},"1474":{},"1567":{},"1730":{},"1772":{}},"parent":{}}],["updateearningrule",{"_index":39,"name":{"65":{}},"parent":{}}],["updaterewardassignment",{"_index":35,"name":{"61":{}},"parent":{}}],["updatesku",{"_index":54,"name":{"91":{}},"parent":{}}],["url",{"_index":446,"name":{"1150":{},"1156":{},"1165":{},"1169":{},"1238":{},"1247":{},"1256":{},"1260":{},"1685":{}},"parent":{}}],["use_voucher_metadata_schema",{"_index":307,"name":{"664":{},"823":{},"912":{}},"parent":{}}],["valid",{"_index":198,"name":{"342":{},"593":{},"628":{},"714":{},"848":{},"1402":{}},"parent":{}}],["validate",{"_index":14,"name":{"17":{},"98":{},"159":{},"165":{}},"parent":{}}],["validatestackable",{"_index":22,"name":{"25":{},"166":{}},"parent":{}}],["validatevoucher",{"_index":87,"name":{"164":{}},"parent":{}}],["validation_rule_assignments",{"_index":340,"name":{"733":{}},"parent":{}}],["validation_rule_id",{"_index":407,"name":{"981":{},"1001":{},"1015":{}},"parent":{}}],["validation_rules_assignments",{"_index":297,"name":{"645":{},"807":{},"893":{},"1182":{},"1267":{}},"parent":{}}],["validationrules",{"_index":85,"name":{"151":{}},"parent":{"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{}}}],["validationrulescreate",{"_index":490,"name":{"1381":{}},"parent":{"1382":{},"1383":{},"1384":{},"1386":{},"1387":{}}}],["validationrulescreate.__type",{"_index":492,"name":{},"parent":{"1385":{},"1388":{}}}],["validationrulescreateassignment",{"_index":502,"name":{"1408":{}},"parent":{"1409":{},"1410":{},"1411":{}}}],["validationrulescreateassignmentresponse",{"_index":503,"name":{"1412":{}},"parent":{"1413":{},"1414":{},"1415":{},"1416":{},"1417":{},"1418":{},"1419":{}}}],["validationrulescreateresponse",{"_index":495,"name":{"1389":{}},"parent":{"1390":{},"1391":{},"1392":{},"1393":{},"1395":{},"1396":{},"1398":{},"1399":{},"1400":{}}}],["validationrulescreateresponse.__type",{"_index":496,"name":{},"parent":{"1394":{},"1397":{}}}],["validationrulesgetresponse",{"_index":499,"name":{"1405":{}},"parent":{}}],["validationruleslistassignmentsparams",{"_index":506,"name":{"1428":{}},"parent":{"1429":{},"1430":{}}}],["validationruleslistassignmentsresponse",{"_index":507,"name":{"1431":{}},"parent":{"1432":{},"1433":{},"1434":{},"1435":{}}}],["validationruleslistparams",{"_index":504,"name":{"1420":{}},"parent":{"1421":{},"1422":{}}}],["validationruleslistresponse",{"_index":505,"name":{"1423":{}},"parent":{"1424":{},"1425":{},"1426":{},"1427":{}}}],["validationrulesupdate",{"_index":500,"name":{"1406":{}},"parent":{}}],["validationrulesupdateresponse",{"_index":501,"name":{"1407":{}},"parent":{}}],["validationrulesvalidateresponse",{"_index":497,"name":{"1401":{}},"parent":{"1402":{},"1403":{},"1404":{}}}],["validations",{"_index":86,"name":{"162":{}},"parent":{"163":{},"164":{},"165":{},"166":{}}}],["validationsessionparams",{"_index":641,"name":{"1855":{}},"parent":{"1856":{},"1857":{},"1858":{},"1859":{}}}],["validationsessionreleaseparams",{"_index":645,"name":{"1865":{}},"parent":{"1866":{}}}],["validationsessionresponse",{"_index":644,"name":{"1860":{}},"parent":{"1861":{},"1862":{},"1863":{},"1864":{}}}],["validationsessionttlunit",{"_index":640,"name":{"1854":{}},"parent":{}}],["validationsessiontype",{"_index":639,"name":{"1853":{}},"parent":{}}],["validationsvalidatecode",{"_index":292,"name":{"633":{}},"parent":{}}],["validationsvalidatecontext",{"_index":293,"name":{"634":{}},"parent":{}}],["validationsvalidatestackableparams",{"_index":290,"name":{"620":{}},"parent":{"621":{},"622":{},"623":{},"624":{},"625":{},"626":{}}}],["validationsvalidatevoucherparams",{"_index":276,"name":{"563":{}},"parent":{"564":{},"565":{},"572":{},"573":{},"579":{},"580":{},"582":{},"583":{},"585":{}}}],["validationsvalidatevoucherparams.__type",{"_index":277,"name":{},"parent":{"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"574":{},"575":{},"576":{},"577":{},"578":{},"581":{},"584":{}}}],["validationsvalidatevoucherresponse",{"_index":279,"name":{"586":{}},"parent":{"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"599":{},"600":{},"602":{},"603":{},"615":{},"616":{},"617":{},"618":{},"619":{}}}],["validationsvalidatevoucherresponse.__type",{"_index":281,"name":{},"parent":{"597":{},"598":{},"601":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{}}}],["validationvalidatestackableresponse",{"_index":291,"name":{"627":{}},"parent":{"628":{},"629":{},"630":{},"631":{},"632":{}}}],["validity_day_of_week",{"_index":303,"name":{"657":{},"818":{},"905":{},"1051":{},"1145":{},"1230":{}},"parent":{}}],["validity_timeframe",{"_index":300,"name":{"653":{},"814":{},"901":{},"1047":{},"1141":{},"1226":{}},"parent":{}}],["voucher",{"_index":212,"name":{"380":{},"385":{},"436":{},"472":{},"517":{},"662":{},"865":{},"910":{},"1074":{},"1127":{},"1409":{},"1604":{},"1623":{},"1637":{}},"parent":{}}],["voucher_type",{"_index":576,"name":{"1606":{}},"parent":{}}],["voucherdiscount",{"_index":566,"name":{"1588":{}},"parent":{"1589":{},"1590":{},"1591":{},"1592":{},"1593":{},"1594":{},"1595":{},"1596":{},"1597":{}}}],["voucherifyclientside",{"_index":673,"name":{"1925":{}},"parent":{}}],["voucherifyclientsideoptions",{"_index":674,"name":{"1926":{}},"parent":{"1927":{},"1928":{},"1929":{},"1930":{},"1931":{},"1932":{},"1933":{}}}],["voucherifyerror",{"_index":88,"name":{"167":{}},"parent":{"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{}}}],["voucherifyserverside",{"_index":665,"name":{"1915":{}},"parent":{}}],["voucherifyserversideoptions",{"_index":666,"name":{"1916":{}},"parent":{"1917":{},"1918":{},"1919":{},"1920":{},"1921":{},"1922":{},"1923":{},"1924":{}}}],["vouchers",{"_index":99,"name":{"179":{},"339":{},"1072":{},"1342":{}},"parent":{"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{}}}],["vouchers_count",{"_index":309,"name":{"666":{},"688":{},"864":{},"914":{}},"parent":{}}],["vouchers_generation_status",{"_index":304,"name":{"660":{},"821":{},"908":{}},"parent":{}}],["vouchersbulkupdate",{"_index":481,"name":{"1368":{}},"parent":{}}],["vouchersbulkupdatemetadata",{"_index":482,"name":{"1369":{}},"parent":{"1370":{},"1371":{}}}],["vouchersbulkupdatemetadataresponse",{"_index":486,"name":{"1375":{}},"parent":{"1376":{}}}],["vouchersbulkupdatemetadataresponse.__type",{"_index":487,"name":{},"parent":{"1377":{}}}],["vouchersbulkupdateobject",{"_index":480,"name":{"1365":{}},"parent":{"1366":{},"1367":{}}}],["vouchersbulkupdateresponse",{"_index":488,"name":{"1378":{}},"parent":{"1379":{}}}],["vouchersbulkupdateresponse.__type",{"_index":489,"name":{},"parent":{"1380":{}}}],["voucherscreate",{"_index":466,"name":{"1303":{}},"parent":{}}],["voucherscreateparameters",{"_index":464,"name":{"1290":{}},"parent":{"1291":{},"1292":{},"1293":{},"1294":{},"1300":{},"1301":{}}}],["voucherscreateparameters.__type",{"_index":465,"name":{},"parent":{"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1302":{}}}],["voucherscreateresponse",{"_index":467,"name":{"1304":{}},"parent":{}}],["vouchersdeleteparams",{"_index":472,"name":{"1318":{}},"parent":{"1319":{}}}],["vouchersdisableresponse",{"_index":477,"name":{"1344":{}},"parent":{}}],["vouchersenableresponse",{"_index":476,"name":{"1343":{}},"parent":{}}],["vouchersgetresponse",{"_index":468,"name":{"1305":{}},"parent":{}}],["vouchersimport",{"_index":478,"name":{"1345":{}},"parent":{"1346":{},"1347":{},"1348":{},"1349":{},"1350":{},"1351":{},"1352":{},"1353":{},"1354":{},"1355":{},"1356":{},"1358":{},"1359":{}}}],["vouchersimport.__type",{"_index":479,"name":{},"parent":{"1357":{},"1360":{},"1361":{},"1362":{},"1363":{},"1364":{}}}],["vouchersimportresponse",{"_index":484,"name":{"1372":{}},"parent":{"1373":{}}}],["vouchersimportresponse.__type",{"_index":485,"name":{},"parent":{"1374":{}}}],["voucherslistparams",{"_index":473,"name":{"1320":{}},"parent":{"1321":{},"1322":{},"1323":{},"1324":{},"1325":{},"1326":{},"1327":{},"1330":{},"1331":{},"1334":{},"1335":{},"1336":{}}}],["voucherslistparams.__type",{"_index":474,"name":{},"parent":{"1328":{},"1329":{},"1332":{},"1333":{},"1337":{}}}],["voucherslistresponse",{"_index":475,"name":{"1338":{}},"parent":{"1339":{},"1340":{},"1341":{},"1342":{}}}],["vouchersqualificationexaminebody",{"_index":460,"name":{"1273":{}},"parent":{"1274":{},"1275":{},"1276":{},"1277":{},"1280":{}}}],["vouchersqualificationexaminebody.__type",{"_index":461,"name":{},"parent":{"1278":{},"1279":{}}}],["vouchersqualificationexamineparams",{"_index":462,"name":{"1281":{}},"parent":{"1282":{},"1283":{},"1284":{}}}],["vouchersqualificationexamineresponse",{"_index":463,"name":{"1285":{}},"parent":{"1286":{},"1287":{},"1288":{},"1289":{}}}],["vouchersresponse",{"_index":457,"name":{"1210":{}},"parent":{"1211":{},"1212":{},"1213":{},"1214":{},"1215":{},"1216":{},"1217":{},"1218":{},"1221":{},"1222":{},"1224":{},"1225":{},"1226":{},"1227":{},"1230":{},"1231":{},"1232":{},"1239":{},"1240":{},"1248":{},"1249":{},"1250":{},"1251":{},"1252":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{}}}],["vouchersresponse.__type",{"_index":458,"name":{},"parent":{"1219":{},"1220":{},"1223":{},"1228":{},"1229":{},"1233":{},"1234":{},"1235":{},"1236":{},"1237":{},"1238":{},"1241":{},"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1253":{},"1254":{},"1257":{},"1258":{},"1269":{},"1270":{},"1271":{},"1272":{}}}],["vouchersresponse.__type.__type",{"_index":459,"name":{},"parent":{"1255":{},"1256":{},"1259":{},"1260":{}}}],["vouchersupdate",{"_index":469,"name":{"1306":{}},"parent":{"1307":{},"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{}}}],["vouchersupdate.__type",{"_index":470,"name":{},"parent":{"1316":{}}}],["vouchersupdateresponse",{"_index":471,"name":{"1317":{}},"parent":{}}],["vouchertype",{"_index":454,"name":{"1191":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = {"kinds":{"4":"Enumeration","16":"Enumeration member","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Balance","url":"classes/Balance.html","classes":"tsd-kind-class"},{"id":1,"kind":512,"name":"constructor","url":"classes/Balance.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Balance"},{"id":2,"kind":2048,"name":"create","url":"classes/Balance.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Balance"},{"id":3,"kind":128,"name":"Campaigns","url":"classes/Campaigns.html","classes":"tsd-kind-class"},{"id":4,"kind":512,"name":"constructor","url":"classes/Campaigns.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Campaigns"},{"id":5,"kind":1024,"name":"qualifications","url":"classes/Campaigns.html#qualifications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Campaigns"},{"id":6,"kind":2048,"name":"create","url":"classes/Campaigns.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":7,"kind":2048,"name":"update","url":"classes/Campaigns.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":8,"kind":2048,"name":"get","url":"classes/Campaigns.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":9,"kind":2048,"name":"delete","url":"classes/Campaigns.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":10,"kind":2048,"name":"addVoucher","url":"classes/Campaigns.html#addVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":11,"kind":2048,"name":"addCertainVoucher","url":"classes/Campaigns.html#addCertainVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":12,"kind":2048,"name":"importVouchers","url":"classes/Campaigns.html#importVouchers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":13,"kind":2048,"name":"list","url":"classes/Campaigns.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":14,"kind":128,"name":"ClientSide","url":"classes/ClientSide.html","classes":"tsd-kind-class"},{"id":15,"kind":512,"name":"constructor","url":"classes/ClientSide.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ClientSide"},{"id":16,"kind":2048,"name":"setIdentity","url":"classes/ClientSide.html#setIdentity","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":17,"kind":2048,"name":"validate","url":"classes/ClientSide.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":18,"kind":2048,"name":"redeem","url":"classes/ClientSide.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":19,"kind":2048,"name":"publish","url":"classes/ClientSide.html#publish","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":20,"kind":2048,"name":"track","url":"classes/ClientSide.html#track","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":21,"kind":2048,"name":"listVouchers","url":"classes/ClientSide.html#listVouchers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":22,"kind":2048,"name":"createCustomer","url":"classes/ClientSide.html#createCustomer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":23,"kind":2048,"name":"listConsents","url":"classes/ClientSide.html#listConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":24,"kind":2048,"name":"updateConsents","url":"classes/ClientSide.html#updateConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":25,"kind":2048,"name":"validateStackable","url":"classes/ClientSide.html#validateStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":26,"kind":2048,"name":"redeemStackable","url":"classes/ClientSide.html#redeemStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":27,"kind":128,"name":"Consents","url":"classes/Consents.html","classes":"tsd-kind-class"},{"id":28,"kind":512,"name":"constructor","url":"classes/Consents.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Consents"},{"id":29,"kind":2048,"name":"list","url":"classes/Consents.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Consents"},{"id":30,"kind":128,"name":"Customers","url":"classes/Customers.html","classes":"tsd-kind-class"},{"id":31,"kind":512,"name":"constructor","url":"classes/Customers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Customers"},{"id":32,"kind":2048,"name":"create","url":"classes/Customers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":33,"kind":2048,"name":"get","url":"classes/Customers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":34,"kind":2048,"name":"list","url":"classes/Customers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":35,"kind":2048,"name":"scroll","url":"classes/Customers.html#scroll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":36,"kind":2048,"name":"update","url":"classes/Customers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":37,"kind":2048,"name":"delete","url":"classes/Customers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":38,"kind":2048,"name":"updateConsents","url":"classes/Customers.html#updateConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":39,"kind":2048,"name":"listActivities","url":"classes/Customers.html#listActivities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":40,"kind":128,"name":"Distributions","url":"classes/Distributions.html","classes":"tsd-kind-class"},{"id":41,"kind":512,"name":"constructor","url":"classes/Distributions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Distributions"},{"id":42,"kind":1024,"name":"publications","url":"classes/Distributions.html#publications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Distributions"},{"id":43,"kind":1024,"name":"exports","url":"classes/Distributions.html#exports","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Distributions"},{"id":44,"kind":128,"name":"Events","url":"classes/Events.html","classes":"tsd-kind-class"},{"id":45,"kind":512,"name":"constructor","url":"classes/Events.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Events"},{"id":46,"kind":2048,"name":"create","url":"classes/Events.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Events"},{"id":47,"kind":128,"name":"Exports","url":"classes/Exports.html","classes":"tsd-kind-class"},{"id":48,"kind":512,"name":"constructor","url":"classes/Exports.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Exports"},{"id":49,"kind":2048,"name":"create","url":"classes/Exports.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":50,"kind":2048,"name":"get","url":"classes/Exports.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":51,"kind":2048,"name":"delete","url":"classes/Exports.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":52,"kind":128,"name":"Loyalties","url":"classes/Loyalties.html","classes":"tsd-kind-class"},{"id":53,"kind":512,"name":"constructor","url":"classes/Loyalties.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Loyalties"},{"id":54,"kind":2048,"name":"list","url":"classes/Loyalties.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":55,"kind":2048,"name":"create","url":"classes/Loyalties.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":56,"kind":2048,"name":"get","url":"classes/Loyalties.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":57,"kind":2048,"name":"update","url":"classes/Loyalties.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":58,"kind":2048,"name":"delete","url":"classes/Loyalties.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":59,"kind":2048,"name":"listRewardAssignments","url":"classes/Loyalties.html#listRewardAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":60,"kind":2048,"name":"createRewardAssignments","url":"classes/Loyalties.html#createRewardAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":61,"kind":2048,"name":"updateRewardAssignment","url":"classes/Loyalties.html#updateRewardAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":62,"kind":2048,"name":"deleteRewardAssignment","url":"classes/Loyalties.html#deleteRewardAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":63,"kind":2048,"name":"listEarningRules","url":"classes/Loyalties.html#listEarningRules","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":64,"kind":2048,"name":"createEarningRule","url":"classes/Loyalties.html#createEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":65,"kind":2048,"name":"updateEarningRule","url":"classes/Loyalties.html#updateEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":66,"kind":2048,"name":"deleteEarningRule","url":"classes/Loyalties.html#deleteEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":67,"kind":2048,"name":"listMembers","url":"classes/Loyalties.html#listMembers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":68,"kind":2048,"name":"createMember","url":"classes/Loyalties.html#createMember","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":69,"kind":2048,"name":"getMember","url":"classes/Loyalties.html#getMember","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":70,"kind":2048,"name":"getMemberActivities","url":"classes/Loyalties.html#getMemberActivities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":71,"kind":2048,"name":"addPoints","url":"classes/Loyalties.html#addPoints","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":72,"kind":2048,"name":"redeemReward","url":"classes/Loyalties.html#redeemReward","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":73,"kind":128,"name":"Orders","url":"classes/Orders.html","classes":"tsd-kind-class"},{"id":74,"kind":512,"name":"constructor","url":"classes/Orders.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Orders"},{"id":75,"kind":2048,"name":"create","url":"classes/Orders.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":76,"kind":2048,"name":"get","url":"classes/Orders.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":77,"kind":2048,"name":"update","url":"classes/Orders.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":78,"kind":2048,"name":"list","url":"classes/Orders.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":79,"kind":2048,"name":"import","url":"classes/Orders.html#import","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":80,"kind":128,"name":"Products","url":"classes/Products.html","classes":"tsd-kind-class"},{"id":81,"kind":512,"name":"constructor","url":"classes/Products.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Products"},{"id":82,"kind":2048,"name":"create","url":"classes/Products.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":83,"kind":2048,"name":"get","url":"classes/Products.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":84,"kind":2048,"name":"update","url":"classes/Products.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":85,"kind":2048,"name":"bulkUpdateMetadata","url":"classes/Products.html#bulkUpdateMetadata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":86,"kind":2048,"name":"bulkUpdate","url":"classes/Products.html#bulkUpdate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":87,"kind":2048,"name":"delete","url":"classes/Products.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":88,"kind":2048,"name":"list","url":"classes/Products.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":89,"kind":2048,"name":"createSku","url":"classes/Products.html#createSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":90,"kind":2048,"name":"getSku","url":"classes/Products.html#getSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":91,"kind":2048,"name":"updateSku","url":"classes/Products.html#updateSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":92,"kind":2048,"name":"deleteSku","url":"classes/Products.html#deleteSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":93,"kind":2048,"name":"listSkus","url":"classes/Products.html#listSkus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":94,"kind":128,"name":"Promotions","url":"classes/Promotions.html","classes":"tsd-kind-class"},{"id":95,"kind":512,"name":"constructor","url":"classes/Promotions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Promotions"},{"id":96,"kind":1024,"name":"tiers","url":"classes/Promotions.html#tiers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Promotions"},{"id":97,"kind":2048,"name":"create","url":"classes/Promotions.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Promotions"},{"id":98,"kind":2048,"name":"validate","url":"classes/Promotions.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Promotions"},{"id":99,"kind":128,"name":"PromotionTiers","url":"classes/PromotionTiers.html","classes":"tsd-kind-class"},{"id":100,"kind":512,"name":"constructor","url":"classes/PromotionTiers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PromotionTiers"},{"id":101,"kind":2048,"name":"listAll","url":"classes/PromotionTiers.html#listAll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":102,"kind":2048,"name":"list","url":"classes/PromotionTiers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":103,"kind":2048,"name":"get","url":"classes/PromotionTiers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":104,"kind":2048,"name":"create","url":"classes/PromotionTiers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":105,"kind":2048,"name":"redeem","url":"classes/PromotionTiers.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":106,"kind":2048,"name":"update","url":"classes/PromotionTiers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":107,"kind":2048,"name":"delete","url":"classes/PromotionTiers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":108,"kind":128,"name":"Redemptions","url":"classes/Redemptions.html","classes":"tsd-kind-class"},{"id":109,"kind":512,"name":"constructor","url":"classes/Redemptions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Redemptions"},{"id":110,"kind":2048,"name":"redeem","url":"classes/Redemptions.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":111,"kind":2048,"name":"redeemStackable","url":"classes/Redemptions.html#redeemStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":112,"kind":2048,"name":"get","url":"classes/Redemptions.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":113,"kind":2048,"name":"list","url":"classes/Redemptions.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":114,"kind":2048,"name":"getForVoucher","url":"classes/Redemptions.html#getForVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":115,"kind":2048,"name":"rollback","url":"classes/Redemptions.html#rollback","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":116,"kind":2048,"name":"rollbackStackable","url":"classes/Redemptions.html#rollbackStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":117,"kind":128,"name":"RequestController","url":"classes/RequestController.html","classes":"tsd-kind-class"},{"id":118,"kind":512,"name":"constructor","url":"classes/RequestController.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"RequestController"},{"id":119,"kind":1024,"name":"baseURL","url":"classes/RequestController.html#baseURL","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":120,"kind":1024,"name":"basePath","url":"classes/RequestController.html#basePath","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":121,"kind":1024,"name":"headers","url":"classes/RequestController.html#headers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":122,"kind":1024,"name":"request","url":"classes/RequestController.html#request","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":123,"kind":1024,"name":"lastResponseHeaders","url":"classes/RequestController.html#lastResponseHeaders","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":124,"kind":1024,"name":"isLastResponseHeadersSet","url":"classes/RequestController.html#isLastResponseHeadersSet","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":125,"kind":1024,"name":"exposeErrorCause","url":"classes/RequestController.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":126,"kind":2048,"name":"isLastReponseHeadersSet","url":"classes/RequestController.html#isLastReponseHeadersSet","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":127,"kind":2048,"name":"getLastResponseHeaders","url":"classes/RequestController.html#getLastResponseHeaders","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":128,"kind":2048,"name":"setLastResponseHeaders","url":"classes/RequestController.html#setLastResponseHeaders","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":129,"kind":2048,"name":"setBaseUrl","url":"classes/RequestController.html#setBaseUrl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":130,"kind":2048,"name":"get","url":"classes/RequestController.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":131,"kind":2048,"name":"post","url":"classes/RequestController.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":132,"kind":2048,"name":"put","url":"classes/RequestController.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":133,"kind":2048,"name":"delete","url":"classes/RequestController.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":134,"kind":128,"name":"Rewards","url":"classes/Rewards.html","classes":"tsd-kind-class"},{"id":135,"kind":512,"name":"constructor","url":"classes/Rewards.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Rewards"},{"id":136,"kind":2048,"name":"list","url":"classes/Rewards.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":137,"kind":2048,"name":"create","url":"classes/Rewards.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":138,"kind":2048,"name":"get","url":"classes/Rewards.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":139,"kind":2048,"name":"update","url":"classes/Rewards.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":140,"kind":2048,"name":"delete","url":"classes/Rewards.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":141,"kind":2048,"name":"listAssignments","url":"classes/Rewards.html#listAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":142,"kind":2048,"name":"createAssignment","url":"classes/Rewards.html#createAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":143,"kind":2048,"name":"updateAssignment","url":"classes/Rewards.html#updateAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":144,"kind":2048,"name":"deleteAssignment","url":"classes/Rewards.html#deleteAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":145,"kind":128,"name":"Segments","url":"classes/Segments.html","classes":"tsd-kind-class"},{"id":146,"kind":512,"name":"constructor","url":"classes/Segments.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Segments"},{"id":147,"kind":2048,"name":"create","url":"classes/Segments.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":148,"kind":2048,"name":"get","url":"classes/Segments.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":149,"kind":2048,"name":"delete","url":"classes/Segments.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":150,"kind":2048,"name":"list","url":"classes/Segments.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":151,"kind":128,"name":"ValidationRules","url":"classes/ValidationRules.html","classes":"tsd-kind-class"},{"id":152,"kind":512,"name":"constructor","url":"classes/ValidationRules.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ValidationRules"},{"id":153,"kind":2048,"name":"create","url":"classes/ValidationRules.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":154,"kind":2048,"name":"get","url":"classes/ValidationRules.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":155,"kind":2048,"name":"update","url":"classes/ValidationRules.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":156,"kind":2048,"name":"delete","url":"classes/ValidationRules.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":157,"kind":2048,"name":"createAssignment","url":"classes/ValidationRules.html#createAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":158,"kind":2048,"name":"deleteAssignment","url":"classes/ValidationRules.html#deleteAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":159,"kind":2048,"name":"validate","url":"classes/ValidationRules.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":160,"kind":2048,"name":"list","url":"classes/ValidationRules.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":161,"kind":2048,"name":"listAssignments","url":"classes/ValidationRules.html#listAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":162,"kind":128,"name":"Validations","url":"classes/Validations.html","classes":"tsd-kind-class"},{"id":163,"kind":512,"name":"constructor","url":"classes/Validations.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Validations"},{"id":164,"kind":2048,"name":"validateVoucher","url":"classes/Validations.html#validateVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":165,"kind":2048,"name":"validate","url":"classes/Validations.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":166,"kind":2048,"name":"validateStackable","url":"classes/Validations.html#validateStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":167,"kind":128,"name":"VoucherifyError","url":"classes/VoucherifyError.html","classes":"tsd-kind-class"},{"id":168,"kind":512,"name":"constructor","url":"classes/VoucherifyError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"VoucherifyError"},{"id":169,"kind":1024,"name":"code","url":"classes/VoucherifyError.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":170,"kind":1024,"name":"key","url":"classes/VoucherifyError.html#key","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":171,"kind":1024,"name":"details","url":"classes/VoucherifyError.html#details","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":172,"kind":1024,"name":"request_id","url":"classes/VoucherifyError.html#request_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":173,"kind":1024,"name":"resource_id","url":"classes/VoucherifyError.html#resource_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":174,"kind":1024,"name":"resource_type","url":"classes/VoucherifyError.html#resource_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":175,"kind":1024,"name":"related_object_ids","url":"classes/VoucherifyError.html#related_object_ids","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":176,"kind":1024,"name":"related_object_type","url":"classes/VoucherifyError.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":177,"kind":1024,"name":"related_object_total","url":"classes/VoucherifyError.html#related_object_total","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":178,"kind":1024,"name":"cause","url":"classes/VoucherifyError.html#cause","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":179,"kind":128,"name":"Vouchers","url":"classes/Vouchers.html","classes":"tsd-kind-class"},{"id":180,"kind":512,"name":"constructor","url":"classes/Vouchers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Vouchers"},{"id":181,"kind":1024,"name":"qualifications","url":"classes/Vouchers.html#qualifications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vouchers"},{"id":182,"kind":1024,"name":"balance","url":"classes/Vouchers.html#balance","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vouchers"},{"id":183,"kind":2048,"name":"create","url":"classes/Vouchers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":184,"kind":2048,"name":"get","url":"classes/Vouchers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":185,"kind":2048,"name":"update","url":"classes/Vouchers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":186,"kind":2048,"name":"delete","url":"classes/Vouchers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":187,"kind":2048,"name":"list","url":"classes/Vouchers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":188,"kind":2048,"name":"enable","url":"classes/Vouchers.html#enable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":189,"kind":2048,"name":"disable","url":"classes/Vouchers.html#disable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":190,"kind":2048,"name":"import","url":"classes/Vouchers.html#import","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":191,"kind":2048,"name":"bulkUpdateMetadata","url":"classes/Vouchers.html#bulkUpdateMetadata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":192,"kind":2048,"name":"bulkUpdate","url":"classes/Vouchers.html#bulkUpdate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":193,"kind":2048,"name":"releaseValidationSession","url":"classes/Vouchers.html#releaseValidationSession","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":194,"kind":256,"name":"SimpleCustomer","url":"interfaces/SimpleCustomer.html","classes":"tsd-kind-interface"},{"id":195,"kind":1024,"name":"id","url":"interfaces/SimpleCustomer.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":196,"kind":1024,"name":"name","url":"interfaces/SimpleCustomer.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":197,"kind":1024,"name":"email","url":"interfaces/SimpleCustomer.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":198,"kind":1024,"name":"source_id","url":"interfaces/SimpleCustomer.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":199,"kind":1024,"name":"metadata","url":"interfaces/SimpleCustomer.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":200,"kind":1024,"name":"object","url":"interfaces/SimpleCustomer.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":201,"kind":256,"name":"CustomerObject","url":"interfaces/CustomerObject.html","classes":"tsd-kind-interface"},{"id":202,"kind":1024,"name":"id","url":"interfaces/CustomerObject.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":203,"kind":1024,"name":"source_id","url":"interfaces/CustomerObject.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":204,"kind":1024,"name":"name","url":"interfaces/CustomerObject.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":205,"kind":1024,"name":"email","url":"interfaces/CustomerObject.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":206,"kind":1024,"name":"phone","url":"interfaces/CustomerObject.html#phone","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":207,"kind":1024,"name":"description","url":"interfaces/CustomerObject.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":208,"kind":1024,"name":"address","url":"interfaces/CustomerObject.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":209,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":210,"kind":1024,"name":"city","url":"interfaces/CustomerObject.html#__type.city","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":211,"kind":1024,"name":"state","url":"interfaces/CustomerObject.html#__type.state","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":212,"kind":1024,"name":"line_1","url":"interfaces/CustomerObject.html#__type.line_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":213,"kind":1024,"name":"line_2","url":"interfaces/CustomerObject.html#__type.line_2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":214,"kind":1024,"name":"country","url":"interfaces/CustomerObject.html#__type.country","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":215,"kind":1024,"name":"postal_code","url":"interfaces/CustomerObject.html#__type.postal_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":216,"kind":1024,"name":"summary","url":"interfaces/CustomerObject.html#summary","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":217,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":218,"kind":1024,"name":"redemptions","url":"interfaces/CustomerObject.html#__type-2.redemptions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":219,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":220,"kind":1024,"name":"total_redeemed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_redeemed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":221,"kind":1024,"name":"total_failed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_failed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":222,"kind":1024,"name":"total_succeeded","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_succeeded","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":223,"kind":1024,"name":"total_rolled_back","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rolled_back","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":224,"kind":1024,"name":"total_rollback_failed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rollback_failed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":225,"kind":1024,"name":"total_rollback_succeeded","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rollback_succeeded","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":226,"kind":1024,"name":"gift","url":"interfaces/CustomerObject.html#__type-2.__type-4.gift","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":227,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":228,"kind":1024,"name":"redeemed_amount","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5.redeemed_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":229,"kind":1024,"name":"amount_to_go","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5.amount_to_go","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":230,"kind":1024,"name":"loyalty","url":"interfaces/CustomerObject.html#__type-2.__type-4.loyalty-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":231,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":232,"kind":1024,"name":"redeemed_points","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":233,"kind":1024,"name":"points_to_go","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6.points_to_go","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":234,"kind":1024,"name":"orders","url":"interfaces/CustomerObject.html#__type-2.orders","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":235,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":236,"kind":1024,"name":"total_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":237,"kind":1024,"name":"total_count","url":"interfaces/CustomerObject.html#__type-2.__type-3.total_count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":238,"kind":1024,"name":"average_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.average_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":239,"kind":1024,"name":"last_order_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.last_order_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":240,"kind":1024,"name":"last_order_date","url":"interfaces/CustomerObject.html#__type-2.__type-3.last_order_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":241,"kind":1024,"name":"loyalty","url":"interfaces/CustomerObject.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":242,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":243,"kind":1024,"name":"points","url":"interfaces/CustomerObject.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":244,"kind":1024,"name":"referred_customers","url":"interfaces/CustomerObject.html#__type-1.referred_customers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":245,"kind":1024,"name":"campaigns","url":"interfaces/CustomerObject.html#__type-1.campaigns","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":246,"kind":1024,"name":"metadata","url":"interfaces/CustomerObject.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":247,"kind":1024,"name":"created_at","url":"interfaces/CustomerObject.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":248,"kind":1024,"name":"object","url":"interfaces/CustomerObject.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":249,"kind":4194304,"name":"CustomerUnconfirmed","url":"modules.html#CustomerUnconfirmed","classes":"tsd-kind-type-alias"},{"id":250,"kind":256,"name":"CustomerRequest","url":"interfaces/CustomerRequest.html","classes":"tsd-kind-interface"},{"id":251,"kind":1024,"name":"id","url":"interfaces/CustomerRequest.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":252,"kind":1024,"name":"source_id","url":"interfaces/CustomerRequest.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":253,"kind":1024,"name":"name","url":"interfaces/CustomerRequest.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":254,"kind":1024,"name":"email","url":"interfaces/CustomerRequest.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":255,"kind":1024,"name":"metadata","url":"interfaces/CustomerRequest.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":256,"kind":1024,"name":"description","url":"interfaces/CustomerRequest.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":257,"kind":1024,"name":"address","url":"interfaces/CustomerRequest.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":258,"kind":65536,"name":"__type","url":"interfaces/CustomerRequest.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":259,"kind":1024,"name":"city","url":"interfaces/CustomerRequest.html#__type.city","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":260,"kind":1024,"name":"state","url":"interfaces/CustomerRequest.html#__type.state","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":261,"kind":1024,"name":"line_1","url":"interfaces/CustomerRequest.html#__type.line_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":262,"kind":1024,"name":"line_2","url":"interfaces/CustomerRequest.html#__type.line_2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":263,"kind":1024,"name":"country","url":"interfaces/CustomerRequest.html#__type.country","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":264,"kind":1024,"name":"postal_code","url":"interfaces/CustomerRequest.html#__type.postal_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":265,"kind":1024,"name":"phone","url":"interfaces/CustomerRequest.html#phone","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":266,"kind":1024,"name":"birthdate","url":"interfaces/CustomerRequest.html#birthdate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":267,"kind":256,"name":"CustomersCommonListRequest","url":"interfaces/CustomersCommonListRequest.html","classes":"tsd-kind-interface"},{"id":268,"kind":1024,"name":"limit","url":"interfaces/CustomersCommonListRequest.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":269,"kind":1024,"name":"page","url":"interfaces/CustomersCommonListRequest.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":270,"kind":1024,"name":"email","url":"interfaces/CustomersCommonListRequest.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":271,"kind":1024,"name":"city","url":"interfaces/CustomersCommonListRequest.html#city","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":272,"kind":1024,"name":"name","url":"interfaces/CustomersCommonListRequest.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":273,"kind":1024,"name":"order","url":"interfaces/CustomersCommonListRequest.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":274,"kind":1024,"name":"starting_after","url":"interfaces/CustomersCommonListRequest.html#starting_after","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":275,"kind":256,"name":"CustomersCommonListResponse","url":"interfaces/CustomersCommonListResponse.html","classes":"tsd-kind-interface"},{"id":276,"kind":1024,"name":"object","url":"interfaces/CustomersCommonListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":277,"kind":1024,"name":"total","url":"interfaces/CustomersCommonListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":278,"kind":1024,"name":"data_ref","url":"interfaces/CustomersCommonListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":279,"kind":1024,"name":"customers","url":"interfaces/CustomersCommonListResponse.html#customers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":280,"kind":1024,"name":"has_more","url":"interfaces/CustomersCommonListResponse.html#has_more","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":281,"kind":256,"name":"CustomerActivitiesListQueryParams","url":"interfaces/CustomerActivitiesListQueryParams.html","classes":"tsd-kind-interface"},{"id":282,"kind":1024,"name":"limit","url":"interfaces/CustomerActivitiesListQueryParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":283,"kind":1024,"name":"order","url":"interfaces/CustomerActivitiesListQueryParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":284,"kind":1024,"name":"starting_after","url":"interfaces/CustomerActivitiesListQueryParams.html#starting_after","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":285,"kind":1024,"name":"starting_after_id","url":"interfaces/CustomerActivitiesListQueryParams.html#starting_after_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":286,"kind":1024,"name":"campaign_type","url":"interfaces/CustomerActivitiesListQueryParams.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":287,"kind":1024,"name":"campaign_id","url":"interfaces/CustomerActivitiesListQueryParams.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":288,"kind":256,"name":"CustomerActivitiesListResponse","url":"interfaces/CustomerActivitiesListResponse.html","classes":"tsd-kind-interface"},{"id":289,"kind":1024,"name":"object","url":"interfaces/CustomerActivitiesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":290,"kind":1024,"name":"total","url":"interfaces/CustomerActivitiesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":291,"kind":1024,"name":"data_ref","url":"interfaces/CustomerActivitiesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":292,"kind":1024,"name":"data","url":"interfaces/CustomerActivitiesListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":293,"kind":4194304,"name":"CustomersCreateBody","url":"modules.html#CustomersCreateBody","classes":"tsd-kind-type-alias"},{"id":294,"kind":4194304,"name":"CustomersCreateResponse","url":"modules.html#CustomersCreateResponse","classes":"tsd-kind-type-alias"},{"id":295,"kind":4194304,"name":"CustomersGetResponse","url":"modules.html#CustomersGetResponse","classes":"tsd-kind-type-alias"},{"id":296,"kind":4194304,"name":"CustomersListParams","url":"modules.html#CustomersListParams","classes":"tsd-kind-type-alias"},{"id":297,"kind":4194304,"name":"CustomersListResponse","url":"modules.html#CustomersListResponse","classes":"tsd-kind-type-alias"},{"id":298,"kind":4194304,"name":"CustomersScrollParams","url":"modules.html#CustomersScrollParams","classes":"tsd-kind-type-alias"},{"id":299,"kind":4194304,"name":"CustomersScrollResponse","url":"modules.html#CustomersScrollResponse","classes":"tsd-kind-type-alias"},{"id":300,"kind":4194304,"name":"CustomersScrollYield","url":"modules.html#CustomersScrollYield","classes":"tsd-kind-type-alias"},{"id":301,"kind":4194304,"name":"CustomersUpdateParams","url":"modules.html#CustomersUpdateParams","classes":"tsd-kind-type-alias"},{"id":302,"kind":4194304,"name":"CustomersUpdateResponse","url":"modules.html#CustomersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":303,"kind":4194304,"name":"CustomersUpdateConsentsBody","url":"modules.html#CustomersUpdateConsentsBody","classes":"tsd-kind-type-alias"},{"id":304,"kind":256,"name":"BalanceCreateParams","url":"interfaces/BalanceCreateParams.html","classes":"tsd-kind-interface"},{"id":305,"kind":1024,"name":"amount","url":"interfaces/BalanceCreateParams.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateParams"},{"id":306,"kind":256,"name":"BalanceCreateResponse","url":"interfaces/BalanceCreateResponse.html","classes":"tsd-kind-interface"},{"id":307,"kind":1024,"name":"amount","url":"interfaces/BalanceCreateResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":308,"kind":1024,"name":"total","url":"interfaces/BalanceCreateResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":309,"kind":1024,"name":"balance","url":"interfaces/BalanceCreateResponse.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":310,"kind":1024,"name":"type","url":"interfaces/BalanceCreateResponse.html#type-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":311,"kind":1024,"name":"object","url":"interfaces/BalanceCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":312,"kind":1024,"name":"related_object","url":"interfaces/BalanceCreateResponse.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":313,"kind":65536,"name":"__type","url":"interfaces/BalanceCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":314,"kind":1024,"name":"type","url":"interfaces/BalanceCreateResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"BalanceCreateResponse.__type"},{"id":315,"kind":1024,"name":"id","url":"interfaces/BalanceCreateResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"BalanceCreateResponse.__type"},{"id":316,"kind":4194304,"name":"ClientSideCustomersUpdateConsentsBody","url":"modules.html#ClientSideCustomersUpdateConsentsBody","classes":"tsd-kind-type-alias"},{"id":317,"kind":4194304,"name":"ClientSideCustomersCreateParams","url":"modules.html#ClientSideCustomersCreateParams","classes":"tsd-kind-type-alias"},{"id":318,"kind":4194304,"name":"ClientSideCustomersCreateResponse","url":"modules.html#ClientSideCustomersCreateResponse","classes":"tsd-kind-type-alias"},{"id":319,"kind":256,"name":"ClientSideValidateParams","url":"interfaces/ClientSideValidateParams.html","classes":"tsd-kind-interface"},{"id":320,"kind":1024,"name":"code","url":"interfaces/ClientSideValidateParams.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":321,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideValidateParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":322,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateParams.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":323,"kind":1024,"name":"items","url":"interfaces/ClientSideValidateParams.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":324,"kind":1024,"name":"orderMetadata","url":"interfaces/ClientSideValidateParams.html#orderMetadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":325,"kind":1024,"name":"customer","url":"interfaces/ClientSideValidateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":326,"kind":1024,"name":"reward","url":"interfaces/ClientSideValidateParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":327,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":328,"kind":1024,"name":"id","url":"interfaces/ClientSideValidateParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateParams.__type"},{"id":329,"kind":1024,"name":"metadata","url":"interfaces/ClientSideValidateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":330,"kind":1024,"name":"session_type","url":"interfaces/ClientSideValidateParams.html#session_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":331,"kind":1024,"name":"session_key","url":"interfaces/ClientSideValidateParams.html#session_key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":332,"kind":1024,"name":"session_ttl","url":"interfaces/ClientSideValidateParams.html#session_ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":333,"kind":1024,"name":"session_ttl_unit","url":"interfaces/ClientSideValidateParams.html#session_ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":334,"kind":4194304,"name":"ClientSideListVouchersParams","url":"modules.html#ClientSideListVouchersParams","classes":"tsd-kind-type-alias"},{"id":335,"kind":4194304,"name":"ClientSideVoucherListing","url":"modules.html#ClientSideVoucherListing","classes":"tsd-kind-type-alias"},{"id":336,"kind":256,"name":"ClientSideListVouchersResponse","url":"interfaces/ClientSideListVouchersResponse.html","classes":"tsd-kind-interface"},{"id":337,"kind":1024,"name":"object","url":"interfaces/ClientSideListVouchersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":338,"kind":1024,"name":"total","url":"interfaces/ClientSideListVouchersResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":339,"kind":1024,"name":"data_ref","url":"interfaces/ClientSideListVouchersResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":340,"kind":1024,"name":"vouchers","url":"interfaces/ClientSideListVouchersResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":341,"kind":256,"name":"ClientSideValidateResponse","url":"interfaces/ClientSideValidateResponse.html","classes":"tsd-kind-interface"},{"id":342,"kind":1024,"name":"code","url":"interfaces/ClientSideValidateResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":343,"kind":1024,"name":"valid","url":"interfaces/ClientSideValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":344,"kind":1024,"name":"discount","url":"interfaces/ClientSideValidateResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":345,"kind":1024,"name":"applicable_to","url":"interfaces/ClientSideValidateResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":346,"kind":1024,"name":"order","url":"interfaces/ClientSideValidateResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":347,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":348,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.amount-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":349,"kind":1024,"name":"discount_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":350,"kind":1024,"name":"total_discount_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":351,"kind":1024,"name":"total_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":352,"kind":1024,"name":"items","url":"interfaces/ClientSideValidateResponse.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":353,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideValidateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":354,"kind":1024,"name":"campaign_id","url":"interfaces/ClientSideValidateResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":355,"kind":1024,"name":"loyalty","url":"interfaces/ClientSideValidateResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":356,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":357,"kind":1024,"name":"points_cost","url":"interfaces/ClientSideValidateResponse.html#__type-1.points_cost","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":358,"kind":1024,"name":"gift","url":"interfaces/ClientSideValidateResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":359,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":360,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":361,"kind":1024,"name":"balance","url":"interfaces/ClientSideValidateResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":362,"kind":1024,"name":"promotions","url":"interfaces/ClientSideValidateResponse.html#promotions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":363,"kind":256,"name":"ClientSideRedeemPayload","url":"interfaces/ClientSideRedeemPayload.html","classes":"tsd-kind-interface"},{"id":364,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideRedeemPayload.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":365,"kind":1024,"name":"customer","url":"interfaces/ClientSideRedeemPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":366,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemPayload.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":367,"kind":1024,"name":"metadata","url":"interfaces/ClientSideRedeemPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":368,"kind":1024,"name":"reward","url":"interfaces/ClientSideRedeemPayload.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":369,"kind":65536,"name":"__type","url":"interfaces/ClientSideRedeemPayload.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":370,"kind":1024,"name":"id","url":"interfaces/ClientSideRedeemPayload.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideRedeemPayload.__type"},{"id":371,"kind":1024,"name":"session","url":"interfaces/ClientSideRedeemPayload.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":372,"kind":256,"name":"ClientSideRedeemResponse","url":"interfaces/ClientSideRedeemResponse.html","classes":"tsd-kind-interface"},{"id":373,"kind":1024,"name":"id","url":"interfaces/ClientSideRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":374,"kind":1024,"name":"object","url":"interfaces/ClientSideRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":375,"kind":1024,"name":"date","url":"interfaces/ClientSideRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":376,"kind":1024,"name":"customer_id","url":"interfaces/ClientSideRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":377,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":378,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":379,"kind":1024,"name":"metadata","url":"interfaces/ClientSideRedeemResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":380,"kind":1024,"name":"result","url":"interfaces/ClientSideRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":381,"kind":1024,"name":"voucher","url":"interfaces/ClientSideRedeemResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":382,"kind":256,"name":"ClientSidePublishPayload","url":"interfaces/ClientSidePublishPayload.html","classes":"tsd-kind-interface"},{"id":383,"kind":1024,"name":"source_id","url":"interfaces/ClientSidePublishPayload.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":384,"kind":1024,"name":"channel","url":"interfaces/ClientSidePublishPayload.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":385,"kind":1024,"name":"customer","url":"interfaces/ClientSidePublishPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":386,"kind":1024,"name":"voucher","url":"interfaces/ClientSidePublishPayload.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":387,"kind":1024,"name":"metadata","url":"interfaces/ClientSidePublishPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":388,"kind":4194304,"name":"ClientSidePublishPreparedPayload","url":"modules.html#ClientSidePublishPreparedPayload","classes":"tsd-kind-type-alias"},{"id":389,"kind":256,"name":"ClientSidePublishQueryParams","url":"interfaces/ClientSidePublishQueryParams.html","classes":"tsd-kind-interface"},{"id":390,"kind":1024,"name":"join_once","url":"interfaces/ClientSidePublishQueryParams.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishQueryParams"},{"id":391,"kind":1024,"name":"campaign","url":"interfaces/ClientSidePublishQueryParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishQueryParams"},{"id":392,"kind":256,"name":"ClientSidePublishCampaign","url":"interfaces/ClientSidePublishCampaign.html","classes":"tsd-kind-interface"},{"id":393,"kind":1024,"name":"name","url":"interfaces/ClientSidePublishCampaign.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishCampaign"},{"id":394,"kind":1024,"name":"count","url":"interfaces/ClientSidePublishCampaign.html#count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishCampaign"},{"id":395,"kind":4194304,"name":"ClientSidePublishResponse","url":"modules.html#ClientSidePublishResponse","classes":"tsd-kind-type-alias"},{"id":396,"kind":256,"name":"ClientSideTrackLoyalty","url":"interfaces/ClientSideTrackLoyalty.html","classes":"tsd-kind-interface"},{"id":397,"kind":1024,"name":"code","url":"interfaces/ClientSideTrackLoyalty.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackLoyalty"},{"id":398,"kind":256,"name":"ClientSideTrackReferral","url":"interfaces/ClientSideTrackReferral.html","classes":"tsd-kind-interface"},{"id":399,"kind":1024,"name":"code","url":"interfaces/ClientSideTrackReferral.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackReferral"},{"id":400,"kind":256,"name":"ClientSideTrackPayload","url":"interfaces/ClientSideTrackPayload.html","classes":"tsd-kind-interface"},{"id":401,"kind":1024,"name":"event","url":"interfaces/ClientSideTrackPayload.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":402,"kind":1024,"name":"metadata","url":"interfaces/ClientSideTrackPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":403,"kind":1024,"name":"customer","url":"interfaces/ClientSideTrackPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":404,"kind":1024,"name":"loyalty","url":"interfaces/ClientSideTrackPayload.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":405,"kind":1024,"name":"referral","url":"interfaces/ClientSideTrackPayload.html#referral","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":406,"kind":256,"name":"ClientSideTrackResponse","url":"interfaces/ClientSideTrackResponse.html","classes":"tsd-kind-interface"},{"id":407,"kind":1024,"name":"object","url":"interfaces/ClientSideTrackResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackResponse"},{"id":408,"kind":1024,"name":"type","url":"interfaces/ClientSideTrackResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackResponse"},{"id":409,"kind":4194304,"name":"ClientSideRedeemOrder","url":"modules.html#ClientSideRedeemOrder","classes":"tsd-kind-type-alias"},{"id":410,"kind":256,"name":"ClientSideRedeemWidgetPayload","url":"interfaces/ClientSideRedeemWidgetPayload.html","classes":"tsd-kind-interface"},{"id":411,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemWidgetPayload.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemWidgetPayload"},{"id":412,"kind":65536,"name":"__type","url":"interfaces/ClientSideRedeemWidgetPayload.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideRedeemWidgetPayload"},{"id":413,"kind":1024,"name":"amount","url":"interfaces/ClientSideRedeemWidgetPayload.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideRedeemWidgetPayload.__type"},{"id":414,"kind":4194304,"name":"ClientSideTrackCustomer","url":"modules.html#ClientSideTrackCustomer","classes":"tsd-kind-type-alias"},{"id":415,"kind":4194304,"name":"ClientSideConsentsListResponse","url":"modules.html#ClientSideConsentsListResponse","classes":"tsd-kind-type-alias"},{"id":416,"kind":4194304,"name":"ClientSideValidationsValidateStackableParams","url":"modules.html#ClientSideValidationsValidateStackableParams","classes":"tsd-kind-type-alias"},{"id":417,"kind":4194304,"name":"ClientSideValidationValidateStackableResponse","url":"modules.html#ClientSideValidationValidateStackableResponse","classes":"tsd-kind-type-alias"},{"id":418,"kind":4194304,"name":"ClientSideRedemptionsRedeemStackableParams","url":"modules.html#ClientSideRedemptionsRedeemStackableParams","classes":"tsd-kind-type-alias"},{"id":419,"kind":4194304,"name":"ClientSideRedemptionsRedeemStackableResponse","url":"modules.html#ClientSideRedemptionsRedeemStackableResponse","classes":"tsd-kind-type-alias"},{"id":420,"kind":256,"name":"RedemptionsRedeemBody","url":"interfaces/RedemptionsRedeemBody.html","classes":"tsd-kind-interface"},{"id":421,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemBody.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":422,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":423,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":424,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemBody.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":425,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRedeemBody.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":426,"kind":1024,"name":"gift","url":"interfaces/RedemptionsRedeemBody.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":427,"kind":1024,"name":"session","url":"interfaces/RedemptionsRedeemBody.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":428,"kind":256,"name":"RedemptionsRedeemResponse","url":"interfaces/RedemptionsRedeemResponse.html","classes":"tsd-kind-interface"},{"id":429,"kind":1024,"name":"id","url":"interfaces/RedemptionsRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":430,"kind":1024,"name":"object","url":"interfaces/RedemptionsRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":431,"kind":1024,"name":"date","url":"interfaces/RedemptionsRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":432,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":433,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":434,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":435,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":436,"kind":1024,"name":"result","url":"interfaces/RedemptionsRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":437,"kind":1024,"name":"voucher","url":"interfaces/RedemptionsRedeemResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":438,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":439,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRedeemResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":440,"kind":1024,"name":"related_object_type","url":"interfaces/RedemptionsRedeemResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":441,"kind":1024,"name":"gift","url":"interfaces/RedemptionsRedeemResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":442,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":443,"kind":1024,"name":"amount","url":"interfaces/RedemptionsRedeemResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemResponse.__type"},{"id":444,"kind":1024,"name":"loyalty_card","url":"interfaces/RedemptionsRedeemResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":445,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":446,"kind":1024,"name":"points","url":"interfaces/RedemptionsRedeemResponse.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemResponse.__type"},{"id":447,"kind":1024,"name":"promotion_tier","url":"interfaces/RedemptionsRedeemResponse.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":448,"kind":1024,"name":"failure_code","url":"interfaces/RedemptionsRedeemResponse.html#failure_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":449,"kind":1024,"name":"failure_message","url":"interfaces/RedemptionsRedeemResponse.html#failure_message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":450,"kind":256,"name":"RedemptionsListParams","url":"interfaces/RedemptionsListParams.html","classes":"tsd-kind-interface"},{"id":451,"kind":1024,"name":"limit","url":"interfaces/RedemptionsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":452,"kind":1024,"name":"page","url":"interfaces/RedemptionsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":453,"kind":1024,"name":"result","url":"interfaces/RedemptionsListParams.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":454,"kind":1024,"name":"campaign","url":"interfaces/RedemptionsListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":455,"kind":1024,"name":"customer","url":"interfaces/RedemptionsListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":456,"kind":1024,"name":"created_at","url":"interfaces/RedemptionsListParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":457,"kind":65536,"name":"__type","url":"interfaces/RedemptionsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":458,"kind":1024,"name":"before","url":"interfaces/RedemptionsListParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsListParams.__type"},{"id":459,"kind":1024,"name":"after","url":"interfaces/RedemptionsListParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsListParams.__type"},{"id":460,"kind":256,"name":"Redemption","url":"interfaces/Redemption.html","classes":"tsd-kind-interface"},{"id":461,"kind":1024,"name":"id","url":"interfaces/Redemption.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":462,"kind":1024,"name":"object","url":"interfaces/Redemption.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":463,"kind":1024,"name":"date","url":"interfaces/Redemption.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":464,"kind":1024,"name":"customer_id","url":"interfaces/Redemption.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":465,"kind":1024,"name":"tracking_id","url":"interfaces/Redemption.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":466,"kind":1024,"name":"order","url":"interfaces/Redemption.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":467,"kind":1024,"name":"metadata","url":"interfaces/Redemption.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":468,"kind":1024,"name":"result","url":"interfaces/Redemption.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":469,"kind":1024,"name":"failure_code","url":"interfaces/Redemption.html#failure_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":470,"kind":1024,"name":"failure_message","url":"interfaces/Redemption.html#failure_message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":471,"kind":1024,"name":"customer","url":"interfaces/Redemption.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":472,"kind":1024,"name":"related_object_type","url":"interfaces/Redemption.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":473,"kind":1024,"name":"voucher","url":"interfaces/Redemption.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":474,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":475,"kind":1024,"name":"code","url":"interfaces/Redemption.html#__type-2.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":476,"kind":1024,"name":"campaign","url":"interfaces/Redemption.html#__type-2.campaign","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":477,"kind":1024,"name":"id","url":"interfaces/Redemption.html#__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":478,"kind":1024,"name":"object","url":"interfaces/Redemption.html#__type-2.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":479,"kind":1024,"name":"campaign_id","url":"interfaces/Redemption.html#__type-2.campaign_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":480,"kind":1024,"name":"gift","url":"interfaces/Redemption.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":481,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":482,"kind":1024,"name":"amount","url":"interfaces/Redemption.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":483,"kind":1024,"name":"loyalty_card","url":"interfaces/Redemption.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":484,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":485,"kind":1024,"name":"points","url":"interfaces/Redemption.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":486,"kind":256,"name":"RedemptionsListResponse","url":"interfaces/RedemptionsListResponse.html","classes":"tsd-kind-interface"},{"id":487,"kind":1024,"name":"object","url":"interfaces/RedemptionsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":488,"kind":1024,"name":"total","url":"interfaces/RedemptionsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":489,"kind":1024,"name":"data_ref","url":"interfaces/RedemptionsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":490,"kind":1024,"name":"redemptions","url":"interfaces/RedemptionsListResponse.html#redemptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":491,"kind":256,"name":"RedemptionsGetForVoucherResponse","url":"interfaces/RedemptionsGetForVoucherResponse.html","classes":"tsd-kind-interface"},{"id":492,"kind":1024,"name":"object","url":"interfaces/RedemptionsGetForVoucherResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":493,"kind":1024,"name":"total","url":"interfaces/RedemptionsGetForVoucherResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":494,"kind":1024,"name":"data_ref","url":"interfaces/RedemptionsGetForVoucherResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":495,"kind":1024,"name":"quantity","url":"interfaces/RedemptionsGetForVoucherResponse.html#quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":496,"kind":1024,"name":"redeemed_quantity","url":"interfaces/RedemptionsGetForVoucherResponse.html#redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":497,"kind":1024,"name":"redeemed_amount","url":"interfaces/RedemptionsGetForVoucherResponse.html#redeemed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":498,"kind":1024,"name":"redemption_entries","url":"interfaces/RedemptionsGetForVoucherResponse.html#redemption_entries","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":499,"kind":256,"name":"RedemptionsRollbackParams","url":"interfaces/RedemptionsRollbackParams.html","classes":"tsd-kind-interface"},{"id":500,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackParams.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":501,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":502,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":503,"kind":256,"name":"RedemptionsRollbackQueryParams","url":"interfaces/RedemptionsRollbackQueryParams.html","classes":"tsd-kind-interface"},{"id":504,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackQueryParams.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackQueryParams"},{"id":505,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackQueryParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackQueryParams"},{"id":506,"kind":256,"name":"RedemptionsRollbackPayload","url":"interfaces/RedemptionsRollbackPayload.html","classes":"tsd-kind-interface"},{"id":507,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackPayload"},{"id":508,"kind":256,"name":"RedemptionsRollbackResponse","url":"interfaces/RedemptionsRollbackResponse.html","classes":"tsd-kind-interface"},{"id":509,"kind":1024,"name":"id","url":"interfaces/RedemptionsRollbackResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":510,"kind":1024,"name":"object","url":"interfaces/RedemptionsRollbackResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":511,"kind":1024,"name":"date","url":"interfaces/RedemptionsRollbackResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":512,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRollbackResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":513,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":514,"kind":1024,"name":"redemption","url":"interfaces/RedemptionsRollbackResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":515,"kind":1024,"name":"amount","url":"interfaces/RedemptionsRollbackResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":516,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackResponse.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":517,"kind":1024,"name":"result","url":"interfaces/RedemptionsRollbackResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":518,"kind":1024,"name":"voucher","url":"interfaces/RedemptionsRollbackResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":519,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":520,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRollbackResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":521,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRollbackResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":522,"kind":1024,"name":"assignment_id","url":"interfaces/RedemptionsRollbackResponse.html#__type.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackResponse.__type"},{"id":523,"kind":1024,"name":"object","url":"interfaces/RedemptionsRollbackResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackResponse.__type"},{"id":524,"kind":4194304,"name":"SimpleRollback","url":"modules.html#SimpleRollback","classes":"tsd-kind-type-alias"},{"id":525,"kind":256,"name":"RedemptionsRedeemStackableParams","url":"interfaces/RedemptionsRedeemStackableParams.html","classes":"tsd-kind-interface"},{"id":526,"kind":1024,"name":"options","url":"interfaces/RedemptionsRedeemStackableParams.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":527,"kind":1024,"name":"redeemables","url":"interfaces/RedemptionsRedeemStackableParams.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":528,"kind":1024,"name":"session","url":"interfaces/RedemptionsRedeemStackableParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":529,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":530,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemStackableParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":531,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemStackableParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":532,"kind":4194304,"name":"RedemptionsRedeemStackableRedemptionResult","url":"modules.html#RedemptionsRedeemStackableRedemptionResult","classes":"tsd-kind-type-alias"},{"id":533,"kind":4194304,"name":"RedemptionsRedeemStackableOrderResponse","url":"modules.html#RedemptionsRedeemStackableOrderResponse","classes":"tsd-kind-type-alias"},{"id":534,"kind":256,"name":"RedemptionsRedeemStackableResponse","url":"interfaces/RedemptionsRedeemStackableResponse.html","classes":"tsd-kind-interface"},{"id":535,"kind":1024,"name":"redemptions","url":"interfaces/RedemptionsRedeemStackableResponse.html#redemptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":536,"kind":1024,"name":"parent_redemption","url":"interfaces/RedemptionsRedeemStackableResponse.html#parent_redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":537,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":538,"kind":1024,"name":"id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":539,"kind":1024,"name":"object","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":540,"kind":1024,"name":"date","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":541,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":542,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.tracking_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":543,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":544,"kind":1024,"name":"result","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.result","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":545,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.order-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":546,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":547,"kind":1024,"name":"related_object_type","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.related_object_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":548,"kind":1024,"name":"related_object_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.related_object_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":549,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":550,"kind":256,"name":"RedemptionsRollbackStackableResponse","url":"interfaces/RedemptionsRollbackStackableResponse.html","classes":"tsd-kind-interface"},{"id":551,"kind":1024,"name":"rollbacks","url":"interfaces/RedemptionsRollbackStackableResponse.html#rollbacks","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":552,"kind":1024,"name":"parent_rollback","url":"interfaces/RedemptionsRollbackStackableResponse.html#parent_rollback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":553,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":554,"kind":1024,"name":"id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":555,"kind":1024,"name":"date","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":556,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":557,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.tracking_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":558,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":559,"kind":1024,"name":"result","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.result","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":560,"kind":1024,"name":"order","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.order-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":561,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":562,"kind":1024,"name":"redemption","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":563,"kind":1024,"name":"order","url":"interfaces/RedemptionsRollbackStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":564,"kind":256,"name":"ValidationsValidateVoucherParams","url":"interfaces/ValidationsValidateVoucherParams.html","classes":"tsd-kind-interface"},{"id":565,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateVoucherParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":566,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateVoucherParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":567,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":568,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":569,"kind":1024,"name":"source_id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":570,"kind":1024,"name":"status","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.status","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":571,"kind":1024,"name":"amount","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":572,"kind":1024,"name":"items","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":573,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.customer-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":574,"kind":1024,"name":"referrer","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.referrer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":575,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":576,"kind":1024,"name":"gift","url":"interfaces/ValidationsValidateVoucherParams.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":577,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":578,"kind":1024,"name":"credits","url":"interfaces/ValidationsValidateVoucherParams.html#__type.credits","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":579,"kind":1024,"name":"reward","url":"interfaces/ValidationsValidateVoucherParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":580,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":581,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":582,"kind":1024,"name":"points","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":583,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateVoucherParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":584,"kind":4194304,"name":"ValidationsValidateVoucherResponse","url":"modules.html#ValidationsValidateVoucherResponse","classes":"tsd-kind-type-alias"},{"id":585,"kind":256,"name":"ResponseValidateVoucherTrue","url":"interfaces/ResponseValidateVoucherTrue.html","classes":"tsd-kind-interface"},{"id":586,"kind":1024,"name":"valid","url":"interfaces/ResponseValidateVoucherTrue.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":587,"kind":1024,"name":"code","url":"interfaces/ResponseValidateVoucherTrue.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":588,"kind":1024,"name":"applicable_to","url":"interfaces/ResponseValidateVoucherTrue.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":589,"kind":1024,"name":"inapplicable_to","url":"interfaces/ResponseValidateVoucherTrue.html#inapplicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":590,"kind":1024,"name":"campaign","url":"interfaces/ResponseValidateVoucherTrue.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":591,"kind":1024,"name":"campaign_id","url":"interfaces/ResponseValidateVoucherTrue.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":592,"kind":1024,"name":"metadata","url":"interfaces/ResponseValidateVoucherTrue.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":593,"kind":1024,"name":"discount","url":"interfaces/ResponseValidateVoucherTrue.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":594,"kind":1024,"name":"gift","url":"interfaces/ResponseValidateVoucherTrue.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":595,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherTrue.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":596,"kind":1024,"name":"amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":597,"kind":1024,"name":"balance","url":"interfaces/ResponseValidateVoucherTrue.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":598,"kind":1024,"name":"effect","url":"interfaces/ResponseValidateVoucherTrue.html#__type.effect","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":599,"kind":1024,"name":"loyalty","url":"interfaces/ResponseValidateVoucherTrue.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":600,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherTrue.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":601,"kind":1024,"name":"points_cost","url":"interfaces/ResponseValidateVoucherTrue.html#__type-1.points_cost","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":602,"kind":1024,"name":"reward","url":"interfaces/ResponseValidateVoucherTrue.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":603,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherTrue.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":604,"kind":1024,"name":"id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-3.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":605,"kind":1024,"name":"assignment_id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-3.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":606,"kind":1024,"name":"points","url":"interfaces/ResponseValidateVoucherTrue.html#__type-3.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":607,"kind":1024,"name":"order","url":"interfaces/ResponseValidateVoucherTrue.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":608,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":609,"kind":1024,"name":"id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":610,"kind":1024,"name":"source_id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":611,"kind":1024,"name":"created_at","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.created_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":612,"kind":1024,"name":"updated_at","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.updated_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":613,"kind":1024,"name":"status","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.status","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":614,"kind":1024,"name":"amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.amount-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":615,"kind":1024,"name":"initial_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.initial_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":616,"kind":1024,"name":"discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":617,"kind":1024,"name":"applied_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":618,"kind":1024,"name":"items_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.items_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":619,"kind":1024,"name":"total_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":620,"kind":1024,"name":"total_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":621,"kind":1024,"name":"items_applied_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.items_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":622,"kind":1024,"name":"total_applied_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.total_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":623,"kind":1024,"name":"items","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":624,"kind":1024,"name":"metadata","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":625,"kind":1024,"name":"customer","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":626,"kind":1024,"name":"customer_id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":627,"kind":1024,"name":"referrer_id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":628,"kind":1024,"name":"object","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":629,"kind":1024,"name":"redemptions","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.redemptions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":630,"kind":1024,"name":"session","url":"interfaces/ResponseValidateVoucherTrue.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":631,"kind":1024,"name":"start_date","url":"interfaces/ResponseValidateVoucherTrue.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":632,"kind":1024,"name":"expiration_date","url":"interfaces/ResponseValidateVoucherTrue.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":633,"kind":1024,"name":"tracking_id","url":"interfaces/ResponseValidateVoucherTrue.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":634,"kind":256,"name":"ResponseValidateVoucherFalse","url":"interfaces/ResponseValidateVoucherFalse.html","classes":"tsd-kind-interface"},{"id":635,"kind":1024,"name":"valid","url":"interfaces/ResponseValidateVoucherFalse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":636,"kind":1024,"name":"code","url":"interfaces/ResponseValidateVoucherFalse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":637,"kind":1024,"name":"error","url":"interfaces/ResponseValidateVoucherFalse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":638,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherFalse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":639,"kind":1024,"name":"code","url":"interfaces/ResponseValidateVoucherFalse.html#__type.code-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":640,"kind":1024,"name":"key","url":"interfaces/ResponseValidateVoucherFalse.html#__type.key","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":641,"kind":1024,"name":"message","url":"interfaces/ResponseValidateVoucherFalse.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":642,"kind":1024,"name":"details","url":"interfaces/ResponseValidateVoucherFalse.html#__type.details","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":643,"kind":1024,"name":"request_id","url":"interfaces/ResponseValidateVoucherFalse.html#__type.request_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":644,"kind":1024,"name":"resource_id","url":"interfaces/ResponseValidateVoucherFalse.html#__type.resource_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":645,"kind":1024,"name":"resource_type","url":"interfaces/ResponseValidateVoucherFalse.html#__type.resource_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":646,"kind":1024,"name":"tracking_id","url":"interfaces/ResponseValidateVoucherFalse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":647,"kind":1024,"name":"customer_id","url":"interfaces/ResponseValidateVoucherFalse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":648,"kind":1024,"name":"metadata","url":"interfaces/ResponseValidateVoucherFalse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":649,"kind":1024,"name":"reason","url":"interfaces/ResponseValidateVoucherFalse.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":650,"kind":4194304,"name":"OrderObjectRedemptions","url":"modules.html#OrderObjectRedemptions","classes":"tsd-kind-type-alias"},{"id":651,"kind":256,"name":"ValidationsValidateStackableParams","url":"interfaces/ValidationsValidateStackableParams.html","classes":"tsd-kind-interface"},{"id":652,"kind":1024,"name":"options","url":"interfaces/ValidationsValidateStackableParams.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":653,"kind":1024,"name":"redeemables","url":"interfaces/ValidationsValidateStackableParams.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":654,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateStackableParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":655,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateStackableParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":656,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateStackableParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":657,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateStackableParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":658,"kind":256,"name":"ValidationValidateStackableResponse","url":"interfaces/ValidationValidateStackableResponse.html","classes":"tsd-kind-interface"},{"id":659,"kind":1024,"name":"valid","url":"interfaces/ValidationValidateStackableResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":660,"kind":1024,"name":"tracking_id","url":"interfaces/ValidationValidateStackableResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":661,"kind":1024,"name":"session","url":"interfaces/ValidationValidateStackableResponse.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":662,"kind":1024,"name":"order","url":"interfaces/ValidationValidateStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":663,"kind":1024,"name":"redeemables","url":"interfaces/ValidationValidateStackableResponse.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":664,"kind":4194304,"name":"ValidationsValidateCode","url":"modules.html#ValidationsValidateCode","classes":"tsd-kind-type-alias"},{"id":665,"kind":4194304,"name":"ValidationsValidateContext","url":"modules.html#ValidationsValidateContext","classes":"tsd-kind-type-alias"},{"id":666,"kind":256,"name":"CampaignResponse","url":"interfaces/CampaignResponse.html","classes":"tsd-kind-interface"},{"id":667,"kind":1024,"name":"id","url":"interfaces/CampaignResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":668,"kind":1024,"name":"name","url":"interfaces/CampaignResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":669,"kind":1024,"name":"campaign_type","url":"interfaces/CampaignResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":670,"kind":1024,"name":"type","url":"interfaces/CampaignResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":671,"kind":1024,"name":"category","url":"interfaces/CampaignResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":672,"kind":1024,"name":"auto_join","url":"interfaces/CampaignResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":673,"kind":1024,"name":"join_once","url":"interfaces/CampaignResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":674,"kind":1024,"name":"description","url":"interfaces/CampaignResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":675,"kind":1024,"name":"start_date","url":"interfaces/CampaignResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":676,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/CampaignResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":677,"kind":65536,"name":"__type","url":"interfaces/CampaignResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":678,"kind":1024,"name":"data","url":"interfaces/CampaignResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":679,"kind":1024,"name":"object","url":"interfaces/CampaignResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":680,"kind":1024,"name":"total","url":"interfaces/CampaignResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":681,"kind":1024,"name":"data_ref","url":"interfaces/CampaignResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":682,"kind":1024,"name":"expiration_date","url":"interfaces/CampaignResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":683,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/CampaignResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":684,"kind":1024,"name":"validity_timeframe","url":"interfaces/CampaignResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":685,"kind":65536,"name":"__type","url":"interfaces/CampaignResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":686,"kind":1024,"name":"interval","url":"interfaces/CampaignResponse.html#__type-1.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":687,"kind":1024,"name":"duration","url":"interfaces/CampaignResponse.html#__type-1.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":688,"kind":1024,"name":"validity_day_of_week","url":"interfaces/CampaignResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":689,"kind":1024,"name":"metadata","url":"interfaces/CampaignResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":690,"kind":1024,"name":"created_at","url":"interfaces/CampaignResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":691,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/CampaignResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":692,"kind":1024,"name":"active","url":"interfaces/CampaignResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":693,"kind":1024,"name":"voucher","url":"interfaces/CampaignResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":694,"kind":1024,"name":"referral_program","url":"interfaces/CampaignResponse.html#referral_program","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":695,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/CampaignResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":696,"kind":1024,"name":"protected","url":"interfaces/CampaignResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":697,"kind":1024,"name":"vouchers_count","url":"interfaces/CampaignResponse.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":698,"kind":1024,"name":"object","url":"interfaces/CampaignResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":699,"kind":256,"name":"CampaignsQualificationsBody","url":"interfaces/CampaignsQualificationsBody.html","classes":"tsd-kind-interface"},{"id":700,"kind":1024,"name":"customer","url":"interfaces/CampaignsQualificationsBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsBody"},{"id":701,"kind":1024,"name":"order","url":"interfaces/CampaignsQualificationsBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsBody"},{"id":702,"kind":256,"name":"CampaignsQualificationsParams","url":"interfaces/CampaignsQualificationsParams.html","classes":"tsd-kind-interface"},{"id":703,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/CampaignsQualificationsParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":704,"kind":1024,"name":"order","url":"interfaces/CampaignsQualificationsParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":705,"kind":1024,"name":"limit","url":"interfaces/CampaignsQualificationsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":706,"kind":256,"name":"CampaignsQualificationsResponse","url":"interfaces/CampaignsQualificationsResponse.html","classes":"tsd-kind-interface"},{"id":707,"kind":1024,"name":"object","url":"interfaces/CampaignsQualificationsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":708,"kind":1024,"name":"total","url":"interfaces/CampaignsQualificationsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":709,"kind":1024,"name":"data_ref","url":"interfaces/CampaignsQualificationsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":710,"kind":1024,"name":"data","url":"interfaces/CampaignsQualificationsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":711,"kind":1024,"name":"id","url":"interfaces/CampaignsQualificationsResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":712,"kind":1024,"name":"created_at","url":"interfaces/CampaignsQualificationsResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":713,"kind":4194304,"name":"CampaignsCreateCampaign","url":"modules.html#CampaignsCreateCampaign","classes":"tsd-kind-type-alias"},{"id":714,"kind":4194304,"name":"CampaignsUpdateCampaign","url":"modules.html#CampaignsUpdateCampaign","classes":"tsd-kind-type-alias"},{"id":715,"kind":256,"name":"CampaignsDeleteParams","url":"interfaces/CampaignsDeleteParams.html","classes":"tsd-kind-interface"},{"id":716,"kind":1024,"name":"force","url":"interfaces/CampaignsDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsDeleteParams"},{"id":717,"kind":4194304,"name":"CampaignsAddVoucherBody","url":"modules.html#CampaignsAddVoucherBody","classes":"tsd-kind-type-alias"},{"id":718,"kind":256,"name":"CampaignsAddVoucherParams","url":"interfaces/CampaignsAddVoucherParams.html","classes":"tsd-kind-interface"},{"id":719,"kind":1024,"name":"vouchers_count","url":"interfaces/CampaignsAddVoucherParams.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsAddVoucherParams"},{"id":720,"kind":4194304,"name":"CampaignsAddCertainVoucherParams","url":"modules.html#CampaignsAddCertainVoucherParams","classes":"tsd-kind-type-alias"},{"id":721,"kind":4194304,"name":"CampaignsAddVoucherResponse","url":"modules.html#CampaignsAddVoucherResponse","classes":"tsd-kind-type-alias"},{"id":722,"kind":4194304,"name":"CampaignsAddCertainVoucherResponse","url":"modules.html#CampaignsAddCertainVoucherResponse","classes":"tsd-kind-type-alias"},{"id":723,"kind":4194304,"name":"CampaignsImportVouchers","url":"modules.html#CampaignsImportVouchers","classes":"tsd-kind-type-alias"},{"id":724,"kind":256,"name":"CampaignsListParams","url":"interfaces/CampaignsListParams.html","classes":"tsd-kind-interface"},{"id":725,"kind":1024,"name":"limit","url":"interfaces/CampaignsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":726,"kind":1024,"name":"page","url":"interfaces/CampaignsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":727,"kind":1024,"name":"campaign_type","url":"interfaces/CampaignsListParams.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":728,"kind":1024,"name":"filters","url":"interfaces/CampaignsListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":729,"kind":65536,"name":"__type","url":"interfaces/CampaignsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":730,"kind":1024,"name":"junction","url":"interfaces/CampaignsListParams.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignsListParams.__type"},{"id":731,"kind":256,"name":"CampaignsListResponse","url":"interfaces/CampaignsListResponse.html","classes":"tsd-kind-interface"},{"id":732,"kind":1024,"name":"object","url":"interfaces/CampaignsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":733,"kind":1024,"name":"total","url":"interfaces/CampaignsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":734,"kind":1024,"name":"data_ref","url":"interfaces/CampaignsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":735,"kind":1024,"name":"campaigns","url":"interfaces/CampaignsListResponse.html#campaigns","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":736,"kind":4194304,"name":"CampaignsVouchersImportResponse","url":"modules.html#CampaignsVouchersImportResponse","classes":"tsd-kind-type-alias"},{"id":737,"kind":65536,"name":"__type","url":"modules.html#CampaignsVouchersImportResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"CampaignsVouchersImportResponse"},{"id":738,"kind":1024,"name":"async_action_id","url":"modules.html#CampaignsVouchersImportResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignsVouchersImportResponse.__type"},{"id":739,"kind":4194304,"name":"CampaignsCreateCampaignResponse","url":"modules.html#CampaignsCreateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":740,"kind":4194304,"name":"CampaignsUpdateCampaignResponse","url":"modules.html#CampaignsUpdateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":741,"kind":4194304,"name":"CampaignsGetCampaignResponse","url":"modules.html#CampaignsGetCampaignResponse","classes":"tsd-kind-type-alias"},{"id":742,"kind":256,"name":"SimplePromotionTier","url":"interfaces/SimplePromotionTier.html","classes":"tsd-kind-interface"},{"id":743,"kind":1024,"name":"tracking_id","url":"interfaces/SimplePromotionTier.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":744,"kind":1024,"name":"metadata","url":"interfaces/SimplePromotionTier.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":745,"kind":1024,"name":"valid","url":"interfaces/SimplePromotionTier.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":746,"kind":1024,"name":"id","url":"interfaces/SimplePromotionTier.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":747,"kind":1024,"name":"name","url":"interfaces/SimplePromotionTier.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":748,"kind":1024,"name":"banner","url":"interfaces/SimplePromotionTier.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":749,"kind":1024,"name":"discount","url":"interfaces/SimplePromotionTier.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":750,"kind":1024,"name":"hierarchy","url":"interfaces/SimplePromotionTier.html#hierarchy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":751,"kind":1024,"name":"object","url":"interfaces/SimplePromotionTier.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":752,"kind":256,"name":"PromotionTier","url":"interfaces/PromotionTier.html","classes":"tsd-kind-interface"},{"id":753,"kind":1024,"name":"id","url":"interfaces/PromotionTier.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":754,"kind":1024,"name":"object","url":"interfaces/PromotionTier.html#object-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":755,"kind":1024,"name":"name","url":"interfaces/PromotionTier.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":756,"kind":1024,"name":"banner","url":"interfaces/PromotionTier.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":757,"kind":1024,"name":"campaign","url":"interfaces/PromotionTier.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":758,"kind":65536,"name":"__type","url":"interfaces/PromotionTier.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTier"},{"id":759,"kind":1024,"name":"id","url":"interfaces/PromotionTier.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":760,"kind":1024,"name":"object","url":"interfaces/PromotionTier.html#__type-1.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":761,"kind":1024,"name":"start_date","url":"interfaces/PromotionTier.html#__type-1.start_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":762,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionTier.html#__type-1.expiration_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":763,"kind":1024,"name":"active","url":"interfaces/PromotionTier.html#__type-1.active-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":764,"kind":1024,"name":"validation_rule_assignments","url":"interfaces/PromotionTier.html#validation_rule_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":765,"kind":1024,"name":"action","url":"interfaces/PromotionTier.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":766,"kind":65536,"name":"__type","url":"interfaces/PromotionTier.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTier"},{"id":767,"kind":1024,"name":"discount","url":"interfaces/PromotionTier.html#__type.discount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":768,"kind":1024,"name":"hierarchy","url":"interfaces/PromotionTier.html#hierarchy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":769,"kind":1024,"name":"metadata","url":"interfaces/PromotionTier.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":770,"kind":1024,"name":"active","url":"interfaces/PromotionTier.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":771,"kind":256,"name":"PromotionTiersListAllParams","url":"interfaces/PromotionTiersListAllParams.html","classes":"tsd-kind-interface"},{"id":772,"kind":1024,"name":"is_available","url":"interfaces/PromotionTiersListAllParams.html#is_available","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":773,"kind":1024,"name":"limit","url":"interfaces/PromotionTiersListAllParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":774,"kind":1024,"name":"page","url":"interfaces/PromotionTiersListAllParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":775,"kind":256,"name":"PromotionTiersListAllResponse","url":"interfaces/PromotionTiersListAllResponse.html","classes":"tsd-kind-interface"},{"id":776,"kind":1024,"name":"object","url":"interfaces/PromotionTiersListAllResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":777,"kind":1024,"name":"data_ref","url":"interfaces/PromotionTiersListAllResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":778,"kind":1024,"name":"tiers","url":"interfaces/PromotionTiersListAllResponse.html#tiers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":779,"kind":1024,"name":"has_more","url":"interfaces/PromotionTiersListAllResponse.html#has_more","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":780,"kind":4194304,"name":"PromotionTiersListResponse","url":"modules.html#PromotionTiersListResponse","classes":"tsd-kind-type-alias"},{"id":781,"kind":4194304,"name":"PromotionTierGetResponse","url":"modules.html#PromotionTierGetResponse","classes":"tsd-kind-type-alias"},{"id":782,"kind":256,"name":"PromotionTiersCreateParams","url":"interfaces/PromotionTiersCreateParams.html","classes":"tsd-kind-interface"},{"id":783,"kind":1024,"name":"name","url":"interfaces/PromotionTiersCreateParams.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":784,"kind":1024,"name":"banner","url":"interfaces/PromotionTiersCreateParams.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":785,"kind":1024,"name":"action","url":"interfaces/PromotionTiersCreateParams.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":786,"kind":65536,"name":"__type","url":"interfaces/PromotionTiersCreateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":787,"kind":1024,"name":"discount","url":"interfaces/PromotionTiersCreateParams.html#__type.discount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersCreateParams.__type"},{"id":788,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersCreateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":789,"kind":4194304,"name":"PromotionTiersCreateResponse","url":"modules.html#PromotionTiersCreateResponse","classes":"tsd-kind-type-alias"},{"id":790,"kind":256,"name":"PromotionTiersRedeemParams","url":"interfaces/PromotionTiersRedeemParams.html","classes":"tsd-kind-interface"},{"id":791,"kind":1024,"name":"customer","url":"interfaces/PromotionTiersRedeemParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":792,"kind":1024,"name":"order","url":"interfaces/PromotionTiersRedeemParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":793,"kind":65536,"name":"__type","url":"interfaces/PromotionTiersRedeemParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":794,"kind":1024,"name":"id","url":"interfaces/PromotionTiersRedeemParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":795,"kind":1024,"name":"source_id","url":"interfaces/PromotionTiersRedeemParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":796,"kind":1024,"name":"amount","url":"interfaces/PromotionTiersRedeemParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":797,"kind":1024,"name":"items","url":"interfaces/PromotionTiersRedeemParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":798,"kind":1024,"name":"status","url":"interfaces/PromotionTiersRedeemParams.html#__type.status","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":799,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersRedeemParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":800,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersRedeemParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":801,"kind":1024,"name":"session","url":"interfaces/PromotionTiersRedeemParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":802,"kind":256,"name":"PromotionTiersRedeemResponse","url":"interfaces/PromotionTiersRedeemResponse.html","classes":"tsd-kind-interface"},{"id":803,"kind":1024,"name":"id","url":"interfaces/PromotionTiersRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":804,"kind":1024,"name":"object","url":"interfaces/PromotionTiersRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":805,"kind":1024,"name":"date","url":"interfaces/PromotionTiersRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":806,"kind":1024,"name":"customer_id","url":"interfaces/PromotionTiersRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":807,"kind":1024,"name":"tracking_id","url":"interfaces/PromotionTiersRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":808,"kind":1024,"name":"order","url":"interfaces/PromotionTiersRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":809,"kind":1024,"name":"result","url":"interfaces/PromotionTiersRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":810,"kind":1024,"name":"promotion_tier","url":"interfaces/PromotionTiersRedeemResponse.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":811,"kind":256,"name":"PromotionTierRedeemDetailsSimple","url":"interfaces/PromotionTierRedeemDetailsSimple.html","classes":"tsd-kind-interface"},{"id":812,"kind":1024,"name":"id","url":"interfaces/PromotionTierRedeemDetailsSimple.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":813,"kind":1024,"name":"name","url":"interfaces/PromotionTierRedeemDetailsSimple.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":814,"kind":1024,"name":"banner","url":"interfaces/PromotionTierRedeemDetailsSimple.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":815,"kind":1024,"name":"campaign","url":"interfaces/PromotionTierRedeemDetailsSimple.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":816,"kind":65536,"name":"__type","url":"interfaces/PromotionTierRedeemDetailsSimple.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":817,"kind":1024,"name":"id","url":"interfaces/PromotionTierRedeemDetailsSimple.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTierRedeemDetailsSimple.__type"},{"id":818,"kind":4194304,"name":"PromotionTierRedeemDetails","url":"modules.html#PromotionTierRedeemDetails","classes":"tsd-kind-type-alias"},{"id":819,"kind":4194304,"name":"PromotionTiersUpdateParams","url":"modules.html#PromotionTiersUpdateParams","classes":"tsd-kind-type-alias"},{"id":820,"kind":4194304,"name":"PromotionTiersUpdateResponse","url":"modules.html#PromotionTiersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":821,"kind":256,"name":"PromotionsCreateResponse","url":"interfaces/PromotionsCreateResponse.html","classes":"tsd-kind-interface"},{"id":822,"kind":1024,"name":"id","url":"interfaces/PromotionsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":823,"kind":1024,"name":"name","url":"interfaces/PromotionsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":824,"kind":1024,"name":"campaign_type","url":"interfaces/PromotionsCreateResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":825,"kind":1024,"name":"type","url":"interfaces/PromotionsCreateResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":826,"kind":1024,"name":"description","url":"interfaces/PromotionsCreateResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":827,"kind":1024,"name":"start_date","url":"interfaces/PromotionsCreateResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":828,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionsCreateResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":829,"kind":1024,"name":"promotion","url":"interfaces/PromotionsCreateResponse.html#promotion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":830,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":831,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":832,"kind":1024,"name":"data_ref","url":"interfaces/PromotionsCreateResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":833,"kind":1024,"name":"tiers","url":"interfaces/PromotionsCreateResponse.html#__type.tiers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":834,"kind":1024,"name":"has_more","url":"interfaces/PromotionsCreateResponse.html#__type.has_more","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":835,"kind":1024,"name":"category","url":"interfaces/PromotionsCreateResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":836,"kind":1024,"name":"auto_join","url":"interfaces/PromotionsCreateResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":837,"kind":1024,"name":"join_once","url":"interfaces/PromotionsCreateResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":838,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/PromotionsCreateResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":839,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":840,"kind":1024,"name":"data","url":"interfaces/PromotionsCreateResponse.html#__type-1.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":841,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#__type-1.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":842,"kind":1024,"name":"total","url":"interfaces/PromotionsCreateResponse.html#__type-1.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":843,"kind":1024,"name":"data_ref","url":"interfaces/PromotionsCreateResponse.html#__type-1.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":844,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/PromotionsCreateResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":845,"kind":1024,"name":"validity_timeframe","url":"interfaces/PromotionsCreateResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":846,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":847,"kind":1024,"name":"interval","url":"interfaces/PromotionsCreateResponse.html#__type-2.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":848,"kind":1024,"name":"duration","url":"interfaces/PromotionsCreateResponse.html#__type-2.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":849,"kind":1024,"name":"validity_day_of_week","url":"interfaces/PromotionsCreateResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":850,"kind":1024,"name":"metadata","url":"interfaces/PromotionsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":851,"kind":1024,"name":"created_at","url":"interfaces/PromotionsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":852,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/PromotionsCreateResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":853,"kind":1024,"name":"active","url":"interfaces/PromotionsCreateResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":854,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/PromotionsCreateResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":855,"kind":1024,"name":"protected","url":"interfaces/PromotionsCreateResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":856,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":857,"kind":256,"name":"PromotionsCreate","url":"interfaces/PromotionsCreate.html","classes":"tsd-kind-interface"},{"id":858,"kind":1024,"name":"name","url":"interfaces/PromotionsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":859,"kind":1024,"name":"campaign_type","url":"interfaces/PromotionsCreate.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":860,"kind":1024,"name":"start_date","url":"interfaces/PromotionsCreate.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":861,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionsCreate.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":862,"kind":1024,"name":"promotion","url":"interfaces/PromotionsCreate.html#promotion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":863,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":864,"kind":1024,"name":"tiers","url":"interfaces/PromotionsCreate.html#__type.tiers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreate.__type"},{"id":865,"kind":256,"name":"PromotionsValidateParams","url":"interfaces/PromotionsValidateParams.html","classes":"tsd-kind-interface"},{"id":866,"kind":1024,"name":"customer","url":"interfaces/PromotionsValidateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":867,"kind":1024,"name":"order","url":"interfaces/PromotionsValidateParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":868,"kind":65536,"name":"__type","url":"interfaces/PromotionsValidateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":869,"kind":1024,"name":"id","url":"interfaces/PromotionsValidateParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":870,"kind":1024,"name":"source_id","url":"interfaces/PromotionsValidateParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":871,"kind":1024,"name":"items","url":"interfaces/PromotionsValidateParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":872,"kind":1024,"name":"amount","url":"interfaces/PromotionsValidateParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":873,"kind":1024,"name":"metadata","url":"interfaces/PromotionsValidateParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":874,"kind":1024,"name":"metadata","url":"interfaces/PromotionsValidateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":875,"kind":256,"name":"PromotionsValidateQueryParams","url":"interfaces/PromotionsValidateQueryParams.html","classes":"tsd-kind-interface"},{"id":876,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/PromotionsValidateQueryParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateQueryParams"},{"id":877,"kind":1024,"name":"filters","url":"interfaces/PromotionsValidateQueryParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateQueryParams"},{"id":878,"kind":256,"name":"PromotionsValidateResponse","url":"interfaces/PromotionsValidateResponse.html","classes":"tsd-kind-interface"},{"id":879,"kind":1024,"name":"valid","url":"interfaces/PromotionsValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":880,"kind":1024,"name":"promotions","url":"interfaces/PromotionsValidateResponse.html#promotions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":881,"kind":1024,"name":"tracking_id","url":"interfaces/PromotionsValidateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":882,"kind":256,"name":"LoyaltiesListParams","url":"interfaces/LoyaltiesListParams.html","classes":"tsd-kind-interface"},{"id":883,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListParams"},{"id":884,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListParams"},{"id":885,"kind":256,"name":"LoyaltiesListResponse","url":"interfaces/LoyaltiesListResponse.html","classes":"tsd-kind-interface"},{"id":886,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":887,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":888,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":889,"kind":1024,"name":"campaigns","url":"interfaces/LoyaltiesListResponse.html#campaigns","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":890,"kind":256,"name":"LoyaltiesCreateCampaign","url":"interfaces/LoyaltiesCreateCampaign.html","classes":"tsd-kind-interface"},{"id":891,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateCampaign.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":892,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesCreateCampaign.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":893,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesCreateCampaign.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":894,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaign.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":895,"kind":1024,"name":"vouchers_count","url":"interfaces/LoyaltiesCreateCampaign.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":896,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateCampaign.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":897,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":898,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.type-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":899,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesCreateCampaign.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":900,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":901,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-3.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":902,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesCreateCampaign.html#__type.loyalty_card","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":903,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":904,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":905,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":906,"kind":1024,"name":"code_config","url":"interfaces/LoyaltiesCreateCampaign.html#__type.code_config","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":907,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":908,"kind":1024,"name":"length","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":909,"kind":1024,"name":"charset","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":910,"kind":1024,"name":"pattern","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":911,"kind":1024,"name":"prefix","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":912,"kind":1024,"name":"suffix","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":913,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateCampaign.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":914,"kind":256,"name":"LoyaltiesCreateCampaignResponse","url":"interfaces/LoyaltiesCreateCampaignResponse.html","classes":"tsd-kind-interface"},{"id":915,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateCampaignResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":916,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateCampaignResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":917,"kind":1024,"name":"campaign_type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":918,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":919,"kind":1024,"name":"category","url":"interfaces/LoyaltiesCreateCampaignResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":920,"kind":1024,"name":"auto_join","url":"interfaces/LoyaltiesCreateCampaignResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":921,"kind":1024,"name":"join_once","url":"interfaces/LoyaltiesCreateCampaignResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":922,"kind":1024,"name":"description","url":"interfaces/LoyaltiesCreateCampaignResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":923,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesCreateCampaignResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":924,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":925,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":926,"kind":1024,"name":"data","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":927,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":928,"kind":1024,"name":"total","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":929,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":930,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesCreateCampaignResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":931,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/LoyaltiesCreateCampaignResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":932,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":933,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":934,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":935,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":936,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":937,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateCampaignResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":938,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesCreateCampaignResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":939,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/LoyaltiesCreateCampaignResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":940,"kind":1024,"name":"active","url":"interfaces/LoyaltiesCreateCampaignResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":941,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateCampaignResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":942,"kind":1024,"name":"referral_program","url":"interfaces/LoyaltiesCreateCampaignResponse.html#referral_program","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":943,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/LoyaltiesCreateCampaignResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":944,"kind":1024,"name":"protected","url":"interfaces/LoyaltiesCreateCampaignResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":945,"kind":1024,"name":"vouchers_count","url":"interfaces/LoyaltiesCreateCampaignResponse.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":946,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateCampaignResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":947,"kind":4194304,"name":"LoyaltiesGetCampaignResponse","url":"modules.html#LoyaltiesGetCampaignResponse","classes":"tsd-kind-type-alias"},{"id":948,"kind":256,"name":"LoyaltiesUpdateCampaign","url":"interfaces/LoyaltiesUpdateCampaign.html","classes":"tsd-kind-interface"},{"id":949,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateCampaign.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":950,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesUpdateCampaign.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":951,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesUpdateCampaign.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":952,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesUpdateCampaign.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":953,"kind":1024,"name":"description","url":"interfaces/LoyaltiesUpdateCampaign.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":954,"kind":1024,"name":"type","url":"interfaces/LoyaltiesUpdateCampaign.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":955,"kind":4194304,"name":"LoyaltiesUpdateCampaignResponse","url":"modules.html#LoyaltiesUpdateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":956,"kind":256,"name":"LoyaltiesDeleteCampaignParams","url":"interfaces/LoyaltiesDeleteCampaignParams.html","classes":"tsd-kind-interface"},{"id":957,"kind":1024,"name":"force","url":"interfaces/LoyaltiesDeleteCampaignParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesDeleteCampaignParams"},{"id":958,"kind":256,"name":"LoyaltiesListRewardAssignmentsParams","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":959,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsParams"},{"id":960,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsParams"},{"id":961,"kind":256,"name":"LoyaltiesListRewardAssignmentsResponse","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":962,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":963,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":964,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":965,"kind":1024,"name":"data","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":966,"kind":256,"name":"LoyaltiesCreateRewardAssignments","url":"interfaces/LoyaltiesCreateRewardAssignments.html","classes":"tsd-kind-interface"},{"id":967,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesCreateRewardAssignments.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":968,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesCreateRewardAssignments.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":969,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":970,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type"},{"id":971,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type"},{"id":972,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type.__type"},{"id":973,"kind":256,"name":"LoyaltiesCreateRewardAssignmentResponse","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html","classes":"tsd-kind-interface"},{"id":974,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":975,"kind":1024,"name":"reward_id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#reward_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":976,"kind":1024,"name":"related_object_id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":977,"kind":1024,"name":"related_object_type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":978,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":979,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":980,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type"},{"id":981,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type"},{"id":982,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type.__type"},{"id":983,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":984,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":985,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":986,"kind":256,"name":"LoyaltiesUpdateRewardAssignment","url":"interfaces/LoyaltiesUpdateRewardAssignment.html","classes":"tsd-kind-interface"},{"id":987,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":988,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":989,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":990,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type"},{"id":991,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type"},{"id":992,"kind":1024,"name":"points","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type.__type"},{"id":993,"kind":4194304,"name":"LoyaltiesUpdateRewardAssignmentResponse","url":"modules.html#LoyaltiesUpdateRewardAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":994,"kind":256,"name":"LoyaltiesListEarningRulesParams","url":"interfaces/LoyaltiesListEarningRulesParams.html","classes":"tsd-kind-interface"},{"id":995,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListEarningRulesParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesParams"},{"id":996,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListEarningRulesParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesParams"},{"id":997,"kind":256,"name":"LoyaltyFixed","url":"interfaces/LoyaltyFixed.html","classes":"tsd-kind-interface"},{"id":998,"kind":1024,"name":"type","url":"interfaces/LoyaltyFixed.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyFixed"},{"id":999,"kind":1024,"name":"points","url":"interfaces/LoyaltyFixed.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyFixed"},{"id":1000,"kind":256,"name":"LoyaltyProportional","url":"interfaces/LoyaltyProportional.html","classes":"tsd-kind-interface"},{"id":1001,"kind":1024,"name":"type","url":"interfaces/LoyaltyProportional.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":1002,"kind":1024,"name":"order","url":"interfaces/LoyaltyProportional.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":1003,"kind":65536,"name":"__type","url":"interfaces/LoyaltyProportional.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":1004,"kind":1024,"name":"amount","url":"interfaces/LoyaltyProportional.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type"},{"id":1005,"kind":65536,"name":"__type","url":"interfaces/LoyaltyProportional.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type"},{"id":1006,"kind":1024,"name":"every","url":"interfaces/LoyaltyProportional.html#__type.__type-1.every","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type.__type"},{"id":1007,"kind":1024,"name":"points","url":"interfaces/LoyaltyProportional.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type.__type"},{"id":1008,"kind":256,"name":"LoyaltiesEarningRulesResponse","url":"interfaces/LoyaltiesEarningRulesResponse.html","classes":"tsd-kind-interface"},{"id":1009,"kind":1024,"name":"id","url":"interfaces/LoyaltiesEarningRulesResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1010,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesEarningRulesResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1011,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesEarningRulesResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1012,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1013,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesEarningRulesResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1014,"kind":1024,"name":"segment","url":"interfaces/LoyaltiesEarningRulesResponse.html#segment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1015,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1016,"kind":1024,"name":"id","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":1017,"kind":1024,"name":"event","url":"interfaces/LoyaltiesEarningRulesResponse.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1018,"kind":1024,"name":"source","url":"interfaces/LoyaltiesEarningRulesResponse.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1019,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1020,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":1021,"kind":1024,"name":"object_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.object_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":1022,"kind":1024,"name":"object_type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.object_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":1023,"kind":1024,"name":"object","url":"interfaces/LoyaltiesEarningRulesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1024,"kind":1024,"name":"automation_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#automation_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1025,"kind":256,"name":"LoyaltiesListEarningRulesResponse","url":"interfaces/LoyaltiesListEarningRulesResponse.html","classes":"tsd-kind-interface"},{"id":1026,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListEarningRulesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":1027,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListEarningRulesResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":1028,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListEarningRulesResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":1029,"kind":1024,"name":"data","url":"interfaces/LoyaltiesListEarningRulesResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":1030,"kind":256,"name":"LoyaltiesCreateEarningRule","url":"interfaces/LoyaltiesCreateEarningRule.html","classes":"tsd-kind-interface"},{"id":1031,"kind":1024,"name":"event","url":"interfaces/LoyaltiesCreateEarningRule.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1032,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesCreateEarningRule.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1033,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateEarningRule.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1034,"kind":1024,"name":"source","url":"interfaces/LoyaltiesCreateEarningRule.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1035,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1036,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-2.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1037,"kind":1024,"name":"custom_event","url":"interfaces/LoyaltiesCreateEarningRule.html#custom_event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1038,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1039,"kind":1024,"name":"schema_id","url":"interfaces/LoyaltiesCreateEarningRule.html#__type.schema_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1040,"kind":1024,"name":"segment","url":"interfaces/LoyaltiesCreateEarningRule.html#segment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1041,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1042,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1043,"kind":4194304,"name":"LoyaltiesCreateEarningRuleResponse","url":"modules.html#LoyaltiesCreateEarningRuleResponse","classes":"tsd-kind-type-alias"},{"id":1044,"kind":256,"name":"LoyaltiesUpdateEarningRule","url":"interfaces/LoyaltiesUpdateEarningRule.html","classes":"tsd-kind-interface"},{"id":1045,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateEarningRule.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1046,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesUpdateEarningRule.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1047,"kind":1024,"name":"source","url":"interfaces/LoyaltiesUpdateEarningRule.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1048,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1049,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type-1.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateEarningRule.__type"},{"id":1050,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesUpdateEarningRule.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1051,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1052,"kind":1024,"name":"points","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateEarningRule.__type"},{"id":1053,"kind":4194304,"name":"LoyaltiesUpdateEarningRuleResponse","url":"modules.html#LoyaltiesUpdateEarningRuleResponse","classes":"tsd-kind-type-alias"},{"id":1054,"kind":256,"name":"LoyaltiesListMembersParams","url":"interfaces/LoyaltiesListMembersParams.html","classes":"tsd-kind-interface"},{"id":1055,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListMembersParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1056,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListMembersParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1057,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesListMembersParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1058,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesListMembersParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1059,"kind":1024,"name":"before","url":"interfaces/LoyaltiesListMembersParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1060,"kind":1024,"name":"after","url":"interfaces/LoyaltiesListMembersParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1061,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesListMembersParams.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1062,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesListMembersParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1063,"kind":1024,"name":"before","url":"interfaces/LoyaltiesListMembersParams.html#__type-1.before-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1064,"kind":1024,"name":"after","url":"interfaces/LoyaltiesListMembersParams.html#__type-1.after-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1065,"kind":256,"name":"LoyaltiesVoucherResponse","url":"interfaces/LoyaltiesVoucherResponse.html","classes":"tsd-kind-interface"},{"id":1066,"kind":1024,"name":"id","url":"interfaces/LoyaltiesVoucherResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1067,"kind":1024,"name":"code","url":"interfaces/LoyaltiesVoucherResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1068,"kind":1024,"name":"campaign","url":"interfaces/LoyaltiesVoucherResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1069,"kind":1024,"name":"campaign_id","url":"interfaces/LoyaltiesVoucherResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1070,"kind":1024,"name":"category","url":"interfaces/LoyaltiesVoucherResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1071,"kind":1024,"name":"type","url":"interfaces/LoyaltiesVoucherResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1072,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesVoucherResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1073,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1074,"kind":1024,"name":"points","url":"interfaces/LoyaltiesVoucherResponse.html#__type.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1075,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesVoucherResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1076,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesVoucherResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1077,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesVoucherResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1078,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesVoucherResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1079,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1080,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1081,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1082,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesVoucherResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1083,"kind":1024,"name":"publish","url":"interfaces/LoyaltiesVoucherResponse.html#publish","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1084,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1085,"kind":1024,"name":"count","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1086,"kind":1024,"name":"entries","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1.entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1087,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesVoucherResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1088,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1089,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1090,"kind":1024,"name":"redeemed_points","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1091,"kind":1024,"name":"redeemed_quantity","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1092,"kind":1024,"name":"redemption_entries","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redemption_entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1093,"kind":1024,"name":"active","url":"interfaces/LoyaltiesVoucherResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1094,"kind":1024,"name":"additional_info","url":"interfaces/LoyaltiesVoucherResponse.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1095,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesVoucherResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1096,"kind":1024,"name":"is_referral_code","url":"interfaces/LoyaltiesVoucherResponse.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1097,"kind":1024,"name":"holder_id","url":"interfaces/LoyaltiesVoucherResponse.html#holder_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1098,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesVoucherResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1099,"kind":256,"name":"LoyaltiesListMembersResponse","url":"interfaces/LoyaltiesListMembersResponse.html","classes":"tsd-kind-interface"},{"id":1100,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListMembersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1101,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListMembersResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1102,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListMembersResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1103,"kind":1024,"name":"vouchers","url":"interfaces/LoyaltiesListMembersResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1104,"kind":256,"name":"LoyaltiesCreateMember","url":"interfaces/LoyaltiesCreateMember.html","classes":"tsd-kind-interface"},{"id":1105,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateMember.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1106,"kind":1024,"name":"channel","url":"interfaces/LoyaltiesCreateMember.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1107,"kind":1024,"name":"customer","url":"interfaces/LoyaltiesCreateMember.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1108,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateMember.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1109,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateMember.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1110,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateMember.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1111,"kind":1024,"name":"email","url":"interfaces/LoyaltiesCreateMember.html#__type.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1112,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateMember.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1113,"kind":1024,"name":"description","url":"interfaces/LoyaltiesCreateMember.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1114,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesCreateMember.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1115,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateMember.html#metadata-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1116,"kind":4194304,"name":"LoyaltiesCreateMemberResponse","url":"modules.html#LoyaltiesCreateMemberResponse","classes":"tsd-kind-type-alias"},{"id":1117,"kind":4194304,"name":"LoyaltiesGetMemberResponse","url":"modules.html#LoyaltiesGetMemberResponse","classes":"tsd-kind-type-alias"},{"id":1118,"kind":256,"name":"LoyaltiesGetMemberActivitiesResponse","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html","classes":"tsd-kind-interface"},{"id":1119,"kind":1024,"name":"object","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1120,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1121,"kind":1024,"name":"total","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1122,"kind":1024,"name":"activities","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#activities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1123,"kind":256,"name":"LoyaltiesAddPoints","url":"interfaces/LoyaltiesAddPoints.html","classes":"tsd-kind-interface"},{"id":1124,"kind":1024,"name":"points","url":"interfaces/LoyaltiesAddPoints.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPoints"},{"id":1125,"kind":256,"name":"LoyaltiesAddPointsResponse","url":"interfaces/LoyaltiesAddPointsResponse.html","classes":"tsd-kind-interface"},{"id":1126,"kind":1024,"name":"points","url":"interfaces/LoyaltiesAddPointsResponse.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1127,"kind":1024,"name":"total","url":"interfaces/LoyaltiesAddPointsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1128,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesAddPointsResponse.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1129,"kind":1024,"name":"type","url":"interfaces/LoyaltiesAddPointsResponse.html#type-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1130,"kind":1024,"name":"object","url":"interfaces/LoyaltiesAddPointsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1131,"kind":1024,"name":"related_object","url":"interfaces/LoyaltiesAddPointsResponse.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1132,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesAddPointsResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1133,"kind":1024,"name":"type","url":"interfaces/LoyaltiesAddPointsResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesAddPointsResponse.__type"},{"id":1134,"kind":1024,"name":"id","url":"interfaces/LoyaltiesAddPointsResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesAddPointsResponse.__type"},{"id":1135,"kind":256,"name":"LoyaltiesRedeemRewardParams","url":"interfaces/LoyaltiesRedeemRewardParams.html","classes":"tsd-kind-interface"},{"id":1136,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesRedeemRewardParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1137,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1138,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type-1.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1139,"kind":1024,"name":"order","url":"interfaces/LoyaltiesRedeemRewardParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1140,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1141,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1142,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1143,"kind":1024,"name":"amount","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1144,"kind":1024,"name":"items","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1145,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1146,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1147,"kind":256,"name":"LoyaltiesRedeemRewardResponse","url":"interfaces/LoyaltiesRedeemRewardResponse.html","classes":"tsd-kind-interface"},{"id":1148,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1149,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1150,"kind":1024,"name":"date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1151,"kind":1024,"name":"customer_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1152,"kind":1024,"name":"amount","url":"interfaces/LoyaltiesRedeemRewardResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1153,"kind":1024,"name":"order","url":"interfaces/LoyaltiesRedeemRewardResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1154,"kind":1024,"name":"customer","url":"interfaces/LoyaltiesRedeemRewardResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1155,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesRedeemRewardResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1156,"kind":1024,"name":"result","url":"interfaces/LoyaltiesRedeemRewardResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1157,"kind":1024,"name":"tracking_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1158,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesRedeemRewardResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1159,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1160,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.id-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1161,"kind":1024,"name":"code","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1162,"kind":1024,"name":"campaign","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.campaign","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1163,"kind":1024,"name":"campaign_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.campaign_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1164,"kind":1024,"name":"category","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.category","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1165,"kind":1024,"name":"type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1166,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.loyalty_card","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1167,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1168,"kind":1024,"name":"points","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1169,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1170,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.start_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1171,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.expiration_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1172,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1173,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1174,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1175,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1176,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1177,"kind":1024,"name":"publish","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.publish","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1178,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1179,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.object-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1180,"kind":1024,"name":"count","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1181,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1182,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1183,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1184,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.object-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1185,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1186,"kind":1024,"name":"redeemed_quantity","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1187,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1188,"kind":1024,"name":"redeemed_points","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1189,"kind":1024,"name":"active","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.active","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1190,"kind":1024,"name":"additional_info","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.additional_info","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1191,"kind":1024,"name":"assets","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.assets","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1192,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1193,"kind":1024,"name":"qr","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.qr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1194,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1195,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3.id-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1196,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1197,"kind":1024,"name":"barcode","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.barcode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1198,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1199,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1200,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1201,"kind":1024,"name":"is_referral_code","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.is_referral_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1202,"kind":1024,"name":"referrer_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1203,"kind":1024,"name":"holder_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.holder_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1204,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.created_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1205,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.updated_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1206,"kind":1024,"name":"holder","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.holder","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1207,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1208,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.id-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1209,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1210,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1211,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1212,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1213,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1214,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1215,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.object-5","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1216,"kind":1024,"name":"total","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1217,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1218,"kind":1024,"name":"data","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1219,"kind":256,"name":"LoyaltyPointsTransfer","url":"interfaces/LoyaltyPointsTransfer.html","classes":"tsd-kind-interface"},{"id":1220,"kind":1024,"name":"code","url":"interfaces/LoyaltyPointsTransfer.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyPointsTransfer"},{"id":1221,"kind":1024,"name":"points","url":"interfaces/LoyaltyPointsTransfer.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyPointsTransfer"},{"id":1222,"kind":4194304,"name":"VoucherType","url":"modules.html#VoucherType","classes":"tsd-kind-type-alias"},{"id":1223,"kind":256,"name":"SimpleVoucher","url":"interfaces/SimpleVoucher.html","classes":"tsd-kind-interface"},{"id":1224,"kind":1024,"name":"code_config","url":"interfaces/SimpleVoucher.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1225,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1226,"kind":1024,"name":"length","url":"interfaces/SimpleVoucher.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1227,"kind":1024,"name":"charset","url":"interfaces/SimpleVoucher.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1228,"kind":1024,"name":"pattern","url":"interfaces/SimpleVoucher.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1229,"kind":1024,"name":"prefix","url":"interfaces/SimpleVoucher.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1230,"kind":1024,"name":"suffix","url":"interfaces/SimpleVoucher.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1231,"kind":1024,"name":"type","url":"interfaces/SimpleVoucher.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1232,"kind":1024,"name":"is_referral_code","url":"interfaces/SimpleVoucher.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1233,"kind":1024,"name":"discount","url":"interfaces/SimpleVoucher.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1234,"kind":1024,"name":"loyalty_card","url":"interfaces/SimpleVoucher.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1235,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1236,"kind":1024,"name":"points","url":"interfaces/SimpleVoucher.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1237,"kind":1024,"name":"balance","url":"interfaces/SimpleVoucher.html#__type-1.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1238,"kind":1024,"name":"redemption","url":"interfaces/SimpleVoucher.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1239,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1240,"kind":1024,"name":"quantity","url":"interfaces/SimpleVoucher.html#__type-2.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1241,"kind":256,"name":"VouchersResponse","url":"interfaces/VouchersResponse.html","classes":"tsd-kind-interface"},{"id":1242,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#id-2","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1243,"kind":1024,"name":"code","url":"interfaces/VouchersResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1244,"kind":1024,"name":"campaign","url":"interfaces/VouchersResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1245,"kind":1024,"name":"category","url":"interfaces/VouchersResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1246,"kind":1024,"name":"type","url":"interfaces/VouchersResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1247,"kind":1024,"name":"discount","url":"interfaces/VouchersResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1248,"kind":1024,"name":"gift","url":"interfaces/VouchersResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1249,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1250,"kind":1024,"name":"amount","url":"interfaces/VouchersResponse.html#__type-3.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1251,"kind":1024,"name":"balance","url":"interfaces/VouchersResponse.html#__type-3.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1252,"kind":1024,"name":"loyalty_card","url":"interfaces/VouchersResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1253,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1254,"kind":1024,"name":"points","url":"interfaces/VouchersResponse.html#__type-4.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1255,"kind":1024,"name":"start_date","url":"interfaces/VouchersResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1256,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1257,"kind":1024,"name":"validity_timeframe","url":"interfaces/VouchersResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1258,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1259,"kind":1024,"name":"interval","url":"interfaces/VouchersResponse.html#__type-8.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1260,"kind":1024,"name":"duration","url":"interfaces/VouchersResponse.html#__type-8.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1261,"kind":1024,"name":"validity_day_of_week","url":"interfaces/VouchersResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1262,"kind":1024,"name":"publish","url":"interfaces/VouchersResponse.html#publish","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1263,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1264,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-5.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1265,"kind":1024,"name":"count","url":"interfaces/VouchersResponse.html#__type-5.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1266,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-5.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1267,"kind":1024,"name":"entries","url":"interfaces/VouchersResponse.html#__type-5.entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1268,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-5.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1269,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type-5.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1270,"kind":1024,"name":"redemption","url":"interfaces/VouchersResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1271,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1272,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-6.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1273,"kind":1024,"name":"quantity","url":"interfaces/VouchersResponse.html#__type-6.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1274,"kind":1024,"name":"redeemed_quantity","url":"interfaces/VouchersResponse.html#__type-6.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1275,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-6.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1276,"kind":1024,"name":"redemption_entries","url":"interfaces/VouchersResponse.html#__type-6.redemption_entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1277,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-6.total-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1278,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type-6.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1279,"kind":1024,"name":"active","url":"interfaces/VouchersResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1280,"kind":1024,"name":"additional_info","url":"interfaces/VouchersResponse.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1281,"kind":1024,"name":"metadata","url":"interfaces/VouchersResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1282,"kind":1024,"name":"assets","url":"interfaces/VouchersResponse.html#assets","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1283,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1284,"kind":1024,"name":"qr","url":"interfaces/VouchersResponse.html#__type.qr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1285,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1286,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#__type.__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1287,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type.__type-2.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1288,"kind":1024,"name":"barcode","url":"interfaces/VouchersResponse.html#__type.barcode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1289,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1290,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#__type.__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1291,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type.__type-1.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1292,"kind":1024,"name":"is_referral_code","url":"interfaces/VouchersResponse.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1293,"kind":1024,"name":"referrer_id","url":"interfaces/VouchersResponse.html#referrer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1294,"kind":1024,"name":"holder_id","url":"interfaces/VouchersResponse.html#holder_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1295,"kind":1024,"name":"updated_at","url":"interfaces/VouchersResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1296,"kind":1024,"name":"created_at","url":"interfaces/VouchersResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1297,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1298,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/VouchersResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1299,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1300,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-7.object-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1301,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-7.total-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1302,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-7.data_ref-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1303,"kind":1024,"name":"data","url":"interfaces/VouchersResponse.html#__type-7.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1304,"kind":256,"name":"VouchersQualificationExamineBody","url":"interfaces/VouchersQualificationExamineBody.html","classes":"tsd-kind-interface"},{"id":1305,"kind":1024,"name":"customer","url":"interfaces/VouchersQualificationExamineBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1306,"kind":1024,"name":"order","url":"interfaces/VouchersQualificationExamineBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1307,"kind":1024,"name":"reward","url":"interfaces/VouchersQualificationExamineBody.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1308,"kind":65536,"name":"__type","url":"interfaces/VouchersQualificationExamineBody.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1309,"kind":1024,"name":"id","url":"interfaces/VouchersQualificationExamineBody.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersQualificationExamineBody.__type"},{"id":1310,"kind":1024,"name":"assignment_id","url":"interfaces/VouchersQualificationExamineBody.html#__type.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersQualificationExamineBody.__type"},{"id":1311,"kind":1024,"name":"metadata","url":"interfaces/VouchersQualificationExamineBody.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1312,"kind":256,"name":"VouchersQualificationExamineParams","url":"interfaces/VouchersQualificationExamineParams.html","classes":"tsd-kind-interface"},{"id":1313,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/VouchersQualificationExamineParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1314,"kind":1024,"name":"order","url":"interfaces/VouchersQualificationExamineParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1315,"kind":1024,"name":"limit","url":"interfaces/VouchersQualificationExamineParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1316,"kind":256,"name":"VouchersQualificationExamineResponse","url":"interfaces/VouchersQualificationExamineResponse.html","classes":"tsd-kind-interface"},{"id":1317,"kind":1024,"name":"object","url":"interfaces/VouchersQualificationExamineResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1318,"kind":1024,"name":"total","url":"interfaces/VouchersQualificationExamineResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1319,"kind":1024,"name":"data_ref","url":"interfaces/VouchersQualificationExamineResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1320,"kind":1024,"name":"data","url":"interfaces/VouchersQualificationExamineResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1321,"kind":256,"name":"VouchersCreateParameters","url":"interfaces/VouchersCreateParameters.html","classes":"tsd-kind-interface"},{"id":1322,"kind":1024,"name":"active","url":"interfaces/VouchersCreateParameters.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1323,"kind":1024,"name":"code","url":"interfaces/VouchersCreateParameters.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1324,"kind":1024,"name":"code_config","url":"interfaces/VouchersCreateParameters.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1325,"kind":65536,"name":"__type","url":"interfaces/VouchersCreateParameters.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1326,"kind":1024,"name":"length","url":"interfaces/VouchersCreateParameters.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1327,"kind":1024,"name":"charset","url":"interfaces/VouchersCreateParameters.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1328,"kind":1024,"name":"pattern","url":"interfaces/VouchersCreateParameters.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1329,"kind":1024,"name":"prefix","url":"interfaces/VouchersCreateParameters.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1330,"kind":1024,"name":"suffix","url":"interfaces/VouchersCreateParameters.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1331,"kind":1024,"name":"redemption","url":"interfaces/VouchersCreateParameters.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1332,"kind":65536,"name":"__type","url":"interfaces/VouchersCreateParameters.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1333,"kind":1024,"name":"quantity","url":"interfaces/VouchersCreateParameters.html#__type-1.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1334,"kind":4194304,"name":"VouchersCreate","url":"modules.html#VouchersCreate","classes":"tsd-kind-type-alias"},{"id":1335,"kind":4194304,"name":"VouchersCreateResponse","url":"modules.html#VouchersCreateResponse","classes":"tsd-kind-type-alias"},{"id":1336,"kind":4194304,"name":"VouchersGetResponse","url":"modules.html#VouchersGetResponse","classes":"tsd-kind-type-alias"},{"id":1337,"kind":256,"name":"VouchersUpdate","url":"interfaces/VouchersUpdate.html","classes":"tsd-kind-interface"},{"id":1338,"kind":1024,"name":"code","url":"interfaces/VouchersUpdate.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1339,"kind":1024,"name":"category","url":"interfaces/VouchersUpdate.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1340,"kind":1024,"name":"start_date","url":"interfaces/VouchersUpdate.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1341,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersUpdate.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1342,"kind":1024,"name":"active","url":"interfaces/VouchersUpdate.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1343,"kind":1024,"name":"additional_info","url":"interfaces/VouchersUpdate.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1344,"kind":1024,"name":"metadata","url":"interfaces/VouchersUpdate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1345,"kind":1024,"name":"gift","url":"interfaces/VouchersUpdate.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1346,"kind":65536,"name":"__type","url":"interfaces/VouchersUpdate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1347,"kind":1024,"name":"amount","url":"interfaces/VouchersUpdate.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersUpdate.__type"},{"id":1348,"kind":4194304,"name":"VouchersUpdateResponse","url":"modules.html#VouchersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1349,"kind":256,"name":"VouchersDeleteParams","url":"interfaces/VouchersDeleteParams.html","classes":"tsd-kind-interface"},{"id":1350,"kind":1024,"name":"force","url":"interfaces/VouchersDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersDeleteParams"},{"id":1351,"kind":256,"name":"VouchersListParams","url":"interfaces/VouchersListParams.html","classes":"tsd-kind-interface"},{"id":1352,"kind":1024,"name":"limit","url":"interfaces/VouchersListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1353,"kind":1024,"name":"page","url":"interfaces/VouchersListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1354,"kind":1024,"name":"category","url":"interfaces/VouchersListParams.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1355,"kind":1024,"name":"campaign","url":"interfaces/VouchersListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1356,"kind":1024,"name":"customer","url":"interfaces/VouchersListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1357,"kind":1024,"name":"created_at","url":"interfaces/VouchersListParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1358,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1359,"kind":1024,"name":"after","url":"interfaces/VouchersListParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1360,"kind":1024,"name":"before","url":"interfaces/VouchersListParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1361,"kind":1024,"name":"updated_at","url":"interfaces/VouchersListParams.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1362,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1363,"kind":1024,"name":"after","url":"interfaces/VouchersListParams.html#__type-2.after-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1364,"kind":1024,"name":"before","url":"interfaces/VouchersListParams.html#__type-2.before-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1365,"kind":1024,"name":"order","url":"interfaces/VouchersListParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1366,"kind":1024,"name":"filters","url":"interfaces/VouchersListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1367,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1368,"kind":1024,"name":"junction","url":"interfaces/VouchersListParams.html#__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1369,"kind":256,"name":"VouchersListResponse","url":"interfaces/VouchersListResponse.html","classes":"tsd-kind-interface"},{"id":1370,"kind":1024,"name":"object","url":"interfaces/VouchersListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1371,"kind":1024,"name":"total","url":"interfaces/VouchersListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1372,"kind":1024,"name":"data_ref","url":"interfaces/VouchersListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1373,"kind":1024,"name":"vouchers","url":"interfaces/VouchersListResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1374,"kind":4194304,"name":"VouchersEnableResponse","url":"modules.html#VouchersEnableResponse","classes":"tsd-kind-type-alias"},{"id":1375,"kind":4194304,"name":"VouchersDisableResponse","url":"modules.html#VouchersDisableResponse","classes":"tsd-kind-type-alias"},{"id":1376,"kind":256,"name":"VouchersImport","url":"interfaces/VouchersImport.html","classes":"tsd-kind-interface"},{"id":1377,"kind":1024,"name":"code","url":"interfaces/VouchersImport.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1378,"kind":1024,"name":"category","url":"interfaces/VouchersImport.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1379,"kind":1024,"name":"type","url":"interfaces/VouchersImport.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1380,"kind":1024,"name":"discount","url":"interfaces/VouchersImport.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1381,"kind":1024,"name":"additional_info","url":"interfaces/VouchersImport.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1382,"kind":1024,"name":"start_date","url":"interfaces/VouchersImport.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1383,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersImport.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1384,"kind":1024,"name":"active","url":"interfaces/VouchersImport.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1385,"kind":1024,"name":"metadata","url":"interfaces/VouchersImport.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1386,"kind":1024,"name":"redemption","url":"interfaces/VouchersImport.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1387,"kind":65536,"name":"__type","url":"interfaces/VouchersImport.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1388,"kind":1024,"name":"quantity","url":"interfaces/VouchersImport.html#__type-1.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1389,"kind":1024,"name":"code_config","url":"interfaces/VouchersImport.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1390,"kind":65536,"name":"__type","url":"interfaces/VouchersImport.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1391,"kind":1024,"name":"length","url":"interfaces/VouchersImport.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1392,"kind":1024,"name":"charset","url":"interfaces/VouchersImport.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1393,"kind":1024,"name":"pattern","url":"interfaces/VouchersImport.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1394,"kind":1024,"name":"prefix","url":"interfaces/VouchersImport.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1395,"kind":1024,"name":"suffix","url":"interfaces/VouchersImport.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1396,"kind":256,"name":"VouchersBulkUpdateObject","url":"interfaces/VouchersBulkUpdateObject.html","classes":"tsd-kind-interface"},{"id":1397,"kind":1024,"name":"code","url":"interfaces/VouchersBulkUpdateObject.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateObject"},{"id":1398,"kind":1024,"name":"metadata","url":"interfaces/VouchersBulkUpdateObject.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateObject"},{"id":1399,"kind":4194304,"name":"VouchersBulkUpdate","url":"modules.html#VouchersBulkUpdate","classes":"tsd-kind-type-alias"},{"id":1400,"kind":256,"name":"VouchersBulkUpdateMetadata","url":"interfaces/VouchersBulkUpdateMetadata.html","classes":"tsd-kind-interface"},{"id":1401,"kind":1024,"name":"codes","url":"interfaces/VouchersBulkUpdateMetadata.html#codes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateMetadata"},{"id":1402,"kind":1024,"name":"metadata","url":"interfaces/VouchersBulkUpdateMetadata.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateMetadata"},{"id":1403,"kind":4194304,"name":"VouchersImportResponse","url":"modules.html#VouchersImportResponse","classes":"tsd-kind-type-alias"},{"id":1404,"kind":65536,"name":"__type","url":"modules.html#VouchersImportResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersImportResponse"},{"id":1405,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersImportResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImportResponse.__type"},{"id":1406,"kind":4194304,"name":"VouchersBulkUpdateMetadataResponse","url":"modules.html#VouchersBulkUpdateMetadataResponse","classes":"tsd-kind-type-alias"},{"id":1407,"kind":65536,"name":"__type","url":"modules.html#VouchersBulkUpdateMetadataResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersBulkUpdateMetadataResponse"},{"id":1408,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersBulkUpdateMetadataResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersBulkUpdateMetadataResponse.__type"},{"id":1409,"kind":4194304,"name":"VouchersBulkUpdateResponse","url":"modules.html#VouchersBulkUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1410,"kind":65536,"name":"__type","url":"modules.html#VouchersBulkUpdateResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersBulkUpdateResponse"},{"id":1411,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersBulkUpdateResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersBulkUpdateResponse.__type"},{"id":1412,"kind":256,"name":"ValidationRulesCreate","url":"interfaces/ValidationRulesCreate.html","classes":"tsd-kind-interface"},{"id":1413,"kind":1024,"name":"name","url":"interfaces/ValidationRulesCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1414,"kind":1024,"name":"error","url":"interfaces/ValidationRulesCreate.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1415,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1416,"kind":1024,"name":"message","url":"interfaces/ValidationRulesCreate.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreate.__type"},{"id":1417,"kind":1024,"name":"rules","url":"interfaces/ValidationRulesCreate.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1418,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreate.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1419,"kind":1024,"name":"logic","url":"interfaces/ValidationRulesCreate.html#__type-1.logic","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreate.__type"},{"id":1420,"kind":256,"name":"ValidationRulesCreateResponse","url":"interfaces/ValidationRulesCreateResponse.html","classes":"tsd-kind-interface"},{"id":1421,"kind":1024,"name":"id","url":"interfaces/ValidationRulesCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1422,"kind":1024,"name":"name","url":"interfaces/ValidationRulesCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1423,"kind":1024,"name":"error","url":"interfaces/ValidationRulesCreateResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1424,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1425,"kind":1024,"name":"message","url":"interfaces/ValidationRulesCreateResponse.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreateResponse.__type"},{"id":1426,"kind":1024,"name":"rules","url":"interfaces/ValidationRulesCreateResponse.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1427,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1428,"kind":1024,"name":"logic","url":"interfaces/ValidationRulesCreateResponse.html#__type-1.logic","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreateResponse.__type"},{"id":1429,"kind":1024,"name":"created_at","url":"interfaces/ValidationRulesCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1430,"kind":1024,"name":"updated_at","url":"interfaces/ValidationRulesCreateResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1431,"kind":1024,"name":"object","url":"interfaces/ValidationRulesCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1432,"kind":256,"name":"ValidationRulesValidateResponse","url":"interfaces/ValidationRulesValidateResponse.html","classes":"tsd-kind-interface"},{"id":1433,"kind":1024,"name":"valid","url":"interfaces/ValidationRulesValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1434,"kind":1024,"name":"rule_id","url":"interfaces/ValidationRulesValidateResponse.html#rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1435,"kind":1024,"name":"applicable_to","url":"interfaces/ValidationRulesValidateResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1436,"kind":4194304,"name":"ValidationRulesGetResponse","url":"modules.html#ValidationRulesGetResponse","classes":"tsd-kind-type-alias"},{"id":1437,"kind":4194304,"name":"ValidationRulesUpdate","url":"modules.html#ValidationRulesUpdate","classes":"tsd-kind-type-alias"},{"id":1438,"kind":4194304,"name":"ValidationRulesUpdateResponse","url":"modules.html#ValidationRulesUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1439,"kind":256,"name":"ValidationRulesCreateAssignment","url":"interfaces/ValidationRulesCreateAssignment.html","classes":"tsd-kind-interface"},{"id":1440,"kind":1024,"name":"voucher","url":"interfaces/ValidationRulesCreateAssignment.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1441,"kind":1024,"name":"campaign","url":"interfaces/ValidationRulesCreateAssignment.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1442,"kind":1024,"name":"promotion_tier","url":"interfaces/ValidationRulesCreateAssignment.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1443,"kind":256,"name":"ValidationRulesCreateAssignmentResponse","url":"interfaces/ValidationRulesCreateAssignmentResponse.html","classes":"tsd-kind-interface"},{"id":1444,"kind":1024,"name":"id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1445,"kind":1024,"name":"rule_id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1446,"kind":1024,"name":"related_object_id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1447,"kind":1024,"name":"related_object_type","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1448,"kind":1024,"name":"created_at","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1449,"kind":1024,"name":"updated_at","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1450,"kind":1024,"name":"object","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1451,"kind":256,"name":"ValidationRulesListParams","url":"interfaces/ValidationRulesListParams.html","classes":"tsd-kind-interface"},{"id":1452,"kind":1024,"name":"limit","url":"interfaces/ValidationRulesListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListParams"},{"id":1453,"kind":1024,"name":"page","url":"interfaces/ValidationRulesListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListParams"},{"id":1454,"kind":256,"name":"ValidationRulesListResponse","url":"interfaces/ValidationRulesListResponse.html","classes":"tsd-kind-interface"},{"id":1455,"kind":1024,"name":"object","url":"interfaces/ValidationRulesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1456,"kind":1024,"name":"total","url":"interfaces/ValidationRulesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1457,"kind":1024,"name":"data_ref","url":"interfaces/ValidationRulesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1458,"kind":1024,"name":"data","url":"interfaces/ValidationRulesListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1459,"kind":256,"name":"ValidationRulesListAssignmentsParams","url":"interfaces/ValidationRulesListAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":1460,"kind":1024,"name":"limit","url":"interfaces/ValidationRulesListAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsParams"},{"id":1461,"kind":1024,"name":"page","url":"interfaces/ValidationRulesListAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsParams"},{"id":1462,"kind":256,"name":"ValidationRulesListAssignmentsResponse","url":"interfaces/ValidationRulesListAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":1463,"kind":1024,"name":"object","url":"interfaces/ValidationRulesListAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1464,"kind":1024,"name":"total","url":"interfaces/ValidationRulesListAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1465,"kind":1024,"name":"data_ref","url":"interfaces/ValidationRulesListAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1466,"kind":1024,"name":"data","url":"interfaces/ValidationRulesListAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1467,"kind":256,"name":"RewardsListParams","url":"interfaces/RewardsListParams.html","classes":"tsd-kind-interface"},{"id":1468,"kind":1024,"name":"page","url":"interfaces/RewardsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListParams"},{"id":1469,"kind":1024,"name":"limit","url":"interfaces/RewardsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListParams"},{"id":1470,"kind":256,"name":"RewardsResponse","url":"interfaces/RewardsResponse.html","classes":"tsd-kind-interface"},{"id":1471,"kind":1024,"name":"id","url":"interfaces/RewardsResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1472,"kind":1024,"name":"name","url":"interfaces/RewardsResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1473,"kind":1024,"name":"stock","url":"interfaces/RewardsResponse.html#stock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1474,"kind":1024,"name":"redeemed","url":"interfaces/RewardsResponse.html#redeemed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1475,"kind":1024,"name":"attributes","url":"interfaces/RewardsResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1476,"kind":65536,"name":"__type","url":"interfaces/RewardsResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1477,"kind":1024,"name":"image_url","url":"interfaces/RewardsResponse.html#__type.image_url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsResponse.__type"},{"id":1478,"kind":1024,"name":"description","url":"interfaces/RewardsResponse.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsResponse.__type"},{"id":1479,"kind":1024,"name":"created_at","url":"interfaces/RewardsResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1480,"kind":1024,"name":"updated_at","url":"interfaces/RewardsResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1481,"kind":1024,"name":"object","url":"interfaces/RewardsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1482,"kind":4194304,"name":"RewardsCreateResponse","url":"modules.html#RewardsCreateResponse","classes":"tsd-kind-type-alias"},{"id":1483,"kind":256,"name":"RewardsListResponse","url":"interfaces/RewardsListResponse.html","classes":"tsd-kind-interface"},{"id":1484,"kind":1024,"name":"object","url":"interfaces/RewardsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1485,"kind":1024,"name":"total","url":"interfaces/RewardsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1486,"kind":1024,"name":"data_ref","url":"interfaces/RewardsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1487,"kind":1024,"name":"data","url":"interfaces/RewardsListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1488,"kind":4194304,"name":"RewardsType","url":"modules.html#RewardsType","classes":"tsd-kind-type-alias"},{"id":1489,"kind":4194304,"name":"RewardsTypeResponse","url":"modules.html#RewardsTypeResponse","classes":"tsd-kind-type-alias"},{"id":1490,"kind":4194304,"name":"RewardsCreate","url":"modules.html#RewardsCreate","classes":"tsd-kind-type-alias"},{"id":1491,"kind":4194304,"name":"RewardsGetResponse","url":"modules.html#RewardsGetResponse","classes":"tsd-kind-type-alias"},{"id":1492,"kind":4194304,"name":"RewardsUpdate","url":"modules.html#RewardsUpdate","classes":"tsd-kind-type-alias"},{"id":1493,"kind":4194304,"name":"RewardsUpdateResponse","url":"modules.html#RewardsUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1494,"kind":256,"name":"RewardsAssignmentObject","url":"interfaces/RewardsAssignmentObject.html","classes":"tsd-kind-interface"},{"id":1495,"kind":1024,"name":"id","url":"interfaces/RewardsAssignmentObject.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1496,"kind":1024,"name":"reward_id","url":"interfaces/RewardsAssignmentObject.html#reward_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1497,"kind":1024,"name":"related_object_id","url":"interfaces/RewardsAssignmentObject.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1498,"kind":1024,"name":"related_object_type","url":"interfaces/RewardsAssignmentObject.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1499,"kind":1024,"name":"parameters","url":"interfaces/RewardsAssignmentObject.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1500,"kind":65536,"name":"__type","url":"interfaces/RewardsAssignmentObject.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1501,"kind":1024,"name":"loyalty","url":"interfaces/RewardsAssignmentObject.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type"},{"id":1502,"kind":65536,"name":"__type","url":"interfaces/RewardsAssignmentObject.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type"},{"id":1503,"kind":1024,"name":"points","url":"interfaces/RewardsAssignmentObject.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type.__type"},{"id":1504,"kind":1024,"name":"created_at","url":"interfaces/RewardsAssignmentObject.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1505,"kind":1024,"name":"updated_at","url":"interfaces/RewardsAssignmentObject.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1506,"kind":1024,"name":"object","url":"interfaces/RewardsAssignmentObject.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1507,"kind":256,"name":"RewardsListAssignmentsParams","url":"interfaces/RewardsListAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":1508,"kind":1024,"name":"limit","url":"interfaces/RewardsListAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsParams"},{"id":1509,"kind":1024,"name":"page","url":"interfaces/RewardsListAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsParams"},{"id":1510,"kind":256,"name":"RewardsListAssignmentsResponse","url":"interfaces/RewardsListAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":1511,"kind":1024,"name":"total","url":"interfaces/RewardsListAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1512,"kind":1024,"name":"data","url":"interfaces/RewardsListAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1513,"kind":1024,"name":"object","url":"interfaces/RewardsListAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1514,"kind":1024,"name":"data_ref","url":"interfaces/RewardsListAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1515,"kind":256,"name":"RewardsCreateAssignment","url":"interfaces/RewardsCreateAssignment.html","classes":"tsd-kind-interface"},{"id":1516,"kind":1024,"name":"campaign","url":"interfaces/RewardsCreateAssignment.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1517,"kind":1024,"name":"parameters","url":"interfaces/RewardsCreateAssignment.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1518,"kind":65536,"name":"__type","url":"interfaces/RewardsCreateAssignment.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1519,"kind":1024,"name":"loyalty","url":"interfaces/RewardsCreateAssignment.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type"},{"id":1520,"kind":65536,"name":"__type","url":"interfaces/RewardsCreateAssignment.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type"},{"id":1521,"kind":1024,"name":"points","url":"interfaces/RewardsCreateAssignment.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type.__type"},{"id":1522,"kind":4194304,"name":"RewardsCreateAssignmentResponse","url":"modules.html#RewardsCreateAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":1523,"kind":4194304,"name":"RewardsUpdateAssignment","url":"modules.html#RewardsUpdateAssignment","classes":"tsd-kind-type-alias"},{"id":1524,"kind":4194304,"name":"RewardsUpdateAssignmentResponse","url":"modules.html#RewardsUpdateAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":1525,"kind":256,"name":"RewardRedemptionParams","url":"interfaces/RewardRedemptionParams.html","classes":"tsd-kind-interface"},{"id":1526,"kind":1024,"name":"points","url":"interfaces/RewardRedemptionParams.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1527,"kind":1024,"name":"assignment_id","url":"interfaces/RewardRedemptionParams.html#assignment_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1528,"kind":1024,"name":"id","url":"interfaces/RewardRedemptionParams.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1529,"kind":256,"name":"ProductsCreate","url":"interfaces/ProductsCreate.html","classes":"tsd-kind-interface"},{"id":1530,"kind":1024,"name":"name","url":"interfaces/ProductsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1531,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1532,"kind":1024,"name":"price","url":"interfaces/ProductsCreate.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1533,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreate.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1534,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1535,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreate.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1536,"kind":256,"name":"ProductsGetResponseSkus","url":"interfaces/ProductsGetResponseSkus.html","classes":"tsd-kind-interface"},{"id":1537,"kind":1024,"name":"skus","url":"interfaces/ProductsGetResponseSkus.html#skus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsGetResponseSkus"},{"id":1538,"kind":65536,"name":"__type","url":"interfaces/ProductsGetResponseSkus.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ProductsGetResponseSkus"},{"id":1539,"kind":1024,"name":"object","url":"interfaces/ProductsGetResponseSkus.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1540,"kind":1024,"name":"total","url":"interfaces/ProductsGetResponseSkus.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1541,"kind":1024,"name":"data","url":"interfaces/ProductsGetResponseSkus.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1542,"kind":256,"name":"ProductsCreateResponse","url":"interfaces/ProductsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1543,"kind":1024,"name":"id","url":"interfaces/ProductsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1544,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1545,"kind":1024,"name":"object","url":"interfaces/ProductsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1546,"kind":1024,"name":"name","url":"interfaces/ProductsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1547,"kind":1024,"name":"price","url":"interfaces/ProductsCreateResponse.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1548,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1549,"kind":1024,"name":"created_at","url":"interfaces/ProductsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1550,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreateResponse.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1551,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1552,"kind":4194304,"name":"ProductsGetResponse","url":"modules.html#ProductsGetResponse","classes":"tsd-kind-type-alias"},{"id":1553,"kind":4194304,"name":"ProductsUpdate","url":"modules.html#ProductsUpdate","classes":"tsd-kind-type-alias"},{"id":1554,"kind":65536,"name":"__type","url":"modules.html#ProductsUpdate.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsUpdate"},{"id":1555,"kind":1024,"name":"name","url":"modules.html#ProductsUpdate.__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1556,"kind":1024,"name":"id","url":"modules.html#ProductsUpdate.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1557,"kind":1024,"name":"source_id","url":"modules.html#ProductsUpdate.__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1558,"kind":1024,"name":"attributes","url":"modules.html#ProductsUpdate.__type.attributes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1559,"kind":1024,"name":"price","url":"modules.html#ProductsUpdate.__type.price","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1560,"kind":1024,"name":"image_url","url":"modules.html#ProductsUpdate.__type.image_url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1561,"kind":1024,"name":"metadata","url":"modules.html#ProductsUpdate.__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1562,"kind":4194304,"name":"ProductsUpdateResponse","url":"modules.html#ProductsUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1563,"kind":256,"name":"ProductsBulkUpdateMetadata","url":"interfaces/ProductsBulkUpdateMetadata.html","classes":"tsd-kind-interface"},{"id":1564,"kind":1024,"name":"source_ids","url":"interfaces/ProductsBulkUpdateMetadata.html#source_ids","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsBulkUpdateMetadata"},{"id":1565,"kind":1024,"name":"metadata","url":"interfaces/ProductsBulkUpdateMetadata.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsBulkUpdateMetadata"},{"id":1566,"kind":4194304,"name":"ProductsBulkUpdate","url":"modules.html#ProductsBulkUpdate","classes":"tsd-kind-type-alias"},{"id":1567,"kind":4194304,"name":"ProductsBulkUpdateResponse","url":"modules.html#ProductsBulkUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1568,"kind":65536,"name":"__type","url":"modules.html#ProductsBulkUpdateResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsBulkUpdateResponse"},{"id":1569,"kind":1024,"name":"async_action_id","url":"modules.html#ProductsBulkUpdateResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsBulkUpdateResponse.__type"},{"id":1570,"kind":4194304,"name":"ProductsBulkUpdateMetadataResponse","url":"modules.html#ProductsBulkUpdateMetadataResponse","classes":"tsd-kind-type-alias"},{"id":1571,"kind":65536,"name":"__type","url":"modules.html#ProductsBulkUpdateMetadataResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsBulkUpdateMetadataResponse"},{"id":1572,"kind":1024,"name":"async_action_id","url":"modules.html#ProductsBulkUpdateMetadataResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsBulkUpdateMetadataResponse.__type"},{"id":1573,"kind":256,"name":"ProductsDeleteParams","url":"interfaces/ProductsDeleteParams.html","classes":"tsd-kind-interface"},{"id":1574,"kind":1024,"name":"force","url":"interfaces/ProductsDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsDeleteParams"},{"id":1575,"kind":256,"name":"ProductsListParams","url":"interfaces/ProductsListParams.html","classes":"tsd-kind-interface"},{"id":1576,"kind":1024,"name":"page","url":"interfaces/ProductsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListParams"},{"id":1577,"kind":1024,"name":"limit","url":"interfaces/ProductsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListParams"},{"id":1578,"kind":256,"name":"ProductsListResponse","url":"interfaces/ProductsListResponse.html","classes":"tsd-kind-interface"},{"id":1579,"kind":1024,"name":"object","url":"interfaces/ProductsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1580,"kind":1024,"name":"total","url":"interfaces/ProductsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1581,"kind":1024,"name":"data_ref","url":"interfaces/ProductsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1582,"kind":1024,"name":"products","url":"interfaces/ProductsListResponse.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1583,"kind":256,"name":"ProductsCreateSku","url":"interfaces/ProductsCreateSku.html","classes":"tsd-kind-interface"},{"id":1584,"kind":1024,"name":"sku","url":"interfaces/ProductsCreateSku.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1585,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateSku.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1586,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateSku.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1587,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateSku.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1588,"kind":1024,"name":"price","url":"interfaces/ProductsCreateSku.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1589,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreateSku.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1590,"kind":1024,"name":"currency","url":"interfaces/ProductsCreateSku.html#currency","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1591,"kind":256,"name":"ProductsCreateSkuResponse","url":"interfaces/ProductsCreateSkuResponse.html","classes":"tsd-kind-interface"},{"id":1592,"kind":1024,"name":"id","url":"interfaces/ProductsCreateSkuResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1593,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateSkuResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1594,"kind":1024,"name":"sku","url":"interfaces/ProductsCreateSkuResponse.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1595,"kind":1024,"name":"price","url":"interfaces/ProductsCreateSkuResponse.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1596,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateSkuResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1597,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateSkuResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1598,"kind":1024,"name":"updated_at","url":"interfaces/ProductsCreateSkuResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1599,"kind":1024,"name":"currency","url":"interfaces/ProductsCreateSkuResponse.html#currency","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1600,"kind":1024,"name":"created_at","url":"interfaces/ProductsCreateSkuResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1601,"kind":1024,"name":"object","url":"interfaces/ProductsCreateSkuResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1602,"kind":4194304,"name":"ProductsGetSkuResponse","url":"modules.html#ProductsGetSkuResponse","classes":"tsd-kind-type-alias"},{"id":1603,"kind":4194304,"name":"ProductsUpdateSku","url":"modules.html#ProductsUpdateSku","classes":"tsd-kind-type-alias"},{"id":1604,"kind":4194304,"name":"ProductsUpdateSkuResponse","url":"modules.html#ProductsUpdateSkuResponse","classes":"tsd-kind-type-alias"},{"id":1605,"kind":256,"name":"ProductsDeleteSkuParams","url":"interfaces/ProductsDeleteSkuParams.html","classes":"tsd-kind-interface"},{"id":1606,"kind":1024,"name":"force","url":"interfaces/ProductsDeleteSkuParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsDeleteSkuParams"},{"id":1607,"kind":256,"name":"ProductsListSkus","url":"interfaces/ProductsListSkus.html","classes":"tsd-kind-interface"},{"id":1608,"kind":1024,"name":"object","url":"interfaces/ProductsListSkus.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1609,"kind":1024,"name":"total","url":"interfaces/ProductsListSkus.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1610,"kind":1024,"name":"skus","url":"interfaces/ProductsListSkus.html#skus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1611,"kind":256,"name":"SimpleProduct","url":"interfaces/SimpleProduct.html","classes":"tsd-kind-interface"},{"id":1612,"kind":1024,"name":"id","url":"interfaces/SimpleProduct.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1613,"kind":1024,"name":"source_id","url":"interfaces/SimpleProduct.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1614,"kind":1024,"name":"name","url":"interfaces/SimpleProduct.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1615,"kind":256,"name":"SimpleSku","url":"interfaces/SimpleSku.html","classes":"tsd-kind-interface"},{"id":1616,"kind":1024,"name":"id","url":"interfaces/SimpleSku.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1617,"kind":1024,"name":"source_id","url":"interfaces/SimpleSku.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1618,"kind":1024,"name":"sku","url":"interfaces/SimpleSku.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1619,"kind":256,"name":"VoucherDiscount","url":"interfaces/VoucherDiscount.html","classes":"tsd-kind-interface"},{"id":1620,"kind":1024,"name":"type","url":"interfaces/VoucherDiscount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1621,"kind":1024,"name":"unit_off","url":"interfaces/VoucherDiscount.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1622,"kind":1024,"name":"unit_off_formula","url":"interfaces/VoucherDiscount.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1623,"kind":1024,"name":"effect","url":"interfaces/VoucherDiscount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1624,"kind":1024,"name":"amount_off","url":"interfaces/VoucherDiscount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1625,"kind":1024,"name":"amount_off_formula","url":"interfaces/VoucherDiscount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1626,"kind":1024,"name":"percent_off","url":"interfaces/VoucherDiscount.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1627,"kind":1024,"name":"percent_off_formula","url":"interfaces/VoucherDiscount.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1628,"kind":1024,"name":"amount_limit","url":"interfaces/VoucherDiscount.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1629,"kind":256,"name":"DistributionsPublicationsListParams","url":"interfaces/DistributionsPublicationsListParams.html","classes":"tsd-kind-interface"},{"id":1630,"kind":1024,"name":"limit","url":"interfaces/DistributionsPublicationsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1631,"kind":1024,"name":"page","url":"interfaces/DistributionsPublicationsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1632,"kind":1024,"name":"order","url":"interfaces/DistributionsPublicationsListParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1633,"kind":1024,"name":"campaign","url":"interfaces/DistributionsPublicationsListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1634,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1635,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsListParams.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1636,"kind":1024,"name":"result","url":"interfaces/DistributionsPublicationsListParams.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1637,"kind":1024,"name":"voucher_type","url":"interfaces/DistributionsPublicationsListParams.html#voucher_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1638,"kind":1024,"name":"is_referral_code","url":"interfaces/DistributionsPublicationsListParams.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1639,"kind":1024,"name":"filters","url":"interfaces/DistributionsPublicationsListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1640,"kind":65536,"name":"__type","url":"interfaces/DistributionsPublicationsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1641,"kind":1024,"name":"junction","url":"interfaces/DistributionsPublicationsListParams.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsListParams.__type"},{"id":1642,"kind":256,"name":"DistributionsPublicationsListResponse","url":"interfaces/DistributionsPublicationsListResponse.html","classes":"tsd-kind-interface"},{"id":1643,"kind":1024,"name":"object","url":"interfaces/DistributionsPublicationsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1644,"kind":1024,"name":"total","url":"interfaces/DistributionsPublicationsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1645,"kind":1024,"name":"data_ref","url":"interfaces/DistributionsPublicationsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1646,"kind":1024,"name":"publications","url":"interfaces/DistributionsPublicationsListResponse.html#publications","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1647,"kind":256,"name":"DistributionsPublicationsCreateParams","url":"interfaces/DistributionsPublicationsCreateParams.html","classes":"tsd-kind-interface"},{"id":1648,"kind":1024,"name":"join_once","url":"interfaces/DistributionsPublicationsCreateParams.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1649,"kind":1024,"name":"source_id","url":"interfaces/DistributionsPublicationsCreateParams.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1650,"kind":1024,"name":"campaign","url":"interfaces/DistributionsPublicationsCreateParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1651,"kind":65536,"name":"__type","url":"interfaces/DistributionsPublicationsCreateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1652,"kind":1024,"name":"name","url":"interfaces/DistributionsPublicationsCreateParams.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsCreateParams.__type"},{"id":1653,"kind":1024,"name":"count","url":"interfaces/DistributionsPublicationsCreateParams.html#__type.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsCreateParams.__type"},{"id":1654,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsCreateParams.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1655,"kind":1024,"name":"channel","url":"interfaces/DistributionsPublicationsCreateParams.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1656,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsCreateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1657,"kind":256,"name":"DistributionsPublicationsCreateResponse","url":"interfaces/DistributionsPublicationsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1658,"kind":1024,"name":"id","url":"interfaces/DistributionsPublicationsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1659,"kind":1024,"name":"object","url":"interfaces/DistributionsPublicationsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1660,"kind":1024,"name":"created_at","url":"interfaces/DistributionsPublicationsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1661,"kind":1024,"name":"customer_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1662,"kind":1024,"name":"tracking_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1663,"kind":1024,"name":"metadata","url":"interfaces/DistributionsPublicationsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1664,"kind":1024,"name":"channel","url":"interfaces/DistributionsPublicationsCreateResponse.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1665,"kind":1024,"name":"source_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1666,"kind":1024,"name":"result","url":"interfaces/DistributionsPublicationsCreateResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1667,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsCreateResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1668,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsCreateResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1669,"kind":256,"name":"SegmentsCreate","url":"interfaces/SegmentsCreate.html","classes":"tsd-kind-interface"},{"id":1670,"kind":1024,"name":"name","url":"interfaces/SegmentsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1671,"kind":1024,"name":"type","url":"interfaces/SegmentsCreate.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1672,"kind":1024,"name":"filter","url":"interfaces/SegmentsCreate.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1673,"kind":65536,"name":"__type","url":"interfaces/SegmentsCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1674,"kind":1024,"name":"junction","url":"interfaces/SegmentsCreate.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SegmentsCreate.__type"},{"id":1675,"kind":1024,"name":"customers","url":"interfaces/SegmentsCreate.html#customers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1676,"kind":256,"name":"SegmentsCreateResponse","url":"interfaces/SegmentsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1677,"kind":1024,"name":"id","url":"interfaces/SegmentsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1678,"kind":1024,"name":"name","url":"interfaces/SegmentsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1679,"kind":1024,"name":"created_at","url":"interfaces/SegmentsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1680,"kind":1024,"name":"metadata","url":"interfaces/SegmentsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1681,"kind":1024,"name":"filter","url":"interfaces/SegmentsCreateResponse.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1682,"kind":65536,"name":"__type","url":"interfaces/SegmentsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1683,"kind":1024,"name":"junction","url":"interfaces/SegmentsCreateResponse.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SegmentsCreateResponse.__type"},{"id":1684,"kind":1024,"name":"type","url":"interfaces/SegmentsCreateResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1685,"kind":1024,"name":"object","url":"interfaces/SegmentsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1686,"kind":4194304,"name":"SegmentsGetResponse","url":"modules.html#SegmentsGetResponse","classes":"tsd-kind-type-alias"},{"id":1687,"kind":256,"name":"SegmentsListResponse","url":"interfaces/SegmentsListResponse.html","classes":"tsd-kind-interface"},{"id":1688,"kind":1024,"name":"object","url":"interfaces/SegmentsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1689,"kind":1024,"name":"total","url":"interfaces/SegmentsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1690,"kind":1024,"name":"data_ref","url":"interfaces/SegmentsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1691,"kind":1024,"name":"data","url":"interfaces/SegmentsListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1692,"kind":256,"name":"ExportResource","url":"interfaces/ExportResource.html","classes":"tsd-kind-interface"},{"id":1693,"kind":1024,"name":"exported_object","url":"interfaces/ExportResource.html#exported_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportResource"},{"id":1694,"kind":1024,"name":"parameters","url":"interfaces/ExportResource.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportResource"},{"id":1695,"kind":65536,"name":"__type","url":"interfaces/ExportResource.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportResource"},{"id":1696,"kind":1024,"name":"order","url":"interfaces/ExportResource.html#__type.order","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1697,"kind":1024,"name":"fields","url":"interfaces/ExportResource.html#__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1698,"kind":1024,"name":"filters","url":"interfaces/ExportResource.html#__type.filters","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1699,"kind":65536,"name":"__type","url":"interfaces/ExportResource.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1700,"kind":1024,"name":"junction","url":"interfaces/ExportResource.html#__type.__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type.__type"},{"id":1701,"kind":256,"name":"ExportsCreateResponse","url":"interfaces/ExportsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1702,"kind":1024,"name":"id","url":"interfaces/ExportsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1703,"kind":1024,"name":"object","url":"interfaces/ExportsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1704,"kind":1024,"name":"created_at","url":"interfaces/ExportsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1705,"kind":1024,"name":"status","url":"interfaces/ExportsCreateResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1706,"kind":1024,"name":"channel","url":"interfaces/ExportsCreateResponse.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1707,"kind":1024,"name":"exported_object","url":"interfaces/ExportsCreateResponse.html#exported_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1708,"kind":1024,"name":"parameters","url":"interfaces/ExportsCreateResponse.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1709,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1710,"kind":1024,"name":"fields","url":"interfaces/ExportsCreateResponse.html#__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1711,"kind":1024,"name":"filters","url":"interfaces/ExportsCreateResponse.html#__type.filters","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1712,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1713,"kind":1024,"name":"junction","url":"interfaces/ExportsCreateResponse.html#__type.__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type.__type"},{"id":1714,"kind":1024,"name":"result","url":"interfaces/ExportsCreateResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1715,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1716,"kind":1024,"name":"url","url":"interfaces/ExportsCreateResponse.html#__type-2.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1717,"kind":4194304,"name":"ExportsGetResponse","url":"modules.html#ExportsGetResponse","classes":"tsd-kind-type-alias"},{"id":1718,"kind":256,"name":"OrdersItem","url":"interfaces/OrdersItem.html","classes":"tsd-kind-interface"},{"id":1719,"kind":1024,"name":"sku_id","url":"interfaces/OrdersItem.html#sku_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1720,"kind":1024,"name":"product_id","url":"interfaces/OrdersItem.html#product_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1721,"kind":1024,"name":"related_object","url":"interfaces/OrdersItem.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1722,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#source_id-2","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1723,"kind":1024,"name":"discount_quantity","url":"interfaces/OrdersItem.html#discount_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1724,"kind":1024,"name":"initial_quantity","url":"interfaces/OrdersItem.html#initial_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1725,"kind":1024,"name":"quantity","url":"interfaces/OrdersItem.html#quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1726,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1727,"kind":1024,"name":"amount","url":"interfaces/OrdersItem.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1728,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersItem.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1729,"kind":1024,"name":"initial_amount","url":"interfaces/OrdersItem.html#initial_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1730,"kind":1024,"name":"applied_discount_amount","url":"interfaces/OrdersItem.html#applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1731,"kind":1024,"name":"subtotal_amount","url":"interfaces/OrdersItem.html#subtotal_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1732,"kind":1024,"name":"product","url":"interfaces/OrdersItem.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1733,"kind":65536,"name":"__type","url":"interfaces/OrdersItem.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1734,"kind":1024,"name":"id","url":"interfaces/OrdersItem.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1735,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1736,"kind":1024,"name":"override","url":"interfaces/OrdersItem.html#__type.override","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1737,"kind":1024,"name":"name","url":"interfaces/OrdersItem.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1738,"kind":1024,"name":"metadata","url":"interfaces/OrdersItem.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1739,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#__type.price-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1740,"kind":1024,"name":"sku","url":"interfaces/OrdersItem.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1741,"kind":65536,"name":"__type","url":"interfaces/OrdersItem.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1742,"kind":1024,"name":"id","url":"interfaces/OrdersItem.html#__type-1.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1743,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#__type-1.source_id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1744,"kind":1024,"name":"override","url":"interfaces/OrdersItem.html#__type-1.override-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1745,"kind":1024,"name":"sku","url":"interfaces/OrdersItem.html#__type-1.sku-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1746,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#__type-1.price-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1747,"kind":1024,"name":"object","url":"interfaces/OrdersItem.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1748,"kind":1024,"name":"metadata","url":"interfaces/OrdersItem.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1749,"kind":256,"name":"OrdersCreate","url":"interfaces/OrdersCreate.html","classes":"tsd-kind-interface"},{"id":1750,"kind":1024,"name":"source_id","url":"interfaces/OrdersCreate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1751,"kind":1024,"name":"status","url":"interfaces/OrdersCreate.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1752,"kind":1024,"name":"customer","url":"interfaces/OrdersCreate.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1753,"kind":1024,"name":"amount","url":"interfaces/OrdersCreate.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1754,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersCreate.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1755,"kind":1024,"name":"items","url":"interfaces/OrdersCreate.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1756,"kind":1024,"name":"metadata","url":"interfaces/OrdersCreate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1757,"kind":256,"name":"OrdersCreateResponse","url":"interfaces/OrdersCreateResponse.html","classes":"tsd-kind-interface"},{"id":1758,"kind":1024,"name":"id","url":"interfaces/OrdersCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1759,"kind":1024,"name":"source_id","url":"interfaces/OrdersCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1760,"kind":1024,"name":"created_at","url":"interfaces/OrdersCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1761,"kind":1024,"name":"updated_at","url":"interfaces/OrdersCreateResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1762,"kind":1024,"name":"status","url":"interfaces/OrdersCreateResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1763,"kind":1024,"name":"amount","url":"interfaces/OrdersCreateResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1764,"kind":1024,"name":"initial_amount","url":"interfaces/OrdersCreateResponse.html#initial_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1765,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersCreateResponse.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1766,"kind":1024,"name":"items_discount_amount","url":"interfaces/OrdersCreateResponse.html#items_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1767,"kind":1024,"name":"total_discount_amount","url":"interfaces/OrdersCreateResponse.html#total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1768,"kind":1024,"name":"applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1769,"kind":1024,"name":"items_applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#items_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1770,"kind":1024,"name":"total_amount","url":"interfaces/OrdersCreateResponse.html#total_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1771,"kind":1024,"name":"total_applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#total_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1772,"kind":1024,"name":"items","url":"interfaces/OrdersCreateResponse.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1773,"kind":1024,"name":"metadata","url":"interfaces/OrdersCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1774,"kind":1024,"name":"customer","url":"interfaces/OrdersCreateResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1775,"kind":1024,"name":"object","url":"interfaces/OrdersCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1776,"kind":4194304,"name":"OrdersGetResponse","url":"modules.html#OrdersGetResponse","classes":"tsd-kind-type-alias"},{"id":1777,"kind":256,"name":"OrdersUpdate","url":"interfaces/OrdersUpdate.html","classes":"tsd-kind-interface"},{"id":1778,"kind":1024,"name":"id","url":"interfaces/OrdersUpdate.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1779,"kind":1024,"name":"source_id","url":"interfaces/OrdersUpdate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1780,"kind":1024,"name":"status","url":"interfaces/OrdersUpdate.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1781,"kind":1024,"name":"items","url":"interfaces/OrdersUpdate.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1782,"kind":1024,"name":"amount","url":"interfaces/OrdersUpdate.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1783,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersUpdate.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1784,"kind":1024,"name":"metadata","url":"interfaces/OrdersUpdate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1785,"kind":1024,"name":"customer","url":"interfaces/OrdersUpdate.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1786,"kind":65536,"name":"__type","url":"interfaces/OrdersUpdate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1787,"kind":1024,"name":"id","url":"interfaces/OrdersUpdate.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersUpdate.__type"},{"id":1788,"kind":4194304,"name":"OrdersUpdateResponse","url":"modules.html#OrdersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1789,"kind":256,"name":"OrdersListParams","url":"interfaces/OrdersListParams.html","classes":"tsd-kind-interface"},{"id":1790,"kind":1024,"name":"limit","url":"interfaces/OrdersListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListParams"},{"id":1791,"kind":1024,"name":"page","url":"interfaces/OrdersListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListParams"},{"id":1792,"kind":256,"name":"OrdersListResponse","url":"interfaces/OrdersListResponse.html","classes":"tsd-kind-interface"},{"id":1793,"kind":1024,"name":"object","url":"interfaces/OrdersListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1794,"kind":1024,"name":"total","url":"interfaces/OrdersListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1795,"kind":1024,"name":"data_ref","url":"interfaces/OrdersListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1796,"kind":1024,"name":"orders","url":"interfaces/OrdersListResponse.html#orders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1797,"kind":256,"name":"Consent","url":"interfaces/Consent.html","classes":"tsd-kind-interface"},{"id":1798,"kind":1024,"name":"id","url":"interfaces/Consent.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1799,"kind":1024,"name":"name","url":"interfaces/Consent.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1800,"kind":1024,"name":"description","url":"interfaces/Consent.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1801,"kind":1024,"name":"category","url":"interfaces/Consent.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1802,"kind":1024,"name":"created_at","url":"interfaces/Consent.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1803,"kind":1024,"name":"updated_at","url":"interfaces/Consent.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1804,"kind":1024,"name":"object","url":"interfaces/Consent.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1805,"kind":256,"name":"ConsentsListResponse","url":"interfaces/ConsentsListResponse.html","classes":"tsd-kind-interface"},{"id":1806,"kind":1024,"name":"groups","url":"interfaces/ConsentsListResponse.html#groups","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1807,"kind":65536,"name":"__type","url":"interfaces/ConsentsListResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1808,"kind":1024,"name":"object","url":"interfaces/ConsentsListResponse.html#__type-1.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1809,"kind":1024,"name":"total","url":"interfaces/ConsentsListResponse.html#__type-1.total-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1810,"kind":1024,"name":"data_ref","url":"interfaces/ConsentsListResponse.html#__type-1.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1811,"kind":1024,"name":"data","url":"interfaces/ConsentsListResponse.html#__type-1.data-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1812,"kind":1024,"name":"consents","url":"interfaces/ConsentsListResponse.html#consents","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1813,"kind":65536,"name":"__type","url":"interfaces/ConsentsListResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1814,"kind":1024,"name":"object","url":"interfaces/ConsentsListResponse.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1815,"kind":1024,"name":"total","url":"interfaces/ConsentsListResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1816,"kind":1024,"name":"data_ref","url":"interfaces/ConsentsListResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1817,"kind":1024,"name":"data","url":"interfaces/ConsentsListResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1818,"kind":256,"name":"EventsParams","url":"interfaces/EventsParams.html","classes":"tsd-kind-interface"},{"id":1819,"kind":1024,"name":"event","url":"interfaces/EventsParams.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1820,"kind":1024,"name":"customer","url":"interfaces/EventsParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1821,"kind":1024,"name":"metadata","url":"interfaces/EventsParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1822,"kind":1024,"name":"referral","url":"interfaces/EventsParams.html#referral","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1823,"kind":65536,"name":"__type","url":"interfaces/EventsParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"EventsParams"},{"id":1824,"kind":1024,"name":"code","url":"interfaces/EventsParams.html#__type-1.code-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1825,"kind":1024,"name":"referrer_id","url":"interfaces/EventsParams.html#__type-1.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1826,"kind":1024,"name":"loyalty","url":"interfaces/EventsParams.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1827,"kind":65536,"name":"__type","url":"interfaces/EventsParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"EventsParams"},{"id":1828,"kind":1024,"name":"code","url":"interfaces/EventsParams.html#__type.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1829,"kind":256,"name":"EventsResponse","url":"interfaces/EventsResponse.html","classes":"tsd-kind-interface"},{"id":1830,"kind":1024,"name":"object","url":"interfaces/EventsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsResponse"},{"id":1831,"kind":1024,"name":"type","url":"interfaces/EventsResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsResponse"},{"id":1832,"kind":256,"name":"StackableOptions","url":"interfaces/StackableOptions.html","classes":"tsd-kind-interface"},{"id":1833,"kind":1024,"name":"expand","url":"interfaces/StackableOptions.html#expand","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableOptions"},{"id":1834,"kind":4194304,"name":"StackableRedeemableObject","url":"modules.html#StackableRedeemableObject","classes":"tsd-kind-type-alias"},{"id":1835,"kind":256,"name":"StackableRedeemableParams","url":"interfaces/StackableRedeemableParams.html","classes":"tsd-kind-interface"},{"id":1836,"kind":1024,"name":"object","url":"interfaces/StackableRedeemableParams.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1837,"kind":1024,"name":"id","url":"interfaces/StackableRedeemableParams.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1838,"kind":1024,"name":"reward","url":"interfaces/StackableRedeemableParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1839,"kind":1024,"name":"gift","url":"interfaces/StackableRedeemableParams.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1840,"kind":4194304,"name":"StackableRedeemableResponseStatus","url":"modules.html#StackableRedeemableResponseStatus","classes":"tsd-kind-type-alias"},{"id":1841,"kind":256,"name":"StackableRedeemableResultDiscountUnit","url":"interfaces/StackableRedeemableResultDiscountUnit.html","classes":"tsd-kind-interface"},{"id":1842,"kind":1024,"name":"effect","url":"interfaces/StackableRedeemableResultDiscountUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1843,"kind":1024,"name":"unit_off","url":"interfaces/StackableRedeemableResultDiscountUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1844,"kind":1024,"name":"unit_type","url":"interfaces/StackableRedeemableResultDiscountUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1845,"kind":1024,"name":"sku","url":"interfaces/StackableRedeemableResultDiscountUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1846,"kind":1024,"name":"product","url":"interfaces/StackableRedeemableResultDiscountUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1847,"kind":256,"name":"StackableRedeemableResultDiscount","url":"interfaces/StackableRedeemableResultDiscount.html","classes":"tsd-kind-interface"},{"id":1848,"kind":1024,"name":"type","url":"interfaces/StackableRedeemableResultDiscount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1849,"kind":1024,"name":"effect","url":"interfaces/StackableRedeemableResultDiscount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1850,"kind":1024,"name":"amount_off","url":"interfaces/StackableRedeemableResultDiscount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1851,"kind":1024,"name":"amount_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1852,"kind":1024,"name":"percent_off","url":"interfaces/StackableRedeemableResultDiscount.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1853,"kind":1024,"name":"percent_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1854,"kind":1024,"name":"amount_limit","url":"interfaces/StackableRedeemableResultDiscount.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1855,"kind":1024,"name":"fixed_amount","url":"interfaces/StackableRedeemableResultDiscount.html#fixed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1856,"kind":1024,"name":"fixed_amount_formula","url":"interfaces/StackableRedeemableResultDiscount.html#fixed_amount_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1857,"kind":1024,"name":"unit_off","url":"interfaces/StackableRedeemableResultDiscount.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1858,"kind":1024,"name":"unit_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1859,"kind":1024,"name":"unit_type","url":"interfaces/StackableRedeemableResultDiscount.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1860,"kind":1024,"name":"sku","url":"interfaces/StackableRedeemableResultDiscount.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1861,"kind":1024,"name":"product","url":"interfaces/StackableRedeemableResultDiscount.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1862,"kind":1024,"name":"units","url":"interfaces/StackableRedeemableResultDiscount.html#units","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1863,"kind":256,"name":"StackableRedeemableResultGift","url":"interfaces/StackableRedeemableResultGift.html","classes":"tsd-kind-interface"},{"id":1864,"kind":1024,"name":"credits","url":"interfaces/StackableRedeemableResultGift.html#credits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultGift"},{"id":1865,"kind":256,"name":"StackableRedeemableResultLoyaltyCard","url":"interfaces/StackableRedeemableResultLoyaltyCard.html","classes":"tsd-kind-interface"},{"id":1866,"kind":1024,"name":"points","url":"interfaces/StackableRedeemableResultLoyaltyCard.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultLoyaltyCard"},{"id":1867,"kind":1024,"name":"transfers","url":"interfaces/StackableRedeemableResultLoyaltyCard.html#transfers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultLoyaltyCard"},{"id":1868,"kind":256,"name":"StackableRedeemableResultResponse","url":"interfaces/StackableRedeemableResultResponse.html","classes":"tsd-kind-interface"},{"id":1869,"kind":1024,"name":"discount","url":"interfaces/StackableRedeemableResultResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1870,"kind":1024,"name":"gift","url":"interfaces/StackableRedeemableResultResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1871,"kind":1024,"name":"loyalty_card","url":"interfaces/StackableRedeemableResultResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1872,"kind":1024,"name":"error","url":"interfaces/StackableRedeemableResultResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1873,"kind":256,"name":"StackableRedeemableResponse","url":"interfaces/StackableRedeemableResponse.html","classes":"tsd-kind-interface"},{"id":1874,"kind":1024,"name":"status","url":"interfaces/StackableRedeemableResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1875,"kind":1024,"name":"id","url":"interfaces/StackableRedeemableResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1876,"kind":1024,"name":"object","url":"interfaces/StackableRedeemableResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1877,"kind":1024,"name":"order","url":"interfaces/StackableRedeemableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1878,"kind":1024,"name":"applicable_to","url":"interfaces/StackableRedeemableResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1879,"kind":1024,"name":"inapplicable_to","url":"interfaces/StackableRedeemableResponse.html#inapplicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1880,"kind":1024,"name":"result","url":"interfaces/StackableRedeemableResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1881,"kind":1024,"name":"metadata","url":"interfaces/StackableRedeemableResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1882,"kind":256,"name":"GiftRedemptionParams","url":"interfaces/GiftRedemptionParams.html","classes":"tsd-kind-interface"},{"id":1883,"kind":1024,"name":"credits","url":"interfaces/GiftRedemptionParams.html#credits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GiftRedemptionParams"},{"id":1884,"kind":4194304,"name":"ValidationSessionType","url":"modules.html#ValidationSessionType","classes":"tsd-kind-type-alias"},{"id":1885,"kind":4194304,"name":"ValidationSessionTTLUnit","url":"modules.html#ValidationSessionTTLUnit","classes":"tsd-kind-type-alias"},{"id":1886,"kind":256,"name":"ValidationSessionParams","url":"interfaces/ValidationSessionParams.html","classes":"tsd-kind-interface"},{"id":1887,"kind":1024,"name":"key","url":"interfaces/ValidationSessionParams.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1888,"kind":1024,"name":"type","url":"interfaces/ValidationSessionParams.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1889,"kind":1024,"name":"ttl","url":"interfaces/ValidationSessionParams.html#ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1890,"kind":1024,"name":"ttl_unit","url":"interfaces/ValidationSessionParams.html#ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1891,"kind":256,"name":"ValidationSessionResponse","url":"interfaces/ValidationSessionResponse.html","classes":"tsd-kind-interface"},{"id":1892,"kind":1024,"name":"key","url":"interfaces/ValidationSessionResponse.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1893,"kind":1024,"name":"type","url":"interfaces/ValidationSessionResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1894,"kind":1024,"name":"ttl","url":"interfaces/ValidationSessionResponse.html#ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1895,"kind":1024,"name":"ttl_unit","url":"interfaces/ValidationSessionResponse.html#ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1896,"kind":256,"name":"ValidationSessionReleaseParams","url":"interfaces/ValidationSessionReleaseParams.html","classes":"tsd-kind-interface"},{"id":1897,"kind":1024,"name":"key","url":"interfaces/ValidationSessionReleaseParams.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionReleaseParams"},{"id":1898,"kind":4194304,"name":"ApplicableToEffect","url":"modules.html#ApplicableToEffect","classes":"tsd-kind-type-alias"},{"id":1899,"kind":256,"name":"ApplicableTo","url":"interfaces/ApplicableTo.html","classes":"tsd-kind-interface"},{"id":1900,"kind":1024,"name":"object","url":"interfaces/ApplicableTo.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1901,"kind":1024,"name":"id","url":"interfaces/ApplicableTo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1902,"kind":1024,"name":"source_id","url":"interfaces/ApplicableTo.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1903,"kind":1024,"name":"product_id","url":"interfaces/ApplicableTo.html#product_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1904,"kind":1024,"name":"product_source_id","url":"interfaces/ApplicableTo.html#product_source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1905,"kind":1024,"name":"strict","url":"interfaces/ApplicableTo.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1906,"kind":1024,"name":"price","url":"interfaces/ApplicableTo.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1907,"kind":1024,"name":"price_formula","url":"interfaces/ApplicableTo.html#price_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1908,"kind":1024,"name":"quantity_limit","url":"interfaces/ApplicableTo.html#quantity_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1909,"kind":1024,"name":"aggregated_quantity_limit","url":"interfaces/ApplicableTo.html#aggregated_quantity_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1910,"kind":1024,"name":"effect","url":"interfaces/ApplicableTo.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1911,"kind":256,"name":"ApplicableToResultList","url":"interfaces/ApplicableToResultList.html","classes":"tsd-kind-interface"},{"id":1912,"kind":1024,"name":"object","url":"interfaces/ApplicableToResultList.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1913,"kind":1024,"name":"total","url":"interfaces/ApplicableToResultList.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1914,"kind":1024,"name":"data","url":"interfaces/ApplicableToResultList.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1915,"kind":4194304,"name":"DiscountVouchersTypes","url":"modules.html#DiscountVouchersTypes","classes":"tsd-kind-type-alias"},{"id":1916,"kind":4,"name":"DiscountVouchersTypesEnum","url":"enums/DiscountVouchersTypesEnum.html","classes":"tsd-kind-enum"},{"id":1917,"kind":16,"name":"AMOUNT","url":"enums/DiscountVouchersTypesEnum.html#AMOUNT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1918,"kind":16,"name":"PERCENT","url":"enums/DiscountVouchersTypesEnum.html#PERCENT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1919,"kind":16,"name":"UNIT","url":"enums/DiscountVouchersTypesEnum.html#UNIT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1920,"kind":16,"name":"FIXED","url":"enums/DiscountVouchersTypesEnum.html#FIXED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1921,"kind":4194304,"name":"DiscountVouchersEffectTypes","url":"modules.html#DiscountVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1922,"kind":4194304,"name":"DiscountUnitVouchersEffectTypes","url":"modules.html#DiscountUnitVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1923,"kind":4194304,"name":"DiscountAmountVouchersEffectTypes","url":"modules.html#DiscountAmountVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1924,"kind":4194304,"name":"DiscountPercentVouchersEffectTypes","url":"modules.html#DiscountPercentVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1925,"kind":4194304,"name":"DiscountFixedVouchersEffectTypes","url":"modules.html#DiscountFixedVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1926,"kind":256,"name":"DiscountUnitMultiple","url":"interfaces/DiscountUnitMultiple.html","classes":"tsd-kind-interface"},{"id":1927,"kind":1024,"name":"type","url":"interfaces/DiscountUnitMultiple.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultiple"},{"id":1928,"kind":1024,"name":"effect","url":"interfaces/DiscountUnitMultiple.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultiple"},{"id":1929,"kind":1024,"name":"units","url":"interfaces/DiscountUnitMultiple.html#units","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultiple"},{"id":1930,"kind":256,"name":"DiscountUnitMultipleOneUnit","url":"interfaces/DiscountUnitMultipleOneUnit.html","classes":"tsd-kind-interface"},{"id":1931,"kind":1024,"name":"type","url":"interfaces/DiscountUnitMultipleOneUnit.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1932,"kind":1024,"name":"effect","url":"interfaces/DiscountUnitMultipleOneUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1933,"kind":1024,"name":"unit_off","url":"interfaces/DiscountUnitMultipleOneUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1934,"kind":1024,"name":"unit_type","url":"interfaces/DiscountUnitMultipleOneUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1935,"kind":1024,"name":"product","url":"interfaces/DiscountUnitMultipleOneUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1936,"kind":1024,"name":"sku","url":"interfaces/DiscountUnitMultipleOneUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1937,"kind":256,"name":"DiscountUnit","url":"interfaces/DiscountUnit.html","classes":"tsd-kind-interface"},{"id":1938,"kind":1024,"name":"type","url":"interfaces/DiscountUnit.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1939,"kind":1024,"name":"unit_off","url":"interfaces/DiscountUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1940,"kind":1024,"name":"unit_off_formula","url":"interfaces/DiscountUnit.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1941,"kind":1024,"name":"effect","url":"interfaces/DiscountUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1942,"kind":1024,"name":"unit_type","url":"interfaces/DiscountUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1943,"kind":1024,"name":"product","url":"interfaces/DiscountUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1944,"kind":1024,"name":"sku","url":"interfaces/DiscountUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1945,"kind":256,"name":"DiscountAmount","url":"interfaces/DiscountAmount.html","classes":"tsd-kind-interface"},{"id":1946,"kind":1024,"name":"type","url":"interfaces/DiscountAmount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1947,"kind":1024,"name":"amount_off","url":"interfaces/DiscountAmount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1948,"kind":1024,"name":"amount_off_formula","url":"interfaces/DiscountAmount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1949,"kind":1024,"name":"effect","url":"interfaces/DiscountAmount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1950,"kind":256,"name":"DiscountPercent","url":"interfaces/DiscountPercent.html","classes":"tsd-kind-interface"},{"id":1951,"kind":1024,"name":"type","url":"interfaces/DiscountPercent.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1952,"kind":1024,"name":"percent_off","url":"interfaces/DiscountPercent.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1953,"kind":1024,"name":"percent_off_formula","url":"interfaces/DiscountPercent.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1954,"kind":1024,"name":"amount_limit","url":"interfaces/DiscountPercent.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1955,"kind":1024,"name":"effect","url":"interfaces/DiscountPercent.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1956,"kind":256,"name":"DiscountFixed","url":"interfaces/DiscountFixed.html","classes":"tsd-kind-interface"},{"id":1957,"kind":1024,"name":"type","url":"interfaces/DiscountFixed.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1958,"kind":1024,"name":"fixed_amount","url":"interfaces/DiscountFixed.html#fixed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1959,"kind":1024,"name":"fixed_amount_formula","url":"interfaces/DiscountFixed.html#fixed_amount_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1960,"kind":1024,"name":"effect","url":"interfaces/DiscountFixed.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1961,"kind":64,"name":"VoucherifyServerSide","url":"modules.html#VoucherifyServerSide","classes":"tsd-kind-function"},{"id":1962,"kind":256,"name":"VoucherifyServerSideOptions","url":"interfaces/VoucherifyServerSideOptions.html","classes":"tsd-kind-interface"},{"id":1963,"kind":1024,"name":"apiUrl","url":"interfaces/VoucherifyServerSideOptions.html#apiUrl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1964,"kind":1024,"name":"applicationId","url":"interfaces/VoucherifyServerSideOptions.html#applicationId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1965,"kind":1024,"name":"secretKey","url":"interfaces/VoucherifyServerSideOptions.html#secretKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1966,"kind":1024,"name":"apiVersion","url":"interfaces/VoucherifyServerSideOptions.html#apiVersion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1967,"kind":1024,"name":"channel","url":"interfaces/VoucherifyServerSideOptions.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1968,"kind":1024,"name":"dangerouslySetSecretKeyInBrowser","url":"interfaces/VoucherifyServerSideOptions.html#dangerouslySetSecretKeyInBrowser","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1969,"kind":1024,"name":"customHeaders","url":"interfaces/VoucherifyServerSideOptions.html#customHeaders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1970,"kind":1024,"name":"exposeErrorCause","url":"interfaces/VoucherifyServerSideOptions.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1971,"kind":64,"name":"VoucherifyClientSide","url":"modules.html#VoucherifyClientSide","classes":"tsd-kind-function"},{"id":1972,"kind":256,"name":"VoucherifyClientSideOptions","url":"interfaces/VoucherifyClientSideOptions.html","classes":"tsd-kind-interface"},{"id":1973,"kind":1024,"name":"apiUrl","url":"interfaces/VoucherifyClientSideOptions.html#apiUrl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1974,"kind":1024,"name":"clientApplicationId","url":"interfaces/VoucherifyClientSideOptions.html#clientApplicationId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1975,"kind":1024,"name":"clientSecretKey","url":"interfaces/VoucherifyClientSideOptions.html#clientSecretKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1976,"kind":1024,"name":"trackingId","url":"interfaces/VoucherifyClientSideOptions.html#trackingId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1977,"kind":1024,"name":"origin","url":"interfaces/VoucherifyClientSideOptions.html#origin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1978,"kind":1024,"name":"customHeaders","url":"interfaces/VoucherifyClientSideOptions.html#customHeaders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1979,"kind":1024,"name":"exposeErrorCause","url":"interfaces/VoucherifyClientSideOptions.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,49.887]],["parent/0",[]],["name/1",[1,45.233]],["parent/1",[0,4.645]],["name/2",[2,49.172]],["parent/2",[0,4.645]],["name/3",[3,49.172]],["parent/3",[]],["name/4",[1,45.233]],["parent/4",[3,4.579]],["name/5",[4,66.751]],["parent/5",[3,4.579]],["name/6",[2,49.172]],["parent/6",[3,4.579]],["name/7",[5,53.401]],["parent/7",[3,4.579]],["name/8",[6,49.887]],["parent/8",[3,4.579]],["name/9",[7,51.49]],["parent/9",[3,4.579]],["name/10",[8,71.859]],["parent/10",[3,4.579]],["name/11",[9,71.859]],["parent/11",[3,4.579]],["name/12",[10,71.859]],["parent/12",[3,4.579]],["name/13",[11,50.656]],["parent/13",[3,4.579]],["name/14",[12,49.887]],["parent/14",[]],["name/15",[1,45.233]],["parent/15",[12,4.645]],["name/16",[13,71.859]],["parent/16",[12,4.645]],["name/17",[14,60.873]],["parent/17",[12,4.645]],["name/18",[15,63.386]],["parent/18",[12,4.645]],["name/19",[16,60.873]],["parent/19",[12,4.645]],["name/20",[17,71.859]],["parent/20",[12,4.645]],["name/21",[18,71.859]],["parent/21",[12,4.645]],["name/22",[19,71.859]],["parent/22",[12,4.645]],["name/23",[20,71.859]],["parent/23",[12,4.645]],["name/24",[21,66.751]],["parent/24",[12,4.645]],["name/25",[22,66.751]],["parent/25",[12,4.645]],["name/26",[23,66.751]],["parent/26",[12,4.645]],["name/27",[24,60.873]],["parent/27",[]],["name/28",[1,45.233]],["parent/28",[24,5.668]],["name/29",[11,50.656]],["parent/29",[24,5.668]],["name/30",[25,50.656]],["parent/30",[]],["name/31",[1,45.233]],["parent/31",[25,4.717]],["name/32",[2,49.172]],["parent/32",[25,4.717]],["name/33",[6,49.887]],["parent/33",[25,4.717]],["name/34",[11,50.656]],["parent/34",[25,4.717]],["name/35",[26,71.859]],["parent/35",[25,4.717]],["name/36",[5,53.401]],["parent/36",[25,4.717]],["name/37",[7,51.49]],["parent/37",[25,4.717]],["name/38",[21,66.751]],["parent/38",[25,4.717]],["name/39",[27,71.859]],["parent/39",[25,4.717]],["name/40",[28,60.873]],["parent/40",[]],["name/41",[1,45.233]],["parent/41",[28,5.668]],["name/42",[29,66.751]],["parent/42",[28,5.668]],["name/43",[30,57.196]],["parent/43",[28,5.668]],["name/44",[31,63.386]],["parent/44",[]],["name/45",[1,45.233]],["parent/45",[31,5.902]],["name/46",[2,49.172]],["parent/46",[31,5.902]],["name/47",[30,57.196]],["parent/47",[]],["name/48",[1,45.233]],["parent/48",[30,5.326]],["name/49",[2,49.172]],["parent/49",[30,5.326]],["name/50",[6,49.887]],["parent/50",[30,5.326]],["name/51",[7,51.49]],["parent/51",[30,5.326]],["name/52",[32,45.233]],["parent/52",[]],["name/53",[1,45.233]],["parent/53",[32,4.212]],["name/54",[11,50.656]],["parent/54",[32,4.212]],["name/55",[2,49.172]],["parent/55",[32,4.212]],["name/56",[6,49.887]],["parent/56",[32,4.212]],["name/57",[5,53.401]],["parent/57",[32,4.212]],["name/58",[7,51.49]],["parent/58",[32,4.212]],["name/59",[33,71.859]],["parent/59",[32,4.212]],["name/60",[34,71.859]],["parent/60",[32,4.212]],["name/61",[35,71.859]],["parent/61",[32,4.212]],["name/62",[36,71.859]],["parent/62",[32,4.212]],["name/63",[37,71.859]],["parent/63",[32,4.212]],["name/64",[38,71.859]],["parent/64",[32,4.212]],["name/65",[39,71.859]],["parent/65",[32,4.212]],["name/66",[40,71.859]],["parent/66",[32,4.212]],["name/67",[41,71.859]],["parent/67",[32,4.212]],["name/68",[42,71.859]],["parent/68",[32,4.212]],["name/69",[43,71.859]],["parent/69",[32,4.212]],["name/70",[44,71.859]],["parent/70",[32,4.212]],["name/71",[45,71.859]],["parent/71",[32,4.212]],["name/72",[46,71.859]],["parent/72",[32,4.212]],["name/73",[47,53.401]],["parent/73",[]],["name/74",[1,45.233]],["parent/74",[47,4.973]],["name/75",[2,49.172]],["parent/75",[47,4.973]],["name/76",[6,49.887]],["parent/76",[47,4.973]],["name/77",[5,53.401]],["parent/77",[47,4.973]],["name/78",[11,50.656]],["parent/78",[47,4.973]],["name/79",[48,66.751]],["parent/79",[47,4.973]],["name/80",[49,48.505]],["parent/80",[]],["name/81",[1,45.233]],["parent/81",[49,4.517]],["name/82",[2,49.172]],["parent/82",[49,4.517]],["name/83",[6,49.887]],["parent/83",[49,4.517]],["name/84",[5,53.401]],["parent/84",[49,4.517]],["name/85",[50,66.751]],["parent/85",[49,4.517]],["name/86",[51,66.751]],["parent/86",[49,4.517]],["name/87",[7,51.49]],["parent/87",[49,4.517]],["name/88",[11,50.656]],["parent/88",[49,4.517]],["name/89",[52,71.859]],["parent/89",[49,4.517]],["name/90",[53,71.859]],["parent/90",[49,4.517]],["name/91",[54,71.859]],["parent/91",[49,4.517]],["name/92",[55,71.859]],["parent/92",[49,4.517]],["name/93",[56,71.859]],["parent/93",[49,4.517]],["name/94",[57,55.765]],["parent/94",[]],["name/95",[1,45.233]],["parent/95",[57,5.193]],["name/96",[58,60.873]],["parent/96",[57,5.193]],["name/97",[2,49.172]],["parent/97",[57,5.193]],["name/98",[14,60.873]],["parent/98",[57,5.193]],["name/99",[59,53.401]],["parent/99",[]],["name/100",[1,45.233]],["parent/100",[59,4.973]],["name/101",[60,71.859]],["parent/101",[59,4.973]],["name/102",[11,50.656]],["parent/102",[59,4.973]],["name/103",[6,49.887]],["parent/103",[59,4.973]],["name/104",[2,49.172]],["parent/104",[59,4.973]],["name/105",[15,63.386]],["parent/105",[59,4.973]],["name/106",[5,53.401]],["parent/106",[59,4.973]],["name/107",[7,51.49]],["parent/107",[59,4.973]],["name/108",[61,49.887]],["parent/108",[]],["name/109",[1,45.233]],["parent/109",[61,4.645]],["name/110",[15,63.386]],["parent/110",[61,4.645]],["name/111",[23,66.751]],["parent/111",[61,4.645]],["name/112",[6,49.887]],["parent/112",[61,4.645]],["name/113",[11,50.656]],["parent/113",[61,4.645]],["name/114",[62,71.859]],["parent/114",[61,4.645]],["name/115",[63,71.859]],["parent/115",[61,4.645]],["name/116",[64,71.859]],["parent/116",[61,4.645]],["name/117",[65,47.292]],["parent/117",[]],["name/118",[1,45.233]],["parent/118",[65,4.404]],["name/119",[66,71.859]],["parent/119",[65,4.404]],["name/120",[67,71.859]],["parent/120",[65,4.404]],["name/121",[68,71.859]],["parent/121",[65,4.404]],["name/122",[69,71.859]],["parent/122",[65,4.404]],["name/123",[70,71.859]],["parent/123",[65,4.404]],["name/124",[71,71.859]],["parent/124",[65,4.404]],["name/125",[72,63.386]],["parent/125",[65,4.404]],["name/126",[73,71.859]],["parent/126",[65,4.404]],["name/127",[74,71.859]],["parent/127",[65,4.404]],["name/128",[75,71.859]],["parent/128",[65,4.404]],["name/129",[76,71.859]],["parent/129",[65,4.404]],["name/130",[6,49.887]],["parent/130",[65,4.404]],["name/131",[77,71.859]],["parent/131",[65,4.404]],["name/132",[78,71.859]],["parent/132",[65,4.404]],["name/133",[7,51.49]],["parent/133",[65,4.404]],["name/134",[79,51.49]],["parent/134",[]],["name/135",[1,45.233]],["parent/135",[79,4.795]],["name/136",[11,50.656]],["parent/136",[79,4.795]],["name/137",[2,49.172]],["parent/137",[79,4.795]],["name/138",[6,49.887]],["parent/138",[79,4.795]],["name/139",[5,53.401]],["parent/139",[79,4.795]],["name/140",[7,51.49]],["parent/140",[79,4.795]],["name/141",[80,66.751]],["parent/141",[79,4.795]],["name/142",[81,66.751]],["parent/142",[79,4.795]],["name/143",[82,71.859]],["parent/143",[79,4.795]],["name/144",[83,66.751]],["parent/144",[79,4.795]],["name/145",[84,57.196]],["parent/145",[]],["name/146",[1,45.233]],["parent/146",[84,5.326]],["name/147",[2,49.172]],["parent/147",[84,5.326]],["name/148",[6,49.887]],["parent/148",[84,5.326]],["name/149",[7,51.49]],["parent/149",[84,5.326]],["name/150",[11,50.656]],["parent/150",[84,5.326]],["name/151",[85,51.49]],["parent/151",[]],["name/152",[1,45.233]],["parent/152",[85,4.795]],["name/153",[2,49.172]],["parent/153",[85,4.795]],["name/154",[6,49.887]],["parent/154",[85,4.795]],["name/155",[5,53.401]],["parent/155",[85,4.795]],["name/156",[7,51.49]],["parent/156",[85,4.795]],["name/157",[81,66.751]],["parent/157",[85,4.795]],["name/158",[83,66.751]],["parent/158",[85,4.795]],["name/159",[14,60.873]],["parent/159",[85,4.795]],["name/160",[11,50.656]],["parent/160",[85,4.795]],["name/161",[80,66.751]],["parent/161",[85,4.795]],["name/162",[86,58.866]],["parent/162",[]],["name/163",[1,45.233]],["parent/163",[86,5.481]],["name/164",[87,71.859]],["parent/164",[86,5.481]],["name/165",[14,60.873]],["parent/165",[86,5.481]],["name/166",[22,66.751]],["parent/166",[86,5.481]],["name/167",[88,50.656]],["parent/167",[]],["name/168",[1,45.233]],["parent/168",[88,4.717]],["name/169",[89,46.209]],["parent/169",[88,4.717]],["name/170",[90,58.866]],["parent/170",[88,4.717]],["name/171",[91,66.751]],["parent/171",[88,4.717]],["name/172",[92,66.751]],["parent/172",[88,4.717]],["name/173",[93,66.751]],["parent/173",[88,4.717]],["name/174",[94,66.751]],["parent/174",[88,4.717]],["name/175",[95,71.859]],["parent/175",[88,4.717]],["name/176",[96,55.765]],["parent/176",[88,4.717]],["name/177",[97,71.859]],["parent/177",[88,4.717]],["name/178",[98,71.859]],["parent/178",[88,4.717]],["name/179",[99,46.736]],["parent/179",[]],["name/180",[1,45.233]],["parent/180",[99,4.352]],["name/181",[4,66.751]],["parent/181",[99,4.352]],["name/182",[0,49.887]],["parent/182",[99,4.352]],["name/183",[2,49.172]],["parent/183",[99,4.352]],["name/184",[6,49.887]],["parent/184",[99,4.352]],["name/185",[5,53.401]],["parent/185",[99,4.352]],["name/186",[7,51.49]],["parent/186",[99,4.352]],["name/187",[11,50.656]],["parent/187",[99,4.352]],["name/188",[100,71.859]],["parent/188",[99,4.352]],["name/189",[101,71.859]],["parent/189",[99,4.352]],["name/190",[48,66.751]],["parent/190",[99,4.352]],["name/191",[50,66.751]],["parent/191",[99,4.352]],["name/192",[51,66.751]],["parent/192",[99,4.352]],["name/193",[102,71.859]],["parent/193",[99,4.352]],["name/194",[103,55.765]],["parent/194",[]],["name/195",[104,33.078]],["parent/195",[103,5.193]],["name/196",[105,42.772]],["parent/196",[103,5.193]],["name/197",[106,58.866]],["parent/197",[103,5.193]],["name/198",[107,42.772]],["parent/198",[103,5.193]],["name/199",[108,35.223]],["parent/199",[103,5.193]],["name/200",[109,32.031]],["parent/200",[103,5.193]],["name/201",[110,47.88]],["parent/201",[]],["name/202",[104,33.078]],["parent/202",[110,4.458]],["name/203",[107,42.772]],["parent/203",[110,4.458]],["name/204",[105,42.772]],["parent/204",[110,4.458]],["name/205",[106,58.866]],["parent/205",[110,4.458]],["name/206",[111,66.751]],["parent/206",[110,4.458]],["name/207",[112,53.401]],["parent/207",[110,4.458]],["name/208",[113,66.751]],["parent/208",[110,4.458]],["name/209",[114,26.461]],["parent/209",[110,4.458]],["name/210",[115,63.386]],["parent/210",[116,4.645]],["name/211",[117,66.751]],["parent/211",[116,4.645]],["name/212",[118,66.751]],["parent/212",[116,4.645]],["name/213",[119,66.751]],["parent/213",[116,4.645]],["name/214",[120,66.751]],["parent/214",[116,4.645]],["name/215",[121,66.751]],["parent/215",[116,4.645]],["name/216",[122,71.859]],["parent/216",[110,4.458]],["name/217",[114,26.461]],["parent/217",[110,4.458]],["name/218",[61,49.887]],["parent/218",[116,4.645]],["name/219",[114,26.461]],["parent/219",[116,4.645]],["name/220",[123,71.859]],["parent/220",[124,4.517]],["name/221",[125,71.859]],["parent/221",[124,4.517]],["name/222",[126,71.859]],["parent/222",[124,4.517]],["name/223",[127,71.859]],["parent/223",[124,4.517]],["name/224",[128,71.859]],["parent/224",[124,4.517]],["name/225",[129,71.859]],["parent/225",[124,4.517]],["name/226",[130,51.49]],["parent/226",[124,4.517]],["name/227",[114,26.461]],["parent/227",[124,4.517]],["name/228",[131,66.751]],["parent/228",[132,5.668]],["name/229",[133,71.859]],["parent/229",[132,5.668]],["name/230",[134,49.172]],["parent/230",[124,4.517]],["name/231",[114,26.461]],["parent/231",[124,4.517]],["name/232",[135,63.386]],["parent/232",[132,5.668]],["name/233",[136,71.859]],["parent/233",[132,5.668]],["name/234",[47,53.401]],["parent/234",[116,4.645]],["name/235",[114,26.461]],["parent/235",[116,4.645]],["name/236",[137,60.873]],["parent/236",[124,4.517]],["name/237",[138,71.859]],["parent/237",[124,4.517]],["name/238",[139,71.859]],["parent/238",[124,4.517]],["name/239",[140,71.859]],["parent/239",[124,4.517]],["name/240",[141,71.859]],["parent/240",[124,4.517]],["name/241",[134,49.172]],["parent/241",[110,4.458]],["name/242",[114,26.461]],["parent/242",[110,4.458]],["name/243",[142,44.344]],["parent/243",[116,4.645]],["name/244",[143,71.859]],["parent/244",[116,4.645]],["name/245",[3,49.172]],["parent/245",[116,4.645]],["name/246",[108,35.223]],["parent/246",[110,4.458]],["name/247",[144,43.927]],["parent/247",[110,4.458]],["name/248",[109,32.031]],["parent/248",[110,4.458]],["name/249",[145,71.859]],["parent/249",[]],["name/250",[146,51.49]],["parent/250",[]],["name/251",[104,33.078]],["parent/251",[146,4.795]],["name/252",[107,42.772]],["parent/252",[146,4.795]],["name/253",[105,42.772]],["parent/253",[146,4.795]],["name/254",[106,58.866]],["parent/254",[146,4.795]],["name/255",[108,35.223]],["parent/255",[146,4.795]],["name/256",[112,53.401]],["parent/256",[146,4.795]],["name/257",[113,66.751]],["parent/257",[146,4.795]],["name/258",[114,26.461]],["parent/258",[146,4.795]],["name/259",[115,63.386]],["parent/259",[147,5.326]],["name/260",[117,66.751]],["parent/260",[147,5.326]],["name/261",[118,66.751]],["parent/261",[147,5.326]],["name/262",[119,66.751]],["parent/262",[147,5.326]],["name/263",[120,66.751]],["parent/263",[147,5.326]],["name/264",[121,66.751]],["parent/264",[147,5.326]],["name/265",[111,66.751]],["parent/265",[146,4.795]],["name/266",[148,71.859]],["parent/266",[146,4.795]],["name/267",[149,54.513]],["parent/267",[]],["name/268",[150,46.209]],["parent/268",[149,5.076]],["name/269",[151,47.88]],["parent/269",[149,5.076]],["name/270",[106,58.866]],["parent/270",[149,5.076]],["name/271",[115,63.386]],["parent/271",[149,5.076]],["name/272",[105,42.772]],["parent/272",[149,5.076]],["name/273",[152,41.101]],["parent/273",[149,5.076]],["name/274",[153,66.751]],["parent/274",[149,5.076]],["name/275",[154,57.196]],["parent/275",[]],["name/276",[109,32.031]],["parent/276",[154,5.326]],["name/277",[155,39.94]],["parent/277",[154,5.326]],["name/278",[156,40.798]],["parent/278",[154,5.326]],["name/279",[25,50.656]],["parent/279",[154,5.326]],["name/280",[157,63.386]],["parent/280",[154,5.326]],["name/281",[158,55.765]],["parent/281",[]],["name/282",[150,46.209]],["parent/282",[158,5.193]],["name/283",[152,41.101]],["parent/283",[158,5.193]],["name/284",[153,66.751]],["parent/284",[158,5.193]],["name/285",[159,71.859]],["parent/285",[158,5.193]],["name/286",[160,57.196]],["parent/286",[158,5.193]],["name/287",[161,57.196]],["parent/287",[158,5.193]],["name/288",[162,58.866]],["parent/288",[]],["name/289",[109,32.031]],["parent/289",[162,5.481]],["name/290",[155,39.94]],["parent/290",[162,5.481]],["name/291",[156,40.798]],["parent/291",[162,5.481]],["name/292",[163,46.209]],["parent/292",[162,5.481]],["name/293",[164,71.859]],["parent/293",[]],["name/294",[165,71.859]],["parent/294",[]],["name/295",[166,71.859]],["parent/295",[]],["name/296",[167,71.859]],["parent/296",[]],["name/297",[168,71.859]],["parent/297",[]],["name/298",[169,71.859]],["parent/298",[]],["name/299",[170,71.859]],["parent/299",[]],["name/300",[171,71.859]],["parent/300",[]],["name/301",[172,71.859]],["parent/301",[]],["name/302",[173,71.859]],["parent/302",[]],["name/303",[174,71.859]],["parent/303",[]],["name/304",[175,66.751]],["parent/304",[]],["name/305",[176,43.927]],["parent/305",[175,6.216]],["name/306",[177,54.513]],["parent/306",[]],["name/307",[176,43.927]],["parent/307",[177,5.076]],["name/308",[155,39.94]],["parent/308",[177,5.076]],["name/309",[0,49.887]],["parent/309",[177,5.076]],["name/310",[178,41.414]],["parent/310",[177,5.076]],["name/311",[109,32.031]],["parent/311",[177,5.076]],["name/312",[179,63.386]],["parent/312",[177,5.076]],["name/313",[114,26.461]],["parent/313",[177,5.076]],["name/314",[178,41.414]],["parent/314",[180,6.216]],["name/315",[104,33.078]],["parent/315",[180,6.216]],["name/316",[181,71.859]],["parent/316",[]],["name/317",[182,71.859]],["parent/317",[]],["name/318",[183,71.859]],["parent/318",[]],["name/319",[184,49.172]],["parent/319",[]],["name/320",[89,46.209]],["parent/320",[184,4.579]],["name/321",[185,45.709]],["parent/321",[184,4.579]],["name/322",[176,43.927]],["parent/322",[184,4.579]],["name/323",[186,52.4]],["parent/323",[184,4.579]],["name/324",[187,71.859]],["parent/324",[184,4.579]],["name/325",[188,41.101]],["parent/325",[184,4.579]],["name/326",[189,50.656]],["parent/326",[184,4.579]],["name/327",[114,26.461]],["parent/327",[184,4.579]],["name/328",[104,33.078]],["parent/328",[190,6.691]],["name/329",[108,35.223]],["parent/329",[184,4.579]],["name/330",[191,71.859]],["parent/330",[184,4.579]],["name/331",[192,71.859]],["parent/331",[184,4.579]],["name/332",[193,71.859]],["parent/332",[184,4.579]],["name/333",[194,71.859]],["parent/333",[184,4.579]],["name/334",[195,71.859]],["parent/334",[]],["name/335",[196,71.859]],["parent/335",[]],["name/336",[197,58.866]],["parent/336",[]],["name/337",[109,32.031]],["parent/337",[197,5.481]],["name/338",[155,39.94]],["parent/338",[197,5.481]],["name/339",[156,40.798]],["parent/339",[197,5.481]],["name/340",[99,46.736]],["parent/340",[197,5.481]],["name/341",[198,49.172]],["parent/341",[]],["name/342",[89,46.209]],["parent/342",[198,4.579]],["name/343",[199,55.765]],["parent/343",[198,4.579]],["name/344",[200,53.401]],["parent/344",[198,4.579]],["name/345",[201,60.873]],["parent/345",[198,4.579]],["name/346",[152,41.101]],["parent/346",[198,4.579]],["name/347",[114,26.461]],["parent/347",[198,4.579]],["name/348",[176,43.927]],["parent/348",[202,5.076]],["name/349",[203,57.196]],["parent/349",[202,5.076]],["name/350",[204,63.386]],["parent/350",[202,5.076]],["name/351",[137,60.873]],["parent/351",[202,5.076]],["name/352",[186,52.4]],["parent/352",[202,5.076]],["name/353",[185,45.709]],["parent/353",[198,4.579]],["name/354",[161,57.196]],["parent/354",[198,4.579]],["name/355",[134,49.172]],["parent/355",[198,4.579]],["name/356",[114,26.461]],["parent/356",[198,4.579]],["name/357",[205,66.751]],["parent/357",[202,5.076]],["name/358",[130,51.49]],["parent/358",[198,4.579]],["name/359",[114,26.461]],["parent/359",[198,4.579]],["name/360",[176,43.927]],["parent/360",[202,5.076]],["name/361",[0,49.887]],["parent/361",[202,5.076]],["name/362",[57,55.765]],["parent/362",[198,4.579]],["name/363",[206,54.513]],["parent/363",[]],["name/364",[185,45.709]],["parent/364",[206,5.076]],["name/365",[188,41.101]],["parent/365",[206,5.076]],["name/366",[152,41.101]],["parent/366",[206,5.076]],["name/367",[108,35.223]],["parent/367",[206,5.076]],["name/368",[189,50.656]],["parent/368",[206,5.076]],["name/369",[114,26.461]],["parent/369",[206,5.076]],["name/370",[104,33.078]],["parent/370",[207,6.691]],["name/371",[208,54.513]],["parent/371",[206,5.076]],["name/372",[209,52.4]],["parent/372",[]],["name/373",[104,33.078]],["parent/373",[209,4.879]],["name/374",[109,32.031]],["parent/374",[209,4.879]],["name/375",[210,54.513]],["parent/375",[209,4.879]],["name/376",[211,51.49]],["parent/376",[209,4.879]],["name/377",[185,45.709]],["parent/377",[209,4.879]],["name/378",[152,41.101]],["parent/378",[209,4.879]],["name/379",[108,35.223]],["parent/379",[209,4.879]],["name/380",[212,49.887]],["parent/380",[209,4.879]],["name/381",[213,49.172]],["parent/381",[209,4.879]],["name/382",[214,57.196]],["parent/382",[]],["name/383",[107,42.772]],["parent/383",[214,5.326]],["name/384",[215,57.196]],["parent/384",[214,5.326]],["name/385",[188,41.101]],["parent/385",[214,5.326]],["name/386",[213,49.172]],["parent/386",[214,5.326]],["name/387",[108,35.223]],["parent/387",[214,5.326]],["name/388",[216,71.859]],["parent/388",[]],["name/389",[217,63.386]],["parent/389",[]],["name/390",[218,58.866]],["parent/390",[217,5.902]],["name/391",[219,49.172]],["parent/391",[217,5.902]],["name/392",[220,63.386]],["parent/392",[]],["name/393",[105,42.772]],["parent/393",[220,5.902]],["name/394",[221,58.866]],["parent/394",[220,5.902]],["name/395",[222,71.859]],["parent/395",[]],["name/396",[223,66.751]],["parent/396",[]],["name/397",[89,46.209]],["parent/397",[223,6.216]],["name/398",[224,66.751]],["parent/398",[]],["name/399",[89,46.209]],["parent/399",[224,6.216]],["name/400",[225,57.196]],["parent/400",[]],["name/401",[226,60.873]],["parent/401",[225,5.326]],["name/402",[108,35.223]],["parent/402",[225,5.326]],["name/403",[188,41.101]],["parent/403",[225,5.326]],["name/404",[134,49.172]],["parent/404",[225,5.326]],["name/405",[227,66.751]],["parent/405",[225,5.326]],["name/406",[228,63.386]],["parent/406",[]],["name/407",[109,32.031]],["parent/407",[228,5.902]],["name/408",[178,41.414]],["parent/408",[228,5.902]],["name/409",[229,71.859]],["parent/409",[]],["name/410",[230,63.386]],["parent/410",[]],["name/411",[152,41.101]],["parent/411",[230,5.902]],["name/412",[114,26.461]],["parent/412",[230,5.902]],["name/413",[176,43.927]],["parent/413",[231,6.691]],["name/414",[232,71.859]],["parent/414",[]],["name/415",[233,71.859]],["parent/415",[]],["name/416",[234,71.859]],["parent/416",[]],["name/417",[235,71.859]],["parent/417",[]],["name/418",[236,71.859]],["parent/418",[]],["name/419",[237,71.859]],["parent/419",[]],["name/420",[238,54.513]],["parent/420",[]],["name/421",[185,45.709]],["parent/421",[238,5.076]],["name/422",[188,41.101]],["parent/422",[238,5.076]],["name/423",[152,41.101]],["parent/423",[238,5.076]],["name/424",[108,35.223]],["parent/424",[238,5.076]],["name/425",[189,50.656]],["parent/425",[238,5.076]],["name/426",[130,51.49]],["parent/426",[238,5.076]],["name/427",[208,54.513]],["parent/427",[238,5.076]],["name/428",[239,45.709]],["parent/428",[]],["name/429",[104,33.078]],["parent/429",[239,4.256]],["name/430",[109,32.031]],["parent/430",[239,4.256]],["name/431",[210,54.513]],["parent/431",[239,4.256]],["name/432",[211,51.49]],["parent/432",[239,4.256]],["name/433",[185,45.709]],["parent/433",[239,4.256]],["name/434",[152,41.101]],["parent/434",[239,4.256]],["name/435",[108,35.223]],["parent/435",[239,4.256]],["name/436",[212,49.887]],["parent/436",[239,4.256]],["name/437",[213,49.172]],["parent/437",[239,4.256]],["name/438",[188,41.101]],["parent/438",[239,4.256]],["name/439",[189,50.656]],["parent/439",[239,4.256]],["name/440",[96,55.765]],["parent/440",[239,4.256]],["name/441",[130,51.49]],["parent/441",[239,4.256]],["name/442",[114,26.461]],["parent/442",[239,4.256]],["name/443",[176,43.927]],["parent/443",[240,6.216]],["name/444",[241,54.513]],["parent/444",[239,4.256]],["name/445",[114,26.461]],["parent/445",[239,4.256]],["name/446",[142,44.344]],["parent/446",[240,6.216]],["name/447",[242,63.386]],["parent/447",[239,4.256]],["name/448",[243,66.751]],["parent/448",[239,4.256]],["name/449",[244,66.751]],["parent/449",[239,4.256]],["name/450",[245,54.513]],["parent/450",[]],["name/451",[150,46.209]],["parent/451",[245,5.076]],["name/452",[151,47.88]],["parent/452",[245,5.076]],["name/453",[212,49.887]],["parent/453",[245,5.076]],["name/454",[219,49.172]],["parent/454",[245,5.076]],["name/455",[188,41.101]],["parent/455",[245,5.076]],["name/456",[144,43.927]],["parent/456",[245,5.076]],["name/457",[114,26.461]],["parent/457",[245,5.076]],["name/458",[246,58.866]],["parent/458",[247,6.216]],["name/459",[248,58.866]],["parent/459",[247,6.216]],["name/460",[249,42.415]],["parent/460",[]],["name/461",[104,33.078]],["parent/461",[249,3.95]],["name/462",[109,32.031]],["parent/462",[249,3.95]],["name/463",[210,54.513]],["parent/463",[249,3.95]],["name/464",[211,51.49]],["parent/464",[249,3.95]],["name/465",[185,45.709]],["parent/465",[249,3.95]],["name/466",[152,41.101]],["parent/466",[249,3.95]],["name/467",[108,35.223]],["parent/467",[249,3.95]],["name/468",[212,49.887]],["parent/468",[249,3.95]],["name/469",[243,66.751]],["parent/469",[249,3.95]],["name/470",[244,66.751]],["parent/470",[249,3.95]],["name/471",[188,41.101]],["parent/471",[249,3.95]],["name/472",[96,55.765]],["parent/472",[249,3.95]],["name/473",[213,49.172]],["parent/473",[249,3.95]],["name/474",[114,26.461]],["parent/474",[249,3.95]],["name/475",[89,46.209]],["parent/475",[250,5.193]],["name/476",[219,49.172]],["parent/476",[250,5.193]],["name/477",[104,33.078]],["parent/477",[250,5.193]],["name/478",[109,32.031]],["parent/478",[250,5.193]],["name/479",[161,57.196]],["parent/479",[250,5.193]],["name/480",[130,51.49]],["parent/480",[249,3.95]],["name/481",[114,26.461]],["parent/481",[249,3.95]],["name/482",[176,43.927]],["parent/482",[250,5.193]],["name/483",[241,54.513]],["parent/483",[249,3.95]],["name/484",[114,26.461]],["parent/484",[249,3.95]],["name/485",[142,44.344]],["parent/485",[250,5.193]],["name/486",[251,58.866]],["parent/486",[]],["name/487",[109,32.031]],["parent/487",[251,5.481]],["name/488",[155,39.94]],["parent/488",[251,5.481]],["name/489",[156,40.798]],["parent/489",[251,5.481]],["name/490",[61,49.887]],["parent/490",[251,5.481]],["name/491",[252,54.513]],["parent/491",[]],["name/492",[109,32.031]],["parent/492",[252,5.076]],["name/493",[155,39.94]],["parent/493",[252,5.076]],["name/494",[156,40.798]],["parent/494",[252,5.076]],["name/495",[253,53.401]],["parent/495",[252,5.076]],["name/496",[254,60.873]],["parent/496",[252,5.076]],["name/497",[131,66.751]],["parent/497",[252,5.076]],["name/498",[255,63.386]],["parent/498",[252,5.076]],["name/499",[256,60.873]],["parent/499",[]],["name/500",[257,60.873]],["parent/500",[256,5.668]],["name/501",[185,45.709]],["parent/501",[256,5.668]],["name/502",[188,41.101]],["parent/502",[256,5.668]],["name/503",[258,63.386]],["parent/503",[]],["name/504",[257,60.873]],["parent/504",[258,5.902]],["name/505",[185,45.709]],["parent/505",[258,5.902]],["name/506",[259,66.751]],["parent/506",[]],["name/507",[188,41.101]],["parent/507",[259,6.216]],["name/508",[260,49.172]],["parent/508",[]],["name/509",[104,33.078]],["parent/509",[260,4.579]],["name/510",[109,32.031]],["parent/510",[260,4.579]],["name/511",[210,54.513]],["parent/511",[260,4.579]],["name/512",[211,51.49]],["parent/512",[260,4.579]],["name/513",[185,45.709]],["parent/513",[260,4.579]],["name/514",[249,42.415]],["parent/514",[260,4.579]],["name/515",[176,43.927]],["parent/515",[260,4.579]],["name/516",[257,60.873]],["parent/516",[260,4.579]],["name/517",[212,49.887]],["parent/517",[260,4.579]],["name/518",[213,49.172]],["parent/518",[260,4.579]],["name/519",[188,41.101]],["parent/519",[260,4.579]],["name/520",[189,50.656]],["parent/520",[260,4.579]],["name/521",[114,26.461]],["parent/521",[260,4.579]],["name/522",[261,60.873]],["parent/522",[262,6.216]],["name/523",[109,32.031]],["parent/523",[262,6.216]],["name/524",[263,71.859]],["parent/524",[]],["name/525",[264,55.765]],["parent/525",[]],["name/526",[265,66.751]],["parent/526",[264,5.193]],["name/527",[266,63.386]],["parent/527",[264,5.193]],["name/528",[208,54.513]],["parent/528",[264,5.193]],["name/529",[152,41.101]],["parent/529",[264,5.193]],["name/530",[188,41.101]],["parent/530",[264,5.193]],["name/531",[108,35.223]],["parent/531",[264,5.193]],["name/532",[267,71.859]],["parent/532",[]],["name/533",[268,71.859]],["parent/533",[]],["name/534",[269,58.866]],["parent/534",[]],["name/535",[61,49.887]],["parent/535",[269,5.481]],["name/536",[270,71.859]],["parent/536",[269,5.481]],["name/537",[114,26.461]],["parent/537",[269,5.481]],["name/538",[104,33.078]],["parent/538",[271,4.795]],["name/539",[109,32.031]],["parent/539",[271,4.795]],["name/540",[210,54.513]],["parent/540",[271,4.795]],["name/541",[211,51.49]],["parent/541",[271,4.795]],["name/542",[185,45.709]],["parent/542",[271,4.795]],["name/543",[108,35.223]],["parent/543",[271,4.795]],["name/544",[212,49.887]],["parent/544",[271,4.795]],["name/545",[152,41.101]],["parent/545",[271,4.795]],["name/546",[188,41.101]],["parent/546",[271,4.795]],["name/547",[96,55.765]],["parent/547",[271,4.795]],["name/548",[272,60.873]],["parent/548",[271,4.795]],["name/549",[152,41.101]],["parent/549",[269,5.481]],["name/550",[273,58.866]],["parent/550",[]],["name/551",[274,71.859]],["parent/551",[273,5.481]],["name/552",[275,71.859]],["parent/552",[273,5.481]],["name/553",[114,26.461]],["parent/553",[273,5.481]],["name/554",[104,33.078]],["parent/554",[276,4.973]],["name/555",[210,54.513]],["parent/555",[276,4.973]],["name/556",[211,51.49]],["parent/556",[276,4.973]],["name/557",[185,45.709]],["parent/557",[276,4.973]],["name/558",[108,35.223]],["parent/558",[276,4.973]],["name/559",[212,49.887]],["parent/559",[276,4.973]],["name/560",[152,41.101]],["parent/560",[276,4.973]],["name/561",[188,41.101]],["parent/561",[276,4.973]],["name/562",[249,42.415]],["parent/562",[276,4.973]],["name/563",[152,41.101]],["parent/563",[273,5.481]],["name/564",[277,53.401]],["parent/564",[]],["name/565",[188,41.101]],["parent/565",[277,4.973]],["name/566",[152,41.101]],["parent/566",[277,4.973]],["name/567",[114,26.461]],["parent/567",[277,4.973]],["name/568",[104,33.078]],["parent/568",[278,4.795]],["name/569",[107,42.772]],["parent/569",[278,4.795]],["name/570",[279,54.513]],["parent/570",[278,4.795]],["name/571",[176,43.927]],["parent/571",[278,4.795]],["name/572",[186,52.4]],["parent/572",[278,4.795]],["name/573",[188,41.101]],["parent/573",[278,4.795]],["name/574",[280,71.859]],["parent/574",[278,4.795]],["name/575",[108,35.223]],["parent/575",[278,4.795]],["name/576",[130,51.49]],["parent/576",[277,4.973]],["name/577",[114,26.461]],["parent/577",[277,4.973]],["name/578",[281,63.386]],["parent/578",[278,4.795]],["name/579",[189,50.656]],["parent/579",[277,4.973]],["name/580",[114,26.461]],["parent/580",[277,4.973]],["name/581",[104,33.078]],["parent/581",[278,4.795]],["name/582",[142,44.344]],["parent/582",[278,4.795]],["name/583",[208,54.513]],["parent/583",[277,4.973]],["name/584",[282,71.859]],["parent/584",[]],["name/585",[283,45.233]],["parent/585",[]],["name/586",[199,55.765]],["parent/586",[283,4.212]],["name/587",[89,46.209]],["parent/587",[283,4.212]],["name/588",[201,60.873]],["parent/588",[283,4.212]],["name/589",[284,66.751]],["parent/589",[283,4.212]],["name/590",[219,49.172]],["parent/590",[283,4.212]],["name/591",[161,57.196]],["parent/591",[283,4.212]],["name/592",[108,35.223]],["parent/592",[283,4.212]],["name/593",[200,53.401]],["parent/593",[283,4.212]],["name/594",[130,51.49]],["parent/594",[283,4.212]],["name/595",[114,26.461]],["parent/595",[283,4.212]],["name/596",[176,43.927]],["parent/596",[285,3.95]],["name/597",[0,49.887]],["parent/597",[285,3.95]],["name/598",[286,51.49]],["parent/598",[285,3.95]],["name/599",[134,49.172]],["parent/599",[283,4.212]],["name/600",[114,26.461]],["parent/600",[283,4.212]],["name/601",[205,66.751]],["parent/601",[285,3.95]],["name/602",[189,50.656]],["parent/602",[283,4.212]],["name/603",[114,26.461]],["parent/603",[283,4.212]],["name/604",[104,33.078]],["parent/604",[285,3.95]],["name/605",[261,60.873]],["parent/605",[285,3.95]],["name/606",[142,44.344]],["parent/606",[285,3.95]],["name/607",[152,41.101]],["parent/607",[283,4.212]],["name/608",[114,26.461]],["parent/608",[283,4.212]],["name/609",[104,33.078]],["parent/609",[285,3.95]],["name/610",[107,42.772]],["parent/610",[285,3.95]],["name/611",[144,43.927]],["parent/611",[285,3.95]],["name/612",[287,48.505]],["parent/612",[285,3.95]],["name/613",[279,54.513]],["parent/613",[285,3.95]],["name/614",[176,43.927]],["parent/614",[285,3.95]],["name/615",[288,63.386]],["parent/615",[285,3.95]],["name/616",[203,57.196]],["parent/616",[285,3.95]],["name/617",[289,63.386]],["parent/617",[285,3.95]],["name/618",[290,66.751]],["parent/618",[285,3.95]],["name/619",[204,63.386]],["parent/619",[285,3.95]],["name/620",[137,60.873]],["parent/620",[285,3.95]],["name/621",[291,66.751]],["parent/621",[285,3.95]],["name/622",[292,66.751]],["parent/622",[285,3.95]],["name/623",[186,52.4]],["parent/623",[285,3.95]],["name/624",[108,35.223]],["parent/624",[285,3.95]],["name/625",[188,41.101]],["parent/625",[285,3.95]],["name/626",[211,51.49]],["parent/626",[285,3.95]],["name/627",[293,60.873]],["parent/627",[285,3.95]],["name/628",[109,32.031]],["parent/628",[285,3.95]],["name/629",[61,49.887]],["parent/629",[285,3.95]],["name/630",[208,54.513]],["parent/630",[283,4.212]],["name/631",[294,49.887]],["parent/631",[283,4.212]],["name/632",[295,49.887]],["parent/632",[283,4.212]],["name/633",[185,45.709]],["parent/633",[283,4.212]],["name/634",[296,53.401]],["parent/634",[]],["name/635",[199,55.765]],["parent/635",[296,4.973]],["name/636",[89,46.209]],["parent/636",[296,4.973]],["name/637",[297,60.873]],["parent/637",[296,4.973]],["name/638",[114,26.461]],["parent/638",[296,4.973]],["name/639",[89,46.209]],["parent/639",[298,5.193]],["name/640",[90,58.866]],["parent/640",[298,5.193]],["name/641",[299,63.386]],["parent/641",[298,5.193]],["name/642",[91,66.751]],["parent/642",[298,5.193]],["name/643",[92,66.751]],["parent/643",[298,5.193]],["name/644",[93,66.751]],["parent/644",[298,5.193]],["name/645",[94,66.751]],["parent/645",[298,5.193]],["name/646",[185,45.709]],["parent/646",[296,4.973]],["name/647",[211,51.49]],["parent/647",[296,4.973]],["name/648",[108,35.223]],["parent/648",[296,4.973]],["name/649",[257,60.873]],["parent/649",[296,4.973]],["name/650",[300,71.859]],["parent/650",[]],["name/651",[301,55.765]],["parent/651",[]],["name/652",[265,66.751]],["parent/652",[301,5.193]],["name/653",[266,63.386]],["parent/653",[301,5.193]],["name/654",[208,54.513]],["parent/654",[301,5.193]],["name/655",[152,41.101]],["parent/655",[301,5.193]],["name/656",[188,41.101]],["parent/656",[301,5.193]],["name/657",[108,35.223]],["parent/657",[301,5.193]],["name/658",[302,57.196]],["parent/658",[]],["name/659",[199,55.765]],["parent/659",[302,5.326]],["name/660",[185,45.709]],["parent/660",[302,5.326]],["name/661",[208,54.513]],["parent/661",[302,5.326]],["name/662",[152,41.101]],["parent/662",[302,5.326]],["name/663",[266,63.386]],["parent/663",[302,5.326]],["name/664",[303,71.859]],["parent/664",[]],["name/665",[304,71.859]],["parent/665",[]],["name/666",[305,42.772]],["parent/666",[]],["name/667",[104,33.078]],["parent/667",[305,3.983]],["name/668",[105,42.772]],["parent/668",[305,3.983]],["name/669",[160,57.196]],["parent/669",[305,3.983]],["name/670",[178,41.414]],["parent/670",[305,3.983]],["name/671",[306,52.4]],["parent/671",[305,3.983]],["name/672",[307,63.386]],["parent/672",[305,3.983]],["name/673",[218,58.866]],["parent/673",[305,3.983]],["name/674",[112,53.401]],["parent/674",[305,3.983]],["name/675",[294,49.887]],["parent/675",[305,3.983]],["name/676",[308,58.866]],["parent/676",[305,3.983]],["name/677",[114,26.461]],["parent/677",[305,3.983]],["name/678",[163,46.209]],["parent/678",[309,5.326]],["name/679",[109,32.031]],["parent/679",[309,5.326]],["name/680",[155,39.94]],["parent/680",[309,5.326]],["name/681",[156,40.798]],["parent/681",[309,5.326]],["name/682",[295,49.887]],["parent/682",[305,3.983]],["name/683",[310,63.386]],["parent/683",[305,3.983]],["name/684",[311,57.196]],["parent/684",[305,3.983]],["name/685",[114,26.461]],["parent/685",[305,3.983]],["name/686",[312,57.196]],["parent/686",[309,5.326]],["name/687",[313,57.196]],["parent/687",[309,5.326]],["name/688",[314,57.196]],["parent/688",[305,3.983]],["name/689",[108,35.223]],["parent/689",[305,3.983]],["name/690",[144,43.927]],["parent/690",[305,3.983]],["name/691",[315,63.386]],["parent/691",[305,3.983]],["name/692",[316,51.49]],["parent/692",[305,3.983]],["name/693",[213,49.172]],["parent/693",[305,3.983]],["name/694",[317,66.751]],["parent/694",[305,3.983]],["name/695",[318,63.386]],["parent/695",[305,3.983]],["name/696",[319,63.386]],["parent/696",[305,3.983]],["name/697",[320,60.873]],["parent/697",[305,3.983]],["name/698",[109,32.031]],["parent/698",[305,3.983]],["name/699",[321,63.386]],["parent/699",[]],["name/700",[188,41.101]],["parent/700",[321,5.902]],["name/701",[152,41.101]],["parent/701",[321,5.902]],["name/702",[322,60.873]],["parent/702",[]],["name/703",[323,63.386]],["parent/703",[322,5.668]],["name/704",[152,41.101]],["parent/704",[322,5.668]],["name/705",[150,46.209]],["parent/705",[322,5.668]],["name/706",[324,55.765]],["parent/706",[]],["name/707",[109,32.031]],["parent/707",[324,5.193]],["name/708",[155,39.94]],["parent/708",[324,5.193]],["name/709",[156,40.798]],["parent/709",[324,5.193]],["name/710",[163,46.209]],["parent/710",[324,5.193]],["name/711",[104,33.078]],["parent/711",[324,5.193]],["name/712",[144,43.927]],["parent/712",[324,5.193]],["name/713",[325,71.859]],["parent/713",[]],["name/714",[326,71.859]],["parent/714",[]],["name/715",[327,66.751]],["parent/715",[]],["name/716",[328,58.866]],["parent/716",[327,6.216]],["name/717",[329,71.859]],["parent/717",[]],["name/718",[330,66.751]],["parent/718",[]],["name/719",[320,60.873]],["parent/719",[330,6.216]],["name/720",[331,71.859]],["parent/720",[]],["name/721",[332,71.859]],["parent/721",[]],["name/722",[333,71.859]],["parent/722",[]],["name/723",[334,71.859]],["parent/723",[]],["name/724",[335,57.196]],["parent/724",[]],["name/725",[150,46.209]],["parent/725",[335,5.326]],["name/726",[151,47.88]],["parent/726",[335,5.326]],["name/727",[160,57.196]],["parent/727",[335,5.326]],["name/728",[336,57.196]],["parent/728",[335,5.326]],["name/729",[114,26.461]],["parent/729",[335,5.326]],["name/730",[337,55.765]],["parent/730",[338,6.691]],["name/731",[339,58.866]],["parent/731",[]],["name/732",[109,32.031]],["parent/732",[339,5.481]],["name/733",[155,39.94]],["parent/733",[339,5.481]],["name/734",[156,40.798]],["parent/734",[339,5.481]],["name/735",[3,49.172]],["parent/735",[339,5.481]],["name/736",[340,66.751]],["parent/736",[]],["name/737",[114,26.461]],["parent/737",[340,6.216]],["name/738",[341,57.196]],["parent/738",[342,6.691]],["name/739",[343,71.859]],["parent/739",[]],["name/740",[344,71.859]],["parent/740",[]],["name/741",[345,71.859]],["parent/741",[]],["name/742",[346,52.4]],["parent/742",[]],["name/743",[185,45.709]],["parent/743",[346,4.879]],["name/744",[108,35.223]],["parent/744",[346,4.879]],["name/745",[199,55.765]],["parent/745",[346,4.879]],["name/746",[104,33.078]],["parent/746",[346,4.879]],["name/747",[105,42.772]],["parent/747",[346,4.879]],["name/748",[347,55.765]],["parent/748",[346,4.879]],["name/749",[200,53.401]],["parent/749",[346,4.879]],["name/750",[348,66.751]],["parent/750",[346,4.879]],["name/751",[109,32.031]],["parent/751",[346,4.879]],["name/752",[349,49.887]],["parent/752",[]],["name/753",[104,33.078]],["parent/753",[349,4.645]],["name/754",[109,32.031]],["parent/754",[349,4.645]],["name/755",[105,42.772]],["parent/755",[349,4.645]],["name/756",[347,55.765]],["parent/756",[349,4.645]],["name/757",[219,49.172]],["parent/757",[349,4.645]],["name/758",[114,26.461]],["parent/758",[349,4.645]],["name/759",[104,33.078]],["parent/759",[350,5.326]],["name/760",[109,32.031]],["parent/760",[350,5.326]],["name/761",[294,49.887]],["parent/761",[350,5.326]],["name/762",[295,49.887]],["parent/762",[350,5.326]],["name/763",[316,51.49]],["parent/763",[350,5.326]],["name/764",[351,71.859]],["parent/764",[349,4.645]],["name/765",[352,66.751]],["parent/765",[349,4.645]],["name/766",[114,26.461]],["parent/766",[349,4.645]],["name/767",[200,53.401]],["parent/767",[350,5.326]],["name/768",[348,66.751]],["parent/768",[349,4.645]],["name/769",[108,35.223]],["parent/769",[349,4.645]],["name/770",[316,51.49]],["parent/770",[349,4.645]],["name/771",[353,60.873]],["parent/771",[]],["name/772",[354,71.859]],["parent/772",[353,5.668]],["name/773",[150,46.209]],["parent/773",[353,5.668]],["name/774",[151,47.88]],["parent/774",[353,5.668]],["name/775",[355,58.866]],["parent/775",[]],["name/776",[109,32.031]],["parent/776",[355,5.481]],["name/777",[156,40.798]],["parent/777",[355,5.481]],["name/778",[58,60.873]],["parent/778",[355,5.481]],["name/779",[157,63.386]],["parent/779",[355,5.481]],["name/780",[356,71.859]],["parent/780",[]],["name/781",[357,71.859]],["parent/781",[]],["name/782",[358,57.196]],["parent/782",[]],["name/783",[105,42.772]],["parent/783",[358,5.326]],["name/784",[347,55.765]],["parent/784",[358,5.326]],["name/785",[352,66.751]],["parent/785",[358,5.326]],["name/786",[114,26.461]],["parent/786",[358,5.326]],["name/787",[200,53.401]],["parent/787",[359,6.691]],["name/788",[108,35.223]],["parent/788",[358,5.326]],["name/789",[360,71.859]],["parent/789",[]],["name/790",[361,57.196]],["parent/790",[]],["name/791",[188,41.101]],["parent/791",[361,5.326]],["name/792",[152,41.101]],["parent/792",[361,5.326]],["name/793",[114,26.461]],["parent/793",[361,5.326]],["name/794",[104,33.078]],["parent/794",[362,5.326]],["name/795",[107,42.772]],["parent/795",[362,5.326]],["name/796",[176,43.927]],["parent/796",[362,5.326]],["name/797",[186,52.4]],["parent/797",[362,5.326]],["name/798",[279,54.513]],["parent/798",[362,5.326]],["name/799",[108,35.223]],["parent/799",[362,5.326]],["name/800",[108,35.223]],["parent/800",[361,5.326]],["name/801",[208,54.513]],["parent/801",[361,5.326]],["name/802",[363,53.401]],["parent/802",[]],["name/803",[104,33.078]],["parent/803",[363,4.973]],["name/804",[109,32.031]],["parent/804",[363,4.973]],["name/805",[210,54.513]],["parent/805",[363,4.973]],["name/806",[211,51.49]],["parent/806",[363,4.973]],["name/807",[185,45.709]],["parent/807",[363,4.973]],["name/808",[152,41.101]],["parent/808",[363,4.973]],["name/809",[212,49.887]],["parent/809",[363,4.973]],["name/810",[242,63.386]],["parent/810",[363,4.973]],["name/811",[364,57.196]],["parent/811",[]],["name/812",[104,33.078]],["parent/812",[364,5.326]],["name/813",[105,42.772]],["parent/813",[364,5.326]],["name/814",[347,55.765]],["parent/814",[364,5.326]],["name/815",[219,49.172]],["parent/815",[364,5.326]],["name/816",[114,26.461]],["parent/816",[364,5.326]],["name/817",[104,33.078]],["parent/817",[365,6.691]],["name/818",[366,71.859]],["parent/818",[]],["name/819",[367,71.859]],["parent/819",[]],["name/820",[368,71.859]],["parent/820",[]],["name/821",[369,43.142]],["parent/821",[]],["name/822",[104,33.078]],["parent/822",[369,4.017]],["name/823",[105,42.772]],["parent/823",[369,4.017]],["name/824",[160,57.196]],["parent/824",[369,4.017]],["name/825",[178,41.414]],["parent/825",[369,4.017]],["name/826",[112,53.401]],["parent/826",[369,4.017]],["name/827",[294,49.887]],["parent/827",[369,4.017]],["name/828",[295,49.887]],["parent/828",[369,4.017]],["name/829",[370,66.751]],["parent/829",[369,4.017]],["name/830",[114,26.461]],["parent/830",[369,4.017]],["name/831",[109,32.031]],["parent/831",[371,4.879]],["name/832",[156,40.798]],["parent/832",[371,4.879]],["name/833",[58,60.873]],["parent/833",[371,4.879]],["name/834",[157,63.386]],["parent/834",[371,4.879]],["name/835",[306,52.4]],["parent/835",[369,4.017]],["name/836",[307,63.386]],["parent/836",[369,4.017]],["name/837",[218,58.866]],["parent/837",[369,4.017]],["name/838",[308,58.866]],["parent/838",[369,4.017]],["name/839",[114,26.461]],["parent/839",[369,4.017]],["name/840",[163,46.209]],["parent/840",[371,4.879]],["name/841",[109,32.031]],["parent/841",[371,4.879]],["name/842",[155,39.94]],["parent/842",[371,4.879]],["name/843",[156,40.798]],["parent/843",[371,4.879]],["name/844",[310,63.386]],["parent/844",[369,4.017]],["name/845",[311,57.196]],["parent/845",[369,4.017]],["name/846",[114,26.461]],["parent/846",[369,4.017]],["name/847",[312,57.196]],["parent/847",[371,4.879]],["name/848",[313,57.196]],["parent/848",[371,4.879]],["name/849",[314,57.196]],["parent/849",[369,4.017]],["name/850",[108,35.223]],["parent/850",[369,4.017]],["name/851",[144,43.927]],["parent/851",[369,4.017]],["name/852",[315,63.386]],["parent/852",[369,4.017]],["name/853",[316,51.49]],["parent/853",[369,4.017]],["name/854",[318,63.386]],["parent/854",[369,4.017]],["name/855",[319,63.386]],["parent/855",[369,4.017]],["name/856",[109,32.031]],["parent/856",[369,4.017]],["name/857",[372,55.765]],["parent/857",[]],["name/858",[105,42.772]],["parent/858",[372,5.193]],["name/859",[160,57.196]],["parent/859",[372,5.193]],["name/860",[294,49.887]],["parent/860",[372,5.193]],["name/861",[295,49.887]],["parent/861",[372,5.193]],["name/862",[370,66.751]],["parent/862",[372,5.193]],["name/863",[114,26.461]],["parent/863",[372,5.193]],["name/864",[58,60.873]],["parent/864",[373,6.691]],["name/865",[374,58.866]],["parent/865",[]],["name/866",[188,41.101]],["parent/866",[374,5.481]],["name/867",[152,41.101]],["parent/867",[374,5.481]],["name/868",[114,26.461]],["parent/868",[374,5.481]],["name/869",[104,33.078]],["parent/869",[375,5.481]],["name/870",[107,42.772]],["parent/870",[375,5.481]],["name/871",[186,52.4]],["parent/871",[375,5.481]],["name/872",[176,43.927]],["parent/872",[375,5.481]],["name/873",[108,35.223]],["parent/873",[375,5.481]],["name/874",[108,35.223]],["parent/874",[374,5.481]],["name/875",[376,63.386]],["parent/875",[]],["name/876",[323,63.386]],["parent/876",[376,5.902]],["name/877",[336,57.196]],["parent/877",[376,5.902]],["name/878",[377,60.873]],["parent/878",[]],["name/879",[199,55.765]],["parent/879",[377,5.668]],["name/880",[57,55.765]],["parent/880",[377,5.668]],["name/881",[185,45.709]],["parent/881",[377,5.668]],["name/882",[378,63.386]],["parent/882",[]],["name/883",[150,46.209]],["parent/883",[378,5.902]],["name/884",[151,47.88]],["parent/884",[378,5.902]],["name/885",[379,58.866]],["parent/885",[]],["name/886",[109,32.031]],["parent/886",[379,5.481]],["name/887",[155,39.94]],["parent/887",[379,5.481]],["name/888",[156,40.798]],["parent/888",[379,5.481]],["name/889",[3,49.172]],["parent/889",[379,5.481]],["name/890",[380,53.401]],["parent/890",[]],["name/891",[105,42.772]],["parent/891",[380,4.973]],["name/892",[294,49.887]],["parent/892",[380,4.973]],["name/893",[295,49.887]],["parent/893",[380,4.973]],["name/894",[178,41.414]],["parent/894",[380,4.973]],["name/895",[320,60.873]],["parent/895",[380,4.973]],["name/896",[213,49.172]],["parent/896",[380,4.973]],["name/897",[114,26.461]],["parent/897",[380,4.973]],["name/898",[178,41.414]],["parent/898",[381,5.193]],["name/899",[249,42.415]],["parent/899",[381,5.193]],["name/900",[114,26.461]],["parent/900",[381,5.193]],["name/901",[253,53.401]],["parent/901",[382,5.076]],["name/902",[241,54.513]],["parent/902",[381,5.193]],["name/903",[114,26.461]],["parent/903",[381,5.193]],["name/904",[142,44.344]],["parent/904",[382,5.076]],["name/905",[0,49.887]],["parent/905",[382,5.076]],["name/906",[383,60.873]],["parent/906",[381,5.193]],["name/907",[114,26.461]],["parent/907",[381,5.193]],["name/908",[384,60.873]],["parent/908",[382,5.076]],["name/909",[385,60.873]],["parent/909",[382,5.076]],["name/910",[386,60.873]],["parent/910",[382,5.076]],["name/911",[387,60.873]],["parent/911",[382,5.076]],["name/912",[388,60.873]],["parent/912",[382,5.076]],["name/913",[108,35.223]],["parent/913",[380,4.973]],["name/914",[389,42.772]],["parent/914",[]],["name/915",[104,33.078]],["parent/915",[389,3.983]],["name/916",[105,42.772]],["parent/916",[389,3.983]],["name/917",[160,57.196]],["parent/917",[389,3.983]],["name/918",[178,41.414]],["parent/918",[389,3.983]],["name/919",[306,52.4]],["parent/919",[389,3.983]],["name/920",[307,63.386]],["parent/920",[389,3.983]],["name/921",[218,58.866]],["parent/921",[389,3.983]],["name/922",[112,53.401]],["parent/922",[389,3.983]],["name/923",[294,49.887]],["parent/923",[389,3.983]],["name/924",[308,58.866]],["parent/924",[389,3.983]],["name/925",[114,26.461]],["parent/925",[389,3.983]],["name/926",[163,46.209]],["parent/926",[390,5.326]],["name/927",[109,32.031]],["parent/927",[390,5.326]],["name/928",[155,39.94]],["parent/928",[390,5.326]],["name/929",[156,40.798]],["parent/929",[390,5.326]],["name/930",[295,49.887]],["parent/930",[389,3.983]],["name/931",[310,63.386]],["parent/931",[389,3.983]],["name/932",[311,57.196]],["parent/932",[389,3.983]],["name/933",[114,26.461]],["parent/933",[389,3.983]],["name/934",[312,57.196]],["parent/934",[390,5.326]],["name/935",[313,57.196]],["parent/935",[390,5.326]],["name/936",[314,57.196]],["parent/936",[389,3.983]],["name/937",[108,35.223]],["parent/937",[389,3.983]],["name/938",[144,43.927]],["parent/938",[389,3.983]],["name/939",[315,63.386]],["parent/939",[389,3.983]],["name/940",[316,51.49]],["parent/940",[389,3.983]],["name/941",[213,49.172]],["parent/941",[389,3.983]],["name/942",[317,66.751]],["parent/942",[389,3.983]],["name/943",[318,63.386]],["parent/943",[389,3.983]],["name/944",[319,63.386]],["parent/944",[389,3.983]],["name/945",[320,60.873]],["parent/945",[389,3.983]],["name/946",[109,32.031]],["parent/946",[389,3.983]],["name/947",[391,71.859]],["parent/947",[]],["name/948",[392,55.765]],["parent/948",[]],["name/949",[104,33.078]],["parent/949",[392,5.193]],["name/950",[294,49.887]],["parent/950",[392,5.193]],["name/951",[295,49.887]],["parent/951",[392,5.193]],["name/952",[108,35.223]],["parent/952",[392,5.193]],["name/953",[112,53.401]],["parent/953",[392,5.193]],["name/954",[178,41.414]],["parent/954",[392,5.193]],["name/955",[393,71.859]],["parent/955",[]],["name/956",[394,66.751]],["parent/956",[]],["name/957",[328,58.866]],["parent/957",[394,6.216]],["name/958",[395,63.386]],["parent/958",[]],["name/959",[150,46.209]],["parent/959",[395,5.902]],["name/960",[151,47.88]],["parent/960",[395,5.902]],["name/961",[396,58.866]],["parent/961",[]],["name/962",[109,32.031]],["parent/962",[396,5.481]],["name/963",[155,39.94]],["parent/963",[396,5.481]],["name/964",[156,40.798]],["parent/964",[396,5.481]],["name/965",[163,46.209]],["parent/965",[396,5.481]],["name/966",[397,60.873]],["parent/966",[]],["name/967",[189,50.656]],["parent/967",[397,5.668]],["name/968",[398,55.765]],["parent/968",[397,5.668]],["name/969",[114,26.461]],["parent/969",[397,5.668]],["name/970",[134,49.172]],["parent/970",[399,6.216]],["name/971",[114,26.461]],["parent/971",[399,6.216]],["name/972",[142,44.344]],["parent/972",[400,6.691]],["name/973",[401,52.4]],["parent/973",[]],["name/974",[104,33.078]],["parent/974",[401,4.879]],["name/975",[402,66.751]],["parent/975",[401,4.879]],["name/976",[272,60.873]],["parent/976",[401,4.879]],["name/977",[96,55.765]],["parent/977",[401,4.879]],["name/978",[398,55.765]],["parent/978",[401,4.879]],["name/979",[114,26.461]],["parent/979",[401,4.879]],["name/980",[134,49.172]],["parent/980",[403,6.216]],["name/981",[114,26.461]],["parent/981",[403,6.216]],["name/982",[142,44.344]],["parent/982",[404,6.691]],["name/983",[144,43.927]],["parent/983",[401,4.879]],["name/984",[287,48.505]],["parent/984",[401,4.879]],["name/985",[109,32.031]],["parent/985",[401,4.879]],["name/986",[405,60.873]],["parent/986",[]],["name/987",[104,33.078]],["parent/987",[405,5.668]],["name/988",[398,55.765]],["parent/988",[405,5.668]],["name/989",[114,26.461]],["parent/989",[405,5.668]],["name/990",[134,49.172]],["parent/990",[406,6.216]],["name/991",[114,26.461]],["parent/991",[406,6.216]],["name/992",[142,44.344]],["parent/992",[407,6.691]],["name/993",[408,71.859]],["parent/993",[]],["name/994",[409,63.386]],["parent/994",[]],["name/995",[150,46.209]],["parent/995",[409,5.902]],["name/996",[151,47.88]],["parent/996",[409,5.902]],["name/997",[410,63.386]],["parent/997",[]],["name/998",[178,41.414]],["parent/998",[410,5.902]],["name/999",[142,44.344]],["parent/999",[410,5.902]],["name/1000",[411,60.873]],["parent/1000",[]],["name/1001",[178,41.414]],["parent/1001",[411,5.668]],["name/1002",[152,41.101]],["parent/1002",[411,5.668]],["name/1003",[114,26.461]],["parent/1003",[411,5.668]],["name/1004",[176,43.927]],["parent/1004",[412,6.216]],["name/1005",[114,26.461]],["parent/1005",[412,6.216]],["name/1006",[413,71.859]],["parent/1006",[414,6.216]],["name/1007",[142,44.344]],["parent/1007",[414,6.216]],["name/1008",[415,49.887]],["parent/1008",[]],["name/1009",[104,33.078]],["parent/1009",[415,4.645]],["name/1010",[144,43.927]],["parent/1010",[415,4.645]],["name/1011",[287,48.505]],["parent/1011",[415,4.645]],["name/1012",[416,63.386]],["parent/1012",[415,4.645]],["name/1013",[134,49.172]],["parent/1013",[415,4.645]],["name/1014",[417,66.751]],["parent/1014",[415,4.645]],["name/1015",[114,26.461]],["parent/1015",[415,4.645]],["name/1016",[104,33.078]],["parent/1016",[418,5.668]],["name/1017",[226,60.873]],["parent/1017",[415,4.645]],["name/1018",[419,63.386]],["parent/1018",[415,4.645]],["name/1019",[114,26.461]],["parent/1019",[415,4.645]],["name/1020",[347,55.765]],["parent/1020",[418,5.668]],["name/1021",[420,71.859]],["parent/1021",[418,5.668]],["name/1022",[421,71.859]],["parent/1022",[418,5.668]],["name/1023",[109,32.031]],["parent/1023",[415,4.645]],["name/1024",[422,71.859]],["parent/1024",[415,4.645]],["name/1025",[423,58.866]],["parent/1025",[]],["name/1026",[109,32.031]],["parent/1026",[423,5.481]],["name/1027",[155,39.94]],["parent/1027",[423,5.481]],["name/1028",[156,40.798]],["parent/1028",[423,5.481]],["name/1029",[163,46.209]],["parent/1029",[423,5.481]],["name/1030",[424,52.4]],["parent/1030",[]],["name/1031",[226,60.873]],["parent/1031",[424,4.879]],["name/1032",[416,63.386]],["parent/1032",[424,4.879]],["name/1033",[134,49.172]],["parent/1033",[424,4.879]],["name/1034",[419,63.386]],["parent/1034",[424,4.879]],["name/1035",[114,26.461]],["parent/1035",[424,4.879]],["name/1036",[347,55.765]],["parent/1036",[425,5.902]],["name/1037",[426,71.859]],["parent/1037",[424,4.879]],["name/1038",[114,26.461]],["parent/1038",[424,4.879]],["name/1039",[427,71.859]],["parent/1039",[425,5.902]],["name/1040",[417,66.751]],["parent/1040",[424,4.879]],["name/1041",[114,26.461]],["parent/1041",[424,4.879]],["name/1042",[104,33.078]],["parent/1042",[425,5.902]],["name/1043",[428,71.859]],["parent/1043",[]],["name/1044",[429,55.765]],["parent/1044",[]],["name/1045",[104,33.078]],["parent/1045",[429,5.193]],["name/1046",[416,63.386]],["parent/1046",[429,5.193]],["name/1047",[419,63.386]],["parent/1047",[429,5.193]],["name/1048",[114,26.461]],["parent/1048",[429,5.193]],["name/1049",[347,55.765]],["parent/1049",[430,6.216]],["name/1050",[134,49.172]],["parent/1050",[429,5.193]],["name/1051",[114,26.461]],["parent/1051",[429,5.193]],["name/1052",[142,44.344]],["parent/1052",[430,6.216]],["name/1053",[431,71.859]],["parent/1053",[]],["name/1054",[432,55.765]],["parent/1054",[]],["name/1055",[150,46.209]],["parent/1055",[432,5.193]],["name/1056",[151,47.88]],["parent/1056",[432,5.193]],["name/1057",[144,43.927]],["parent/1057",[432,5.193]],["name/1058",[114,26.461]],["parent/1058",[432,5.193]],["name/1059",[246,58.866]],["parent/1059",[433,5.668]],["name/1060",[248,58.866]],["parent/1060",[433,5.668]],["name/1061",[287,48.505]],["parent/1061",[432,5.193]],["name/1062",[114,26.461]],["parent/1062",[432,5.193]],["name/1063",[246,58.866]],["parent/1063",[433,5.668]],["name/1064",[248,58.866]],["parent/1064",[433,5.668]],["name/1065",[434,43.927]],["parent/1065",[]],["name/1066",[104,33.078]],["parent/1066",[434,4.09]],["name/1067",[89,46.209]],["parent/1067",[434,4.09]],["name/1068",[219,49.172]],["parent/1068",[434,4.09]],["name/1069",[161,57.196]],["parent/1069",[434,4.09]],["name/1070",[306,52.4]],["parent/1070",[434,4.09]],["name/1071",[178,41.414]],["parent/1071",[434,4.09]],["name/1072",[241,54.513]],["parent/1072",[434,4.09]],["name/1073",[114,26.461]],["parent/1073",[434,4.09]],["name/1074",[142,44.344]],["parent/1074",[435,4.879]],["name/1075",[0,49.887]],["parent/1075",[435,4.879]],["name/1076",[294,49.887]],["parent/1076",[434,4.09]],["name/1077",[295,49.887]],["parent/1077",[434,4.09]],["name/1078",[311,57.196]],["parent/1078",[434,4.09]],["name/1079",[114,26.461]],["parent/1079",[434,4.09]],["name/1080",[312,57.196]],["parent/1080",[435,4.879]],["name/1081",[313,57.196]],["parent/1081",[435,4.879]],["name/1082",[314,57.196]],["parent/1082",[434,4.09]],["name/1083",[16,60.873]],["parent/1083",[434,4.09]],["name/1084",[114,26.461]],["parent/1084",[434,4.09]],["name/1085",[221,58.866]],["parent/1085",[435,4.879]],["name/1086",[436,66.751]],["parent/1086",[435,4.879]],["name/1087",[249,42.415]],["parent/1087",[434,4.09]],["name/1088",[114,26.461]],["parent/1088",[434,4.09]],["name/1089",[253,53.401]],["parent/1089",[435,4.879]],["name/1090",[135,63.386]],["parent/1090",[435,4.879]],["name/1091",[254,60.873]],["parent/1091",[435,4.879]],["name/1092",[255,63.386]],["parent/1092",[435,4.879]],["name/1093",[316,51.49]],["parent/1093",[434,4.09]],["name/1094",[437,58.866]],["parent/1094",[434,4.09]],["name/1095",[108,35.223]],["parent/1095",[434,4.09]],["name/1096",[438,58.866]],["parent/1096",[434,4.09]],["name/1097",[439,63.386]],["parent/1097",[434,4.09]],["name/1098",[287,48.505]],["parent/1098",[434,4.09]],["name/1099",[440,58.866]],["parent/1099",[]],["name/1100",[109,32.031]],["parent/1100",[440,5.481]],["name/1101",[155,39.94]],["parent/1101",[440,5.481]],["name/1102",[156,40.798]],["parent/1102",[440,5.481]],["name/1103",[99,46.736]],["parent/1103",[440,5.481]],["name/1104",[441,57.196]],["parent/1104",[]],["name/1105",[213,49.172]],["parent/1105",[441,5.326]],["name/1106",[215,57.196]],["parent/1106",[441,5.326]],["name/1107",[188,41.101]],["parent/1107",[441,5.326]],["name/1108",[114,26.461]],["parent/1108",[441,5.326]],["name/1109",[104,33.078]],["parent/1109",[442,5.326]],["name/1110",[105,42.772]],["parent/1110",[442,5.326]],["name/1111",[106,58.866]],["parent/1111",[442,5.326]],["name/1112",[108,35.223]],["parent/1112",[442,5.326]],["name/1113",[112,53.401]],["parent/1113",[442,5.326]],["name/1114",[107,42.772]],["parent/1114",[442,5.326]],["name/1115",[108,35.223]],["parent/1115",[441,5.326]],["name/1116",[443,71.859]],["parent/1116",[]],["name/1117",[444,71.859]],["parent/1117",[]],["name/1118",[445,58.866]],["parent/1118",[]],["name/1119",[109,32.031]],["parent/1119",[445,5.481]],["name/1120",[156,40.798]],["parent/1120",[445,5.481]],["name/1121",[155,39.94]],["parent/1121",[445,5.481]],["name/1122",[446,71.859]],["parent/1122",[445,5.481]],["name/1123",[447,66.751]],["parent/1123",[]],["name/1124",[142,44.344]],["parent/1124",[447,6.216]],["name/1125",[448,54.513]],["parent/1125",[]],["name/1126",[142,44.344]],["parent/1126",[448,5.076]],["name/1127",[155,39.94]],["parent/1127",[448,5.076]],["name/1128",[0,49.887]],["parent/1128",[448,5.076]],["name/1129",[178,41.414]],["parent/1129",[448,5.076]],["name/1130",[109,32.031]],["parent/1130",[448,5.076]],["name/1131",[179,63.386]],["parent/1131",[448,5.076]],["name/1132",[114,26.461]],["parent/1132",[448,5.076]],["name/1133",[178,41.414]],["parent/1133",[449,6.216]],["name/1134",[104,33.078]],["parent/1134",[449,6.216]],["name/1135",[450,57.196]],["parent/1135",[]],["name/1136",[189,50.656]],["parent/1136",[450,5.326]],["name/1137",[114,26.461]],["parent/1137",[450,5.326]],["name/1138",[104,33.078]],["parent/1138",[451,5.326]],["name/1139",[152,41.101]],["parent/1139",[450,5.326]],["name/1140",[114,26.461]],["parent/1140",[450,5.326]],["name/1141",[104,33.078]],["parent/1141",[451,5.326]],["name/1142",[107,42.772]],["parent/1142",[451,5.326]],["name/1143",[176,43.927]],["parent/1143",[451,5.326]],["name/1144",[186,52.4]],["parent/1144",[451,5.326]],["name/1145",[108,35.223]],["parent/1145",[451,5.326]],["name/1146",[108,35.223]],["parent/1146",[450,5.326]],["name/1147",[452,49.887]],["parent/1147",[]],["name/1148",[104,33.078]],["parent/1148",[452,4.645]],["name/1149",[109,32.031]],["parent/1149",[452,4.645]],["name/1150",[210,54.513]],["parent/1150",[452,4.645]],["name/1151",[211,51.49]],["parent/1151",[452,4.645]],["name/1152",[176,43.927]],["parent/1152",[452,4.645]],["name/1153",[152,41.101]],["parent/1153",[452,4.645]],["name/1154",[188,41.101]],["parent/1154",[452,4.645]],["name/1155",[189,50.656]],["parent/1155",[452,4.645]],["name/1156",[212,49.887]],["parent/1156",[452,4.645]],["name/1157",[185,45.709]],["parent/1157",[452,4.645]],["name/1158",[213,49.172]],["parent/1158",[452,4.645]],["name/1159",[114,26.461]],["parent/1159",[452,4.645]],["name/1160",[104,33.078]],["parent/1160",[453,3.856]],["name/1161",[89,46.209]],["parent/1161",[453,3.856]],["name/1162",[219,49.172]],["parent/1162",[453,3.856]],["name/1163",[161,57.196]],["parent/1163",[453,3.856]],["name/1164",[306,52.4]],["parent/1164",[453,3.856]],["name/1165",[178,41.414]],["parent/1165",[453,3.856]],["name/1166",[241,54.513]],["parent/1166",[453,3.856]],["name/1167",[114,26.461]],["parent/1167",[453,3.856]],["name/1168",[142,44.344]],["parent/1168",[454,4.09]],["name/1169",[0,49.887]],["parent/1169",[454,4.09]],["name/1170",[294,49.887]],["parent/1170",[453,3.856]],["name/1171",[295,49.887]],["parent/1171",[453,3.856]],["name/1172",[311,57.196]],["parent/1172",[453,3.856]],["name/1173",[114,26.461]],["parent/1173",[453,3.856]],["name/1174",[312,57.196]],["parent/1174",[454,4.09]],["name/1175",[313,57.196]],["parent/1175",[454,4.09]],["name/1176",[314,57.196]],["parent/1176",[453,3.856]],["name/1177",[16,60.873]],["parent/1177",[453,3.856]],["name/1178",[114,26.461]],["parent/1178",[453,3.856]],["name/1179",[109,32.031]],["parent/1179",[454,4.09]],["name/1180",[221,58.866]],["parent/1180",[454,4.09]],["name/1181",[455,53.401]],["parent/1181",[454,4.09]],["name/1182",[249,42.415]],["parent/1182",[453,3.856]],["name/1183",[114,26.461]],["parent/1183",[453,3.856]],["name/1184",[109,32.031]],["parent/1184",[454,4.09]],["name/1185",[253,53.401]],["parent/1185",[454,4.09]],["name/1186",[254,60.873]],["parent/1186",[454,4.09]],["name/1187",[455,53.401]],["parent/1187",[454,4.09]],["name/1188",[135,63.386]],["parent/1188",[454,4.09]],["name/1189",[316,51.49]],["parent/1189",[453,3.856]],["name/1190",[437,58.866]],["parent/1190",[453,3.856]],["name/1191",[456,66.751]],["parent/1191",[453,3.856]],["name/1192",[114,26.461]],["parent/1192",[453,3.856]],["name/1193",[457,66.751]],["parent/1193",[454,4.09]],["name/1194",[114,26.461]],["parent/1194",[454,4.09]],["name/1195",[104,33.078]],["parent/1195",[458,5.668]],["name/1196",[455,53.401]],["parent/1196",[458,5.668]],["name/1197",[459,66.751]],["parent/1197",[454,4.09]],["name/1198",[114,26.461]],["parent/1198",[454,4.09]],["name/1199",[104,33.078]],["parent/1199",[458,5.668]],["name/1200",[455,53.401]],["parent/1200",[458,5.668]],["name/1201",[438,58.866]],["parent/1201",[453,3.856]],["name/1202",[293,60.873]],["parent/1202",[453,3.856]],["name/1203",[439,63.386]],["parent/1203",[453,3.856]],["name/1204",[144,43.927]],["parent/1204",[453,3.856]],["name/1205",[287,48.505]],["parent/1205",[453,3.856]],["name/1206",[460,71.859]],["parent/1206",[453,3.856]],["name/1207",[114,26.461]],["parent/1207",[453,3.856]],["name/1208",[104,33.078]],["parent/1208",[454,4.09]],["name/1209",[107,42.772]],["parent/1209",[454,4.09]],["name/1210",[108,35.223]],["parent/1210",[454,4.09]],["name/1211",[109,32.031]],["parent/1211",[454,4.09]],["name/1212",[109,32.031]],["parent/1212",[453,3.856]],["name/1213",[308,58.866]],["parent/1213",[453,3.856]],["name/1214",[114,26.461]],["parent/1214",[453,3.856]],["name/1215",[109,32.031]],["parent/1215",[454,4.09]],["name/1216",[155,39.94]],["parent/1216",[454,4.09]],["name/1217",[156,40.798]],["parent/1217",[454,4.09]],["name/1218",[163,46.209]],["parent/1218",[454,4.09]],["name/1219",[461,63.386]],["parent/1219",[]],["name/1220",[89,46.209]],["parent/1220",[461,5.902]],["name/1221",[142,44.344]],["parent/1221",[461,5.902]],["name/1222",[462,71.859]],["parent/1222",[]],["name/1223",[463,52.4]],["parent/1223",[]],["name/1224",[383,60.873]],["parent/1224",[463,4.879]],["name/1225",[114,26.461]],["parent/1225",[463,4.879]],["name/1226",[384,60.873]],["parent/1226",[464,5.076]],["name/1227",[385,60.873]],["parent/1227",[464,5.076]],["name/1228",[386,60.873]],["parent/1228",[464,5.076]],["name/1229",[387,60.873]],["parent/1229",[464,5.076]],["name/1230",[388,60.873]],["parent/1230",[464,5.076]],["name/1231",[178,41.414]],["parent/1231",[463,4.879]],["name/1232",[438,58.866]],["parent/1232",[463,4.879]],["name/1233",[200,53.401]],["parent/1233",[463,4.879]],["name/1234",[241,54.513]],["parent/1234",[463,4.879]],["name/1235",[114,26.461]],["parent/1235",[463,4.879]],["name/1236",[142,44.344]],["parent/1236",[464,5.076]],["name/1237",[0,49.887]],["parent/1237",[464,5.076]],["name/1238",[249,42.415]],["parent/1238",[463,4.879]],["name/1239",[114,26.461]],["parent/1239",[463,4.879]],["name/1240",[253,53.401]],["parent/1240",[464,5.076]],["name/1241",[465,40.798]],["parent/1241",[]],["name/1242",[104,33.078]],["parent/1242",[465,3.799]],["name/1243",[89,46.209]],["parent/1243",[465,3.799]],["name/1244",[219,49.172]],["parent/1244",[465,3.799]],["name/1245",[306,52.4]],["parent/1245",[465,3.799]],["name/1246",[178,41.414]],["parent/1246",[465,3.799]],["name/1247",[200,53.401]],["parent/1247",[465,3.799]],["name/1248",[130,51.49]],["parent/1248",[465,3.799]],["name/1249",[114,26.461]],["parent/1249",[465,3.799]],["name/1250",[176,43.927]],["parent/1250",[466,4.017]],["name/1251",[0,49.887]],["parent/1251",[466,4.017]],["name/1252",[241,54.513]],["parent/1252",[465,3.799]],["name/1253",[114,26.461]],["parent/1253",[465,3.799]],["name/1254",[142,44.344]],["parent/1254",[466,4.017]],["name/1255",[294,49.887]],["parent/1255",[465,3.799]],["name/1256",[295,49.887]],["parent/1256",[465,3.799]],["name/1257",[311,57.196]],["parent/1257",[465,3.799]],["name/1258",[114,26.461]],["parent/1258",[465,3.799]],["name/1259",[312,57.196]],["parent/1259",[466,4.017]],["name/1260",[313,57.196]],["parent/1260",[466,4.017]],["name/1261",[314,57.196]],["parent/1261",[465,3.799]],["name/1262",[16,60.873]],["parent/1262",[465,3.799]],["name/1263",[114,26.461]],["parent/1263",[465,3.799]],["name/1264",[109,32.031]],["parent/1264",[466,4.017]],["name/1265",[221,58.866]],["parent/1265",[466,4.017]],["name/1266",[156,40.798]],["parent/1266",[466,4.017]],["name/1267",[436,66.751]],["parent/1267",[466,4.017]],["name/1268",[155,39.94]],["parent/1268",[466,4.017]],["name/1269",[455,53.401]],["parent/1269",[466,4.017]],["name/1270",[249,42.415]],["parent/1270",[465,3.799]],["name/1271",[114,26.461]],["parent/1271",[465,3.799]],["name/1272",[109,32.031]],["parent/1272",[466,4.017]],["name/1273",[253,53.401]],["parent/1273",[466,4.017]],["name/1274",[254,60.873]],["parent/1274",[466,4.017]],["name/1275",[156,40.798]],["parent/1275",[466,4.017]],["name/1276",[255,63.386]],["parent/1276",[466,4.017]],["name/1277",[155,39.94]],["parent/1277",[466,4.017]],["name/1278",[455,53.401]],["parent/1278",[466,4.017]],["name/1279",[316,51.49]],["parent/1279",[465,3.799]],["name/1280",[437,58.866]],["parent/1280",[465,3.799]],["name/1281",[108,35.223]],["parent/1281",[465,3.799]],["name/1282",[456,66.751]],["parent/1282",[465,3.799]],["name/1283",[114,26.461]],["parent/1283",[465,3.799]],["name/1284",[457,66.751]],["parent/1284",[466,4.017]],["name/1285",[114,26.461]],["parent/1285",[466,4.017]],["name/1286",[104,33.078]],["parent/1286",[467,5.668]],["name/1287",[455,53.401]],["parent/1287",[467,5.668]],["name/1288",[459,66.751]],["parent/1288",[466,4.017]],["name/1289",[114,26.461]],["parent/1289",[466,4.017]],["name/1290",[104,33.078]],["parent/1290",[467,5.668]],["name/1291",[455,53.401]],["parent/1291",[467,5.668]],["name/1292",[438,58.866]],["parent/1292",[465,3.799]],["name/1293",[293,60.873]],["parent/1293",[465,3.799]],["name/1294",[439,63.386]],["parent/1294",[465,3.799]],["name/1295",[287,48.505]],["parent/1295",[465,3.799]],["name/1296",[144,43.927]],["parent/1296",[465,3.799]],["name/1297",[109,32.031]],["parent/1297",[465,3.799]],["name/1298",[308,58.866]],["parent/1298",[465,3.799]],["name/1299",[114,26.461]],["parent/1299",[465,3.799]],["name/1300",[109,32.031]],["parent/1300",[466,4.017]],["name/1301",[155,39.94]],["parent/1301",[466,4.017]],["name/1302",[156,40.798]],["parent/1302",[466,4.017]],["name/1303",[163,46.209]],["parent/1303",[466,4.017]],["name/1304",[468,57.196]],["parent/1304",[]],["name/1305",[188,41.101]],["parent/1305",[468,5.326]],["name/1306",[152,41.101]],["parent/1306",[468,5.326]],["name/1307",[189,50.656]],["parent/1307",[468,5.326]],["name/1308",[114,26.461]],["parent/1308",[468,5.326]],["name/1309",[104,33.078]],["parent/1309",[469,6.216]],["name/1310",[261,60.873]],["parent/1310",[469,6.216]],["name/1311",[108,35.223]],["parent/1311",[468,5.326]],["name/1312",[470,60.873]],["parent/1312",[]],["name/1313",[323,63.386]],["parent/1313",[470,5.668]],["name/1314",[152,41.101]],["parent/1314",[470,5.668]],["name/1315",[150,46.209]],["parent/1315",[470,5.668]],["name/1316",[471,58.866]],["parent/1316",[]],["name/1317",[109,32.031]],["parent/1317",[471,5.481]],["name/1318",[155,39.94]],["parent/1318",[471,5.481]],["name/1319",[156,40.798]],["parent/1319",[471,5.481]],["name/1320",[163,46.209]],["parent/1320",[471,5.481]],["name/1321",[472,55.765]],["parent/1321",[]],["name/1322",[316,51.49]],["parent/1322",[472,5.193]],["name/1323",[89,46.209]],["parent/1323",[472,5.193]],["name/1324",[383,60.873]],["parent/1324",[472,5.193]],["name/1325",[114,26.461]],["parent/1325",[472,5.193]],["name/1326",[384,60.873]],["parent/1326",[473,5.326]],["name/1327",[385,60.873]],["parent/1327",[473,5.326]],["name/1328",[386,60.873]],["parent/1328",[473,5.326]],["name/1329",[387,60.873]],["parent/1329",[473,5.326]],["name/1330",[388,60.873]],["parent/1330",[473,5.326]],["name/1331",[249,42.415]],["parent/1331",[472,5.193]],["name/1332",[114,26.461]],["parent/1332",[472,5.193]],["name/1333",[253,53.401]],["parent/1333",[473,5.326]],["name/1334",[474,71.859]],["parent/1334",[]],["name/1335",[475,71.859]],["parent/1335",[]],["name/1336",[476,71.859]],["parent/1336",[]],["name/1337",[477,52.4]],["parent/1337",[]],["name/1338",[89,46.209]],["parent/1338",[477,4.879]],["name/1339",[306,52.4]],["parent/1339",[477,4.879]],["name/1340",[294,49.887]],["parent/1340",[477,4.879]],["name/1341",[295,49.887]],["parent/1341",[477,4.879]],["name/1342",[316,51.49]],["parent/1342",[477,4.879]],["name/1343",[437,58.866]],["parent/1343",[477,4.879]],["name/1344",[108,35.223]],["parent/1344",[477,4.879]],["name/1345",[130,51.49]],["parent/1345",[477,4.879]],["name/1346",[114,26.461]],["parent/1346",[477,4.879]],["name/1347",[176,43.927]],["parent/1347",[478,6.691]],["name/1348",[479,71.859]],["parent/1348",[]],["name/1349",[480,66.751]],["parent/1349",[]],["name/1350",[328,58.866]],["parent/1350",[480,6.216]],["name/1351",[481,49.887]],["parent/1351",[]],["name/1352",[150,46.209]],["parent/1352",[481,4.645]],["name/1353",[151,47.88]],["parent/1353",[481,4.645]],["name/1354",[306,52.4]],["parent/1354",[481,4.645]],["name/1355",[219,49.172]],["parent/1355",[481,4.645]],["name/1356",[188,41.101]],["parent/1356",[481,4.645]],["name/1357",[144,43.927]],["parent/1357",[481,4.645]],["name/1358",[114,26.461]],["parent/1358",[481,4.645]],["name/1359",[248,58.866]],["parent/1359",[482,5.481]],["name/1360",[246,58.866]],["parent/1360",[482,5.481]],["name/1361",[287,48.505]],["parent/1361",[481,4.645]],["name/1362",[114,26.461]],["parent/1362",[481,4.645]],["name/1363",[248,58.866]],["parent/1363",[482,5.481]],["name/1364",[246,58.866]],["parent/1364",[482,5.481]],["name/1365",[152,41.101]],["parent/1365",[481,4.645]],["name/1366",[336,57.196]],["parent/1366",[481,4.645]],["name/1367",[114,26.461]],["parent/1367",[481,4.645]],["name/1368",[337,55.765]],["parent/1368",[482,5.481]],["name/1369",[483,58.866]],["parent/1369",[]],["name/1370",[109,32.031]],["parent/1370",[483,5.481]],["name/1371",[155,39.94]],["parent/1371",[483,5.481]],["name/1372",[156,40.798]],["parent/1372",[483,5.481]],["name/1373",[99,46.736]],["parent/1373",[483,5.481]],["name/1374",[484,71.859]],["parent/1374",[]],["name/1375",[485,71.859]],["parent/1375",[]],["name/1376",[486,49.172]],["parent/1376",[]],["name/1377",[89,46.209]],["parent/1377",[486,4.579]],["name/1378",[306,52.4]],["parent/1378",[486,4.579]],["name/1379",[178,41.414]],["parent/1379",[486,4.579]],["name/1380",[200,53.401]],["parent/1380",[486,4.579]],["name/1381",[437,58.866]],["parent/1381",[486,4.579]],["name/1382",[294,49.887]],["parent/1382",[486,4.579]],["name/1383",[295,49.887]],["parent/1383",[486,4.579]],["name/1384",[316,51.49]],["parent/1384",[486,4.579]],["name/1385",[108,35.223]],["parent/1385",[486,4.579]],["name/1386",[249,42.415]],["parent/1386",[486,4.579]],["name/1387",[114,26.461]],["parent/1387",[486,4.579]],["name/1388",[253,53.401]],["parent/1388",[487,5.326]],["name/1389",[383,60.873]],["parent/1389",[486,4.579]],["name/1390",[114,26.461]],["parent/1390",[486,4.579]],["name/1391",[384,60.873]],["parent/1391",[487,5.326]],["name/1392",[385,60.873]],["parent/1392",[487,5.326]],["name/1393",[386,60.873]],["parent/1393",[487,5.326]],["name/1394",[387,60.873]],["parent/1394",[487,5.326]],["name/1395",[388,60.873]],["parent/1395",[487,5.326]],["name/1396",[488,63.386]],["parent/1396",[]],["name/1397",[89,46.209]],["parent/1397",[488,5.902]],["name/1398",[108,35.223]],["parent/1398",[488,5.902]],["name/1399",[489,71.859]],["parent/1399",[]],["name/1400",[490,63.386]],["parent/1400",[]],["name/1401",[491,71.859]],["parent/1401",[490,5.902]],["name/1402",[108,35.223]],["parent/1402",[490,5.902]],["name/1403",[492,66.751]],["parent/1403",[]],["name/1404",[114,26.461]],["parent/1404",[492,6.216]],["name/1405",[341,57.196]],["parent/1405",[493,6.691]],["name/1406",[494,66.751]],["parent/1406",[]],["name/1407",[114,26.461]],["parent/1407",[494,6.216]],["name/1408",[341,57.196]],["parent/1408",[495,6.691]],["name/1409",[496,66.751]],["parent/1409",[]],["name/1410",[114,26.461]],["parent/1410",[496,6.216]],["name/1411",[341,57.196]],["parent/1411",[497,6.691]],["name/1412",[498,57.196]],["parent/1412",[]],["name/1413",[105,42.772]],["parent/1413",[498,5.326]],["name/1414",[297,60.873]],["parent/1414",[498,5.326]],["name/1415",[114,26.461]],["parent/1415",[498,5.326]],["name/1416",[299,63.386]],["parent/1416",[499,6.216]],["name/1417",[500,66.751]],["parent/1417",[498,5.326]],["name/1418",[114,26.461]],["parent/1418",[498,5.326]],["name/1419",[501,66.751]],["parent/1419",[499,6.216]],["name/1420",[502,52.4]],["parent/1420",[]],["name/1421",[104,33.078]],["parent/1421",[502,4.879]],["name/1422",[105,42.772]],["parent/1422",[502,4.879]],["name/1423",[297,60.873]],["parent/1423",[502,4.879]],["name/1424",[114,26.461]],["parent/1424",[502,4.879]],["name/1425",[299,63.386]],["parent/1425",[503,6.216]],["name/1426",[500,66.751]],["parent/1426",[502,4.879]],["name/1427",[114,26.461]],["parent/1427",[502,4.879]],["name/1428",[501,66.751]],["parent/1428",[503,6.216]],["name/1429",[144,43.927]],["parent/1429",[502,4.879]],["name/1430",[287,48.505]],["parent/1430",[502,4.879]],["name/1431",[109,32.031]],["parent/1431",[502,4.879]],["name/1432",[504,60.873]],["parent/1432",[]],["name/1433",[199,55.765]],["parent/1433",[504,5.668]],["name/1434",[505,66.751]],["parent/1434",[504,5.668]],["name/1435",[201,60.873]],["parent/1435",[504,5.668]],["name/1436",[506,71.859]],["parent/1436",[]],["name/1437",[507,71.859]],["parent/1437",[]],["name/1438",[508,71.859]],["parent/1438",[]],["name/1439",[509,60.873]],["parent/1439",[]],["name/1440",[213,49.172]],["parent/1440",[509,5.668]],["name/1441",[219,49.172]],["parent/1441",[509,5.668]],["name/1442",[242,63.386]],["parent/1442",[509,5.668]],["name/1443",[510,54.513]],["parent/1443",[]],["name/1444",[104,33.078]],["parent/1444",[510,5.076]],["name/1445",[505,66.751]],["parent/1445",[510,5.076]],["name/1446",[272,60.873]],["parent/1446",[510,5.076]],["name/1447",[96,55.765]],["parent/1447",[510,5.076]],["name/1448",[144,43.927]],["parent/1448",[510,5.076]],["name/1449",[287,48.505]],["parent/1449",[510,5.076]],["name/1450",[109,32.031]],["parent/1450",[510,5.076]],["name/1451",[511,63.386]],["parent/1451",[]],["name/1452",[150,46.209]],["parent/1452",[511,5.902]],["name/1453",[151,47.88]],["parent/1453",[511,5.902]],["name/1454",[512,58.866]],["parent/1454",[]],["name/1455",[109,32.031]],["parent/1455",[512,5.481]],["name/1456",[155,39.94]],["parent/1456",[512,5.481]],["name/1457",[156,40.798]],["parent/1457",[512,5.481]],["name/1458",[163,46.209]],["parent/1458",[512,5.481]],["name/1459",[513,63.386]],["parent/1459",[]],["name/1460",[150,46.209]],["parent/1460",[513,5.902]],["name/1461",[151,47.88]],["parent/1461",[513,5.902]],["name/1462",[514,58.866]],["parent/1462",[]],["name/1463",[109,32.031]],["parent/1463",[514,5.481]],["name/1464",[155,39.94]],["parent/1464",[514,5.481]],["name/1465",[156,40.798]],["parent/1465",[514,5.481]],["name/1466",[163,46.209]],["parent/1466",[514,5.481]],["name/1467",[515,63.386]],["parent/1467",[]],["name/1468",[151,47.88]],["parent/1468",[515,5.902]],["name/1469",[150,46.209]],["parent/1469",[515,5.902]],["name/1470",[516,52.4]],["parent/1470",[]],["name/1471",[104,33.078]],["parent/1471",[516,4.879]],["name/1472",[105,42.772]],["parent/1472",[516,4.879]],["name/1473",[517,71.859]],["parent/1473",[516,4.879]],["name/1474",[518,71.859]],["parent/1474",[516,4.879]],["name/1475",[519,57.196]],["parent/1475",[516,4.879]],["name/1476",[114,26.461]],["parent/1476",[516,4.879]],["name/1477",[520,58.866]],["parent/1477",[521,6.216]],["name/1478",[112,53.401]],["parent/1478",[521,6.216]],["name/1479",[144,43.927]],["parent/1479",[516,4.879]],["name/1480",[287,48.505]],["parent/1480",[516,4.879]],["name/1481",[109,32.031]],["parent/1481",[516,4.879]],["name/1482",[522,71.859]],["parent/1482",[]],["name/1483",[523,58.866]],["parent/1483",[]],["name/1484",[109,32.031]],["parent/1484",[523,5.481]],["name/1485",[155,39.94]],["parent/1485",[523,5.481]],["name/1486",[156,40.798]],["parent/1486",[523,5.481]],["name/1487",[163,46.209]],["parent/1487",[523,5.481]],["name/1488",[524,71.859]],["parent/1488",[]],["name/1489",[525,71.859]],["parent/1489",[]],["name/1490",[526,71.859]],["parent/1490",[]],["name/1491",[527,71.859]],["parent/1491",[]],["name/1492",[528,71.859]],["parent/1492",[]],["name/1493",[529,71.859]],["parent/1493",[]],["name/1494",[530,52.4]],["parent/1494",[]],["name/1495",[104,33.078]],["parent/1495",[530,4.879]],["name/1496",[402,66.751]],["parent/1496",[530,4.879]],["name/1497",[272,60.873]],["parent/1497",[530,4.879]],["name/1498",[96,55.765]],["parent/1498",[530,4.879]],["name/1499",[398,55.765]],["parent/1499",[530,4.879]],["name/1500",[114,26.461]],["parent/1500",[530,4.879]],["name/1501",[134,49.172]],["parent/1501",[531,6.216]],["name/1502",[114,26.461]],["parent/1502",[531,6.216]],["name/1503",[142,44.344]],["parent/1503",[532,6.691]],["name/1504",[144,43.927]],["parent/1504",[530,4.879]],["name/1505",[287,48.505]],["parent/1505",[530,4.879]],["name/1506",[109,32.031]],["parent/1506",[530,4.879]],["name/1507",[533,63.386]],["parent/1507",[]],["name/1508",[150,46.209]],["parent/1508",[533,5.902]],["name/1509",[151,47.88]],["parent/1509",[533,5.902]],["name/1510",[534,58.866]],["parent/1510",[]],["name/1511",[155,39.94]],["parent/1511",[534,5.481]],["name/1512",[163,46.209]],["parent/1512",[534,5.481]],["name/1513",[109,32.031]],["parent/1513",[534,5.481]],["name/1514",[156,40.798]],["parent/1514",[534,5.481]],["name/1515",[535,60.873]],["parent/1515",[]],["name/1516",[219,49.172]],["parent/1516",[535,5.668]],["name/1517",[398,55.765]],["parent/1517",[535,5.668]],["name/1518",[114,26.461]],["parent/1518",[535,5.668]],["name/1519",[134,49.172]],["parent/1519",[536,6.216]],["name/1520",[114,26.461]],["parent/1520",[536,6.216]],["name/1521",[142,44.344]],["parent/1521",[537,6.691]],["name/1522",[538,71.859]],["parent/1522",[]],["name/1523",[539,71.859]],["parent/1523",[]],["name/1524",[540,71.859]],["parent/1524",[]],["name/1525",[541,60.873]],["parent/1525",[]],["name/1526",[142,44.344]],["parent/1526",[541,5.668]],["name/1527",[261,60.873]],["parent/1527",[541,5.668]],["name/1528",[104,33.078]],["parent/1528",[541,5.668]],["name/1529",[542,55.765]],["parent/1529",[]],["name/1530",[105,42.772]],["parent/1530",[542,5.193]],["name/1531",[107,42.772]],["parent/1531",[542,5.193]],["name/1532",[543,53.401]],["parent/1532",[542,5.193]],["name/1533",[519,57.196]],["parent/1533",[542,5.193]],["name/1534",[108,35.223]],["parent/1534",[542,5.193]],["name/1535",[520,58.866]],["parent/1535",[542,5.193]],["name/1536",[544,63.386]],["parent/1536",[]],["name/1537",[545,66.751]],["parent/1537",[544,5.902]],["name/1538",[114,26.461]],["parent/1538",[544,5.902]],["name/1539",[109,32.031]],["parent/1539",[546,5.902]],["name/1540",[155,39.94]],["parent/1540",[546,5.902]],["name/1541",[163,46.209]],["parent/1541",[546,5.902]],["name/1542",[547,52.4]],["parent/1542",[]],["name/1543",[104,33.078]],["parent/1543",[547,4.879]],["name/1544",[107,42.772]],["parent/1544",[547,4.879]],["name/1545",[109,32.031]],["parent/1545",[547,4.879]],["name/1546",[105,42.772]],["parent/1546",[547,4.879]],["name/1547",[543,53.401]],["parent/1547",[547,4.879]],["name/1548",[519,57.196]],["parent/1548",[547,4.879]],["name/1549",[144,43.927]],["parent/1549",[547,4.879]],["name/1550",[520,58.866]],["parent/1550",[547,4.879]],["name/1551",[108,35.223]],["parent/1551",[547,4.879]],["name/1552",[548,71.859]],["parent/1552",[]],["name/1553",[549,66.751]],["parent/1553",[]],["name/1554",[114,26.461]],["parent/1554",[549,6.216]],["name/1555",[105,42.772]],["parent/1555",[550,5.193]],["name/1556",[104,33.078]],["parent/1556",[550,5.193]],["name/1557",[107,42.772]],["parent/1557",[550,5.193]],["name/1558",[519,57.196]],["parent/1558",[550,5.193]],["name/1559",[543,53.401]],["parent/1559",[550,5.193]],["name/1560",[520,58.866]],["parent/1560",[550,5.193]],["name/1561",[108,35.223]],["parent/1561",[550,5.193]],["name/1562",[551,71.859]],["parent/1562",[]],["name/1563",[552,63.386]],["parent/1563",[]],["name/1564",[553,71.859]],["parent/1564",[552,5.902]],["name/1565",[108,35.223]],["parent/1565",[552,5.902]],["name/1566",[554,71.859]],["parent/1566",[]],["name/1567",[555,66.751]],["parent/1567",[]],["name/1568",[114,26.461]],["parent/1568",[555,6.216]],["name/1569",[341,57.196]],["parent/1569",[556,6.691]],["name/1570",[557,66.751]],["parent/1570",[]],["name/1571",[114,26.461]],["parent/1571",[557,6.216]],["name/1572",[341,57.196]],["parent/1572",[558,6.691]],["name/1573",[559,66.751]],["parent/1573",[]],["name/1574",[328,58.866]],["parent/1574",[559,6.216]],["name/1575",[560,63.386]],["parent/1575",[]],["name/1576",[151,47.88]],["parent/1576",[560,5.902]],["name/1577",[150,46.209]],["parent/1577",[560,5.902]],["name/1578",[561,58.866]],["parent/1578",[]],["name/1579",[109,32.031]],["parent/1579",[561,5.481]],["name/1580",[155,39.94]],["parent/1580",[561,5.481]],["name/1581",[156,40.798]],["parent/1581",[561,5.481]],["name/1582",[49,48.505]],["parent/1582",[561,5.481]],["name/1583",[562,54.513]],["parent/1583",[]],["name/1584",[563,53.401]],["parent/1584",[562,5.076]],["name/1585",[107,42.772]],["parent/1585",[562,5.076]],["name/1586",[519,57.196]],["parent/1586",[562,5.076]],["name/1587",[108,35.223]],["parent/1587",[562,5.076]],["name/1588",[543,53.401]],["parent/1588",[562,5.076]],["name/1589",[520,58.866]],["parent/1589",[562,5.076]],["name/1590",[564,66.751]],["parent/1590",[562,5.076]],["name/1591",[565,51.49]],["parent/1591",[]],["name/1592",[104,33.078]],["parent/1592",[565,4.795]],["name/1593",[107,42.772]],["parent/1593",[565,4.795]],["name/1594",[563,53.401]],["parent/1594",[565,4.795]],["name/1595",[543,53.401]],["parent/1595",[565,4.795]],["name/1596",[519,57.196]],["parent/1596",[565,4.795]],["name/1597",[108,35.223]],["parent/1597",[565,4.795]],["name/1598",[287,48.505]],["parent/1598",[565,4.795]],["name/1599",[564,66.751]],["parent/1599",[565,4.795]],["name/1600",[144,43.927]],["parent/1600",[565,4.795]],["name/1601",[109,32.031]],["parent/1601",[565,4.795]],["name/1602",[566,71.859]],["parent/1602",[]],["name/1603",[567,71.859]],["parent/1603",[]],["name/1604",[568,71.859]],["parent/1604",[]],["name/1605",[569,66.751]],["parent/1605",[]],["name/1606",[328,58.866]],["parent/1606",[569,6.216]],["name/1607",[570,60.873]],["parent/1607",[]],["name/1608",[109,32.031]],["parent/1608",[570,5.668]],["name/1609",[155,39.94]],["parent/1609",[570,5.668]],["name/1610",[545,66.751]],["parent/1610",[570,5.668]],["name/1611",[571,60.873]],["parent/1611",[]],["name/1612",[104,33.078]],["parent/1612",[571,5.668]],["name/1613",[107,42.772]],["parent/1613",[571,5.668]],["name/1614",[105,42.772]],["parent/1614",[571,5.668]],["name/1615",[572,60.873]],["parent/1615",[]],["name/1616",[104,33.078]],["parent/1616",[572,5.668]],["name/1617",[107,42.772]],["parent/1617",[572,5.668]],["name/1618",[563,53.401]],["parent/1618",[572,5.668]],["name/1619",[573,52.4]],["parent/1619",[]],["name/1620",[178,41.414]],["parent/1620",[573,4.879]],["name/1621",[574,58.866]],["parent/1621",[573,4.879]],["name/1622",[575,63.386]],["parent/1622",[573,4.879]],["name/1623",[286,51.49]],["parent/1623",[573,4.879]],["name/1624",[576,63.386]],["parent/1624",[573,4.879]],["name/1625",[577,63.386]],["parent/1625",[573,4.879]],["name/1626",[578,63.386]],["parent/1626",[573,4.879]],["name/1627",[579,63.386]],["parent/1627",[573,4.879]],["name/1628",[580,63.386]],["parent/1628",[573,4.879]],["name/1629",[581,50.656]],["parent/1629",[]],["name/1630",[150,46.209]],["parent/1630",[581,4.717]],["name/1631",[151,47.88]],["parent/1631",[581,4.717]],["name/1632",[152,41.101]],["parent/1632",[581,4.717]],["name/1633",[219,49.172]],["parent/1633",[581,4.717]],["name/1634",[188,41.101]],["parent/1634",[581,4.717]],["name/1635",[213,49.172]],["parent/1635",[581,4.717]],["name/1636",[212,49.887]],["parent/1636",[581,4.717]],["name/1637",[582,71.859]],["parent/1637",[581,4.717]],["name/1638",[438,58.866]],["parent/1638",[581,4.717]],["name/1639",[336,57.196]],["parent/1639",[581,4.717]],["name/1640",[114,26.461]],["parent/1640",[581,4.717]],["name/1641",[337,55.765]],["parent/1641",[583,6.691]],["name/1642",[584,58.866]],["parent/1642",[]],["name/1643",[109,32.031]],["parent/1643",[584,5.481]],["name/1644",[155,39.94]],["parent/1644",[584,5.481]],["name/1645",[156,40.798]],["parent/1645",[584,5.481]],["name/1646",[29,66.751]],["parent/1646",[584,5.481]],["name/1647",[585,54.513]],["parent/1647",[]],["name/1648",[218,58.866]],["parent/1648",[585,5.076]],["name/1649",[107,42.772]],["parent/1649",[585,5.076]],["name/1650",[219,49.172]],["parent/1650",[585,5.076]],["name/1651",[114,26.461]],["parent/1651",[585,5.076]],["name/1652",[105,42.772]],["parent/1652",[586,6.216]],["name/1653",[221,58.866]],["parent/1653",[586,6.216]],["name/1654",[213,49.172]],["parent/1654",[585,5.076]],["name/1655",[215,57.196]],["parent/1655",[585,5.076]],["name/1656",[188,41.101]],["parent/1656",[585,5.076]],["name/1657",[587,50.656]],["parent/1657",[]],["name/1658",[104,33.078]],["parent/1658",[587,4.717]],["name/1659",[109,32.031]],["parent/1659",[587,4.717]],["name/1660",[144,43.927]],["parent/1660",[587,4.717]],["name/1661",[211,51.49]],["parent/1661",[587,4.717]],["name/1662",[185,45.709]],["parent/1662",[587,4.717]],["name/1663",[108,35.223]],["parent/1663",[587,4.717]],["name/1664",[215,57.196]],["parent/1664",[587,4.717]],["name/1665",[107,42.772]],["parent/1665",[587,4.717]],["name/1666",[212,49.887]],["parent/1666",[587,4.717]],["name/1667",[188,41.101]],["parent/1667",[587,4.717]],["name/1668",[213,49.172]],["parent/1668",[587,4.717]],["name/1669",[588,57.196]],["parent/1669",[]],["name/1670",[105,42.772]],["parent/1670",[588,5.326]],["name/1671",[178,41.414]],["parent/1671",[588,5.326]],["name/1672",[589,66.751]],["parent/1672",[588,5.326]],["name/1673",[114,26.461]],["parent/1673",[588,5.326]],["name/1674",[337,55.765]],["parent/1674",[590,6.691]],["name/1675",[25,50.656]],["parent/1675",[588,5.326]],["name/1676",[591,53.401]],["parent/1676",[]],["name/1677",[104,33.078]],["parent/1677",[591,4.973]],["name/1678",[105,42.772]],["parent/1678",[591,4.973]],["name/1679",[144,43.927]],["parent/1679",[591,4.973]],["name/1680",[108,35.223]],["parent/1680",[591,4.973]],["name/1681",[589,66.751]],["parent/1681",[591,4.973]],["name/1682",[114,26.461]],["parent/1682",[591,4.973]],["name/1683",[337,55.765]],["parent/1683",[592,6.691]],["name/1684",[178,41.414]],["parent/1684",[591,4.973]],["name/1685",[109,32.031]],["parent/1685",[591,4.973]],["name/1686",[593,71.859]],["parent/1686",[]],["name/1687",[594,58.866]],["parent/1687",[]],["name/1688",[109,32.031]],["parent/1688",[594,5.481]],["name/1689",[155,39.94]],["parent/1689",[594,5.481]],["name/1690",[156,40.798]],["parent/1690",[594,5.481]],["name/1691",[163,46.209]],["parent/1691",[594,5.481]],["name/1692",[595,60.873]],["parent/1692",[]],["name/1693",[596,66.751]],["parent/1693",[595,5.668]],["name/1694",[398,55.765]],["parent/1694",[595,5.668]],["name/1695",[114,26.461]],["parent/1695",[595,5.668]],["name/1696",[152,41.101]],["parent/1696",[597,5.668]],["name/1697",[598,66.751]],["parent/1697",[597,5.668]],["name/1698",[336,57.196]],["parent/1698",[597,5.668]],["name/1699",[114,26.461]],["parent/1699",[597,5.668]],["name/1700",[337,55.765]],["parent/1700",[599,6.691]],["name/1701",[600,51.49]],["parent/1701",[]],["name/1702",[104,33.078]],["parent/1702",[600,4.795]],["name/1703",[109,32.031]],["parent/1703",[600,4.795]],["name/1704",[144,43.927]],["parent/1704",[600,4.795]],["name/1705",[279,54.513]],["parent/1705",[600,4.795]],["name/1706",[215,57.196]],["parent/1706",[600,4.795]],["name/1707",[596,66.751]],["parent/1707",[600,4.795]],["name/1708",[398,55.765]],["parent/1708",[600,4.795]],["name/1709",[114,26.461]],["parent/1709",[600,4.795]],["name/1710",[598,66.751]],["parent/1710",[601,5.668]],["name/1711",[336,57.196]],["parent/1711",[601,5.668]],["name/1712",[114,26.461]],["parent/1712",[601,5.668]],["name/1713",[337,55.765]],["parent/1713",[602,6.691]],["name/1714",[212,49.887]],["parent/1714",[600,4.795]],["name/1715",[114,26.461]],["parent/1715",[600,4.795]],["name/1716",[455,53.401]],["parent/1716",[601,5.668]],["name/1717",[603,71.859]],["parent/1717",[]],["name/1718",[604,45.709]],["parent/1718",[]],["name/1719",[605,71.859]],["parent/1719",[604,4.256]],["name/1720",[606,66.751]],["parent/1720",[604,4.256]],["name/1721",[179,63.386]],["parent/1721",[604,4.256]],["name/1722",[107,42.772]],["parent/1722",[604,4.256]],["name/1723",[607,71.859]],["parent/1723",[604,4.256]],["name/1724",[608,71.859]],["parent/1724",[604,4.256]],["name/1725",[253,53.401]],["parent/1725",[604,4.256]],["name/1726",[543,53.401]],["parent/1726",[604,4.256]],["name/1727",[176,43.927]],["parent/1727",[604,4.256]],["name/1728",[203,57.196]],["parent/1728",[604,4.256]],["name/1729",[288,63.386]],["parent/1729",[604,4.256]],["name/1730",[289,63.386]],["parent/1730",[604,4.256]],["name/1731",[609,71.859]],["parent/1731",[604,4.256]],["name/1732",[610,58.866]],["parent/1732",[604,4.256]],["name/1733",[114,26.461]],["parent/1733",[604,4.256]],["name/1734",[104,33.078]],["parent/1734",[611,4.795]],["name/1735",[107,42.772]],["parent/1735",[611,4.795]],["name/1736",[612,66.751]],["parent/1736",[611,4.795]],["name/1737",[105,42.772]],["parent/1737",[611,4.795]],["name/1738",[108,35.223]],["parent/1738",[611,4.795]],["name/1739",[543,53.401]],["parent/1739",[611,4.795]],["name/1740",[563,53.401]],["parent/1740",[604,4.256]],["name/1741",[114,26.461]],["parent/1741",[604,4.256]],["name/1742",[104,33.078]],["parent/1742",[611,4.795]],["name/1743",[107,42.772]],["parent/1743",[611,4.795]],["name/1744",[612,66.751]],["parent/1744",[611,4.795]],["name/1745",[563,53.401]],["parent/1745",[611,4.795]],["name/1746",[543,53.401]],["parent/1746",[611,4.795]],["name/1747",[109,32.031]],["parent/1747",[604,4.256]],["name/1748",[108,35.223]],["parent/1748",[604,4.256]],["name/1749",[613,54.513]],["parent/1749",[]],["name/1750",[107,42.772]],["parent/1750",[613,5.076]],["name/1751",[279,54.513]],["parent/1751",[613,5.076]],["name/1752",[188,41.101]],["parent/1752",[613,5.076]],["name/1753",[176,43.927]],["parent/1753",[613,5.076]],["name/1754",[203,57.196]],["parent/1754",[613,5.076]],["name/1755",[186,52.4]],["parent/1755",[613,5.076]],["name/1756",[108,35.223]],["parent/1756",[613,5.076]],["name/1757",[614,46.209]],["parent/1757",[]],["name/1758",[104,33.078]],["parent/1758",[614,4.303]],["name/1759",[107,42.772]],["parent/1759",[614,4.303]],["name/1760",[144,43.927]],["parent/1760",[614,4.303]],["name/1761",[287,48.505]],["parent/1761",[614,4.303]],["name/1762",[279,54.513]],["parent/1762",[614,4.303]],["name/1763",[176,43.927]],["parent/1763",[614,4.303]],["name/1764",[288,63.386]],["parent/1764",[614,4.303]],["name/1765",[203,57.196]],["parent/1765",[614,4.303]],["name/1766",[290,66.751]],["parent/1766",[614,4.303]],["name/1767",[204,63.386]],["parent/1767",[614,4.303]],["name/1768",[289,63.386]],["parent/1768",[614,4.303]],["name/1769",[291,66.751]],["parent/1769",[614,4.303]],["name/1770",[137,60.873]],["parent/1770",[614,4.303]],["name/1771",[292,66.751]],["parent/1771",[614,4.303]],["name/1772",[186,52.4]],["parent/1772",[614,4.303]],["name/1773",[108,35.223]],["parent/1773",[614,4.303]],["name/1774",[188,41.101]],["parent/1774",[614,4.303]],["name/1775",[109,32.031]],["parent/1775",[614,4.303]],["name/1776",[615,71.859]],["parent/1776",[]],["name/1777",[616,52.4]],["parent/1777",[]],["name/1778",[104,33.078]],["parent/1778",[616,4.879]],["name/1779",[107,42.772]],["parent/1779",[616,4.879]],["name/1780",[279,54.513]],["parent/1780",[616,4.879]],["name/1781",[186,52.4]],["parent/1781",[616,4.879]],["name/1782",[176,43.927]],["parent/1782",[616,4.879]],["name/1783",[203,57.196]],["parent/1783",[616,4.879]],["name/1784",[108,35.223]],["parent/1784",[616,4.879]],["name/1785",[188,41.101]],["parent/1785",[616,4.879]],["name/1786",[114,26.461]],["parent/1786",[616,4.879]],["name/1787",[104,33.078]],["parent/1787",[617,6.691]],["name/1788",[618,71.859]],["parent/1788",[]],["name/1789",[619,63.386]],["parent/1789",[]],["name/1790",[150,46.209]],["parent/1790",[619,5.902]],["name/1791",[151,47.88]],["parent/1791",[619,5.902]],["name/1792",[620,58.866]],["parent/1792",[]],["name/1793",[109,32.031]],["parent/1793",[620,5.481]],["name/1794",[155,39.94]],["parent/1794",[620,5.481]],["name/1795",[156,40.798]],["parent/1795",[620,5.481]],["name/1796",[47,53.401]],["parent/1796",[620,5.481]],["name/1797",[621,54.513]],["parent/1797",[]],["name/1798",[104,33.078]],["parent/1798",[621,5.076]],["name/1799",[105,42.772]],["parent/1799",[621,5.076]],["name/1800",[112,53.401]],["parent/1800",[621,5.076]],["name/1801",[306,52.4]],["parent/1801",[621,5.076]],["name/1802",[144,43.927]],["parent/1802",[621,5.076]],["name/1803",[287,48.505]],["parent/1803",[621,5.076]],["name/1804",[109,32.031]],["parent/1804",[621,5.076]],["name/1805",[622,58.866]],["parent/1805",[]],["name/1806",[623,71.859]],["parent/1806",[622,5.481]],["name/1807",[114,26.461]],["parent/1807",[622,5.481]],["name/1808",[109,32.031]],["parent/1808",[624,5.076]],["name/1809",[155,39.94]],["parent/1809",[624,5.076]],["name/1810",[156,40.798]],["parent/1810",[624,5.076]],["name/1811",[163,46.209]],["parent/1811",[624,5.076]],["name/1812",[24,60.873]],["parent/1812",[622,5.481]],["name/1813",[114,26.461]],["parent/1813",[622,5.481]],["name/1814",[109,32.031]],["parent/1814",[624,5.076]],["name/1815",[155,39.94]],["parent/1815",[624,5.076]],["name/1816",[156,40.798]],["parent/1816",[624,5.076]],["name/1817",[163,46.209]],["parent/1817",[624,5.076]],["name/1818",[625,54.513]],["parent/1818",[]],["name/1819",[226,60.873]],["parent/1819",[625,5.076]],["name/1820",[188,41.101]],["parent/1820",[625,5.076]],["name/1821",[108,35.223]],["parent/1821",[625,5.076]],["name/1822",[227,66.751]],["parent/1822",[625,5.076]],["name/1823",[114,26.461]],["parent/1823",[625,5.076]],["name/1824",[89,46.209]],["parent/1824",[626,5.902]],["name/1825",[293,60.873]],["parent/1825",[626,5.902]],["name/1826",[134,49.172]],["parent/1826",[625,5.076]],["name/1827",[114,26.461]],["parent/1827",[625,5.076]],["name/1828",[89,46.209]],["parent/1828",[626,5.902]],["name/1829",[627,63.386]],["parent/1829",[]],["name/1830",[109,32.031]],["parent/1830",[627,5.902]],["name/1831",[178,41.414]],["parent/1831",[627,5.902]],["name/1832",[628,66.751]],["parent/1832",[]],["name/1833",[629,71.859]],["parent/1833",[628,6.216]],["name/1834",[630,71.859]],["parent/1834",[]],["name/1835",[631,58.866]],["parent/1835",[]],["name/1836",[109,32.031]],["parent/1836",[631,5.481]],["name/1837",[104,33.078]],["parent/1837",[631,5.481]],["name/1838",[189,50.656]],["parent/1838",[631,5.481]],["name/1839",[130,51.49]],["parent/1839",[631,5.481]],["name/1840",[632,71.859]],["parent/1840",[]],["name/1841",[633,57.196]],["parent/1841",[]],["name/1842",[286,51.49]],["parent/1842",[633,5.326]],["name/1843",[574,58.866]],["parent/1843",[633,5.326]],["name/1844",[634,60.873]],["parent/1844",[633,5.326]],["name/1845",[563,53.401]],["parent/1845",[633,5.326]],["name/1846",[610,58.866]],["parent/1846",[633,5.326]],["name/1847",[635,47.88]],["parent/1847",[]],["name/1848",[178,41.414]],["parent/1848",[635,4.458]],["name/1849",[286,51.49]],["parent/1849",[635,4.458]],["name/1850",[576,63.386]],["parent/1850",[635,4.458]],["name/1851",[577,63.386]],["parent/1851",[635,4.458]],["name/1852",[578,63.386]],["parent/1852",[635,4.458]],["name/1853",[579,63.386]],["parent/1853",[635,4.458]],["name/1854",[580,63.386]],["parent/1854",[635,4.458]],["name/1855",[636,66.751]],["parent/1855",[635,4.458]],["name/1856",[637,66.751]],["parent/1856",[635,4.458]],["name/1857",[574,58.866]],["parent/1857",[635,4.458]],["name/1858",[575,63.386]],["parent/1858",[635,4.458]],["name/1859",[634,60.873]],["parent/1859",[635,4.458]],["name/1860",[563,53.401]],["parent/1860",[635,4.458]],["name/1861",[610,58.866]],["parent/1861",[635,4.458]],["name/1862",[638,66.751]],["parent/1862",[635,4.458]],["name/1863",[639,66.751]],["parent/1863",[]],["name/1864",[281,63.386]],["parent/1864",[639,6.216]],["name/1865",[640,63.386]],["parent/1865",[]],["name/1866",[142,44.344]],["parent/1866",[640,5.902]],["name/1867",[641,71.859]],["parent/1867",[640,5.902]],["name/1868",[642,58.866]],["parent/1868",[]],["name/1869",[200,53.401]],["parent/1869",[642,5.481]],["name/1870",[130,51.49]],["parent/1870",[642,5.481]],["name/1871",[241,54.513]],["parent/1871",[642,5.481]],["name/1872",[297,60.873]],["parent/1872",[642,5.481]],["name/1873",[643,53.401]],["parent/1873",[]],["name/1874",[279,54.513]],["parent/1874",[643,4.973]],["name/1875",[104,33.078]],["parent/1875",[643,4.973]],["name/1876",[109,32.031]],["parent/1876",[643,4.973]],["name/1877",[152,41.101]],["parent/1877",[643,4.973]],["name/1878",[201,60.873]],["parent/1878",[643,4.973]],["name/1879",[284,66.751]],["parent/1879",[643,4.973]],["name/1880",[212,49.887]],["parent/1880",[643,4.973]],["name/1881",[108,35.223]],["parent/1881",[643,4.973]],["name/1882",[644,66.751]],["parent/1882",[]],["name/1883",[281,63.386]],["parent/1883",[644,6.216]],["name/1884",[645,71.859]],["parent/1884",[]],["name/1885",[646,71.859]],["parent/1885",[]],["name/1886",[647,58.866]],["parent/1886",[]],["name/1887",[90,58.866]],["parent/1887",[647,5.481]],["name/1888",[178,41.414]],["parent/1888",[647,5.481]],["name/1889",[648,66.751]],["parent/1889",[647,5.481]],["name/1890",[649,66.751]],["parent/1890",[647,5.481]],["name/1891",[650,58.866]],["parent/1891",[]],["name/1892",[90,58.866]],["parent/1892",[650,5.481]],["name/1893",[178,41.414]],["parent/1893",[650,5.481]],["name/1894",[648,66.751]],["parent/1894",[650,5.481]],["name/1895",[649,66.751]],["parent/1895",[650,5.481]],["name/1896",[651,66.751]],["parent/1896",[]],["name/1897",[90,58.866]],["parent/1897",[651,6.216]],["name/1898",[652,71.859]],["parent/1898",[]],["name/1899",[653,50.656]],["parent/1899",[]],["name/1900",[109,32.031]],["parent/1900",[653,4.717]],["name/1901",[104,33.078]],["parent/1901",[653,4.717]],["name/1902",[107,42.772]],["parent/1902",[653,4.717]],["name/1903",[606,66.751]],["parent/1903",[653,4.717]],["name/1904",[654,71.859]],["parent/1904",[653,4.717]],["name/1905",[655,71.859]],["parent/1905",[653,4.717]],["name/1906",[543,53.401]],["parent/1906",[653,4.717]],["name/1907",[656,71.859]],["parent/1907",[653,4.717]],["name/1908",[657,71.859]],["parent/1908",[653,4.717]],["name/1909",[658,71.859]],["parent/1909",[653,4.717]],["name/1910",[286,51.49]],["parent/1910",[653,4.717]],["name/1911",[659,60.873]],["parent/1911",[]],["name/1912",[109,32.031]],["parent/1912",[659,5.668]],["name/1913",[155,39.94]],["parent/1913",[659,5.668]],["name/1914",[163,46.209]],["parent/1914",[659,5.668]],["name/1915",[660,71.859]],["parent/1915",[]],["name/1916",[661,58.866]],["parent/1916",[]],["name/1917",[176,43.927]],["parent/1917",[661,5.481]],["name/1918",[662,71.859]],["parent/1918",[661,5.481]],["name/1919",[663,71.859]],["parent/1919",[661,5.481]],["name/1920",[664,71.859]],["parent/1920",[661,5.481]],["name/1921",[665,71.859]],["parent/1921",[]],["name/1922",[666,71.859]],["parent/1922",[]],["name/1923",[667,71.859]],["parent/1923",[]],["name/1924",[668,71.859]],["parent/1924",[]],["name/1925",[669,71.859]],["parent/1925",[]],["name/1926",[670,60.873]],["parent/1926",[]],["name/1927",[178,41.414]],["parent/1927",[670,5.668]],["name/1928",[286,51.49]],["parent/1928",[670,5.668]],["name/1929",[638,66.751]],["parent/1929",[670,5.668]],["name/1930",[671,55.765]],["parent/1930",[]],["name/1931",[178,41.414]],["parent/1931",[671,5.193]],["name/1932",[286,51.49]],["parent/1932",[671,5.193]],["name/1933",[574,58.866]],["parent/1933",[671,5.193]],["name/1934",[634,60.873]],["parent/1934",[671,5.193]],["name/1935",[610,58.866]],["parent/1935",[671,5.193]],["name/1936",[563,53.401]],["parent/1936",[671,5.193]],["name/1937",[672,54.513]],["parent/1937",[]],["name/1938",[178,41.414]],["parent/1938",[672,5.076]],["name/1939",[574,58.866]],["parent/1939",[672,5.076]],["name/1940",[575,63.386]],["parent/1940",[672,5.076]],["name/1941",[286,51.49]],["parent/1941",[672,5.076]],["name/1942",[634,60.873]],["parent/1942",[672,5.076]],["name/1943",[610,58.866]],["parent/1943",[672,5.076]],["name/1944",[563,53.401]],["parent/1944",[672,5.076]],["name/1945",[673,58.866]],["parent/1945",[]],["name/1946",[178,41.414]],["parent/1946",[673,5.481]],["name/1947",[576,63.386]],["parent/1947",[673,5.481]],["name/1948",[577,63.386]],["parent/1948",[673,5.481]],["name/1949",[286,51.49]],["parent/1949",[673,5.481]],["name/1950",[674,57.196]],["parent/1950",[]],["name/1951",[178,41.414]],["parent/1951",[674,5.326]],["name/1952",[578,63.386]],["parent/1952",[674,5.326]],["name/1953",[579,63.386]],["parent/1953",[674,5.326]],["name/1954",[580,63.386]],["parent/1954",[674,5.326]],["name/1955",[286,51.49]],["parent/1955",[674,5.326]],["name/1956",[675,58.866]],["parent/1956",[]],["name/1957",[178,41.414]],["parent/1957",[675,5.481]],["name/1958",[636,66.751]],["parent/1958",[675,5.481]],["name/1959",[637,66.751]],["parent/1959",[675,5.481]],["name/1960",[286,51.49]],["parent/1960",[675,5.481]],["name/1961",[676,71.859]],["parent/1961",[]],["name/1962",[677,53.401]],["parent/1962",[]],["name/1963",[678,66.751]],["parent/1963",[677,4.973]],["name/1964",[679,71.859]],["parent/1964",[677,4.973]],["name/1965",[680,71.859]],["parent/1965",[677,4.973]],["name/1966",[681,71.859]],["parent/1966",[677,4.973]],["name/1967",[215,57.196]],["parent/1967",[677,4.973]],["name/1968",[682,71.859]],["parent/1968",[677,4.973]],["name/1969",[683,66.751]],["parent/1969",[677,4.973]],["name/1970",[72,63.386]],["parent/1970",[677,4.973]],["name/1971",[684,71.859]],["parent/1971",[]],["name/1972",[685,54.513]],["parent/1972",[]],["name/1973",[678,66.751]],["parent/1973",[685,5.076]],["name/1974",[686,71.859]],["parent/1974",[685,5.076]],["name/1975",[687,71.859]],["parent/1975",[685,5.076]],["name/1976",[688,71.859]],["parent/1976",[685,5.076]],["name/1977",[689,71.859]],["parent/1977",[685,5.076]],["name/1978",[683,66.751]],["parent/1978",[685,5.076]],["name/1979",[72,63.386]],["parent/1979",[685,5.076]]],"invertedIndex":[["__type",{"_index":114,"name":{"209":{},"217":{},"219":{},"227":{},"231":{},"235":{},"242":{},"258":{},"313":{},"327":{},"347":{},"356":{},"359":{},"369":{},"412":{},"442":{},"445":{},"457":{},"474":{},"481":{},"484":{},"521":{},"537":{},"553":{},"567":{},"577":{},"580":{},"595":{},"600":{},"603":{},"608":{},"638":{},"677":{},"685":{},"729":{},"737":{},"758":{},"766":{},"786":{},"793":{},"816":{},"830":{},"839":{},"846":{},"863":{},"868":{},"897":{},"900":{},"903":{},"907":{},"925":{},"933":{},"969":{},"971":{},"979":{},"981":{},"989":{},"991":{},"1003":{},"1005":{},"1015":{},"1019":{},"1035":{},"1038":{},"1041":{},"1048":{},"1051":{},"1058":{},"1062":{},"1073":{},"1079":{},"1084":{},"1088":{},"1108":{},"1132":{},"1137":{},"1140":{},"1159":{},"1167":{},"1173":{},"1178":{},"1183":{},"1192":{},"1194":{},"1198":{},"1207":{},"1214":{},"1225":{},"1235":{},"1239":{},"1249":{},"1253":{},"1258":{},"1263":{},"1271":{},"1283":{},"1285":{},"1289":{},"1299":{},"1308":{},"1325":{},"1332":{},"1346":{},"1358":{},"1362":{},"1367":{},"1387":{},"1390":{},"1404":{},"1407":{},"1410":{},"1415":{},"1418":{},"1424":{},"1427":{},"1476":{},"1500":{},"1502":{},"1518":{},"1520":{},"1538":{},"1554":{},"1568":{},"1571":{},"1640":{},"1651":{},"1673":{},"1682":{},"1695":{},"1699":{},"1709":{},"1712":{},"1715":{},"1733":{},"1741":{},"1786":{},"1807":{},"1813":{},"1823":{},"1827":{}},"parent":{}}],["action",{"_index":352,"name":{"765":{},"785":{}},"parent":{}}],["active",{"_index":316,"name":{"692":{},"763":{},"770":{},"853":{},"940":{},"1093":{},"1189":{},"1279":{},"1322":{},"1342":{},"1384":{}},"parent":{}}],["activities",{"_index":446,"name":{"1122":{}},"parent":{}}],["activity_duration_after_publishing",{"_index":310,"name":{"683":{},"844":{},"931":{}},"parent":{}}],["addcertainvoucher",{"_index":9,"name":{"11":{}},"parent":{}}],["additional_info",{"_index":437,"name":{"1094":{},"1190":{},"1280":{},"1343":{},"1381":{}},"parent":{}}],["addpoints",{"_index":45,"name":{"71":{}},"parent":{}}],["address",{"_index":113,"name":{"208":{},"257":{}},"parent":{}}],["addvoucher",{"_index":8,"name":{"10":{}},"parent":{}}],["after",{"_index":248,"name":{"459":{},"1060":{},"1064":{},"1359":{},"1363":{}},"parent":{}}],["aggregated_quantity_limit",{"_index":658,"name":{"1909":{}},"parent":{}}],["amount",{"_index":176,"name":{"305":{},"307":{},"322":{},"348":{},"360":{},"413":{},"443":{},"482":{},"515":{},"571":{},"596":{},"614":{},"796":{},"872":{},"1004":{},"1143":{},"1152":{},"1250":{},"1347":{},"1727":{},"1753":{},"1763":{},"1782":{},"1917":{}},"parent":{}}],["amount_limit",{"_index":580,"name":{"1628":{},"1854":{},"1954":{}},"parent":{}}],["amount_off",{"_index":576,"name":{"1624":{},"1850":{},"1947":{}},"parent":{}}],["amount_off_formula",{"_index":577,"name":{"1625":{},"1851":{},"1948":{}},"parent":{}}],["amount_to_go",{"_index":133,"name":{"229":{}},"parent":{}}],["apiurl",{"_index":678,"name":{"1963":{},"1973":{}},"parent":{}}],["apiversion",{"_index":681,"name":{"1966":{}},"parent":{}}],["applicable_to",{"_index":201,"name":{"345":{},"588":{},"1435":{},"1878":{}},"parent":{}}],["applicableto",{"_index":653,"name":{"1899":{}},"parent":{"1900":{},"1901":{},"1902":{},"1903":{},"1904":{},"1905":{},"1906":{},"1907":{},"1908":{},"1909":{},"1910":{}}}],["applicabletoeffect",{"_index":652,"name":{"1898":{}},"parent":{}}],["applicabletoresultlist",{"_index":659,"name":{"1911":{}},"parent":{"1912":{},"1913":{},"1914":{}}}],["applicationid",{"_index":679,"name":{"1964":{}},"parent":{}}],["applied_discount_amount",{"_index":289,"name":{"617":{},"1730":{},"1768":{}},"parent":{}}],["assets",{"_index":456,"name":{"1191":{},"1282":{}},"parent":{}}],["assignment_id",{"_index":261,"name":{"522":{},"605":{},"1310":{},"1527":{}},"parent":{}}],["async_action_id",{"_index":341,"name":{"738":{},"1405":{},"1408":{},"1411":{},"1569":{},"1572":{}},"parent":{}}],["attributes",{"_index":519,"name":{"1475":{},"1533":{},"1548":{},"1558":{},"1586":{},"1596":{}},"parent":{}}],["audiencerulesonly",{"_index":323,"name":{"703":{},"876":{},"1313":{}},"parent":{}}],["auto_join",{"_index":307,"name":{"672":{},"836":{},"920":{}},"parent":{}}],["automation_id",{"_index":422,"name":{"1024":{}},"parent":{}}],["average_amount",{"_index":139,"name":{"238":{}},"parent":{}}],["balance",{"_index":0,"name":{"0":{},"182":{},"309":{},"361":{},"597":{},"905":{},"1075":{},"1128":{},"1169":{},"1237":{},"1251":{}},"parent":{"1":{},"2":{}}}],["balancecreateparams",{"_index":175,"name":{"304":{}},"parent":{"305":{}}}],["balancecreateresponse",{"_index":177,"name":{"306":{}},"parent":{"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{}}}],["balancecreateresponse.__type",{"_index":180,"name":{},"parent":{"314":{},"315":{}}}],["banner",{"_index":347,"name":{"748":{},"756":{},"784":{},"814":{},"1020":{},"1036":{},"1049":{}},"parent":{}}],["barcode",{"_index":459,"name":{"1197":{},"1288":{}},"parent":{}}],["basepath",{"_index":67,"name":{"120":{}},"parent":{}}],["baseurl",{"_index":66,"name":{"119":{}},"parent":{}}],["before",{"_index":246,"name":{"458":{},"1059":{},"1063":{},"1360":{},"1364":{}},"parent":{}}],["birthdate",{"_index":148,"name":{"266":{}},"parent":{}}],["bulkupdate",{"_index":51,"name":{"86":{},"192":{}},"parent":{}}],["bulkupdatemetadata",{"_index":50,"name":{"85":{},"191":{}},"parent":{}}],["campaign",{"_index":219,"name":{"391":{},"454":{},"476":{},"590":{},"757":{},"815":{},"1068":{},"1162":{},"1244":{},"1355":{},"1441":{},"1516":{},"1633":{},"1650":{}},"parent":{}}],["campaign_id",{"_index":161,"name":{"287":{},"354":{},"479":{},"591":{},"1069":{},"1163":{}},"parent":{}}],["campaign_type",{"_index":160,"name":{"286":{},"669":{},"727":{},"824":{},"859":{},"917":{}},"parent":{}}],["campaignresponse",{"_index":305,"name":{"666":{}},"parent":{"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"682":{},"683":{},"684":{},"685":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{}}}],["campaignresponse.__type",{"_index":309,"name":{},"parent":{"678":{},"679":{},"680":{},"681":{},"686":{},"687":{}}}],["campaigns",{"_index":3,"name":{"3":{},"245":{},"735":{},"889":{}},"parent":{"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{}}}],["campaignsaddcertainvoucherparams",{"_index":331,"name":{"720":{}},"parent":{}}],["campaignsaddcertainvoucherresponse",{"_index":333,"name":{"722":{}},"parent":{}}],["campaignsaddvoucherbody",{"_index":329,"name":{"717":{}},"parent":{}}],["campaignsaddvoucherparams",{"_index":330,"name":{"718":{}},"parent":{"719":{}}}],["campaignsaddvoucherresponse",{"_index":332,"name":{"721":{}},"parent":{}}],["campaignscreatecampaign",{"_index":325,"name":{"713":{}},"parent":{}}],["campaignscreatecampaignresponse",{"_index":343,"name":{"739":{}},"parent":{}}],["campaignsdeleteparams",{"_index":327,"name":{"715":{}},"parent":{"716":{}}}],["campaignsgetcampaignresponse",{"_index":345,"name":{"741":{}},"parent":{}}],["campaignsimportvouchers",{"_index":334,"name":{"723":{}},"parent":{}}],["campaignslistparams",{"_index":335,"name":{"724":{}},"parent":{"725":{},"726":{},"727":{},"728":{},"729":{}}}],["campaignslistparams.__type",{"_index":338,"name":{},"parent":{"730":{}}}],["campaignslistresponse",{"_index":339,"name":{"731":{}},"parent":{"732":{},"733":{},"734":{},"735":{}}}],["campaignsqualificationsbody",{"_index":321,"name":{"699":{}},"parent":{"700":{},"701":{}}}],["campaignsqualificationsparams",{"_index":322,"name":{"702":{}},"parent":{"703":{},"704":{},"705":{}}}],["campaignsqualificationsresponse",{"_index":324,"name":{"706":{}},"parent":{"707":{},"708":{},"709":{},"710":{},"711":{},"712":{}}}],["campaignsupdatecampaign",{"_index":326,"name":{"714":{}},"parent":{}}],["campaignsupdatecampaignresponse",{"_index":344,"name":{"740":{}},"parent":{}}],["campaignsvouchersimportresponse",{"_index":340,"name":{"736":{}},"parent":{"737":{}}}],["campaignsvouchersimportresponse.__type",{"_index":342,"name":{},"parent":{"738":{}}}],["category",{"_index":306,"name":{"671":{},"835":{},"919":{},"1070":{},"1164":{},"1245":{},"1339":{},"1354":{},"1378":{},"1801":{}},"parent":{}}],["cause",{"_index":98,"name":{"178":{}},"parent":{}}],["channel",{"_index":215,"name":{"384":{},"1106":{},"1655":{},"1664":{},"1706":{},"1967":{}},"parent":{}}],["charset",{"_index":385,"name":{"909":{},"1227":{},"1327":{},"1392":{}},"parent":{}}],["city",{"_index":115,"name":{"210":{},"259":{},"271":{}},"parent":{}}],["clientapplicationid",{"_index":686,"name":{"1974":{}},"parent":{}}],["clientsecretkey",{"_index":687,"name":{"1975":{}},"parent":{}}],["clientside",{"_index":12,"name":{"14":{}},"parent":{"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{}}}],["clientsideconsentslistresponse",{"_index":233,"name":{"415":{}},"parent":{}}],["clientsidecustomerscreateparams",{"_index":182,"name":{"317":{}},"parent":{}}],["clientsidecustomerscreateresponse",{"_index":183,"name":{"318":{}},"parent":{}}],["clientsidecustomersupdateconsentsbody",{"_index":181,"name":{"316":{}},"parent":{}}],["clientsidelistvouchersparams",{"_index":195,"name":{"334":{}},"parent":{}}],["clientsidelistvouchersresponse",{"_index":197,"name":{"336":{}},"parent":{"337":{},"338":{},"339":{},"340":{}}}],["clientsidepublishcampaign",{"_index":220,"name":{"392":{}},"parent":{"393":{},"394":{}}}],["clientsidepublishpayload",{"_index":214,"name":{"382":{}},"parent":{"383":{},"384":{},"385":{},"386":{},"387":{}}}],["clientsidepublishpreparedpayload",{"_index":216,"name":{"388":{}},"parent":{}}],["clientsidepublishqueryparams",{"_index":217,"name":{"389":{}},"parent":{"390":{},"391":{}}}],["clientsidepublishresponse",{"_index":222,"name":{"395":{}},"parent":{}}],["clientsideredeemorder",{"_index":229,"name":{"409":{}},"parent":{}}],["clientsideredeempayload",{"_index":206,"name":{"363":{}},"parent":{"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"371":{}}}],["clientsideredeempayload.__type",{"_index":207,"name":{},"parent":{"370":{}}}],["clientsideredeemresponse",{"_index":209,"name":{"372":{}},"parent":{"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{},"381":{}}}],["clientsideredeemwidgetpayload",{"_index":230,"name":{"410":{}},"parent":{"411":{},"412":{}}}],["clientsideredeemwidgetpayload.__type",{"_index":231,"name":{},"parent":{"413":{}}}],["clientsideredemptionsredeemstackableparams",{"_index":236,"name":{"418":{}},"parent":{}}],["clientsideredemptionsredeemstackableresponse",{"_index":237,"name":{"419":{}},"parent":{}}],["clientsidetrackcustomer",{"_index":232,"name":{"414":{}},"parent":{}}],["clientsidetrackloyalty",{"_index":223,"name":{"396":{}},"parent":{"397":{}}}],["clientsidetrackpayload",{"_index":225,"name":{"400":{}},"parent":{"401":{},"402":{},"403":{},"404":{},"405":{}}}],["clientsidetrackreferral",{"_index":224,"name":{"398":{}},"parent":{"399":{}}}],["clientsidetrackresponse",{"_index":228,"name":{"406":{}},"parent":{"407":{},"408":{}}}],["clientsidevalidateparams",{"_index":184,"name":{"319":{}},"parent":{"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"329":{},"330":{},"331":{},"332":{},"333":{}}}],["clientsidevalidateparams.__type",{"_index":190,"name":{},"parent":{"328":{}}}],["clientsidevalidateresponse",{"_index":198,"name":{"341":{}},"parent":{"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"353":{},"354":{},"355":{},"356":{},"358":{},"359":{},"362":{}}}],["clientsidevalidateresponse.__type",{"_index":202,"name":{},"parent":{"348":{},"349":{},"350":{},"351":{},"352":{},"357":{},"360":{},"361":{}}}],["clientsidevalidationsvalidatestackableparams",{"_index":234,"name":{"416":{}},"parent":{}}],["clientsidevalidationvalidatestackableresponse",{"_index":235,"name":{"417":{}},"parent":{}}],["clientsidevoucherlisting",{"_index":196,"name":{"335":{}},"parent":{}}],["code",{"_index":89,"name":{"169":{},"320":{},"342":{},"397":{},"399":{},"475":{},"587":{},"636":{},"639":{},"1067":{},"1161":{},"1220":{},"1243":{},"1323":{},"1338":{},"1377":{},"1397":{},"1824":{},"1828":{}},"parent":{}}],["code_config",{"_index":383,"name":{"906":{},"1224":{},"1324":{},"1389":{}},"parent":{}}],["codes",{"_index":491,"name":{"1401":{}},"parent":{}}],["consent",{"_index":621,"name":{"1797":{}},"parent":{"1798":{},"1799":{},"1800":{},"1801":{},"1802":{},"1803":{},"1804":{}}}],["consents",{"_index":24,"name":{"27":{},"1812":{}},"parent":{"28":{},"29":{}}}],["consentslistresponse",{"_index":622,"name":{"1805":{}},"parent":{"1806":{},"1807":{},"1812":{},"1813":{}}}],["consentslistresponse.__type",{"_index":624,"name":{},"parent":{"1808":{},"1809":{},"1810":{},"1811":{},"1814":{},"1815":{},"1816":{},"1817":{}}}],["constructor",{"_index":1,"name":{"1":{},"4":{},"15":{},"28":{},"31":{},"41":{},"45":{},"48":{},"53":{},"74":{},"81":{},"95":{},"100":{},"109":{},"118":{},"135":{},"146":{},"152":{},"163":{},"168":{},"180":{}},"parent":{}}],["count",{"_index":221,"name":{"394":{},"1085":{},"1180":{},"1265":{},"1653":{}},"parent":{}}],["country",{"_index":120,"name":{"214":{},"263":{}},"parent":{}}],["create",{"_index":2,"name":{"2":{},"6":{},"32":{},"46":{},"49":{},"55":{},"75":{},"82":{},"97":{},"104":{},"137":{},"147":{},"153":{},"183":{}},"parent":{}}],["createassignment",{"_index":81,"name":{"142":{},"157":{}},"parent":{}}],["createcustomer",{"_index":19,"name":{"22":{}},"parent":{}}],["created_at",{"_index":144,"name":{"247":{},"456":{},"611":{},"690":{},"712":{},"851":{},"938":{},"983":{},"1010":{},"1057":{},"1204":{},"1296":{},"1357":{},"1429":{},"1448":{},"1479":{},"1504":{},"1549":{},"1600":{},"1660":{},"1679":{},"1704":{},"1760":{},"1802":{}},"parent":{}}],["createearningrule",{"_index":38,"name":{"64":{}},"parent":{}}],["createmember",{"_index":42,"name":{"68":{}},"parent":{}}],["createrewardassignments",{"_index":34,"name":{"60":{}},"parent":{}}],["createsku",{"_index":52,"name":{"89":{}},"parent":{}}],["credits",{"_index":281,"name":{"578":{},"1864":{},"1883":{}},"parent":{}}],["currency",{"_index":564,"name":{"1590":{},"1599":{}},"parent":{}}],["custom_event",{"_index":426,"name":{"1037":{}},"parent":{}}],["customer",{"_index":188,"name":{"325":{},"365":{},"385":{},"403":{},"422":{},"438":{},"455":{},"471":{},"502":{},"507":{},"519":{},"530":{},"546":{},"561":{},"565":{},"573":{},"625":{},"656":{},"700":{},"791":{},"866":{},"1107":{},"1154":{},"1305":{},"1356":{},"1634":{},"1656":{},"1667":{},"1752":{},"1774":{},"1785":{},"1820":{}},"parent":{}}],["customer_id",{"_index":211,"name":{"376":{},"432":{},"464":{},"512":{},"541":{},"556":{},"626":{},"647":{},"806":{},"1151":{},"1661":{}},"parent":{}}],["customeractivitieslistqueryparams",{"_index":158,"name":{"281":{}},"parent":{"282":{},"283":{},"284":{},"285":{},"286":{},"287":{}}}],["customeractivitieslistresponse",{"_index":162,"name":{"288":{}},"parent":{"289":{},"290":{},"291":{},"292":{}}}],["customerobject",{"_index":110,"name":{"201":{}},"parent":{"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"216":{},"217":{},"241":{},"242":{},"246":{},"247":{},"248":{}}}],["customerobject.__type",{"_index":116,"name":{},"parent":{"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"218":{},"219":{},"234":{},"235":{},"243":{},"244":{},"245":{}}}],["customerobject.__type.__type",{"_index":124,"name":{},"parent":{"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"230":{},"231":{},"236":{},"237":{},"238":{},"239":{},"240":{}}}],["customerobject.__type.__type.__type",{"_index":132,"name":{},"parent":{"228":{},"229":{},"232":{},"233":{}}}],["customerrequest",{"_index":146,"name":{"250":{}},"parent":{"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"265":{},"266":{}}}],["customerrequest.__type",{"_index":147,"name":{},"parent":{"259":{},"260":{},"261":{},"262":{},"263":{},"264":{}}}],["customers",{"_index":25,"name":{"30":{},"279":{},"1675":{}},"parent":{"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{}}}],["customerscommonlistrequest",{"_index":149,"name":{"267":{}},"parent":{"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{}}}],["customerscommonlistresponse",{"_index":154,"name":{"275":{}},"parent":{"276":{},"277":{},"278":{},"279":{},"280":{}}}],["customerscreatebody",{"_index":164,"name":{"293":{}},"parent":{}}],["customerscreateresponse",{"_index":165,"name":{"294":{}},"parent":{}}],["customersgetresponse",{"_index":166,"name":{"295":{}},"parent":{}}],["customerslistparams",{"_index":167,"name":{"296":{}},"parent":{}}],["customerslistresponse",{"_index":168,"name":{"297":{}},"parent":{}}],["customersscrollparams",{"_index":169,"name":{"298":{}},"parent":{}}],["customersscrollresponse",{"_index":170,"name":{"299":{}},"parent":{}}],["customersscrollyield",{"_index":171,"name":{"300":{}},"parent":{}}],["customersupdateconsentsbody",{"_index":174,"name":{"303":{}},"parent":{}}],["customersupdateparams",{"_index":172,"name":{"301":{}},"parent":{}}],["customersupdateresponse",{"_index":173,"name":{"302":{}},"parent":{}}],["customerunconfirmed",{"_index":145,"name":{"249":{}},"parent":{}}],["customheaders",{"_index":683,"name":{"1969":{},"1978":{}},"parent":{}}],["dangerouslysetsecretkeyinbrowser",{"_index":682,"name":{"1968":{}},"parent":{}}],["data",{"_index":163,"name":{"292":{},"678":{},"710":{},"840":{},"926":{},"965":{},"1029":{},"1218":{},"1303":{},"1320":{},"1458":{},"1466":{},"1487":{},"1512":{},"1541":{},"1691":{},"1811":{},"1817":{},"1914":{}},"parent":{}}],["data_ref",{"_index":156,"name":{"278":{},"291":{},"339":{},"489":{},"494":{},"681":{},"709":{},"734":{},"777":{},"832":{},"843":{},"888":{},"929":{},"964":{},"1028":{},"1102":{},"1120":{},"1217":{},"1266":{},"1275":{},"1302":{},"1319":{},"1372":{},"1457":{},"1465":{},"1486":{},"1514":{},"1581":{},"1645":{},"1690":{},"1795":{},"1810":{},"1816":{}},"parent":{}}],["date",{"_index":210,"name":{"375":{},"431":{},"463":{},"511":{},"540":{},"555":{},"805":{},"1150":{}},"parent":{}}],["delete",{"_index":7,"name":{"9":{},"37":{},"51":{},"58":{},"87":{},"107":{},"133":{},"140":{},"149":{},"156":{},"186":{}},"parent":{}}],["deleteassignment",{"_index":83,"name":{"144":{},"158":{}},"parent":{}}],["deleteearningrule",{"_index":40,"name":{"66":{}},"parent":{}}],["deleterewardassignment",{"_index":36,"name":{"62":{}},"parent":{}}],["deletesku",{"_index":55,"name":{"92":{}},"parent":{}}],["description",{"_index":112,"name":{"207":{},"256":{},"674":{},"826":{},"922":{},"953":{},"1113":{},"1478":{},"1800":{}},"parent":{}}],["details",{"_index":91,"name":{"171":{},"642":{}},"parent":{}}],["disable",{"_index":101,"name":{"189":{}},"parent":{}}],["discount",{"_index":200,"name":{"344":{},"593":{},"749":{},"767":{},"787":{},"1233":{},"1247":{},"1380":{},"1869":{}},"parent":{}}],["discount_amount",{"_index":203,"name":{"349":{},"616":{},"1728":{},"1754":{},"1765":{},"1783":{}},"parent":{}}],["discount_quantity",{"_index":607,"name":{"1723":{}},"parent":{}}],["discountamount",{"_index":673,"name":{"1945":{}},"parent":{"1946":{},"1947":{},"1948":{},"1949":{}}}],["discountamountvoucherseffecttypes",{"_index":667,"name":{"1923":{}},"parent":{}}],["discountfixed",{"_index":675,"name":{"1956":{}},"parent":{"1957":{},"1958":{},"1959":{},"1960":{}}}],["discountfixedvoucherseffecttypes",{"_index":669,"name":{"1925":{}},"parent":{}}],["discountpercent",{"_index":674,"name":{"1950":{}},"parent":{"1951":{},"1952":{},"1953":{},"1954":{},"1955":{}}}],["discountpercentvoucherseffecttypes",{"_index":668,"name":{"1924":{}},"parent":{}}],["discountunit",{"_index":672,"name":{"1937":{}},"parent":{"1938":{},"1939":{},"1940":{},"1941":{},"1942":{},"1943":{},"1944":{}}}],["discountunitmultiple",{"_index":670,"name":{"1926":{}},"parent":{"1927":{},"1928":{},"1929":{}}}],["discountunitmultipleoneunit",{"_index":671,"name":{"1930":{}},"parent":{"1931":{},"1932":{},"1933":{},"1934":{},"1935":{},"1936":{}}}],["discountunitvoucherseffecttypes",{"_index":666,"name":{"1922":{}},"parent":{}}],["discountvoucherseffecttypes",{"_index":665,"name":{"1921":{}},"parent":{}}],["discountvoucherstypes",{"_index":660,"name":{"1915":{}},"parent":{}}],["discountvoucherstypesenum",{"_index":661,"name":{"1916":{}},"parent":{"1917":{},"1918":{},"1919":{},"1920":{}}}],["distributions",{"_index":28,"name":{"40":{}},"parent":{"41":{},"42":{},"43":{}}}],["distributionspublicationscreateparams",{"_index":585,"name":{"1647":{}},"parent":{"1648":{},"1649":{},"1650":{},"1651":{},"1654":{},"1655":{},"1656":{}}}],["distributionspublicationscreateparams.__type",{"_index":586,"name":{},"parent":{"1652":{},"1653":{}}}],["distributionspublicationscreateresponse",{"_index":587,"name":{"1657":{}},"parent":{"1658":{},"1659":{},"1660":{},"1661":{},"1662":{},"1663":{},"1664":{},"1665":{},"1666":{},"1667":{},"1668":{}}}],["distributionspublicationslistparams",{"_index":581,"name":{"1629":{}},"parent":{"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{},"1638":{},"1639":{},"1640":{}}}],["distributionspublicationslistparams.__type",{"_index":583,"name":{},"parent":{"1641":{}}}],["distributionspublicationslistresponse",{"_index":584,"name":{"1642":{}},"parent":{"1643":{},"1644":{},"1645":{},"1646":{}}}],["duration",{"_index":313,"name":{"687":{},"848":{},"935":{},"1081":{},"1175":{},"1260":{}},"parent":{}}],["effect",{"_index":286,"name":{"598":{},"1623":{},"1842":{},"1849":{},"1910":{},"1928":{},"1932":{},"1941":{},"1949":{},"1955":{},"1960":{}},"parent":{}}],["email",{"_index":106,"name":{"197":{},"205":{},"254":{},"270":{},"1111":{}},"parent":{}}],["enable",{"_index":100,"name":{"188":{}},"parent":{}}],["entries",{"_index":436,"name":{"1086":{},"1267":{}},"parent":{}}],["error",{"_index":297,"name":{"637":{},"1414":{},"1423":{},"1872":{}},"parent":{}}],["event",{"_index":226,"name":{"401":{},"1017":{},"1031":{},"1819":{}},"parent":{}}],["events",{"_index":31,"name":{"44":{}},"parent":{"45":{},"46":{}}}],["eventsparams",{"_index":625,"name":{"1818":{}},"parent":{"1819":{},"1820":{},"1821":{},"1822":{},"1823":{},"1826":{},"1827":{}}}],["eventsparams.__type",{"_index":626,"name":{},"parent":{"1824":{},"1825":{},"1828":{}}}],["eventsresponse",{"_index":627,"name":{"1829":{}},"parent":{"1830":{},"1831":{}}}],["every",{"_index":413,"name":{"1006":{}},"parent":{}}],["expand",{"_index":629,"name":{"1833":{}},"parent":{}}],["expiration_date",{"_index":295,"name":{"632":{},"682":{},"762":{},"828":{},"861":{},"893":{},"930":{},"951":{},"1077":{},"1171":{},"1256":{},"1341":{},"1383":{}},"parent":{}}],["exported_object",{"_index":596,"name":{"1693":{},"1707":{}},"parent":{}}],["exportresource",{"_index":595,"name":{"1692":{}},"parent":{"1693":{},"1694":{},"1695":{}}}],["exportresource.__type",{"_index":597,"name":{},"parent":{"1696":{},"1697":{},"1698":{},"1699":{}}}],["exportresource.__type.__type",{"_index":599,"name":{},"parent":{"1700":{}}}],["exports",{"_index":30,"name":{"43":{},"47":{}},"parent":{"48":{},"49":{},"50":{},"51":{}}}],["exportscreateresponse",{"_index":600,"name":{"1701":{}},"parent":{"1702":{},"1703":{},"1704":{},"1705":{},"1706":{},"1707":{},"1708":{},"1709":{},"1714":{},"1715":{}}}],["exportscreateresponse.__type",{"_index":601,"name":{},"parent":{"1710":{},"1711":{},"1712":{},"1716":{}}}],["exportscreateresponse.__type.__type",{"_index":602,"name":{},"parent":{"1713":{}}}],["exportsgetresponse",{"_index":603,"name":{"1717":{}},"parent":{}}],["exposeerrorcause",{"_index":72,"name":{"125":{},"1970":{},"1979":{}},"parent":{}}],["failure_code",{"_index":243,"name":{"448":{},"469":{}},"parent":{}}],["failure_message",{"_index":244,"name":{"449":{},"470":{}},"parent":{}}],["fields",{"_index":598,"name":{"1697":{},"1710":{}},"parent":{}}],["filter",{"_index":589,"name":{"1672":{},"1681":{}},"parent":{}}],["filters",{"_index":336,"name":{"728":{},"877":{},"1366":{},"1639":{},"1698":{},"1711":{}},"parent":{}}],["fixed",{"_index":664,"name":{"1920":{}},"parent":{}}],["fixed_amount",{"_index":636,"name":{"1855":{},"1958":{}},"parent":{}}],["fixed_amount_formula",{"_index":637,"name":{"1856":{},"1959":{}},"parent":{}}],["force",{"_index":328,"name":{"716":{},"957":{},"1350":{},"1574":{},"1606":{}},"parent":{}}],["get",{"_index":6,"name":{"8":{},"33":{},"50":{},"56":{},"76":{},"83":{},"103":{},"112":{},"130":{},"138":{},"148":{},"154":{},"184":{}},"parent":{}}],["getforvoucher",{"_index":62,"name":{"114":{}},"parent":{}}],["getlastresponseheaders",{"_index":74,"name":{"127":{}},"parent":{}}],["getmember",{"_index":43,"name":{"69":{}},"parent":{}}],["getmemberactivities",{"_index":44,"name":{"70":{}},"parent":{}}],["getsku",{"_index":53,"name":{"90":{}},"parent":{}}],["gift",{"_index":130,"name":{"226":{},"358":{},"426":{},"441":{},"480":{},"576":{},"594":{},"1248":{},"1345":{},"1839":{},"1870":{}},"parent":{}}],["giftredemptionparams",{"_index":644,"name":{"1882":{}},"parent":{"1883":{}}}],["groups",{"_index":623,"name":{"1806":{}},"parent":{}}],["has_more",{"_index":157,"name":{"280":{},"779":{},"834":{}},"parent":{}}],["headers",{"_index":68,"name":{"121":{}},"parent":{}}],["hierarchy",{"_index":348,"name":{"750":{},"768":{}},"parent":{}}],["holder",{"_index":460,"name":{"1206":{}},"parent":{}}],["holder_id",{"_index":439,"name":{"1097":{},"1203":{},"1294":{}},"parent":{}}],["id",{"_index":104,"name":{"195":{},"202":{},"251":{},"315":{},"328":{},"370":{},"373":{},"429":{},"461":{},"477":{},"509":{},"538":{},"554":{},"568":{},"581":{},"604":{},"609":{},"667":{},"711":{},"746":{},"753":{},"759":{},"794":{},"803":{},"812":{},"817":{},"822":{},"869":{},"915":{},"949":{},"974":{},"987":{},"1009":{},"1016":{},"1042":{},"1045":{},"1066":{},"1109":{},"1134":{},"1138":{},"1141":{},"1148":{},"1160":{},"1195":{},"1199":{},"1208":{},"1242":{},"1286":{},"1290":{},"1309":{},"1421":{},"1444":{},"1471":{},"1495":{},"1528":{},"1543":{},"1556":{},"1592":{},"1612":{},"1616":{},"1658":{},"1677":{},"1702":{},"1734":{},"1742":{},"1758":{},"1778":{},"1787":{},"1798":{},"1837":{},"1875":{},"1901":{}},"parent":{}}],["image_url",{"_index":520,"name":{"1477":{},"1535":{},"1550":{},"1560":{},"1589":{}},"parent":{}}],["import",{"_index":48,"name":{"79":{},"190":{}},"parent":{}}],["importvouchers",{"_index":10,"name":{"12":{}},"parent":{}}],["inapplicable_to",{"_index":284,"name":{"589":{},"1879":{}},"parent":{}}],["initial_amount",{"_index":288,"name":{"615":{},"1729":{},"1764":{}},"parent":{}}],["initial_quantity",{"_index":608,"name":{"1724":{}},"parent":{}}],["interval",{"_index":312,"name":{"686":{},"847":{},"934":{},"1080":{},"1174":{},"1259":{}},"parent":{}}],["is_available",{"_index":354,"name":{"772":{}},"parent":{}}],["is_referral_code",{"_index":438,"name":{"1096":{},"1201":{},"1232":{},"1292":{},"1638":{}},"parent":{}}],["islastreponseheadersset",{"_index":73,"name":{"126":{}},"parent":{}}],["islastresponseheadersset",{"_index":71,"name":{"124":{}},"parent":{}}],["items",{"_index":186,"name":{"323":{},"352":{},"572":{},"623":{},"797":{},"871":{},"1144":{},"1755":{},"1772":{},"1781":{}},"parent":{}}],["items_applied_discount_amount",{"_index":291,"name":{"621":{},"1769":{}},"parent":{}}],["items_discount_amount",{"_index":290,"name":{"618":{},"1766":{}},"parent":{}}],["join_once",{"_index":218,"name":{"390":{},"673":{},"837":{},"921":{},"1648":{}},"parent":{}}],["junction",{"_index":337,"name":{"730":{},"1368":{},"1641":{},"1674":{},"1683":{},"1700":{},"1713":{}},"parent":{}}],["key",{"_index":90,"name":{"170":{},"640":{},"1887":{},"1892":{},"1897":{}},"parent":{}}],["last_order_amount",{"_index":140,"name":{"239":{}},"parent":{}}],["last_order_date",{"_index":141,"name":{"240":{}},"parent":{}}],["lastresponseheaders",{"_index":70,"name":{"123":{}},"parent":{}}],["length",{"_index":384,"name":{"908":{},"1226":{},"1326":{},"1391":{}},"parent":{}}],["limit",{"_index":150,"name":{"268":{},"282":{},"451":{},"705":{},"725":{},"773":{},"883":{},"959":{},"995":{},"1055":{},"1315":{},"1352":{},"1452":{},"1460":{},"1469":{},"1508":{},"1577":{},"1630":{},"1790":{}},"parent":{}}],["line_1",{"_index":118,"name":{"212":{},"261":{}},"parent":{}}],["line_2",{"_index":119,"name":{"213":{},"262":{}},"parent":{}}],["list",{"_index":11,"name":{"13":{},"29":{},"34":{},"54":{},"78":{},"88":{},"102":{},"113":{},"136":{},"150":{},"160":{},"187":{}},"parent":{}}],["listactivities",{"_index":27,"name":{"39":{}},"parent":{}}],["listall",{"_index":60,"name":{"101":{}},"parent":{}}],["listassignments",{"_index":80,"name":{"141":{},"161":{}},"parent":{}}],["listconsents",{"_index":20,"name":{"23":{}},"parent":{}}],["listearningrules",{"_index":37,"name":{"63":{}},"parent":{}}],["listmembers",{"_index":41,"name":{"67":{}},"parent":{}}],["listrewardassignments",{"_index":33,"name":{"59":{}},"parent":{}}],["listskus",{"_index":56,"name":{"93":{}},"parent":{}}],["listvouchers",{"_index":18,"name":{"21":{}},"parent":{}}],["logic",{"_index":501,"name":{"1419":{},"1428":{}},"parent":{}}],["loyalties",{"_index":32,"name":{"52":{}},"parent":{"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{}}}],["loyaltiesaddpoints",{"_index":447,"name":{"1123":{}},"parent":{"1124":{}}}],["loyaltiesaddpointsresponse",{"_index":448,"name":{"1125":{}},"parent":{"1126":{},"1127":{},"1128":{},"1129":{},"1130":{},"1131":{},"1132":{}}}],["loyaltiesaddpointsresponse.__type",{"_index":449,"name":{},"parent":{"1133":{},"1134":{}}}],["loyaltiescreatecampaign",{"_index":380,"name":{"890":{}},"parent":{"891":{},"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"913":{}}}],["loyaltiescreatecampaign.__type",{"_index":381,"name":{},"parent":{"898":{},"899":{},"900":{},"902":{},"903":{},"906":{},"907":{}}}],["loyaltiescreatecampaign.__type.__type",{"_index":382,"name":{},"parent":{"901":{},"904":{},"905":{},"908":{},"909":{},"910":{},"911":{},"912":{}}}],["loyaltiescreatecampaignresponse",{"_index":389,"name":{"914":{}},"parent":{"915":{},"916":{},"917":{},"918":{},"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{},"930":{},"931":{},"932":{},"933":{},"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{},"943":{},"944":{},"945":{},"946":{}}}],["loyaltiescreatecampaignresponse.__type",{"_index":390,"name":{},"parent":{"926":{},"927":{},"928":{},"929":{},"934":{},"935":{}}}],["loyaltiescreateearningrule",{"_index":424,"name":{"1030":{}},"parent":{"1031":{},"1032":{},"1033":{},"1034":{},"1035":{},"1037":{},"1038":{},"1040":{},"1041":{}}}],["loyaltiescreateearningrule.__type",{"_index":425,"name":{},"parent":{"1036":{},"1039":{},"1042":{}}}],["loyaltiescreateearningruleresponse",{"_index":428,"name":{"1043":{}},"parent":{}}],["loyaltiescreatemember",{"_index":441,"name":{"1104":{}},"parent":{"1105":{},"1106":{},"1107":{},"1108":{},"1115":{}}}],["loyaltiescreatemember.__type",{"_index":442,"name":{},"parent":{"1109":{},"1110":{},"1111":{},"1112":{},"1113":{},"1114":{}}}],["loyaltiescreatememberresponse",{"_index":443,"name":{"1116":{}},"parent":{}}],["loyaltiescreaterewardassignmentresponse",{"_index":401,"name":{"973":{}},"parent":{"974":{},"975":{},"976":{},"977":{},"978":{},"979":{},"983":{},"984":{},"985":{}}}],["loyaltiescreaterewardassignmentresponse.__type",{"_index":403,"name":{},"parent":{"980":{},"981":{}}}],["loyaltiescreaterewardassignmentresponse.__type.__type",{"_index":404,"name":{},"parent":{"982":{}}}],["loyaltiescreaterewardassignments",{"_index":397,"name":{"966":{}},"parent":{"967":{},"968":{},"969":{}}}],["loyaltiescreaterewardassignments.__type",{"_index":399,"name":{},"parent":{"970":{},"971":{}}}],["loyaltiescreaterewardassignments.__type.__type",{"_index":400,"name":{},"parent":{"972":{}}}],["loyaltiesdeletecampaignparams",{"_index":394,"name":{"956":{}},"parent":{"957":{}}}],["loyaltiesearningrulesresponse",{"_index":415,"name":{"1008":{}},"parent":{"1009":{},"1010":{},"1011":{},"1012":{},"1013":{},"1014":{},"1015":{},"1017":{},"1018":{},"1019":{},"1023":{},"1024":{}}}],["loyaltiesearningrulesresponse.__type",{"_index":418,"name":{},"parent":{"1016":{},"1020":{},"1021":{},"1022":{}}}],["loyaltiesgetcampaignresponse",{"_index":391,"name":{"947":{}},"parent":{}}],["loyaltiesgetmemberactivitiesresponse",{"_index":445,"name":{"1118":{}},"parent":{"1119":{},"1120":{},"1121":{},"1122":{}}}],["loyaltiesgetmemberresponse",{"_index":444,"name":{"1117":{}},"parent":{}}],["loyaltieslistearningrulesparams",{"_index":409,"name":{"994":{}},"parent":{"995":{},"996":{}}}],["loyaltieslistearningrulesresponse",{"_index":423,"name":{"1025":{}},"parent":{"1026":{},"1027":{},"1028":{},"1029":{}}}],["loyaltieslistmembersparams",{"_index":432,"name":{"1054":{}},"parent":{"1055":{},"1056":{},"1057":{},"1058":{},"1061":{},"1062":{}}}],["loyaltieslistmembersparams.__type",{"_index":433,"name":{},"parent":{"1059":{},"1060":{},"1063":{},"1064":{}}}],["loyaltieslistmembersresponse",{"_index":440,"name":{"1099":{}},"parent":{"1100":{},"1101":{},"1102":{},"1103":{}}}],["loyaltieslistparams",{"_index":378,"name":{"882":{}},"parent":{"883":{},"884":{}}}],["loyaltieslistresponse",{"_index":379,"name":{"885":{}},"parent":{"886":{},"887":{},"888":{},"889":{}}}],["loyaltieslistrewardassignmentsparams",{"_index":395,"name":{"958":{}},"parent":{"959":{},"960":{}}}],["loyaltieslistrewardassignmentsresponse",{"_index":396,"name":{"961":{}},"parent":{"962":{},"963":{},"964":{},"965":{}}}],["loyaltiesredeemrewardparams",{"_index":450,"name":{"1135":{}},"parent":{"1136":{},"1137":{},"1139":{},"1140":{},"1146":{}}}],["loyaltiesredeemrewardparams.__type",{"_index":451,"name":{},"parent":{"1138":{},"1141":{},"1142":{},"1143":{},"1144":{},"1145":{}}}],["loyaltiesredeemrewardresponse",{"_index":452,"name":{"1147":{}},"parent":{"1148":{},"1149":{},"1150":{},"1151":{},"1152":{},"1153":{},"1154":{},"1155":{},"1156":{},"1157":{},"1158":{},"1159":{}}}],["loyaltiesredeemrewardresponse.__type",{"_index":453,"name":{},"parent":{"1160":{},"1161":{},"1162":{},"1163":{},"1164":{},"1165":{},"1166":{},"1167":{},"1170":{},"1171":{},"1172":{},"1173":{},"1176":{},"1177":{},"1178":{},"1182":{},"1183":{},"1189":{},"1190":{},"1191":{},"1192":{},"1201":{},"1202":{},"1203":{},"1204":{},"1205":{},"1206":{},"1207":{},"1212":{},"1213":{},"1214":{}}}],["loyaltiesredeemrewardresponse.__type.__type",{"_index":454,"name":{},"parent":{"1168":{},"1169":{},"1174":{},"1175":{},"1179":{},"1180":{},"1181":{},"1184":{},"1185":{},"1186":{},"1187":{},"1188":{},"1193":{},"1194":{},"1197":{},"1198":{},"1208":{},"1209":{},"1210":{},"1211":{},"1215":{},"1216":{},"1217":{},"1218":{}}}],["loyaltiesredeemrewardresponse.__type.__type.__type",{"_index":458,"name":{},"parent":{"1195":{},"1196":{},"1199":{},"1200":{}}}],["loyaltiesupdatecampaign",{"_index":392,"name":{"948":{}},"parent":{"949":{},"950":{},"951":{},"952":{},"953":{},"954":{}}}],["loyaltiesupdatecampaignresponse",{"_index":393,"name":{"955":{}},"parent":{}}],["loyaltiesupdateearningrule",{"_index":429,"name":{"1044":{}},"parent":{"1045":{},"1046":{},"1047":{},"1048":{},"1050":{},"1051":{}}}],["loyaltiesupdateearningrule.__type",{"_index":430,"name":{},"parent":{"1049":{},"1052":{}}}],["loyaltiesupdateearningruleresponse",{"_index":431,"name":{"1053":{}},"parent":{}}],["loyaltiesupdaterewardassignment",{"_index":405,"name":{"986":{}},"parent":{"987":{},"988":{},"989":{}}}],["loyaltiesupdaterewardassignment.__type",{"_index":406,"name":{},"parent":{"990":{},"991":{}}}],["loyaltiesupdaterewardassignment.__type.__type",{"_index":407,"name":{},"parent":{"992":{}}}],["loyaltiesupdaterewardassignmentresponse",{"_index":408,"name":{"993":{}},"parent":{}}],["loyaltiesvoucherresponse",{"_index":434,"name":{"1065":{}},"parent":{"1066":{},"1067":{},"1068":{},"1069":{},"1070":{},"1071":{},"1072":{},"1073":{},"1076":{},"1077":{},"1078":{},"1079":{},"1082":{},"1083":{},"1084":{},"1087":{},"1088":{},"1093":{},"1094":{},"1095":{},"1096":{},"1097":{},"1098":{}}}],["loyaltiesvoucherresponse.__type",{"_index":435,"name":{},"parent":{"1074":{},"1075":{},"1080":{},"1081":{},"1085":{},"1086":{},"1089":{},"1090":{},"1091":{},"1092":{}}}],["loyalty",{"_index":134,"name":{"230":{},"241":{},"355":{},"404":{},"599":{},"970":{},"980":{},"990":{},"1013":{},"1033":{},"1050":{},"1501":{},"1519":{},"1826":{}},"parent":{}}],["loyalty_card",{"_index":241,"name":{"444":{},"483":{},"902":{},"1072":{},"1166":{},"1234":{},"1252":{},"1871":{}},"parent":{}}],["loyaltyfixed",{"_index":410,"name":{"997":{}},"parent":{"998":{},"999":{}}}],["loyaltypointstransfer",{"_index":461,"name":{"1219":{}},"parent":{"1220":{},"1221":{}}}],["loyaltyproportional",{"_index":411,"name":{"1000":{}},"parent":{"1001":{},"1002":{},"1003":{}}}],["loyaltyproportional.__type",{"_index":412,"name":{},"parent":{"1004":{},"1005":{}}}],["loyaltyproportional.__type.__type",{"_index":414,"name":{},"parent":{"1006":{},"1007":{}}}],["message",{"_index":299,"name":{"641":{},"1416":{},"1425":{}},"parent":{}}],["metadata",{"_index":108,"name":{"199":{},"246":{},"255":{},"329":{},"367":{},"379":{},"387":{},"402":{},"424":{},"435":{},"467":{},"531":{},"543":{},"558":{},"575":{},"592":{},"624":{},"648":{},"657":{},"689":{},"744":{},"769":{},"788":{},"799":{},"800":{},"850":{},"873":{},"874":{},"913":{},"937":{},"952":{},"1095":{},"1112":{},"1115":{},"1145":{},"1146":{},"1210":{},"1281":{},"1311":{},"1344":{},"1385":{},"1398":{},"1402":{},"1534":{},"1551":{},"1561":{},"1565":{},"1587":{},"1597":{},"1663":{},"1680":{},"1738":{},"1748":{},"1756":{},"1773":{},"1784":{},"1821":{},"1881":{}},"parent":{}}],["name",{"_index":105,"name":{"196":{},"204":{},"253":{},"272":{},"393":{},"668":{},"747":{},"755":{},"783":{},"813":{},"823":{},"858":{},"891":{},"916":{},"1110":{},"1413":{},"1422":{},"1472":{},"1530":{},"1546":{},"1555":{},"1614":{},"1652":{},"1670":{},"1678":{},"1737":{},"1799":{}},"parent":{}}],["object",{"_index":109,"name":{"200":{},"248":{},"276":{},"289":{},"311":{},"337":{},"374":{},"407":{},"430":{},"462":{},"478":{},"487":{},"492":{},"510":{},"523":{},"539":{},"628":{},"679":{},"698":{},"707":{},"732":{},"751":{},"754":{},"760":{},"776":{},"804":{},"831":{},"841":{},"856":{},"886":{},"927":{},"946":{},"962":{},"985":{},"1023":{},"1026":{},"1100":{},"1119":{},"1130":{},"1149":{},"1179":{},"1184":{},"1211":{},"1212":{},"1215":{},"1264":{},"1272":{},"1297":{},"1300":{},"1317":{},"1370":{},"1431":{},"1450":{},"1455":{},"1463":{},"1481":{},"1484":{},"1506":{},"1513":{},"1539":{},"1545":{},"1579":{},"1601":{},"1608":{},"1643":{},"1659":{},"1685":{},"1688":{},"1703":{},"1747":{},"1775":{},"1793":{},"1804":{},"1808":{},"1814":{},"1830":{},"1836":{},"1876":{},"1900":{},"1912":{}},"parent":{}}],["object_id",{"_index":420,"name":{"1021":{}},"parent":{}}],["object_type",{"_index":421,"name":{"1022":{}},"parent":{}}],["options",{"_index":265,"name":{"526":{},"652":{}},"parent":{}}],["order",{"_index":152,"name":{"273":{},"283":{},"346":{},"366":{},"378":{},"411":{},"423":{},"434":{},"466":{},"529":{},"545":{},"549":{},"560":{},"563":{},"566":{},"607":{},"655":{},"662":{},"701":{},"704":{},"792":{},"808":{},"867":{},"1002":{},"1139":{},"1153":{},"1306":{},"1314":{},"1365":{},"1632":{},"1696":{},"1877":{}},"parent":{}}],["ordermetadata",{"_index":187,"name":{"324":{}},"parent":{}}],["orderobjectredemptions",{"_index":300,"name":{"650":{}},"parent":{}}],["orders",{"_index":47,"name":{"73":{},"234":{},"1796":{}},"parent":{"74":{},"75":{},"76":{},"77":{},"78":{},"79":{}}}],["orderscreate",{"_index":613,"name":{"1749":{}},"parent":{"1750":{},"1751":{},"1752":{},"1753":{},"1754":{},"1755":{},"1756":{}}}],["orderscreateresponse",{"_index":614,"name":{"1757":{}},"parent":{"1758":{},"1759":{},"1760":{},"1761":{},"1762":{},"1763":{},"1764":{},"1765":{},"1766":{},"1767":{},"1768":{},"1769":{},"1770":{},"1771":{},"1772":{},"1773":{},"1774":{},"1775":{}}}],["ordersgetresponse",{"_index":615,"name":{"1776":{}},"parent":{}}],["ordersitem",{"_index":604,"name":{"1718":{}},"parent":{"1719":{},"1720":{},"1721":{},"1722":{},"1723":{},"1724":{},"1725":{},"1726":{},"1727":{},"1728":{},"1729":{},"1730":{},"1731":{},"1732":{},"1733":{},"1740":{},"1741":{},"1747":{},"1748":{}}}],["ordersitem.__type",{"_index":611,"name":{},"parent":{"1734":{},"1735":{},"1736":{},"1737":{},"1738":{},"1739":{},"1742":{},"1743":{},"1744":{},"1745":{},"1746":{}}}],["orderslistparams",{"_index":619,"name":{"1789":{}},"parent":{"1790":{},"1791":{}}}],["orderslistresponse",{"_index":620,"name":{"1792":{}},"parent":{"1793":{},"1794":{},"1795":{},"1796":{}}}],["ordersupdate",{"_index":616,"name":{"1777":{}},"parent":{"1778":{},"1779":{},"1780":{},"1781":{},"1782":{},"1783":{},"1784":{},"1785":{},"1786":{}}}],["ordersupdate.__type",{"_index":617,"name":{},"parent":{"1787":{}}}],["ordersupdateresponse",{"_index":618,"name":{"1788":{}},"parent":{}}],["origin",{"_index":689,"name":{"1977":{}},"parent":{}}],["override",{"_index":612,"name":{"1736":{},"1744":{}},"parent":{}}],["page",{"_index":151,"name":{"269":{},"452":{},"726":{},"774":{},"884":{},"960":{},"996":{},"1056":{},"1353":{},"1453":{},"1461":{},"1468":{},"1509":{},"1576":{},"1631":{},"1791":{}},"parent":{}}],["parameters",{"_index":398,"name":{"968":{},"978":{},"988":{},"1499":{},"1517":{},"1694":{},"1708":{}},"parent":{}}],["parent_redemption",{"_index":270,"name":{"536":{}},"parent":{}}],["parent_rollback",{"_index":275,"name":{"552":{}},"parent":{}}],["pattern",{"_index":386,"name":{"910":{},"1228":{},"1328":{},"1393":{}},"parent":{}}],["percent",{"_index":662,"name":{"1918":{}},"parent":{}}],["percent_off",{"_index":578,"name":{"1626":{},"1852":{},"1952":{}},"parent":{}}],["percent_off_formula",{"_index":579,"name":{"1627":{},"1853":{},"1953":{}},"parent":{}}],["phone",{"_index":111,"name":{"206":{},"265":{}},"parent":{}}],["points",{"_index":142,"name":{"243":{},"446":{},"485":{},"582":{},"606":{},"904":{},"972":{},"982":{},"992":{},"999":{},"1007":{},"1052":{},"1074":{},"1124":{},"1126":{},"1168":{},"1221":{},"1236":{},"1254":{},"1503":{},"1521":{},"1526":{},"1866":{}},"parent":{}}],["points_cost",{"_index":205,"name":{"357":{},"601":{}},"parent":{}}],["points_to_go",{"_index":136,"name":{"233":{}},"parent":{}}],["post",{"_index":77,"name":{"131":{}},"parent":{}}],["postal_code",{"_index":121,"name":{"215":{},"264":{}},"parent":{}}],["prefix",{"_index":387,"name":{"911":{},"1229":{},"1329":{},"1394":{}},"parent":{}}],["price",{"_index":543,"name":{"1532":{},"1547":{},"1559":{},"1588":{},"1595":{},"1726":{},"1739":{},"1746":{},"1906":{}},"parent":{}}],["price_formula",{"_index":656,"name":{"1907":{}},"parent":{}}],["product",{"_index":610,"name":{"1732":{},"1846":{},"1861":{},"1935":{},"1943":{}},"parent":{}}],["product_id",{"_index":606,"name":{"1720":{},"1903":{}},"parent":{}}],["product_source_id",{"_index":654,"name":{"1904":{}},"parent":{}}],["products",{"_index":49,"name":{"80":{},"1582":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{}}}],["productsbulkupdate",{"_index":554,"name":{"1566":{}},"parent":{}}],["productsbulkupdatemetadata",{"_index":552,"name":{"1563":{}},"parent":{"1564":{},"1565":{}}}],["productsbulkupdatemetadataresponse",{"_index":557,"name":{"1570":{}},"parent":{"1571":{}}}],["productsbulkupdatemetadataresponse.__type",{"_index":558,"name":{},"parent":{"1572":{}}}],["productsbulkupdateresponse",{"_index":555,"name":{"1567":{}},"parent":{"1568":{}}}],["productsbulkupdateresponse.__type",{"_index":556,"name":{},"parent":{"1569":{}}}],["productscreate",{"_index":542,"name":{"1529":{}},"parent":{"1530":{},"1531":{},"1532":{},"1533":{},"1534":{},"1535":{}}}],["productscreateresponse",{"_index":547,"name":{"1542":{}},"parent":{"1543":{},"1544":{},"1545":{},"1546":{},"1547":{},"1548":{},"1549":{},"1550":{},"1551":{}}}],["productscreatesku",{"_index":562,"name":{"1583":{}},"parent":{"1584":{},"1585":{},"1586":{},"1587":{},"1588":{},"1589":{},"1590":{}}}],["productscreateskuresponse",{"_index":565,"name":{"1591":{}},"parent":{"1592":{},"1593":{},"1594":{},"1595":{},"1596":{},"1597":{},"1598":{},"1599":{},"1600":{},"1601":{}}}],["productsdeleteparams",{"_index":559,"name":{"1573":{}},"parent":{"1574":{}}}],["productsdeleteskuparams",{"_index":569,"name":{"1605":{}},"parent":{"1606":{}}}],["productsgetresponse",{"_index":548,"name":{"1552":{}},"parent":{}}],["productsgetresponseskus",{"_index":544,"name":{"1536":{}},"parent":{"1537":{},"1538":{}}}],["productsgetresponseskus.__type",{"_index":546,"name":{},"parent":{"1539":{},"1540":{},"1541":{}}}],["productsgetskuresponse",{"_index":566,"name":{"1602":{}},"parent":{}}],["productslistparams",{"_index":560,"name":{"1575":{}},"parent":{"1576":{},"1577":{}}}],["productslistresponse",{"_index":561,"name":{"1578":{}},"parent":{"1579":{},"1580":{},"1581":{},"1582":{}}}],["productslistskus",{"_index":570,"name":{"1607":{}},"parent":{"1608":{},"1609":{},"1610":{}}}],["productsupdate",{"_index":549,"name":{"1553":{}},"parent":{"1554":{}}}],["productsupdate.__type",{"_index":550,"name":{},"parent":{"1555":{},"1556":{},"1557":{},"1558":{},"1559":{},"1560":{},"1561":{}}}],["productsupdateresponse",{"_index":551,"name":{"1562":{}},"parent":{}}],["productsupdatesku",{"_index":567,"name":{"1603":{}},"parent":{}}],["productsupdateskuresponse",{"_index":568,"name":{"1604":{}},"parent":{}}],["promotion",{"_index":370,"name":{"829":{},"862":{}},"parent":{}}],["promotion_tier",{"_index":242,"name":{"447":{},"810":{},"1442":{}},"parent":{}}],["promotions",{"_index":57,"name":{"94":{},"362":{},"880":{}},"parent":{"95":{},"96":{},"97":{},"98":{}}}],["promotionscreate",{"_index":372,"name":{"857":{}},"parent":{"858":{},"859":{},"860":{},"861":{},"862":{},"863":{}}}],["promotionscreate.__type",{"_index":373,"name":{},"parent":{"864":{}}}],["promotionscreateresponse",{"_index":369,"name":{"821":{}},"parent":{"822":{},"823":{},"824":{},"825":{},"826":{},"827":{},"828":{},"829":{},"830":{},"835":{},"836":{},"837":{},"838":{},"839":{},"844":{},"845":{},"846":{},"849":{},"850":{},"851":{},"852":{},"853":{},"854":{},"855":{},"856":{}}}],["promotionscreateresponse.__type",{"_index":371,"name":{},"parent":{"831":{},"832":{},"833":{},"834":{},"840":{},"841":{},"842":{},"843":{},"847":{},"848":{}}}],["promotionsvalidateparams",{"_index":374,"name":{"865":{}},"parent":{"866":{},"867":{},"868":{},"874":{}}}],["promotionsvalidateparams.__type",{"_index":375,"name":{},"parent":{"869":{},"870":{},"871":{},"872":{},"873":{}}}],["promotionsvalidatequeryparams",{"_index":376,"name":{"875":{}},"parent":{"876":{},"877":{}}}],["promotionsvalidateresponse",{"_index":377,"name":{"878":{}},"parent":{"879":{},"880":{},"881":{}}}],["promotiontier",{"_index":349,"name":{"752":{}},"parent":{"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"764":{},"765":{},"766":{},"768":{},"769":{},"770":{}}}],["promotiontier.__type",{"_index":350,"name":{},"parent":{"759":{},"760":{},"761":{},"762":{},"763":{},"767":{}}}],["promotiontiergetresponse",{"_index":357,"name":{"781":{}},"parent":{}}],["promotiontierredeemdetails",{"_index":366,"name":{"818":{}},"parent":{}}],["promotiontierredeemdetailssimple",{"_index":364,"name":{"811":{}},"parent":{"812":{},"813":{},"814":{},"815":{},"816":{}}}],["promotiontierredeemdetailssimple.__type",{"_index":365,"name":{},"parent":{"817":{}}}],["promotiontiers",{"_index":59,"name":{"99":{}},"parent":{"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{}}}],["promotiontierscreateparams",{"_index":358,"name":{"782":{}},"parent":{"783":{},"784":{},"785":{},"786":{},"788":{}}}],["promotiontierscreateparams.__type",{"_index":359,"name":{},"parent":{"787":{}}}],["promotiontierscreateresponse",{"_index":360,"name":{"789":{}},"parent":{}}],["promotiontierslistallparams",{"_index":353,"name":{"771":{}},"parent":{"772":{},"773":{},"774":{}}}],["promotiontierslistallresponse",{"_index":355,"name":{"775":{}},"parent":{"776":{},"777":{},"778":{},"779":{}}}],["promotiontierslistresponse",{"_index":356,"name":{"780":{}},"parent":{}}],["promotiontiersredeemparams",{"_index":361,"name":{"790":{}},"parent":{"791":{},"792":{},"793":{},"800":{},"801":{}}}],["promotiontiersredeemparams.__type",{"_index":362,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{}}}],["promotiontiersredeemresponse",{"_index":363,"name":{"802":{}},"parent":{"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{},"810":{}}}],["promotiontiersupdateparams",{"_index":367,"name":{"819":{}},"parent":{}}],["promotiontiersupdateresponse",{"_index":368,"name":{"820":{}},"parent":{}}],["protected",{"_index":319,"name":{"696":{},"855":{},"944":{}},"parent":{}}],["publications",{"_index":29,"name":{"42":{},"1646":{}},"parent":{}}],["publish",{"_index":16,"name":{"19":{},"1083":{},"1177":{},"1262":{}},"parent":{}}],["put",{"_index":78,"name":{"132":{}},"parent":{}}],["qr",{"_index":457,"name":{"1193":{},"1284":{}},"parent":{}}],["qualifications",{"_index":4,"name":{"5":{},"181":{}},"parent":{}}],["quantity",{"_index":253,"name":{"495":{},"901":{},"1089":{},"1185":{},"1240":{},"1273":{},"1333":{},"1388":{},"1725":{}},"parent":{}}],["quantity_limit",{"_index":657,"name":{"1908":{}},"parent":{}}],["reason",{"_index":257,"name":{"500":{},"504":{},"516":{},"649":{}},"parent":{}}],["redeem",{"_index":15,"name":{"18":{},"105":{},"110":{}},"parent":{}}],["redeemables",{"_index":266,"name":{"527":{},"653":{},"663":{}},"parent":{}}],["redeemed",{"_index":518,"name":{"1474":{}},"parent":{}}],["redeemed_amount",{"_index":131,"name":{"228":{},"497":{}},"parent":{}}],["redeemed_points",{"_index":135,"name":{"232":{},"1090":{},"1188":{}},"parent":{}}],["redeemed_quantity",{"_index":254,"name":{"496":{},"1091":{},"1186":{},"1274":{}},"parent":{}}],["redeemreward",{"_index":46,"name":{"72":{}},"parent":{}}],["redeemstackable",{"_index":23,"name":{"26":{},"111":{}},"parent":{}}],["redemption",{"_index":249,"name":{"460":{},"514":{},"562":{},"899":{},"1087":{},"1182":{},"1238":{},"1270":{},"1331":{},"1386":{}},"parent":{"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"480":{},"481":{},"483":{},"484":{}}}],["redemption.__type",{"_index":250,"name":{},"parent":{"475":{},"476":{},"477":{},"478":{},"479":{},"482":{},"485":{}}}],["redemption_entries",{"_index":255,"name":{"498":{},"1092":{},"1276":{}},"parent":{}}],["redemptions",{"_index":61,"name":{"108":{},"218":{},"490":{},"535":{},"629":{}},"parent":{"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{}}}],["redemptionsgetforvoucherresponse",{"_index":252,"name":{"491":{}},"parent":{"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{}}}],["redemptionslistparams",{"_index":245,"name":{"450":{}},"parent":{"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{}}}],["redemptionslistparams.__type",{"_index":247,"name":{},"parent":{"458":{},"459":{}}}],["redemptionslistresponse",{"_index":251,"name":{"486":{}},"parent":{"487":{},"488":{},"489":{},"490":{}}}],["redemptionsredeembody",{"_index":238,"name":{"420":{}},"parent":{"421":{},"422":{},"423":{},"424":{},"425":{},"426":{},"427":{}}}],["redemptionsredeemresponse",{"_index":239,"name":{"428":{}},"parent":{"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"444":{},"445":{},"447":{},"448":{},"449":{}}}],["redemptionsredeemresponse.__type",{"_index":240,"name":{},"parent":{"443":{},"446":{}}}],["redemptionsredeemstackableorderresponse",{"_index":268,"name":{"533":{}},"parent":{}}],["redemptionsredeemstackableparams",{"_index":264,"name":{"525":{}},"parent":{"526":{},"527":{},"528":{},"529":{},"530":{},"531":{}}}],["redemptionsredeemstackableredemptionresult",{"_index":267,"name":{"532":{}},"parent":{}}],["redemptionsredeemstackableresponse",{"_index":269,"name":{"534":{}},"parent":{"535":{},"536":{},"537":{},"549":{}}}],["redemptionsredeemstackableresponse.__type",{"_index":271,"name":{},"parent":{"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{}}}],["redemptionsrollbackparams",{"_index":256,"name":{"499":{}},"parent":{"500":{},"501":{},"502":{}}}],["redemptionsrollbackpayload",{"_index":259,"name":{"506":{}},"parent":{"507":{}}}],["redemptionsrollbackqueryparams",{"_index":258,"name":{"503":{}},"parent":{"504":{},"505":{}}}],["redemptionsrollbackresponse",{"_index":260,"name":{"508":{}},"parent":{"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{}}}],["redemptionsrollbackresponse.__type",{"_index":262,"name":{},"parent":{"522":{},"523":{}}}],["redemptionsrollbackstackableresponse",{"_index":273,"name":{"550":{}},"parent":{"551":{},"552":{},"553":{},"563":{}}}],["redemptionsrollbackstackableresponse.__type",{"_index":276,"name":{},"parent":{"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{}}}],["referral",{"_index":227,"name":{"405":{},"1822":{}},"parent":{}}],["referral_program",{"_index":317,"name":{"694":{},"942":{}},"parent":{}}],["referred_customers",{"_index":143,"name":{"244":{}},"parent":{}}],["referrer",{"_index":280,"name":{"574":{}},"parent":{}}],["referrer_id",{"_index":293,"name":{"627":{},"1202":{},"1293":{},"1825":{}},"parent":{}}],["related_object",{"_index":179,"name":{"312":{},"1131":{},"1721":{}},"parent":{}}],["related_object_id",{"_index":272,"name":{"548":{},"976":{},"1446":{},"1497":{}},"parent":{}}],["related_object_ids",{"_index":95,"name":{"175":{}},"parent":{}}],["related_object_total",{"_index":97,"name":{"177":{}},"parent":{}}],["related_object_type",{"_index":96,"name":{"176":{},"440":{},"472":{},"547":{},"977":{},"1447":{},"1498":{}},"parent":{}}],["releasevalidationsession",{"_index":102,"name":{"193":{}},"parent":{}}],["request",{"_index":69,"name":{"122":{}},"parent":{}}],["request_id",{"_index":92,"name":{"172":{},"643":{}},"parent":{}}],["requestcontroller",{"_index":65,"name":{"117":{}},"parent":{"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{},"133":{}}}],["resource_id",{"_index":93,"name":{"173":{},"644":{}},"parent":{}}],["resource_type",{"_index":94,"name":{"174":{},"645":{}},"parent":{}}],["responsevalidatevoucherfalse",{"_index":296,"name":{"634":{}},"parent":{"635":{},"636":{},"637":{},"638":{},"646":{},"647":{},"648":{},"649":{}}}],["responsevalidatevoucherfalse.__type",{"_index":298,"name":{},"parent":{"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{}}}],["responsevalidatevouchertrue",{"_index":283,"name":{"585":{}},"parent":{"586":{},"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"599":{},"600":{},"602":{},"603":{},"607":{},"608":{},"630":{},"631":{},"632":{},"633":{}}}],["responsevalidatevouchertrue.__type",{"_index":285,"name":{},"parent":{"596":{},"597":{},"598":{},"601":{},"604":{},"605":{},"606":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{},"628":{},"629":{}}}],["result",{"_index":212,"name":{"380":{},"436":{},"453":{},"468":{},"517":{},"544":{},"559":{},"809":{},"1156":{},"1636":{},"1666":{},"1714":{},"1880":{}},"parent":{}}],["reward",{"_index":189,"name":{"326":{},"368":{},"425":{},"439":{},"520":{},"579":{},"602":{},"967":{},"1136":{},"1155":{},"1307":{},"1838":{}},"parent":{}}],["reward_id",{"_index":402,"name":{"975":{},"1496":{}},"parent":{}}],["rewardredemptionparams",{"_index":541,"name":{"1525":{}},"parent":{"1526":{},"1527":{},"1528":{}}}],["rewards",{"_index":79,"name":{"134":{}},"parent":{"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{}}}],["rewardsassignmentobject",{"_index":530,"name":{"1494":{}},"parent":{"1495":{},"1496":{},"1497":{},"1498":{},"1499":{},"1500":{},"1504":{},"1505":{},"1506":{}}}],["rewardsassignmentobject.__type",{"_index":531,"name":{},"parent":{"1501":{},"1502":{}}}],["rewardsassignmentobject.__type.__type",{"_index":532,"name":{},"parent":{"1503":{}}}],["rewardscreate",{"_index":526,"name":{"1490":{}},"parent":{}}],["rewardscreateassignment",{"_index":535,"name":{"1515":{}},"parent":{"1516":{},"1517":{},"1518":{}}}],["rewardscreateassignment.__type",{"_index":536,"name":{},"parent":{"1519":{},"1520":{}}}],["rewardscreateassignment.__type.__type",{"_index":537,"name":{},"parent":{"1521":{}}}],["rewardscreateassignmentresponse",{"_index":538,"name":{"1522":{}},"parent":{}}],["rewardscreateresponse",{"_index":522,"name":{"1482":{}},"parent":{}}],["rewardsgetresponse",{"_index":527,"name":{"1491":{}},"parent":{}}],["rewardslistassignmentsparams",{"_index":533,"name":{"1507":{}},"parent":{"1508":{},"1509":{}}}],["rewardslistassignmentsresponse",{"_index":534,"name":{"1510":{}},"parent":{"1511":{},"1512":{},"1513":{},"1514":{}}}],["rewardslistparams",{"_index":515,"name":{"1467":{}},"parent":{"1468":{},"1469":{}}}],["rewardslistresponse",{"_index":523,"name":{"1483":{}},"parent":{"1484":{},"1485":{},"1486":{},"1487":{}}}],["rewardsresponse",{"_index":516,"name":{"1470":{}},"parent":{"1471":{},"1472":{},"1473":{},"1474":{},"1475":{},"1476":{},"1479":{},"1480":{},"1481":{}}}],["rewardsresponse.__type",{"_index":521,"name":{},"parent":{"1477":{},"1478":{}}}],["rewardstype",{"_index":524,"name":{"1488":{}},"parent":{}}],["rewardstyperesponse",{"_index":525,"name":{"1489":{}},"parent":{}}],["rewardsupdate",{"_index":528,"name":{"1492":{}},"parent":{}}],["rewardsupdateassignment",{"_index":539,"name":{"1523":{}},"parent":{}}],["rewardsupdateassignmentresponse",{"_index":540,"name":{"1524":{}},"parent":{}}],["rewardsupdateresponse",{"_index":529,"name":{"1493":{}},"parent":{}}],["rollback",{"_index":63,"name":{"115":{}},"parent":{}}],["rollbacks",{"_index":274,"name":{"551":{}},"parent":{}}],["rollbackstackable",{"_index":64,"name":{"116":{}},"parent":{}}],["rule_id",{"_index":505,"name":{"1434":{},"1445":{}},"parent":{}}],["rules",{"_index":500,"name":{"1417":{},"1426":{}},"parent":{}}],["schema_id",{"_index":427,"name":{"1039":{}},"parent":{}}],["scroll",{"_index":26,"name":{"35":{}},"parent":{}}],["secretkey",{"_index":680,"name":{"1965":{}},"parent":{}}],["segment",{"_index":417,"name":{"1014":{},"1040":{}},"parent":{}}],["segments",{"_index":84,"name":{"145":{}},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["segmentscreate",{"_index":588,"name":{"1669":{}},"parent":{"1670":{},"1671":{},"1672":{},"1673":{},"1675":{}}}],["segmentscreate.__type",{"_index":590,"name":{},"parent":{"1674":{}}}],["segmentscreateresponse",{"_index":591,"name":{"1676":{}},"parent":{"1677":{},"1678":{},"1679":{},"1680":{},"1681":{},"1682":{},"1684":{},"1685":{}}}],["segmentscreateresponse.__type",{"_index":592,"name":{},"parent":{"1683":{}}}],["segmentsgetresponse",{"_index":593,"name":{"1686":{}},"parent":{}}],["segmentslistresponse",{"_index":594,"name":{"1687":{}},"parent":{"1688":{},"1689":{},"1690":{},"1691":{}}}],["session",{"_index":208,"name":{"371":{},"427":{},"528":{},"583":{},"630":{},"654":{},"661":{},"801":{}},"parent":{}}],["session_key",{"_index":192,"name":{"331":{}},"parent":{}}],["session_ttl",{"_index":193,"name":{"332":{}},"parent":{}}],["session_ttl_unit",{"_index":194,"name":{"333":{}},"parent":{}}],["session_type",{"_index":191,"name":{"330":{}},"parent":{}}],["setbaseurl",{"_index":76,"name":{"129":{}},"parent":{}}],["setidentity",{"_index":13,"name":{"16":{}},"parent":{}}],["setlastresponseheaders",{"_index":75,"name":{"128":{}},"parent":{}}],["simplecustomer",{"_index":103,"name":{"194":{}},"parent":{"195":{},"196":{},"197":{},"198":{},"199":{},"200":{}}}],["simpleproduct",{"_index":571,"name":{"1611":{}},"parent":{"1612":{},"1613":{},"1614":{}}}],["simplepromotiontier",{"_index":346,"name":{"742":{}},"parent":{"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{}}}],["simplerollback",{"_index":263,"name":{"524":{}},"parent":{}}],["simplesku",{"_index":572,"name":{"1615":{}},"parent":{"1616":{},"1617":{},"1618":{}}}],["simplevoucher",{"_index":463,"name":{"1223":{}},"parent":{"1224":{},"1225":{},"1231":{},"1232":{},"1233":{},"1234":{},"1235":{},"1238":{},"1239":{}}}],["simplevoucher.__type",{"_index":464,"name":{},"parent":{"1226":{},"1227":{},"1228":{},"1229":{},"1230":{},"1236":{},"1237":{},"1240":{}}}],["sku",{"_index":563,"name":{"1584":{},"1594":{},"1618":{},"1740":{},"1745":{},"1845":{},"1860":{},"1936":{},"1944":{}},"parent":{}}],["sku_id",{"_index":605,"name":{"1719":{}},"parent":{}}],["skus",{"_index":545,"name":{"1537":{},"1610":{}},"parent":{}}],["source",{"_index":419,"name":{"1018":{},"1034":{},"1047":{}},"parent":{}}],["source_id",{"_index":107,"name":{"198":{},"203":{},"252":{},"383":{},"569":{},"610":{},"795":{},"870":{},"1114":{},"1142":{},"1209":{},"1531":{},"1544":{},"1557":{},"1585":{},"1593":{},"1613":{},"1617":{},"1649":{},"1665":{},"1722":{},"1735":{},"1743":{},"1750":{},"1759":{},"1779":{},"1902":{}},"parent":{}}],["source_ids",{"_index":553,"name":{"1564":{}},"parent":{}}],["stackableoptions",{"_index":628,"name":{"1832":{}},"parent":{"1833":{}}}],["stackableredeemableobject",{"_index":630,"name":{"1834":{}},"parent":{}}],["stackableredeemableparams",{"_index":631,"name":{"1835":{}},"parent":{"1836":{},"1837":{},"1838":{},"1839":{}}}],["stackableredeemableresponse",{"_index":643,"name":{"1873":{}},"parent":{"1874":{},"1875":{},"1876":{},"1877":{},"1878":{},"1879":{},"1880":{},"1881":{}}}],["stackableredeemableresponsestatus",{"_index":632,"name":{"1840":{}},"parent":{}}],["stackableredeemableresultdiscount",{"_index":635,"name":{"1847":{}},"parent":{"1848":{},"1849":{},"1850":{},"1851":{},"1852":{},"1853":{},"1854":{},"1855":{},"1856":{},"1857":{},"1858":{},"1859":{},"1860":{},"1861":{},"1862":{}}}],["stackableredeemableresultdiscountunit",{"_index":633,"name":{"1841":{}},"parent":{"1842":{},"1843":{},"1844":{},"1845":{},"1846":{}}}],["stackableredeemableresultgift",{"_index":639,"name":{"1863":{}},"parent":{"1864":{}}}],["stackableredeemableresultloyaltycard",{"_index":640,"name":{"1865":{}},"parent":{"1866":{},"1867":{}}}],["stackableredeemableresultresponse",{"_index":642,"name":{"1868":{}},"parent":{"1869":{},"1870":{},"1871":{},"1872":{}}}],["start_date",{"_index":294,"name":{"631":{},"675":{},"761":{},"827":{},"860":{},"892":{},"923":{},"950":{},"1076":{},"1170":{},"1255":{},"1340":{},"1382":{}},"parent":{}}],["starting_after",{"_index":153,"name":{"274":{},"284":{}},"parent":{}}],["starting_after_id",{"_index":159,"name":{"285":{}},"parent":{}}],["state",{"_index":117,"name":{"211":{},"260":{}},"parent":{}}],["status",{"_index":279,"name":{"570":{},"613":{},"798":{},"1705":{},"1751":{},"1762":{},"1780":{},"1874":{}},"parent":{}}],["stock",{"_index":517,"name":{"1473":{}},"parent":{}}],["strict",{"_index":655,"name":{"1905":{}},"parent":{}}],["subtotal_amount",{"_index":609,"name":{"1731":{}},"parent":{}}],["suffix",{"_index":388,"name":{"912":{},"1230":{},"1330":{},"1395":{}},"parent":{}}],["summary",{"_index":122,"name":{"216":{}},"parent":{}}],["tiers",{"_index":58,"name":{"96":{},"778":{},"833":{},"864":{}},"parent":{}}],["total",{"_index":155,"name":{"277":{},"290":{},"308":{},"338":{},"488":{},"493":{},"680":{},"708":{},"733":{},"842":{},"887":{},"928":{},"963":{},"1027":{},"1101":{},"1121":{},"1127":{},"1216":{},"1268":{},"1277":{},"1301":{},"1318":{},"1371":{},"1456":{},"1464":{},"1485":{},"1511":{},"1540":{},"1580":{},"1609":{},"1644":{},"1689":{},"1794":{},"1809":{},"1815":{},"1913":{}},"parent":{}}],["total_amount",{"_index":137,"name":{"236":{},"351":{},"620":{},"1770":{}},"parent":{}}],["total_applied_discount_amount",{"_index":292,"name":{"622":{},"1771":{}},"parent":{}}],["total_count",{"_index":138,"name":{"237":{}},"parent":{}}],["total_discount_amount",{"_index":204,"name":{"350":{},"619":{},"1767":{}},"parent":{}}],["total_failed",{"_index":125,"name":{"221":{}},"parent":{}}],["total_redeemed",{"_index":123,"name":{"220":{}},"parent":{}}],["total_rollback_failed",{"_index":128,"name":{"224":{}},"parent":{}}],["total_rollback_succeeded",{"_index":129,"name":{"225":{}},"parent":{}}],["total_rolled_back",{"_index":127,"name":{"223":{}},"parent":{}}],["total_succeeded",{"_index":126,"name":{"222":{}},"parent":{}}],["track",{"_index":17,"name":{"20":{}},"parent":{}}],["tracking_id",{"_index":185,"name":{"321":{},"353":{},"364":{},"377":{},"421":{},"433":{},"465":{},"501":{},"505":{},"513":{},"542":{},"557":{},"633":{},"646":{},"660":{},"743":{},"807":{},"881":{},"1157":{},"1662":{}},"parent":{}}],["trackingid",{"_index":688,"name":{"1976":{}},"parent":{}}],["transfers",{"_index":641,"name":{"1867":{}},"parent":{}}],["ttl",{"_index":648,"name":{"1889":{},"1894":{}},"parent":{}}],["ttl_unit",{"_index":649,"name":{"1890":{},"1895":{}},"parent":{}}],["type",{"_index":178,"name":{"310":{},"314":{},"408":{},"670":{},"825":{},"894":{},"898":{},"918":{},"954":{},"998":{},"1001":{},"1071":{},"1129":{},"1133":{},"1165":{},"1231":{},"1246":{},"1379":{},"1620":{},"1671":{},"1684":{},"1831":{},"1848":{},"1888":{},"1893":{},"1927":{},"1931":{},"1938":{},"1946":{},"1951":{},"1957":{}},"parent":{}}],["unit",{"_index":663,"name":{"1919":{}},"parent":{}}],["unit_off",{"_index":574,"name":{"1621":{},"1843":{},"1857":{},"1933":{},"1939":{}},"parent":{}}],["unit_off_formula",{"_index":575,"name":{"1622":{},"1858":{},"1940":{}},"parent":{}}],["unit_type",{"_index":634,"name":{"1844":{},"1859":{},"1934":{},"1942":{}},"parent":{}}],["units",{"_index":638,"name":{"1862":{},"1929":{}},"parent":{}}],["update",{"_index":5,"name":{"7":{},"36":{},"57":{},"77":{},"84":{},"106":{},"139":{},"155":{},"185":{}},"parent":{}}],["updateassignment",{"_index":82,"name":{"143":{}},"parent":{}}],["updateconsents",{"_index":21,"name":{"24":{},"38":{}},"parent":{}}],["updated_at",{"_index":287,"name":{"612":{},"984":{},"1011":{},"1061":{},"1098":{},"1205":{},"1295":{},"1361":{},"1430":{},"1449":{},"1480":{},"1505":{},"1598":{},"1761":{},"1803":{}},"parent":{}}],["updateearningrule",{"_index":39,"name":{"65":{}},"parent":{}}],["updaterewardassignment",{"_index":35,"name":{"61":{}},"parent":{}}],["updatesku",{"_index":54,"name":{"91":{}},"parent":{}}],["url",{"_index":455,"name":{"1181":{},"1187":{},"1196":{},"1200":{},"1269":{},"1278":{},"1287":{},"1291":{},"1716":{}},"parent":{}}],["use_voucher_metadata_schema",{"_index":318,"name":{"695":{},"854":{},"943":{}},"parent":{}}],["valid",{"_index":199,"name":{"343":{},"586":{},"635":{},"659":{},"745":{},"879":{},"1433":{}},"parent":{}}],["validate",{"_index":14,"name":{"17":{},"98":{},"159":{},"165":{}},"parent":{}}],["validatestackable",{"_index":22,"name":{"25":{},"166":{}},"parent":{}}],["validatevoucher",{"_index":87,"name":{"164":{}},"parent":{}}],["validation_rule_assignments",{"_index":351,"name":{"764":{}},"parent":{}}],["validation_rule_id",{"_index":416,"name":{"1012":{},"1032":{},"1046":{}},"parent":{}}],["validation_rules_assignments",{"_index":308,"name":{"676":{},"838":{},"924":{},"1213":{},"1298":{}},"parent":{}}],["validationrules",{"_index":85,"name":{"151":{}},"parent":{"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{}}}],["validationrulescreate",{"_index":498,"name":{"1412":{}},"parent":{"1413":{},"1414":{},"1415":{},"1417":{},"1418":{}}}],["validationrulescreate.__type",{"_index":499,"name":{},"parent":{"1416":{},"1419":{}}}],["validationrulescreateassignment",{"_index":509,"name":{"1439":{}},"parent":{"1440":{},"1441":{},"1442":{}}}],["validationrulescreateassignmentresponse",{"_index":510,"name":{"1443":{}},"parent":{"1444":{},"1445":{},"1446":{},"1447":{},"1448":{},"1449":{},"1450":{}}}],["validationrulescreateresponse",{"_index":502,"name":{"1420":{}},"parent":{"1421":{},"1422":{},"1423":{},"1424":{},"1426":{},"1427":{},"1429":{},"1430":{},"1431":{}}}],["validationrulescreateresponse.__type",{"_index":503,"name":{},"parent":{"1425":{},"1428":{}}}],["validationrulesgetresponse",{"_index":506,"name":{"1436":{}},"parent":{}}],["validationruleslistassignmentsparams",{"_index":513,"name":{"1459":{}},"parent":{"1460":{},"1461":{}}}],["validationruleslistassignmentsresponse",{"_index":514,"name":{"1462":{}},"parent":{"1463":{},"1464":{},"1465":{},"1466":{}}}],["validationruleslistparams",{"_index":511,"name":{"1451":{}},"parent":{"1452":{},"1453":{}}}],["validationruleslistresponse",{"_index":512,"name":{"1454":{}},"parent":{"1455":{},"1456":{},"1457":{},"1458":{}}}],["validationrulesupdate",{"_index":507,"name":{"1437":{}},"parent":{}}],["validationrulesupdateresponse",{"_index":508,"name":{"1438":{}},"parent":{}}],["validationrulesvalidateresponse",{"_index":504,"name":{"1432":{}},"parent":{"1433":{},"1434":{},"1435":{}}}],["validations",{"_index":86,"name":{"162":{}},"parent":{"163":{},"164":{},"165":{},"166":{}}}],["validationsessionparams",{"_index":647,"name":{"1886":{}},"parent":{"1887":{},"1888":{},"1889":{},"1890":{}}}],["validationsessionreleaseparams",{"_index":651,"name":{"1896":{}},"parent":{"1897":{}}}],["validationsessionresponse",{"_index":650,"name":{"1891":{}},"parent":{"1892":{},"1893":{},"1894":{},"1895":{}}}],["validationsessionttlunit",{"_index":646,"name":{"1885":{}},"parent":{}}],["validationsessiontype",{"_index":645,"name":{"1884":{}},"parent":{}}],["validationsvalidatecode",{"_index":303,"name":{"664":{}},"parent":{}}],["validationsvalidatecontext",{"_index":304,"name":{"665":{}},"parent":{}}],["validationsvalidatestackableparams",{"_index":301,"name":{"651":{}},"parent":{"652":{},"653":{},"654":{},"655":{},"656":{},"657":{}}}],["validationsvalidatevoucherparams",{"_index":277,"name":{"564":{}},"parent":{"565":{},"566":{},"567":{},"576":{},"577":{},"579":{},"580":{},"583":{}}}],["validationsvalidatevoucherparams.__type",{"_index":278,"name":{},"parent":{"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"578":{},"581":{},"582":{}}}],["validationsvalidatevoucherresponse",{"_index":282,"name":{"584":{}},"parent":{}}],["validationvalidatestackableresponse",{"_index":302,"name":{"658":{}},"parent":{"659":{},"660":{},"661":{},"662":{},"663":{}}}],["validity_day_of_week",{"_index":314,"name":{"688":{},"849":{},"936":{},"1082":{},"1176":{},"1261":{}},"parent":{}}],["validity_timeframe",{"_index":311,"name":{"684":{},"845":{},"932":{},"1078":{},"1172":{},"1257":{}},"parent":{}}],["voucher",{"_index":213,"name":{"381":{},"386":{},"437":{},"473":{},"518":{},"693":{},"896":{},"941":{},"1105":{},"1158":{},"1440":{},"1635":{},"1654":{},"1668":{}},"parent":{}}],["voucher_type",{"_index":582,"name":{"1637":{}},"parent":{}}],["voucherdiscount",{"_index":573,"name":{"1619":{}},"parent":{"1620":{},"1621":{},"1622":{},"1623":{},"1624":{},"1625":{},"1626":{},"1627":{},"1628":{}}}],["voucherifyclientside",{"_index":684,"name":{"1971":{}},"parent":{}}],["voucherifyclientsideoptions",{"_index":685,"name":{"1972":{}},"parent":{"1973":{},"1974":{},"1975":{},"1976":{},"1977":{},"1978":{},"1979":{}}}],["voucherifyerror",{"_index":88,"name":{"167":{}},"parent":{"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{}}}],["voucherifyserverside",{"_index":676,"name":{"1961":{}},"parent":{}}],["voucherifyserversideoptions",{"_index":677,"name":{"1962":{}},"parent":{"1963":{},"1964":{},"1965":{},"1966":{},"1967":{},"1968":{},"1969":{},"1970":{}}}],["vouchers",{"_index":99,"name":{"179":{},"340":{},"1103":{},"1373":{}},"parent":{"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{}}}],["vouchers_count",{"_index":320,"name":{"697":{},"719":{},"895":{},"945":{}},"parent":{}}],["vouchers_generation_status",{"_index":315,"name":{"691":{},"852":{},"939":{}},"parent":{}}],["vouchersbulkupdate",{"_index":489,"name":{"1399":{}},"parent":{}}],["vouchersbulkupdatemetadata",{"_index":490,"name":{"1400":{}},"parent":{"1401":{},"1402":{}}}],["vouchersbulkupdatemetadataresponse",{"_index":494,"name":{"1406":{}},"parent":{"1407":{}}}],["vouchersbulkupdatemetadataresponse.__type",{"_index":495,"name":{},"parent":{"1408":{}}}],["vouchersbulkupdateobject",{"_index":488,"name":{"1396":{}},"parent":{"1397":{},"1398":{}}}],["vouchersbulkupdateresponse",{"_index":496,"name":{"1409":{}},"parent":{"1410":{}}}],["vouchersbulkupdateresponse.__type",{"_index":497,"name":{},"parent":{"1411":{}}}],["voucherscreate",{"_index":474,"name":{"1334":{}},"parent":{}}],["voucherscreateparameters",{"_index":472,"name":{"1321":{}},"parent":{"1322":{},"1323":{},"1324":{},"1325":{},"1331":{},"1332":{}}}],["voucherscreateparameters.__type",{"_index":473,"name":{},"parent":{"1326":{},"1327":{},"1328":{},"1329":{},"1330":{},"1333":{}}}],["voucherscreateresponse",{"_index":475,"name":{"1335":{}},"parent":{}}],["vouchersdeleteparams",{"_index":480,"name":{"1349":{}},"parent":{"1350":{}}}],["vouchersdisableresponse",{"_index":485,"name":{"1375":{}},"parent":{}}],["vouchersenableresponse",{"_index":484,"name":{"1374":{}},"parent":{}}],["vouchersgetresponse",{"_index":476,"name":{"1336":{}},"parent":{}}],["vouchersimport",{"_index":486,"name":{"1376":{}},"parent":{"1377":{},"1378":{},"1379":{},"1380":{},"1381":{},"1382":{},"1383":{},"1384":{},"1385":{},"1386":{},"1387":{},"1389":{},"1390":{}}}],["vouchersimport.__type",{"_index":487,"name":{},"parent":{"1388":{},"1391":{},"1392":{},"1393":{},"1394":{},"1395":{}}}],["vouchersimportresponse",{"_index":492,"name":{"1403":{}},"parent":{"1404":{}}}],["vouchersimportresponse.__type",{"_index":493,"name":{},"parent":{"1405":{}}}],["voucherslistparams",{"_index":481,"name":{"1351":{}},"parent":{"1352":{},"1353":{},"1354":{},"1355":{},"1356":{},"1357":{},"1358":{},"1361":{},"1362":{},"1365":{},"1366":{},"1367":{}}}],["voucherslistparams.__type",{"_index":482,"name":{},"parent":{"1359":{},"1360":{},"1363":{},"1364":{},"1368":{}}}],["voucherslistresponse",{"_index":483,"name":{"1369":{}},"parent":{"1370":{},"1371":{},"1372":{},"1373":{}}}],["vouchersqualificationexaminebody",{"_index":468,"name":{"1304":{}},"parent":{"1305":{},"1306":{},"1307":{},"1308":{},"1311":{}}}],["vouchersqualificationexaminebody.__type",{"_index":469,"name":{},"parent":{"1309":{},"1310":{}}}],["vouchersqualificationexamineparams",{"_index":470,"name":{"1312":{}},"parent":{"1313":{},"1314":{},"1315":{}}}],["vouchersqualificationexamineresponse",{"_index":471,"name":{"1316":{}},"parent":{"1317":{},"1318":{},"1319":{},"1320":{}}}],["vouchersresponse",{"_index":465,"name":{"1241":{}},"parent":{"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1248":{},"1249":{},"1252":{},"1253":{},"1255":{},"1256":{},"1257":{},"1258":{},"1261":{},"1262":{},"1263":{},"1270":{},"1271":{},"1279":{},"1280":{},"1281":{},"1282":{},"1283":{},"1292":{},"1293":{},"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{}}}],["vouchersresponse.__type",{"_index":466,"name":{},"parent":{"1250":{},"1251":{},"1254":{},"1259":{},"1260":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{},"1278":{},"1284":{},"1285":{},"1288":{},"1289":{},"1300":{},"1301":{},"1302":{},"1303":{}}}],["vouchersresponse.__type.__type",{"_index":467,"name":{},"parent":{"1286":{},"1287":{},"1290":{},"1291":{}}}],["vouchersupdate",{"_index":477,"name":{"1337":{}},"parent":{"1338":{},"1339":{},"1340":{},"1341":{},"1342":{},"1343":{},"1344":{},"1345":{},"1346":{}}}],["vouchersupdate.__type",{"_index":478,"name":{},"parent":{"1347":{}}}],["vouchersupdateresponse",{"_index":479,"name":{"1348":{}},"parent":{}}],["vouchertype",{"_index":462,"name":{"1222":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/classes/Validations.html b/docs/classes/Validations.html index 8c3d2dfcf..4ce5c40f2 100644 --- a/docs/classes/Validations.html +++ b/docs/classes/Validations.html @@ -126,7 +126,7 @@

Methods

validate

  • @@ -141,7 +141,7 @@
    code: stringValidationsValidateVoucherParams = {}
-

Returns Promise<PromotionsValidateResponse> | Promise<ValidationsValidateVoucherResponse>

+

Returns Promise<PromotionsValidateResponse> | Promise<ValidationsValidateVoucherResponse>

@@ -176,7 +176,7 @@

Returns Promise

validateVoucher

-

Returns Promise<ValidationsValidateVoucherResponse>

+

Returns Promise<ValidationsValidateVoucherResponse>

diff --git a/docs/classes/VoucherifyError.html b/docs/classes/VoucherifyError.html index feaff5daf..33eac7c01 100644 --- a/docs/classes/VoucherifyError.html +++ b/docs/classes/VoucherifyError.html @@ -131,7 +131,7 @@

Constructors

constructor

    -
  • new VoucherifyError(statusCode: number, body?: unknown, axiosError?: AxiosError<any>): VoucherifyError
  • +
  • new VoucherifyError(statusCode: number, body?: unknown, axiosError?: AxiosError<unknown, any>): VoucherifyError
  • @@ -147,7 +147,7 @@
    statusCode: number
    Optional body: unknown
  • -
    Optional axiosError: AxiosError<any>
    +
    Optional axiosError: AxiosError<unknown, any>

Returns VoucherifyError

@@ -160,7 +160,7 @@

Properties

Optional cause

-
cause: AxiosError<any>
+
cause: AxiosError<unknown, any>
diff --git a/docs/docs.json b/docs/docs.json index a8e9c9769..df1e6e4fc 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -7,14 +7,14 @@ "originalName": "", "children": [ { - "id": 2457, + "id": 2504, "name": "DiscountVouchersTypesEnum", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2458, + "id": 2505, "name": "AMOUNT", "kind": 16, "kindString": "Enumeration member", @@ -22,7 +22,7 @@ "defaultValue": "\"AMOUNT\"" }, { - "id": 2461, + "id": 2508, "name": "FIXED", "kind": 16, "kindString": "Enumeration member", @@ -30,7 +30,7 @@ "defaultValue": "\"FIXED\"" }, { - "id": 2459, + "id": 2506, "name": "PERCENT", "kind": 16, "kindString": "Enumeration member", @@ -38,7 +38,7 @@ "defaultValue": "\"PERCENT\"" }, { - "id": 2460, + "id": 2507, "name": "UNIT", "kind": 16, "kindString": "Enumeration member", @@ -51,10 +51,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2458, - 2461, - 2459, - 2460 + 2505, + 2508, + 2506, + 2507 ] } ] @@ -145,7 +145,7 @@ "flags": {}, "type": { "type": "reference", - "id": 697, + "id": 698, "name": "BalanceCreateParams" } } @@ -155,7 +155,7 @@ "typeArguments": [ { "type": "reference", - "id": 699, + "id": 700, "name": "BalanceCreateResponse" } ], @@ -297,7 +297,7 @@ "typeArguments": [ { "type": "reference", - "id": 1892, + "id": 1935, "name": "VouchersImport" } ], @@ -338,7 +338,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" }, { @@ -468,7 +468,7 @@ "typeArguments": [ { "type": "reference", - "id": 1892, + "id": 1935, "name": "VouchersImport" } ], @@ -512,7 +512,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1125, + "id": 1168, "name": "CampaignsAddVoucherParams" }, "defaultValue": "{}" @@ -539,7 +539,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" }, { @@ -654,7 +654,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1118, + "id": 1161, "name": "CampaignsCreateCampaign" } } @@ -664,7 +664,7 @@ "typeArguments": [ { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" } ], @@ -716,7 +716,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1122, + "id": 1165, "name": "CampaignsDeleteParams" }, "defaultValue": "{}" @@ -776,7 +776,7 @@ "typeArguments": [ { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" } ], @@ -833,7 +833,7 @@ "typeArguments": [ { "type": "reference", - "id": 1892, + "id": 1935, "name": "VouchersImport" }, { @@ -872,7 +872,7 @@ "typeArguments": [ { "type": "reference", - "id": 1145, + "id": 1188, "name": "CampaignsVouchersImportResponse" } ], @@ -913,7 +913,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1131, + "id": 1174, "name": "CampaignsListParams" }, "defaultValue": "{}" @@ -924,7 +924,7 @@ "typeArguments": [ { "type": "reference", - "id": 1140, + "id": 1183, "name": "CampaignsListResponse" } ], @@ -979,7 +979,7 @@ "typeArguments": [ { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" }, { @@ -1017,7 +1017,7 @@ "typeArguments": [ { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" } ], @@ -1168,7 +1168,7 @@ "typeArguments": [ { "type": "reference", - "id": 687, + "id": 688, "name": "CustomersCreateResponse" } ], @@ -1205,7 +1205,7 @@ "typeArguments": [ { "type": "reference", - "id": 2350, + "id": 2393, "name": "ConsentsListResponse" } ], @@ -1246,7 +1246,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1865, + "id": 1908, "name": "VouchersListParams" }, "defaultValue": "{}" @@ -1257,7 +1257,7 @@ "typeArguments": [ { "type": "reference", - "id": 729, + "id": 730, "name": "ClientSideListVouchersResponse" } ], @@ -1309,7 +1309,7 @@ "flags": {}, "type": { "type": "reference", - "id": 775, + "id": 776, "name": "ClientSidePublishPayload" }, "defaultValue": "{}" @@ -1322,7 +1322,7 @@ "flags": {}, "type": { "type": "reference", - "id": 782, + "id": 783, "name": "ClientSidePublishQueryParams" }, "defaultValue": "{}" @@ -1333,7 +1333,7 @@ "typeArguments": [ { "type": "reference", - "id": 788, + "id": 789, "name": "ClientSidePublishResponse" } ], @@ -1385,7 +1385,7 @@ "flags": {}, "type": { "type": "reference", - "id": 756, + "id": 757, "name": "ClientSideRedeemPayload" }, "defaultValue": "{}" @@ -1396,7 +1396,7 @@ "typeArguments": [ { "type": "reference", - "id": 765, + "id": 766, "name": "ClientSideRedeemResponse" } ], @@ -1437,7 +1437,7 @@ "flags": {}, "type": { "type": "reference", - "id": 948, + "id": 949, "name": "RedemptionsRedeemStackableParams" } } @@ -1447,7 +1447,7 @@ "typeArguments": [ { "type": "reference", - "id": 969, + "id": 970, "name": "RedemptionsRedeemStackableResponse" } ], @@ -1573,7 +1573,7 @@ }, "type": { "type": "reference", - "id": 793, + "id": 794, "name": "ClientSideTrackReferral" } }, @@ -1587,7 +1587,7 @@ }, "type": { "type": "reference", - "id": 791, + "id": 792, "name": "ClientSideTrackLoyalty" } } @@ -1597,7 +1597,7 @@ "typeArguments": [ { "type": "reference", - "id": 801, + "id": 802, "name": "ClientSideTrackResponse" } ], @@ -1715,7 +1715,7 @@ }, { "type": "reference", - "id": 712, + "id": 713, "name": "ClientSideValidateParams" } ] @@ -1727,7 +1727,7 @@ "typeArguments": [ { "type": "reference", - "id": 734, + "id": 735, "name": "ClientSideValidateResponse" } ], @@ -1768,7 +1768,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1056, + "id": 1099, "name": "ValidationsValidateStackableParams" } } @@ -1778,7 +1778,7 @@ "typeArguments": [ { "type": "reference", - "id": 1063, + "id": 1106, "name": "ValidationValidateStackableResponse" } ], @@ -1885,7 +1885,7 @@ "typeArguments": [ { "type": "reference", - "id": 2350, + "id": 2393, "name": "ConsentsListResponse" } ], @@ -1996,7 +1996,7 @@ "typeArguments": [ { "type": "reference", - "id": 687, + "id": 688, "name": "CustomersCreateResponse" } ], @@ -2095,7 +2095,7 @@ "typeArguments": [ { "type": "reference", - "id": 687, + "id": 688, "name": "CustomersCreateResponse" } ], @@ -2136,7 +2136,7 @@ "flags": {}, "type": { "type": "reference", - "id": 660, + "id": 661, "name": "CustomersCommonListRequest" } } @@ -2146,7 +2146,7 @@ "typeArguments": [ { "type": "reference", - "id": 668, + "id": 669, "name": "CustomersCommonListResponse" } ], @@ -2200,7 +2200,7 @@ }, "type": { "type": "reference", - "id": 674, + "id": 675, "name": "CustomerActivitiesListQueryParams" } } @@ -2210,7 +2210,7 @@ "typeArguments": [ { "type": "reference", - "id": 681, + "id": 682, "name": "CustomerActivitiesListResponse" } ], @@ -2247,7 +2247,7 @@ "flags": {}, "type": { "type": "reference", - "id": 660, + "id": 661, "name": "CustomersCommonListRequest" } } @@ -2307,7 +2307,7 @@ "flags": {}, "type": { "type": "reference", - "id": 694, + "id": 695, "name": "CustomersUpdateParams" } } @@ -2317,7 +2317,7 @@ "typeArguments": [ { "type": "reference", - "id": 687, + "id": 688, "name": "CustomersCreateResponse" } ], @@ -2606,7 +2606,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2363, + "id": 2406, "name": "EventsParams" } } @@ -2616,7 +2616,7 @@ "typeArguments": [ { "type": "reference", - "id": 2374, + "id": 2417, "name": "EventsResponse" } ], @@ -2717,7 +2717,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2233, + "id": 2276, "name": "ExportResource" } } @@ -2727,7 +2727,7 @@ "typeArguments": [ { "type": "reference", - "id": 2244, + "id": 2287, "name": "ExportsCreateResponse" } ], @@ -2826,7 +2826,7 @@ "typeArguments": [ { "type": "reference", - "id": 2244, + "id": 2287, "name": "ExportsCreateResponse" } ], @@ -2951,7 +2951,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1610, + "id": 1653, "name": "LoyaltiesAddPoints" } } @@ -2961,7 +2961,7 @@ "typeArguments": [ { "type": "reference", - "id": 1612, + "id": 1655, "name": "LoyaltiesAddPointsResponse" } ], @@ -3002,7 +3002,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1371, + "id": 1414, "name": "LoyaltiesCreateCampaign" } } @@ -3012,7 +3012,7 @@ "typeArguments": [ { "type": "reference", - "id": 1395, + "id": 1438, "name": "LoyaltiesCreateCampaignResponse" } ], @@ -3066,7 +3066,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1511, + "id": 1554, "name": "LoyaltiesCreateEarningRule" } } @@ -3079,7 +3079,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1489, + "id": 1532, "name": "LoyaltiesEarningRulesResponse" } } @@ -3132,7 +3132,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1585, + "id": 1628, "name": "LoyaltiesCreateMember" } } @@ -3142,7 +3142,7 @@ "typeArguments": [ { "type": "reference", - "id": 1546, + "id": 1589, "name": "LoyaltiesVoucherResponse" } ], @@ -3196,7 +3196,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1447, + "id": 1490, "name": "LoyaltiesCreateRewardAssignments" } } @@ -3209,7 +3209,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1454, + "id": 1497, "name": "LoyaltiesCreateRewardAssignmentResponse" } } @@ -3264,7 +3264,7 @@ }, "type": { "type": "reference", - "id": 1437, + "id": 1480, "name": "LoyaltiesDeleteCampaignParams" } } @@ -3443,7 +3443,7 @@ "typeArguments": [ { "type": "reference", - "id": 1395, + "id": 1438, "name": "LoyaltiesCreateCampaignResponse" } ], @@ -3504,7 +3504,7 @@ "typeArguments": [ { "type": "reference", - "id": 1546, + "id": 1589, "name": "LoyaltiesVoucherResponse" } ], @@ -3565,7 +3565,7 @@ "typeArguments": [ { "type": "reference", - "id": 1599, + "id": 1642, "name": "LoyaltiesGetMemberActivitiesResponse" } ], @@ -3606,7 +3606,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1363, + "id": 1406, "name": "LoyaltiesListParams" }, "defaultValue": "{}" @@ -3617,7 +3617,7 @@ "typeArguments": [ { "type": "reference", - "id": 1366, + "id": 1409, "name": "LoyaltiesListResponse" } ], @@ -3669,7 +3669,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1475, + "id": 1518, "name": "LoyaltiesListEarningRulesParams" }, "defaultValue": "{}" @@ -3680,7 +3680,7 @@ "typeArguments": [ { "type": "reference", - "id": 1506, + "id": 1549, "name": "LoyaltiesListEarningRulesResponse" } ], @@ -3734,7 +3734,7 @@ }, "type": { "type": "reference", - "id": 1535, + "id": 1578, "name": "LoyaltiesListMembersParams" } } @@ -3744,7 +3744,7 @@ "typeArguments": [ { "type": "reference", - "id": 1580, + "id": 1623, "name": "LoyaltiesListMembersResponse" } ], @@ -3796,7 +3796,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1439, + "id": 1482, "name": "LoyaltiesListRewardAssignmentsParams" }, "defaultValue": "{}" @@ -3807,7 +3807,7 @@ "typeArguments": [ { "type": "reference", - "id": 1442, + "id": 1485, "name": "LoyaltiesListRewardAssignmentsResponse" } ], @@ -3870,7 +3870,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1622, + "id": 1665, "name": "LoyaltiesRedeemRewardParams" } } @@ -3880,7 +3880,7 @@ "typeArguments": [ { "type": "reference", - "id": 1634, + "id": 1677, "name": "LoyaltiesRedeemRewardResponse" } ], @@ -3921,7 +3921,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1429, + "id": 1472, "name": "LoyaltiesUpdateCampaign" } } @@ -3931,7 +3931,7 @@ "typeArguments": [ { "type": "reference", - "id": 1395, + "id": 1438, "name": "LoyaltiesCreateCampaignResponse" } ], @@ -3983,7 +3983,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1525, + "id": 1568, "name": "LoyaltiesUpdateEarningRule" } } @@ -3993,7 +3993,7 @@ "typeArguments": [ { "type": "reference", - "id": 1489, + "id": 1532, "name": "LoyaltiesEarningRulesResponse" } ], @@ -4045,7 +4045,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1467, + "id": 1510, "name": "LoyaltiesUpdateRewardAssignment" } } @@ -4055,7 +4055,7 @@ "typeArguments": [ { "type": "reference", - "id": 1454, + "id": 1497, "name": "LoyaltiesCreateRewardAssignmentResponse" } ], @@ -4174,7 +4174,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2294, + "id": 2337, "name": "OrdersCreate" } } @@ -4184,7 +4184,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } ], @@ -4234,7 +4234,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } ], @@ -4277,7 +4277,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2294, + "id": 2337, "name": "OrdersCreate" } } @@ -4328,7 +4328,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2334, + "id": 2377, "name": "OrdersListParams" }, "defaultValue": "{}" @@ -4339,7 +4339,7 @@ "typeArguments": [ { "type": "reference", - "id": 2337, + "id": 2380, "name": "OrdersListResponse" } ], @@ -4380,7 +4380,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2322, + "id": 2365, "name": "OrdersUpdate" } } @@ -4390,7 +4390,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } ], @@ -4495,7 +4495,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2094, + "id": 2137, "name": "ProductsBulkUpdate" } } @@ -4505,7 +4505,7 @@ "typeArguments": [ { "type": "reference", - "id": 2095, + "id": 2138, "name": "ProductsBulkUpdateResponse" } ], @@ -4546,7 +4546,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2091, + "id": 2134, "name": "ProductsBulkUpdateMetadata" } } @@ -4556,7 +4556,7 @@ "typeArguments": [ { "type": "reference", - "id": 2098, + "id": 2141, "name": "ProductsBulkUpdateMetadataResponse" } ], @@ -4597,7 +4597,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2057, + "id": 2100, "name": "ProductsCreate" } } @@ -4607,7 +4607,7 @@ "typeArguments": [ { "type": "reference", - "id": 2070, + "id": 2113, "name": "ProductsCreateResponse" } ], @@ -4659,7 +4659,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2111, + "id": 2154, "name": "ProductsCreateSku" } } @@ -4669,7 +4669,7 @@ "typeArguments": [ { "type": "reference", - "id": 2119, + "id": 2162, "name": "ProductsCreateSkuResponse" } ], @@ -4723,7 +4723,7 @@ }, "type": { "type": "reference", - "id": 2101, + "id": 2144, "name": "ProductsDeleteParams" } } @@ -4797,7 +4797,7 @@ }, "type": { "type": "reference", - "id": 2136, + "id": 2179, "name": "ProductsDeleteSkuParams" } } @@ -4856,7 +4856,7 @@ "typeArguments": [ { "type": "reference", - "id": 2080, + "id": 2123, "name": "ProductsGetResponse" } ], @@ -4906,7 +4906,7 @@ "typeArguments": [ { "type": "reference", - "id": 2119, + "id": 2162, "name": "ProductsCreateSkuResponse" } ], @@ -4949,7 +4949,7 @@ }, "type": { "type": "reference", - "id": 2103, + "id": 2146, "name": "ProductsListParams" } } @@ -4959,7 +4959,7 @@ "typeArguments": [ { "type": "reference", - "id": 2106, + "id": 2149, "name": "ProductsListResponse" } ], @@ -5009,7 +5009,7 @@ "typeArguments": [ { "type": "reference", - "id": 2138, + "id": 2181, "name": "ProductsListSkus" } ], @@ -5050,7 +5050,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2081, + "id": 2124, "name": "ProductsUpdate" } } @@ -5060,7 +5060,7 @@ "typeArguments": [ { "type": "reference", - "id": 2070, + "id": 2113, "name": "ProductsCreateResponse" } ], @@ -5112,7 +5112,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2131, + "id": 2174, "name": "ProductsUpdateSku" } } @@ -5122,7 +5122,7 @@ "typeArguments": [ { "type": "reference", - "id": 2119, + "id": 2162, "name": "ProductsCreateSkuResponse" } ], @@ -5245,7 +5245,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1191, + "id": 1234, "name": "PromotionTiersCreateParams" } } @@ -5255,7 +5255,7 @@ "typeArguments": [ { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" } ], @@ -5354,7 +5354,7 @@ "typeArguments": [ { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" } ], @@ -5404,7 +5404,7 @@ "typeArguments": [ { "type": "reference", - "id": 1184, + "id": 1227, "name": "PromotionTiersListAllResponse" } ], @@ -5445,7 +5445,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1180, + "id": 1223, "name": "PromotionTiersListAllParams" }, "defaultValue": "{}" @@ -5456,7 +5456,7 @@ "typeArguments": [ { "type": "reference", - "id": 1184, + "id": 1227, "name": "PromotionTiersListAllResponse" } ], @@ -5508,7 +5508,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1199, + "id": 1242, "name": "PromotionTiersRedeemParams" } } @@ -5518,7 +5518,7 @@ "typeArguments": [ { "type": "reference", - "id": 1213, + "id": 1256, "name": "PromotionTiersRedeemResponse" } ], @@ -5559,7 +5559,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1261, + "id": 1304, "name": "PromotionTiersUpdateParams" } } @@ -5569,7 +5569,7 @@ "typeArguments": [ { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" } ], @@ -5702,7 +5702,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1301, + "id": 1344, "name": "PromotionsCreate" } } @@ -5712,7 +5712,7 @@ "typeArguments": [ { "type": "reference", - "id": 1265, + "id": 1308, "name": "PromotionsCreateResponse" } ], @@ -5753,7 +5753,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1316, + "id": 1359, "name": "PromotionsValidateParams" } }, @@ -5767,7 +5767,7 @@ }, "type": { "type": "reference", - "id": 1329, + "id": 1372, "name": "PromotionsValidateQueryParams" } } @@ -5777,7 +5777,7 @@ "typeArguments": [ { "type": "reference", - "id": 1332, + "id": 1375, "name": "PromotionsValidateResponse" } ], @@ -5895,7 +5895,7 @@ "typeArguments": [ { "type": "reference", - "id": 860, + "id": 861, "name": "Redemption" } ], @@ -5945,7 +5945,7 @@ "typeArguments": [ { "type": "reference", - "id": 895, + "id": 896, "name": "RedemptionsGetForVoucherResponse" } ], @@ -5986,7 +5986,7 @@ "flags": {}, "type": { "type": "reference", - "id": 850, + "id": 851, "name": "RedemptionsListParams" }, "defaultValue": "{}" @@ -5997,7 +5997,7 @@ "typeArguments": [ { "type": "reference", - "id": 890, + "id": 891, "name": "RedemptionsListResponse" } ], @@ -6049,7 +6049,7 @@ "flags": {}, "type": { "type": "reference", - "id": 817, + "id": 818, "name": "RedemptionsRedeemBody" }, "defaultValue": "{}" @@ -6060,7 +6060,7 @@ "typeArguments": [ { "type": "reference", - "id": 828, + "id": 829, "name": "RedemptionsRedeemResponse" } ], @@ -6101,7 +6101,7 @@ "flags": {}, "type": { "type": "reference", - "id": 948, + "id": 949, "name": "RedemptionsRedeemStackableParams" } } @@ -6111,7 +6111,7 @@ "typeArguments": [ { "type": "reference", - "id": 969, + "id": 970, "name": "RedemptionsRedeemStackableResponse" } ], @@ -6165,7 +6165,7 @@ }, "type": { "type": "reference", - "id": 903, + "id": 904, "name": "RedemptionsRollbackParams" } } @@ -6175,7 +6175,7 @@ "typeArguments": [ { "type": "reference", - "id": 916, + "id": 917, "name": "RedemptionsRollbackResponse" } ], @@ -6251,7 +6251,7 @@ "typeArguments": [ { "type": "reference", - "id": 985, + "id": 986, "name": "RedemptionsRollbackStackableResponse" } ], @@ -7047,7 +7047,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2014, + "id": 2057, "name": "RewardsCreate" } } @@ -7057,7 +7057,7 @@ "typeArguments": [ { "type": "reference", - "id": 2006, + "id": 2049, "name": "RewardsCreateResponse" } ], @@ -7109,7 +7109,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2041, + "id": 2084, "name": "RewardsCreateAssignment" } } @@ -7119,7 +7119,7 @@ "typeArguments": [ { "type": "reference", - "id": 2020, + "id": 2063, "name": "RewardsAssignmentObject" } ], @@ -7270,7 +7270,7 @@ "typeArguments": [ { "type": "reference", - "id": 2006, + "id": 2049, "name": "RewardsCreateResponse" } ], @@ -7311,7 +7311,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1991, + "id": 2034, "name": "RewardsListParams" }, "defaultValue": "{}" @@ -7322,7 +7322,7 @@ "typeArguments": [ { "type": "reference", - "id": 2007, + "id": 2050, "name": "RewardsListResponse" } ], @@ -7374,7 +7374,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2033, + "id": 2076, "name": "RewardsListAssignmentsParams" }, "defaultValue": "{}" @@ -7385,7 +7385,7 @@ "typeArguments": [ { "type": "reference", - "id": 2036, + "id": 2079, "name": "RewardsListAssignmentsResponse" } ], @@ -7426,7 +7426,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2016, + "id": 2059, "name": "RewardsUpdate" } } @@ -7436,7 +7436,7 @@ "typeArguments": [ { "type": "reference", - "id": 2006, + "id": 2049, "name": "RewardsCreateResponse" } ], @@ -7488,7 +7488,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2049, + "id": 2092, "name": "RewardsUpdateAssignment" } } @@ -7498,7 +7498,7 @@ "typeArguments": [ { "type": "reference", - "id": 2020, + "id": 2063, "name": "RewardsAssignmentObject" } ], @@ -7607,7 +7607,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2202, + "id": 2245, "name": "SegmentsCreate" } } @@ -7617,7 +7617,7 @@ "typeArguments": [ { "type": "reference", - "id": 2211, + "id": 2254, "name": "SegmentsCreateResponse" } ], @@ -7716,7 +7716,7 @@ "typeArguments": [ { "type": "reference", - "id": 2211, + "id": 2254, "name": "SegmentsCreateResponse" } ], @@ -7766,7 +7766,7 @@ "typeArguments": [ { "type": "reference", - "id": 2224, + "id": 2267, "name": "SegmentsListResponse" } ], @@ -7870,7 +7870,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1928, + "id": 1971, "name": "ValidationRulesCreate" } } @@ -7880,7 +7880,7 @@ "typeArguments": [ { "type": "reference", - "id": 1938, + "id": 1981, "name": "ValidationRulesCreateResponse" } ], @@ -7932,7 +7932,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1963, + "id": 2006, "name": "ValidationRulesCreateAssignment" } } @@ -7942,7 +7942,7 @@ "typeArguments": [ { "type": "reference", - "id": 1967, + "id": 2010, "name": "ValidationRulesCreateAssignmentResponse" } ], @@ -8101,7 +8101,7 @@ "typeArguments": [ { "type": "reference", - "id": 1956, + "id": 1999, "name": "ValidationRulesGetResponse" } ], @@ -8142,7 +8142,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1975, + "id": 2018, "name": "ValidationRulesListParams" }, "defaultValue": "{}" @@ -8153,7 +8153,7 @@ "typeArguments": [ { "type": "reference", - "id": 1978, + "id": 2021, "name": "ValidationRulesListResponse" } ], @@ -8205,7 +8205,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1983, + "id": 2026, "name": "ValidationRulesListAssignmentsParams" }, "defaultValue": "{}" @@ -8216,7 +8216,7 @@ "typeArguments": [ { "type": "reference", - "id": 1986, + "id": 2029, "name": "ValidationRulesListAssignmentsResponse" } ], @@ -8257,7 +8257,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1959, + "id": 2002, "name": "ValidationRulesUpdate" } } @@ -8267,7 +8267,7 @@ "typeArguments": [ { "type": "reference", - "id": 1938, + "id": 1981, "name": "ValidationRulesCreateResponse" } ], @@ -8321,7 +8321,7 @@ "typeArguments": [ { "type": "reference", - "id": 1952, + "id": 1995, "name": "ValidationRulesValidateResponse" } ], @@ -8441,7 +8441,7 @@ }, { "type": "reference", - "id": 1316, + "id": 1359, "name": "PromotionsValidateParams" } ] @@ -8455,7 +8455,7 @@ "flags": {}, "type": { "type": "reference", - "id": 999, + "id": 1000, "name": "ValidationsValidateVoucherParams" }, "defaultValue": "{}" @@ -8469,7 +8469,7 @@ "typeArguments": [ { "type": "reference", - "id": 1332, + "id": 1375, "name": "PromotionsValidateResponse" } ], @@ -8480,7 +8480,7 @@ "typeArguments": [ { "type": "reference", - "id": 1022, + "id": 1020, "name": "ValidationsValidateVoucherResponse" } ], @@ -8523,7 +8523,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1056, + "id": 1099, "name": "ValidationsValidateStackableParams" } } @@ -8533,7 +8533,7 @@ "typeArguments": [ { "type": "reference", - "id": 1063, + "id": 1106, "name": "ValidationValidateStackableResponse" } ], @@ -8585,7 +8585,7 @@ "flags": {}, "type": { "type": "reference", - "id": 999, + "id": 1000, "name": "ValidationsValidateVoucherParams" }, "defaultValue": "{}" @@ -8596,7 +8596,7 @@ "typeArguments": [ { "type": "reference", - "id": 1022, + "id": 1020, "name": "ValidationsValidateVoucherResponse" } ], @@ -8689,6 +8689,10 @@ "type": { "type": "reference", "typeArguments": [ + { + "type": "intrinsic", + "name": "unknown" + }, { "type": "intrinsic", "name": "any" @@ -8726,6 +8730,10 @@ "type": { "type": "reference", "typeArguments": [ + { + "type": "intrinsic", + "name": "unknown" + }, { "type": "intrinsic", "name": "any" @@ -9228,7 +9236,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1915, + "id": 1958, "name": "VouchersBulkUpdate" } } @@ -9238,7 +9246,7 @@ "typeArguments": [ { "type": "reference", - "id": 1925, + "id": 1968, "name": "VouchersBulkUpdateResponse" } ], @@ -9279,7 +9287,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1916, + "id": 1959, "name": "VouchersBulkUpdateMetadata" } } @@ -9289,7 +9297,7 @@ "typeArguments": [ { "type": "reference", - "id": 1922, + "id": 1965, "name": "VouchersBulkUpdateMetadataResponse" } ], @@ -9330,7 +9338,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1848, + "id": 1891, "name": "VouchersCreate" } } @@ -9343,7 +9351,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" }, { @@ -9499,7 +9507,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1863, + "id": 1906, "name": "VouchersDeleteParams" }, "defaultValue": "{}" @@ -9559,7 +9567,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } ], @@ -9609,7 +9617,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } ], @@ -9659,7 +9667,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } ], @@ -9702,7 +9710,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1892, + "id": 1935, "name": "VouchersImport" } } @@ -9713,7 +9721,7 @@ "typeArguments": [ { "type": "reference", - "id": 1919, + "id": 1962, "name": "VouchersImportResponse" } ], @@ -9754,7 +9762,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1865, + "id": 1908, "name": "VouchersListParams" }, "defaultValue": "{}" @@ -9765,7 +9773,7 @@ "typeArguments": [ { "type": "reference", - "id": 1885, + "id": 1928, "name": "VouchersListResponse" } ], @@ -9866,7 +9874,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1851, + "id": 1894, "name": "VouchersUpdate" } } @@ -9876,7 +9884,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } ], @@ -9922,26 +9930,39 @@ ] }, { - "id": 2444, + "id": 2487, "name": "ApplicableTo", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2451, + "id": 2497, + "name": "aggregated_quantity_limit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2498, "name": "effect", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2443, + "id": 2486, "name": "ApplicableToEffect" } }, { - "id": 2446, + "id": 2489, "name": "id", "kind": 1024, "kindString": "Property", @@ -9952,7 +9973,7 @@ } }, { - "id": 2445, + "id": 2488, "name": "object", "kind": 1024, "kindString": "Property", @@ -9976,7 +9997,7 @@ } }, { - "id": 2449, + "id": 2494, "name": "price", "kind": 1024, "kindString": "Property", @@ -9989,7 +10010,7 @@ } }, { - "id": 2450, + "id": 2495, "name": "price_formula", "kind": 1024, "kindString": "Property", @@ -10002,7 +10023,46 @@ } }, { - "id": 2447, + "id": 2491, + "name": "product_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2492, + "name": "product_source_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2496, + "name": "quantity_limit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2490, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -10015,7 +10075,7 @@ } }, { - "id": 2448, + "id": 2493, "name": "strict", "kind": 1024, "kindString": "Property", @@ -10031,26 +10091,30 @@ "title": "Properties", "kind": 1024, "children": [ - 2451, - 2446, - 2445, - 2449, - 2450, - 2447, - 2448 + 2497, + 2498, + 2489, + 2488, + 2494, + 2495, + 2491, + 2492, + 2496, + 2490, + 2493 ] } ] }, { - "id": 2452, + "id": 2499, "name": "ApplicableToResultList", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2455, + "id": 2502, "name": "data", "kind": 1024, "kindString": "Property", @@ -10059,13 +10123,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2444, + "id": 2487, "name": "ApplicableTo" } } }, { - "id": 2453, + "id": 2500, "name": "object", "kind": 1024, "kindString": "Property", @@ -10076,7 +10140,7 @@ } }, { - "id": 2454, + "id": 2501, "name": "total", "kind": 1024, "kindString": "Property", @@ -10092,22 +10156,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2455, - 2453, - 2454 + 2502, + 2500, + 2501 ] } ] }, { - "id": 697, + "id": 698, "name": "BalanceCreateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 698, + "id": 699, "name": "amount", "kind": 1024, "kindString": "Property", @@ -10123,20 +10187,20 @@ "title": "Properties", "kind": 1024, "children": [ - 698 + 699 ] } ] }, { - "id": 699, + "id": 700, "name": "BalanceCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 700, + "id": 701, "name": "amount", "kind": 1024, "kindString": "Property", @@ -10147,7 +10211,7 @@ } }, { - "id": 702, + "id": 703, "name": "balance", "kind": 1024, "kindString": "Property", @@ -10158,7 +10222,7 @@ } }, { - "id": 704, + "id": 705, "name": "object", "kind": 1024, "kindString": "Property", @@ -10169,7 +10233,7 @@ } }, { - "id": 705, + "id": 706, "name": "related_object", "kind": 1024, "kindString": "Property", @@ -10177,14 +10241,14 @@ "type": { "type": "reflection", "declaration": { - "id": 706, + "id": 707, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 708, + "id": 709, "name": "id", "kind": 1024, "kindString": "Property", @@ -10195,7 +10259,7 @@ } }, { - "id": 707, + "id": 708, "name": "type", "kind": 1024, "kindString": "Property", @@ -10211,8 +10275,8 @@ "title": "Properties", "kind": 1024, "children": [ - 708, - 707 + 709, + 708 ] } ] @@ -10220,7 +10284,7 @@ } }, { - "id": 701, + "id": 702, "name": "total", "kind": 1024, "kindString": "Property", @@ -10231,7 +10295,7 @@ } }, { - "id": 703, + "id": 704, "name": "type", "kind": 1024, "kindString": "Property", @@ -10247,25 +10311,25 @@ "title": "Properties", "kind": 1024, "children": [ - 700, - 702, - 704, - 705, 701, - 703 + 703, + 705, + 706, + 702, + 704 ] } ] }, { - "id": 1071, + "id": 1114, "name": "CampaignResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1097, + "id": 1140, "name": "active", "kind": 1024, "kindString": "Property", @@ -10276,7 +10340,7 @@ } }, { - "id": 1088, + "id": 1131, "name": "activity_duration_after_publishing", "kind": 1024, "kindString": "Property", @@ -10289,7 +10353,7 @@ } }, { - "id": 1077, + "id": 1120, "name": "auto_join", "kind": 1024, "kindString": "Property", @@ -10302,7 +10366,7 @@ } }, { - "id": 1074, + "id": 1117, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -10334,7 +10398,7 @@ } }, { - "id": 1076, + "id": 1119, "name": "category", "kind": 1024, "kindString": "Property", @@ -10347,7 +10411,7 @@ } }, { - "id": 1095, + "id": 1138, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -10358,7 +10422,7 @@ } }, { - "id": 1079, + "id": 1122, "name": "description", "kind": 1024, "kindString": "Property", @@ -10371,7 +10435,7 @@ } }, { - "id": 1087, + "id": 1130, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -10384,7 +10448,7 @@ } }, { - "id": 1072, + "id": 1115, "name": "id", "kind": 1024, "kindString": "Property", @@ -10395,7 +10459,7 @@ } }, { - "id": 1078, + "id": 1121, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -10408,7 +10472,7 @@ } }, { - "id": 1094, + "id": 1137, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -10431,7 +10495,7 @@ } }, { - "id": 1073, + "id": 1116, "name": "name", "kind": 1024, "kindString": "Property", @@ -10442,7 +10506,7 @@ } }, { - "id": 1103, + "id": 1146, "name": "object", "kind": 1024, "kindString": "Property", @@ -10453,7 +10517,7 @@ } }, { - "id": 1101, + "id": 1144, "name": "protected", "kind": 1024, "kindString": "Property", @@ -10466,7 +10530,7 @@ } }, { - "id": 1099, + "id": 1142, "name": "referral_program", "kind": 1024, "kindString": "Property", @@ -10488,7 +10552,7 @@ } }, { - "id": 1080, + "id": 1123, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -10501,7 +10565,7 @@ } }, { - "id": 1075, + "id": 1118, "name": "type", "kind": 1024, "kindString": "Property", @@ -10521,7 +10585,7 @@ } }, { - "id": 1100, + "id": 1143, "name": "use_voucher_metadata_schema", "kind": 1024, "kindString": "Property", @@ -10534,7 +10598,7 @@ } }, { - "id": 1081, + "id": 1124, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -10542,14 +10606,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1082, + "id": 1125, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1083, + "id": 1126, "name": "data", "kind": 1024, "kindString": "Property", @@ -10560,13 +10624,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1967, + "id": 2010, "name": "ValidationRulesCreateAssignmentResponse" } } }, { - "id": 1086, + "id": 1129, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -10577,7 +10641,7 @@ } }, { - "id": 1084, + "id": 1127, "name": "object", "kind": 1024, "kindString": "Property", @@ -10588,7 +10652,7 @@ } }, { - "id": 1085, + "id": 1128, "name": "total", "kind": 1024, "kindString": "Property", @@ -10604,10 +10668,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1083, - 1086, - 1084, - 1085 + 1126, + 1129, + 1127, + 1128 ] } ] @@ -10615,7 +10679,7 @@ } }, { - "id": 1093, + "id": 1136, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -10631,7 +10695,7 @@ } }, { - "id": 1089, + "id": 1132, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -10641,14 +10705,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1090, + "id": 1133, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1092, + "id": 1135, "name": "duration", "kind": 1024, "kindString": "Property", @@ -10661,7 +10725,7 @@ } }, { - "id": 1091, + "id": 1134, "name": "interval", "kind": 1024, "kindString": "Property", @@ -10679,8 +10743,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1092, - 1091 + 1135, + 1134 ] } ] @@ -10688,7 +10752,7 @@ } }, { - "id": 1098, + "id": 1141, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -10697,12 +10761,12 @@ }, "type": { "type": "reference", - "id": 1728, + "id": 1771, "name": "SimpleVoucher" } }, { - "id": 1102, + "id": 1145, "name": "vouchers_count", "kind": 1024, "kindString": "Property", @@ -10715,7 +10779,7 @@ } }, { - "id": 1096, + "id": 1139, "name": "vouchers_generation_status", "kind": 1024, "kindString": "Property", @@ -10748,43 +10812,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1097, - 1088, - 1077, - 1074, - 1076, - 1095, - 1079, - 1087, - 1072, - 1078, - 1094, - 1073, - 1103, - 1101, - 1099, - 1080, - 1075, - 1100, - 1081, - 1093, - 1089, - 1098, - 1102, - 1096 + 1140, + 1131, + 1120, + 1117, + 1119, + 1138, + 1122, + 1130, + 1115, + 1121, + 1137, + 1116, + 1146, + 1144, + 1142, + 1123, + 1118, + 1143, + 1124, + 1136, + 1132, + 1141, + 1145, + 1139 ] } ] }, { - "id": 1125, + "id": 1168, "name": "CampaignsAddVoucherParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1126, + "id": 1169, "name": "vouchers_count", "kind": 1024, "kindString": "Property", @@ -10802,20 +10866,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1126 + 1169 ] } ] }, { - "id": 1122, + "id": 1165, "name": "CampaignsDeleteParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1123, + "id": 1166, "name": "force", "kind": 1024, "kindString": "Property", @@ -10833,20 +10897,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1123 + 1166 ] } ] }, { - "id": 1131, + "id": 1174, "name": "CampaignsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1134, + "id": 1177, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -10876,7 +10940,7 @@ } }, { - "id": 1135, + "id": 1178, "name": "filters", "kind": 1024, "kindString": "Property", @@ -10886,14 +10950,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1136, + "id": 1179, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1137, + "id": 1180, "name": "junction", "kind": 1024, "kindString": "Property", @@ -10911,19 +10975,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1137 + 1180 ] } ], "indexSignature": { - "id": 1138, + "id": 1181, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1139, + "id": 1182, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -10942,7 +11006,7 @@ } }, { - "id": 1132, + "id": 1175, "name": "limit", "kind": 1024, "kindString": "Property", @@ -10955,7 +11019,7 @@ } }, { - "id": 1133, + "id": 1176, "name": "page", "kind": 1024, "kindString": "Property", @@ -10973,23 +11037,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1134, - 1135, - 1132, - 1133 + 1177, + 1178, + 1175, + 1176 ] } ] }, { - "id": 1140, + "id": 1183, "name": "CampaignsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1144, + "id": 1187, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -10998,13 +11062,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" } } }, { - "id": 1143, + "id": 1186, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -11015,7 +11079,7 @@ } }, { - "id": 1141, + "id": 1184, "name": "object", "kind": 1024, "kindString": "Property", @@ -11026,7 +11090,7 @@ } }, { - "id": 1142, + "id": 1185, "name": "total", "kind": 1024, "kindString": "Property", @@ -11042,23 +11106,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1144, - 1143, - 1141, - 1142 + 1187, + 1186, + 1184, + 1185 ] } ] }, { - "id": 1104, + "id": 1147, "name": "CampaignsQualificationsBody", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1105, + "id": 1148, "name": "customer", "kind": 1024, "kindString": "Property", @@ -11072,7 +11136,7 @@ } }, { - "id": 1106, + "id": 1149, "name": "order", "kind": 1024, "kindString": "Property", @@ -11084,7 +11148,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" }, { @@ -11114,21 +11178,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1105, - 1106 + 1148, + 1149 ] } ] }, { - "id": 1107, + "id": 1150, "name": "CampaignsQualificationsParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1108, + "id": 1151, "name": "audienceRulesOnly", "kind": 1024, "kindString": "Property", @@ -11141,7 +11205,7 @@ } }, { - "id": 1110, + "id": 1153, "name": "limit", "kind": 1024, "kindString": "Property", @@ -11154,7 +11218,7 @@ } }, { - "id": 1109, + "id": 1152, "name": "order", "kind": 1024, "kindString": "Property", @@ -11189,22 +11253,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1108, - 1110, - 1109 + 1151, + 1153, + 1152 ] } ] }, { - "id": 1111, + "id": 1154, "name": "CampaignsQualificationsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1117, + "id": 1160, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -11217,7 +11281,7 @@ } }, { - "id": 1115, + "id": 1158, "name": "data", "kind": 1024, "kindString": "Property", @@ -11226,13 +11290,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" } } }, { - "id": 1114, + "id": 1157, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -11243,7 +11307,7 @@ } }, { - "id": 1116, + "id": 1159, "name": "id", "kind": 1024, "kindString": "Property", @@ -11256,7 +11320,7 @@ } }, { - "id": 1112, + "id": 1155, "name": "object", "kind": 1024, "kindString": "Property", @@ -11267,7 +11331,7 @@ } }, { - "id": 1113, + "id": 1156, "name": "total", "kind": 1024, "kindString": "Property", @@ -11283,25 +11347,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1117, - 1115, - 1114, - 1116, - 1112, - 1113 + 1160, + 1158, + 1157, + 1159, + 1155, + 1156 ] } ] }, { - "id": 729, + "id": 730, "name": "ClientSideListVouchersResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 732, + "id": 733, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -11312,7 +11376,7 @@ } }, { - "id": 730, + "id": 731, "name": "object", "kind": 1024, "kindString": "Property", @@ -11323,7 +11387,7 @@ } }, { - "id": 731, + "id": 732, "name": "total", "kind": 1024, "kindString": "Property", @@ -11334,7 +11398,7 @@ } }, { - "id": 733, + "id": 734, "name": "vouchers", "kind": 1024, "kindString": "Property", @@ -11346,7 +11410,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" }, { @@ -11397,23 +11461,23 @@ "title": "Properties", "kind": 1024, "children": [ - 732, - 730, + 733, 731, - 733 + 732, + 734 ] } ] }, { - "id": 785, + "id": 786, "name": "ClientSidePublishCampaign", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 787, + "id": 788, "name": "count", "kind": 1024, "kindString": "Property", @@ -11426,7 +11490,7 @@ } }, { - "id": 786, + "id": 787, "name": "name", "kind": 1024, "kindString": "Property", @@ -11442,21 +11506,21 @@ "title": "Properties", "kind": 1024, "children": [ - 787, - 786 + 788, + 787 ] } ] }, { - "id": 775, + "id": 776, "name": "ClientSidePublishPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 777, + "id": 778, "name": "channel", "kind": 1024, "kindString": "Property", @@ -11469,7 +11533,7 @@ } }, { - "id": 778, + "id": 779, "name": "customer", "kind": 1024, "kindString": "Property", @@ -11483,7 +11547,7 @@ } }, { - "id": 780, + "id": 781, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -11506,7 +11570,7 @@ } }, { - "id": 776, + "id": 777, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -11519,7 +11583,7 @@ } }, { - "id": 779, + "id": 780, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -11537,24 +11601,24 @@ "title": "Properties", "kind": 1024, "children": [ - 777, 778, - 780, - 776, - 779 + 779, + 781, + 777, + 780 ] } ] }, { - "id": 782, + "id": 783, "name": "ClientSidePublishQueryParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 784, + "id": 785, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -11567,7 +11631,7 @@ } }, { - "id": 783, + "id": 784, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -11585,21 +11649,21 @@ "title": "Properties", "kind": 1024, "children": [ - 784, - 783 + 785, + 784 ] } ] }, { - "id": 756, + "id": 757, "name": "ClientSideRedeemPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 758, + "id": 759, "name": "customer", "kind": 1024, "kindString": "Property", @@ -11613,7 +11677,7 @@ } }, { - "id": 760, + "id": 761, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -11636,7 +11700,7 @@ } }, { - "id": 759, + "id": 760, "name": "order", "kind": 1024, "kindString": "Property", @@ -11645,12 +11709,12 @@ }, "type": { "type": "reference", - "id": 804, + "id": 805, "name": "ClientSideRedeemOrder" } }, { - "id": 761, + "id": 762, "name": "reward", "kind": 1024, "kindString": "Property", @@ -11660,14 +11724,14 @@ "type": { "type": "reflection", "declaration": { - "id": 762, + "id": 763, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 763, + "id": 764, "name": "id", "kind": 1024, "kindString": "Property", @@ -11683,7 +11747,7 @@ "title": "Properties", "kind": 1024, "children": [ - 763 + 764 ] } ] @@ -11691,7 +11755,7 @@ } }, { - "id": 764, + "id": 765, "name": "session", "kind": 1024, "kindString": "Property", @@ -11700,12 +11764,12 @@ }, "type": { "type": "reference", - "id": 2441, + "id": 2484, "name": "ValidationSessionReleaseParams" } }, { - "id": 757, + "id": 758, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -11723,25 +11787,25 @@ "title": "Properties", "kind": 1024, "children": [ - 758, - 760, 759, 761, - 764, - 757 + 760, + 762, + 765, + 758 ] } ] }, { - "id": 765, + "id": 766, "name": "ClientSideRedeemResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 769, + "id": 770, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -11754,7 +11818,7 @@ } }, { - "id": 768, + "id": 769, "name": "date", "kind": 1024, "kindString": "Property", @@ -11767,7 +11831,7 @@ } }, { - "id": 766, + "id": 767, "name": "id", "kind": 1024, "kindString": "Property", @@ -11778,7 +11842,7 @@ } }, { - "id": 772, + "id": 773, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -11801,7 +11865,7 @@ } }, { - "id": 767, + "id": 768, "name": "object", "kind": 1024, "kindString": "Property", @@ -11812,7 +11876,7 @@ } }, { - "id": 771, + "id": 772, "name": "order", "kind": 1024, "kindString": "Property", @@ -11821,12 +11885,12 @@ }, "type": { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } }, { - "id": 773, + "id": 774, "name": "result", "kind": 1024, "kindString": "Property", @@ -11846,7 +11910,7 @@ } }, { - "id": 770, + "id": 771, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -11859,7 +11923,7 @@ } }, { - "id": 774, + "id": 775, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -11868,7 +11932,7 @@ }, "type": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } } @@ -11878,28 +11942,28 @@ "title": "Properties", "kind": 1024, "children": [ + 770, 769, + 767, + 773, 768, - 766, 772, - 767, + 774, 771, - 773, - 770, - 774 + 775 ] } ] }, { - "id": 807, + "id": 808, "name": "ClientSideRedeemWidgetPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 808, + "id": 809, "name": "order", "kind": 1024, "kindString": "Property", @@ -11909,14 +11973,14 @@ "type": { "type": "reflection", "declaration": { - "id": 809, + "id": 810, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 810, + "id": 811, "name": "amount", "kind": 1024, "kindString": "Property", @@ -11934,7 +11998,7 @@ "title": "Properties", "kind": 1024, "children": [ - 810 + 811 ] } ] @@ -11947,20 +12011,20 @@ "title": "Properties", "kind": 1024, "children": [ - 808 + 809 ] } ] }, { - "id": 791, + "id": 792, "name": "ClientSideTrackLoyalty", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 792, + "id": 793, "name": "code", "kind": 1024, "kindString": "Property", @@ -11978,20 +12042,20 @@ "title": "Properties", "kind": 1024, "children": [ - 792 + 793 ] } ] }, { - "id": 795, + "id": 796, "name": "ClientSideTrackPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 798, + "id": 799, "name": "customer", "kind": 1024, "kindString": "Property", @@ -12003,7 +12067,7 @@ } }, { - "id": 796, + "id": 797, "name": "event", "kind": 1024, "kindString": "Property", @@ -12014,7 +12078,7 @@ } }, { - "id": 799, + "id": 800, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -12023,12 +12087,12 @@ }, "type": { "type": "reference", - "id": 791, + "id": 792, "name": "ClientSideTrackLoyalty" } }, { - "id": 797, + "id": 798, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -12051,7 +12115,7 @@ } }, { - "id": 800, + "id": 801, "name": "referral", "kind": 1024, "kindString": "Property", @@ -12060,7 +12124,7 @@ }, "type": { "type": "reference", - "id": 793, + "id": 794, "name": "ClientSideTrackReferral" } } @@ -12070,24 +12134,24 @@ "title": "Properties", "kind": 1024, "children": [ - 798, - 796, 799, 797, - 800 + 800, + 798, + 801 ] } ] }, { - "id": 793, + "id": 794, "name": "ClientSideTrackReferral", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 794, + "id": 795, "name": "code", "kind": 1024, "kindString": "Property", @@ -12105,20 +12169,20 @@ "title": "Properties", "kind": 1024, "children": [ - 794 + 795 ] } ] }, { - "id": 801, + "id": 802, "name": "ClientSideTrackResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 802, + "id": 803, "name": "object", "kind": 1024, "kindString": "Property", @@ -12129,7 +12193,7 @@ } }, { - "id": 803, + "id": 804, "name": "type", "kind": 1024, "kindString": "Property", @@ -12145,21 +12209,21 @@ "title": "Properties", "kind": 1024, "children": [ - 802, - 803 + 803, + 804 ] } ] }, { - "id": 712, + "id": 713, "name": "ClientSideValidateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 715, + "id": 716, "name": "amount", "kind": 1024, "kindString": "Property", @@ -12172,7 +12236,7 @@ } }, { - "id": 713, + "id": 714, "name": "code", "kind": 1024, "kindString": "Property", @@ -12185,7 +12249,7 @@ } }, { - "id": 718, + "id": 719, "name": "customer", "kind": 1024, "kindString": "Property", @@ -12218,7 +12282,7 @@ } }, { - "id": 716, + "id": 717, "name": "items", "kind": 1024, "kindString": "Property", @@ -12232,7 +12296,7 @@ "typeArguments": [ { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" }, { @@ -12274,7 +12338,7 @@ } }, { - "id": 722, + "id": 723, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -12297,7 +12361,7 @@ } }, { - "id": 717, + "id": 718, "name": "orderMetadata", "kind": 1024, "kindString": "Property", @@ -12320,7 +12384,7 @@ } }, { - "id": 719, + "id": 720, "name": "reward", "kind": 1024, "kindString": "Property", @@ -12330,14 +12394,14 @@ "type": { "type": "reflection", "declaration": { - "id": 720, + "id": 721, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 721, + "id": 722, "name": "id", "kind": 1024, "kindString": "Property", @@ -12353,7 +12417,7 @@ "title": "Properties", "kind": 1024, "children": [ - 721 + 722 ] } ] @@ -12361,7 +12425,7 @@ } }, { - "id": 724, + "id": 725, "name": "session_key", "kind": 1024, "kindString": "Property", @@ -12374,7 +12438,7 @@ } }, { - "id": 725, + "id": 726, "name": "session_ttl", "kind": 1024, "kindString": "Property", @@ -12387,7 +12451,7 @@ } }, { - "id": 726, + "id": 727, "name": "session_ttl_unit", "kind": 1024, "kindString": "Property", @@ -12421,7 +12485,7 @@ } }, { - "id": 723, + "id": 724, "name": "session_type", "kind": 1024, "kindString": "Property", @@ -12434,7 +12498,7 @@ } }, { - "id": 714, + "id": 715, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -12452,31 +12516,31 @@ "title": "Properties", "kind": 1024, "children": [ - 715, - 713, - 718, 716, - 722, - 717, + 714, 719, - 724, + 717, + 723, + 718, + 720, 725, 726, - 723, - 714 + 727, + 724, + 715 ] } ] }, { - "id": 734, + "id": 735, "name": "ClientSideValidateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 738, + "id": 739, "name": "applicable_to", "kind": 1024, "kindString": "Property", @@ -12485,12 +12549,12 @@ }, "type": { "type": "reference", - "id": 2452, + "id": 2499, "name": "ApplicableToResultList" } }, { - "id": 747, + "id": 748, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -12503,7 +12567,7 @@ } }, { - "id": 735, + "id": 736, "name": "code", "kind": 1024, "kindString": "Property", @@ -12516,7 +12580,7 @@ } }, { - "id": 737, + "id": 738, "name": "discount", "kind": 1024, "kindString": "Property", @@ -12528,29 +12592,29 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] } }, { - "id": 751, + "id": 752, "name": "gift", "kind": 1024, "kindString": "Property", @@ -12560,14 +12624,14 @@ "type": { "type": "reflection", "declaration": { - "id": 752, + "id": 753, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 753, + "id": 754, "name": "amount", "kind": 1024, "kindString": "Property", @@ -12578,7 +12642,7 @@ } }, { - "id": 754, + "id": 755, "name": "balance", "kind": 1024, "kindString": "Property", @@ -12594,8 +12658,8 @@ "title": "Properties", "kind": 1024, "children": [ - 753, - 754 + 754, + 755 ] } ] @@ -12603,7 +12667,7 @@ } }, { - "id": 748, + "id": 749, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -12613,14 +12677,14 @@ "type": { "type": "reflection", "declaration": { - "id": 749, + "id": 750, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 750, + "id": 751, "name": "points_cost", "kind": 1024, "kindString": "Property", @@ -12636,7 +12700,7 @@ "title": "Properties", "kind": 1024, "children": [ - 750 + 751 ] } ] @@ -12644,7 +12708,7 @@ } }, { - "id": 739, + "id": 740, "name": "order", "kind": 1024, "kindString": "Property", @@ -12654,14 +12718,14 @@ "type": { "type": "reflection", "declaration": { - "id": 740, + "id": 741, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 741, + "id": 742, "name": "amount", "kind": 1024, "kindString": "Property", @@ -12672,7 +12736,7 @@ } }, { - "id": 742, + "id": 743, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -12683,7 +12747,7 @@ } }, { - "id": 745, + "id": 746, "name": "items", "kind": 1024, "kindString": "Property", @@ -12697,7 +12761,7 @@ "typeArguments": [ { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" }, { @@ -12739,7 +12803,7 @@ } }, { - "id": 744, + "id": 745, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -12750,7 +12814,7 @@ } }, { - "id": 743, + "id": 744, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -12766,11 +12830,11 @@ "title": "Properties", "kind": 1024, "children": [ - 741, 742, + 743, + 746, 745, - 744, - 743 + 744 ] } ] @@ -12778,7 +12842,7 @@ } }, { - "id": 755, + "id": 756, "name": "promotions", "kind": 1024, "kindString": "Property", @@ -12789,13 +12853,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1151, + "id": 1194, "name": "SimplePromotionTier" } } }, { - "id": 746, + "id": 747, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -12808,7 +12872,7 @@ } }, { - "id": 736, + "id": 737, "name": "valid", "kind": 1024, "kindString": "Property", @@ -12824,29 +12888,29 @@ "title": "Properties", "kind": 1024, "children": [ + 739, + 748, + 736, 738, + 752, + 749, + 740, + 756, 747, - 735, - 737, - 751, - 748, - 739, - 755, - 746, - 736 + 737 ] } ] }, { - "id": 2342, + "id": 2385, "name": "Consent", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2346, + "id": 2389, "name": "category", "kind": 1024, "kindString": "Property", @@ -12857,7 +12921,7 @@ } }, { - "id": 2347, + "id": 2390, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -12868,7 +12932,7 @@ } }, { - "id": 2345, + "id": 2388, "name": "description", "kind": 1024, "kindString": "Property", @@ -12879,7 +12943,7 @@ } }, { - "id": 2343, + "id": 2386, "name": "id", "kind": 1024, "kindString": "Property", @@ -12890,7 +12954,7 @@ } }, { - "id": 2344, + "id": 2387, "name": "name", "kind": 1024, "kindString": "Property", @@ -12901,7 +12965,7 @@ } }, { - "id": 2349, + "id": 2392, "name": "object", "kind": 1024, "kindString": "Property", @@ -12912,7 +12976,7 @@ } }, { - "id": 2348, + "id": 2391, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -12930,26 +12994,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2346, - 2347, - 2345, - 2343, - 2344, - 2349, - 2348 + 2389, + 2390, + 2388, + 2386, + 2387, + 2392, + 2391 ] } ] }, { - "id": 2350, + "id": 2393, "name": "ConsentsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2357, + "id": 2400, "name": "consents", "kind": 1024, "kindString": "Property", @@ -12957,14 +13021,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2358, + "id": 2401, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2362, + "id": 2405, "name": "data", "kind": 1024, "kindString": "Property", @@ -12973,13 +13037,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2342, + "id": 2385, "name": "Consent" } } }, { - "id": 2361, + "id": 2404, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -12990,7 +13054,7 @@ } }, { - "id": 2359, + "id": 2402, "name": "object", "kind": 1024, "kindString": "Property", @@ -13001,7 +13065,7 @@ } }, { - "id": 2360, + "id": 2403, "name": "total", "kind": 1024, "kindString": "Property", @@ -13017,10 +13081,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2362, - 2361, - 2359, - 2360 + 2405, + 2404, + 2402, + 2403 ] } ] @@ -13028,7 +13092,7 @@ } }, { - "id": 2351, + "id": 2394, "name": "groups", "kind": 1024, "kindString": "Property", @@ -13036,14 +13100,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2352, + "id": 2395, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2356, + "id": 2399, "name": "data", "kind": 1024, "kindString": "Property", @@ -13057,7 +13121,7 @@ } }, { - "id": 2355, + "id": 2398, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -13068,7 +13132,7 @@ } }, { - "id": 2353, + "id": 2396, "name": "object", "kind": 1024, "kindString": "Property", @@ -13079,7 +13143,7 @@ } }, { - "id": 2354, + "id": 2397, "name": "total", "kind": 1024, "kindString": "Property", @@ -13095,10 +13159,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2356, - 2355, - 2353, - 2354 + 2399, + 2398, + 2396, + 2397 ] } ] @@ -13111,21 +13175,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2357, - 2351 + 2400, + 2394 ] } ] }, { - "id": 674, + "id": 675, "name": "CustomerActivitiesListQueryParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 680, + "id": 681, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -13138,7 +13202,7 @@ } }, { - "id": 679, + "id": 680, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -13172,7 +13236,7 @@ } }, { - "id": 675, + "id": 676, "name": "limit", "kind": 1024, "kindString": "Property", @@ -13185,7 +13249,7 @@ } }, { - "id": 676, + "id": 677, "name": "order", "kind": 1024, "kindString": "Property", @@ -13207,7 +13271,7 @@ } }, { - "id": 677, + "id": 678, "name": "starting_after", "kind": 1024, "kindString": "Property", @@ -13220,7 +13284,7 @@ } }, { - "id": 678, + "id": 679, "name": "starting_after_id", "kind": 1024, "kindString": "Property", @@ -13238,25 +13302,25 @@ "title": "Properties", "kind": 1024, "children": [ + 681, 680, - 679, - 675, 676, 677, - 678 + 678, + 679 ] } ] }, { - "id": 681, + "id": 682, "name": "CustomerActivitiesListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 685, + "id": 686, "name": "data", "kind": 1024, "kindString": "Property", @@ -13280,7 +13344,7 @@ } }, { - "id": 684, + "id": 685, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -13291,7 +13355,7 @@ } }, { - "id": 682, + "id": 683, "name": "object", "kind": 1024, "kindString": "Property", @@ -13302,7 +13366,7 @@ } }, { - "id": 683, + "id": 684, "name": "total", "kind": 1024, "kindString": "Property", @@ -13318,10 +13382,10 @@ "title": "Properties", "kind": 1024, "children": [ + 686, 685, - 684, - 682, - 683 + 683, + 684 ] } ] @@ -14145,6 +14209,19 @@ } } }, + { + "id": 660, + "name": "birthdate", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, { "id": 650, "name": "description", @@ -14253,6 +14330,7 @@ "kind": 1024, "children": [ 651, + 660, 650, 648, 645, @@ -14265,14 +14343,14 @@ ] }, { - "id": 660, + "id": 661, "name": "CustomersCommonListRequest", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 664, + "id": 665, "name": "city", "kind": 1024, "kindString": "Property", @@ -14285,7 +14363,7 @@ } }, { - "id": 663, + "id": 664, "name": "email", "kind": 1024, "kindString": "Property", @@ -14298,7 +14376,7 @@ } }, { - "id": 661, + "id": 662, "name": "limit", "kind": 1024, "kindString": "Property", @@ -14311,7 +14389,7 @@ } }, { - "id": 665, + "id": 666, "name": "name", "kind": 1024, "kindString": "Property", @@ -14324,7 +14402,7 @@ } }, { - "id": 666, + "id": 667, "name": "order", "kind": 1024, "kindString": "Property", @@ -14346,7 +14424,7 @@ } }, { - "id": 662, + "id": 663, "name": "page", "kind": 1024, "kindString": "Property", @@ -14359,7 +14437,7 @@ } }, { - "id": 667, + "id": 668, "name": "starting_after", "kind": 1024, "kindString": "Property", @@ -14386,26 +14464,26 @@ "title": "Properties", "kind": 1024, "children": [ - 664, - 663, - 661, 665, - 666, + 664, 662, - 667 + 666, + 667, + 663, + 668 ] } ] }, { - "id": 668, + "id": 669, "name": "CustomersCommonListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 672, + "id": 673, "name": "customers", "kind": 1024, "kindString": "Property", @@ -14420,7 +14498,7 @@ } }, { - "id": 671, + "id": 672, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -14431,7 +14509,7 @@ } }, { - "id": 673, + "id": 674, "name": "has_more", "kind": 1024, "kindString": "Property", @@ -14444,7 +14522,7 @@ } }, { - "id": 669, + "id": 670, "name": "object", "kind": 1024, "kindString": "Property", @@ -14455,7 +14533,7 @@ } }, { - "id": 670, + "id": 671, "name": "total", "kind": 1024, "kindString": "Property", @@ -14471,24 +14549,24 @@ "title": "Properties", "kind": 1024, "children": [ - 672, - 671, 673, - 669, - 670 + 672, + 674, + 670, + 671 ] } ] }, { - "id": 2475, + "id": 2533, "name": "DiscountAmount", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2477, + "id": 2535, "name": "amount_off", "kind": 1024, "kindString": "Property", @@ -14501,7 +14579,7 @@ } }, { - "id": 2478, + "id": 2536, "name": "amount_off_formula", "kind": 1024, "kindString": "Property", @@ -14514,7 +14592,7 @@ } }, { - "id": 2479, + "id": 2537, "name": "effect", "kind": 1024, "kindString": "Property", @@ -14544,7 +14622,7 @@ } }, { - "id": 2476, + "id": 2534, "name": "type", "kind": 1024, "kindString": "Property", @@ -14553,7 +14631,7 @@ }, "type": { "type": "reference", - "id": 2458, + "id": 2505, "name": "AMOUNT" } } @@ -14563,23 +14641,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2477, - 2478, - 2479, - 2476 + 2535, + 2536, + 2537, + 2534 ] } ] }, { - "id": 2486, + "id": 2544, "name": "DiscountFixed", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2490, + "id": 2548, "name": "effect", "kind": 1024, "kindString": "Property", @@ -14601,7 +14679,7 @@ } }, { - "id": 2488, + "id": 2546, "name": "fixed_amount", "kind": 1024, "kindString": "Property", @@ -14614,7 +14692,7 @@ } }, { - "id": 2489, + "id": 2547, "name": "fixed_amount_formula", "kind": 1024, "kindString": "Property", @@ -14627,7 +14705,7 @@ } }, { - "id": 2487, + "id": 2545, "name": "type", "kind": 1024, "kindString": "Property", @@ -14636,7 +14714,7 @@ }, "type": { "type": "reference", - "id": 2461, + "id": 2508, "name": "FIXED" } } @@ -14646,23 +14724,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2490, - 2488, - 2489, - 2487 + 2548, + 2546, + 2547, + 2545 ] } ] }, { - "id": 2480, + "id": 2538, "name": "DiscountPercent", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2484, + "id": 2542, "name": "amount_limit", "kind": 1024, "kindString": "Property", @@ -14675,7 +14753,7 @@ } }, { - "id": 2485, + "id": 2543, "name": "effect", "kind": 1024, "kindString": "Property", @@ -14697,7 +14775,7 @@ } }, { - "id": 2482, + "id": 2540, "name": "percent_off", "kind": 1024, "kindString": "Property", @@ -14710,7 +14788,7 @@ } }, { - "id": 2483, + "id": 2541, "name": "percent_off_formula", "kind": 1024, "kindString": "Property", @@ -14723,7 +14801,7 @@ } }, { - "id": 2481, + "id": 2539, "name": "type", "kind": 1024, "kindString": "Property", @@ -14732,7 +14810,7 @@ }, "type": { "type": "reference", - "id": 2459, + "id": 2506, "name": "PERCENT" } } @@ -14742,24 +14820,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2484, - 2485, - 2482, - 2483, - 2481 + 2542, + 2543, + 2540, + 2541, + 2539 ] } ] }, { - "id": 2467, + "id": 2525, "name": "DiscountUnit", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2471, + "id": 2529, "name": "effect", "kind": 1024, "kindString": "Property", @@ -14785,7 +14863,7 @@ } }, { - "id": 2473, + "id": 2531, "name": "product", "kind": 1024, "kindString": "Property", @@ -14798,7 +14876,7 @@ } }, { - "id": 2474, + "id": 2532, "name": "sku", "kind": 1024, "kindString": "Property", @@ -14811,7 +14889,7 @@ } }, { - "id": 2468, + "id": 2526, "name": "type", "kind": 1024, "kindString": "Property", @@ -14820,12 +14898,12 @@ }, "type": { "type": "reference", - "id": 2460, + "id": 2507, "name": "UNIT" } }, { - "id": 2469, + "id": 2527, "name": "unit_off", "kind": 1024, "kindString": "Property", @@ -14838,7 +14916,7 @@ } }, { - "id": 2470, + "id": 2528, "name": "unit_off_formula", "kind": 1024, "kindString": "Property", @@ -14851,7 +14929,7 @@ } }, { - "id": 2472, + "id": 2530, "name": "unit_type", "kind": 1024, "kindString": "Property", @@ -14869,26 +14947,189 @@ "title": "Properties", "kind": 1024, "children": [ - 2471, - 2473, - 2474, - 2468, - 2469, - 2470, - 2472 + 2529, + 2531, + 2532, + 2526, + 2527, + 2528, + 2530 + ] + } + ] + }, + { + "id": 2514, + "name": "DiscountUnitMultiple", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2516, + "name": "effect", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "literal", + "value": "ADD_MANY_ITEMS" + } + }, + { + "id": 2515, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "id": 2507, + "name": "UNIT" + } + }, + { + "id": 2517, + "name": "units", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2518, + "name": "DiscountUnitMultipleOneUnit" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2516, + 2515, + 2517 + ] + } + ] + }, + { + "id": 2518, + "name": "DiscountUnitMultipleOneUnit", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2520, + "name": "effect", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "ADD_MISSING_ITEMS" + }, + { + "type": "literal", + "value": "ADD_NEW_ITEMS" + } + ] + } + }, + { + "id": 2523, + "name": "product", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "SimpleProductDiscountUnit" + } + }, + { + "id": 2524, + "name": "sku", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "SimpleSkuDiscountUnit" + } + }, + { + "id": 2519, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "id": 2507, + "name": "UNIT" + } + }, + { + "id": 2521, + "name": "unit_off", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2522, + "name": "unit_type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2520, + 2523, + 2524, + 2519, + 2521, + 2522 ] } ] }, { - "id": 2180, + "id": 2223, "name": "DistributionsPublicationsCreateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2183, + "id": 2226, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -14898,14 +15139,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2184, + "id": 2227, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2186, + "id": 2229, "name": "count", "kind": 1024, "kindString": "Property", @@ -14918,7 +15159,7 @@ } }, { - "id": 2185, + "id": 2228, "name": "name", "kind": 1024, "kindString": "Property", @@ -14934,8 +15175,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2186, - 2185 + 2229, + 2228 ] } ] @@ -14943,7 +15184,7 @@ } }, { - "id": 2188, + "id": 2231, "name": "channel", "kind": 1024, "kindString": "Property", @@ -14956,7 +15197,7 @@ } }, { - "id": 2189, + "id": 2232, "name": "customer", "kind": 1024, "kindString": "Property", @@ -14968,7 +15209,7 @@ } }, { - "id": 2181, + "id": 2224, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -14981,7 +15222,7 @@ } }, { - "id": 2182, + "id": 2225, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -14994,7 +15235,7 @@ } }, { - "id": 2187, + "id": 2230, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -15012,25 +15253,25 @@ "title": "Properties", "kind": 1024, "children": [ - 2183, - 2188, - 2189, - 2181, - 2182, - 2187 + 2226, + 2231, + 2232, + 2224, + 2225, + 2230 ] } ] }, { - "id": 2190, + "id": 2233, "name": "DistributionsPublicationsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2197, + "id": 2240, "name": "channel", "kind": 1024, "kindString": "Property", @@ -15043,7 +15284,7 @@ } }, { - "id": 2193, + "id": 2236, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15054,7 +15295,7 @@ } }, { - "id": 2200, + "id": 2243, "name": "customer", "kind": 1024, "kindString": "Property", @@ -15068,7 +15309,7 @@ } }, { - "id": 2194, + "id": 2237, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -15079,7 +15320,7 @@ } }, { - "id": 2191, + "id": 2234, "name": "id", "kind": 1024, "kindString": "Property", @@ -15090,7 +15331,7 @@ } }, { - "id": 2196, + "id": 2239, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -15113,7 +15354,7 @@ } }, { - "id": 2192, + "id": 2235, "name": "object", "kind": 1024, "kindString": "Property", @@ -15124,7 +15365,7 @@ } }, { - "id": 2199, + "id": 2242, "name": "result", "kind": 1024, "kindString": "Property", @@ -15144,7 +15385,7 @@ } }, { - "id": 2198, + "id": 2241, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -15157,7 +15398,7 @@ } }, { - "id": 2195, + "id": 2238, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -15170,7 +15411,7 @@ } }, { - "id": 2201, + "id": 2244, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -15186,30 +15427,30 @@ "title": "Properties", "kind": 1024, "children": [ - 2197, - 2193, - 2200, - 2194, - 2191, - 2196, - 2192, - 2199, - 2198, - 2195, - 2201 + 2240, + 2236, + 2243, + 2237, + 2234, + 2239, + 2235, + 2242, + 2241, + 2238, + 2244 ] } ] }, { - "id": 2160, + "id": 2203, "name": "DistributionsPublicationsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2164, + "id": 2207, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -15222,7 +15463,7 @@ } }, { - "id": 2165, + "id": 2208, "name": "customer", "kind": 1024, "kindString": "Property", @@ -15235,7 +15476,7 @@ } }, { - "id": 2170, + "id": 2213, "name": "filters", "kind": 1024, "kindString": "Property", @@ -15245,14 +15486,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2171, + "id": 2214, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2172, + "id": 2215, "name": "junction", "kind": 1024, "kindString": "Property", @@ -15279,19 +15520,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2172 + 2215 ] } ], "indexSignature": { - "id": 2173, + "id": 2216, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2174, + "id": 2217, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -15310,7 +15551,7 @@ } }, { - "id": 2169, + "id": 2212, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -15323,7 +15564,7 @@ } }, { - "id": 2161, + "id": 2204, "name": "limit", "kind": 1024, "kindString": "Property", @@ -15336,7 +15577,7 @@ } }, { - "id": 2163, + "id": 2206, "name": "order", "kind": 1024, "kindString": "Property", @@ -15398,7 +15639,7 @@ } }, { - "id": 2162, + "id": 2205, "name": "page", "kind": 1024, "kindString": "Property", @@ -15411,7 +15652,7 @@ } }, { - "id": 2167, + "id": 2210, "name": "result", "kind": 1024, "kindString": "Property", @@ -15433,7 +15674,7 @@ } }, { - "id": 2166, + "id": 2209, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -15446,7 +15687,7 @@ } }, { - "id": 2168, + "id": 2211, "name": "voucher_type", "kind": 1024, "kindString": "Property", @@ -15481,29 +15722,29 @@ "title": "Properties", "kind": 1024, "children": [ - 2164, - 2165, - 2170, - 2169, - 2161, - 2163, - 2162, - 2167, - 2166, - 2168 + 2207, + 2208, + 2213, + 2212, + 2204, + 2206, + 2205, + 2210, + 2209, + 2211 ] } ] }, { - "id": 2175, + "id": 2218, "name": "DistributionsPublicationsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2178, + "id": 2221, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -15514,7 +15755,7 @@ } }, { - "id": 2176, + "id": 2219, "name": "object", "kind": 1024, "kindString": "Property", @@ -15525,7 +15766,7 @@ } }, { - "id": 2179, + "id": 2222, "name": "publications", "kind": 1024, "kindString": "Property", @@ -15541,7 +15782,7 @@ } }, { - "id": 2177, + "id": 2220, "name": "total", "kind": 1024, "kindString": "Property", @@ -15557,23 +15798,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2178, - 2176, - 2179, - 2177 + 2221, + 2219, + 2222, + 2220 ] } ] }, { - "id": 2363, + "id": 2406, "name": "EventsParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2365, + "id": 2408, "name": "customer", "kind": 1024, "kindString": "Property", @@ -15585,7 +15826,7 @@ } }, { - "id": 2364, + "id": 2407, "name": "event", "kind": 1024, "kindString": "Property", @@ -15596,7 +15837,7 @@ } }, { - "id": 2371, + "id": 2414, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -15606,14 +15847,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2372, + "id": 2415, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2373, + "id": 2416, "name": "code", "kind": 1024, "kindString": "Property", @@ -15629,7 +15870,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2373 + 2416 ] } ] @@ -15637,7 +15878,7 @@ } }, { - "id": 2366, + "id": 2409, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -15660,7 +15901,7 @@ } }, { - "id": 2367, + "id": 2410, "name": "referral", "kind": 1024, "kindString": "Property", @@ -15670,14 +15911,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2368, + "id": 2411, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2369, + "id": 2412, "name": "code", "kind": 1024, "kindString": "Property", @@ -15688,7 +15929,7 @@ } }, { - "id": 2370, + "id": 2413, "name": "referrer_id", "kind": 1024, "kindString": "Property", @@ -15706,8 +15947,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2369, - 2370 + 2412, + 2413 ] } ] @@ -15720,24 +15961,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2365, - 2364, - 2371, - 2366, - 2367 + 2408, + 2407, + 2414, + 2409, + 2410 ] } ] }, { - "id": 2374, + "id": 2417, "name": "EventsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2375, + "id": 2418, "name": "object", "kind": 1024, "kindString": "Property", @@ -15748,7 +15989,7 @@ } }, { - "id": 2376, + "id": 2419, "name": "type", "kind": 1024, "kindString": "Property", @@ -15764,21 +16005,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2375, - 2376 + 2418, + 2419 ] } ] }, { - "id": 2233, + "id": 2276, "name": "ExportResource", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2234, + "id": 2277, "name": "exported_object", "kind": 1024, "kindString": "Property", @@ -15806,7 +16047,7 @@ } }, { - "id": 2235, + "id": 2278, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -15816,14 +16057,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2236, + "id": 2279, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2238, + "id": 2281, "name": "fields", "kind": 1024, "kindString": "Property", @@ -15839,7 +16080,7 @@ } }, { - "id": 2239, + "id": 2282, "name": "filters", "kind": 1024, "kindString": "Property", @@ -15849,14 +16090,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2240, + "id": 2283, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2241, + "id": 2284, "name": "junction", "kind": 1024, "kindString": "Property", @@ -15883,19 +16124,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2241 + 2284 ] } ], "indexSignature": { - "id": 2242, + "id": 2285, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2243, + "id": 2286, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -15914,7 +16155,7 @@ } }, { - "id": 2237, + "id": 2280, "name": "order", "kind": 1024, "kindString": "Property", @@ -15932,9 +16173,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2238, - 2239, - 2237 + 2281, + 2282, + 2280 ] } ] @@ -15947,21 +16188,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2234, - 2235 + 2277, + 2278 ] } ] }, { - "id": 2244, + "id": 2287, "name": "ExportsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2249, + "id": 2292, "name": "channel", "kind": 1024, "kindString": "Property", @@ -15974,7 +16215,7 @@ } }, { - "id": 2247, + "id": 2290, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15985,7 +16226,7 @@ } }, { - "id": 2250, + "id": 2293, "name": "exported_object", "kind": 1024, "kindString": "Property", @@ -16013,7 +16254,7 @@ } }, { - "id": 2245, + "id": 2288, "name": "id", "kind": 1024, "kindString": "Property", @@ -16024,7 +16265,7 @@ } }, { - "id": 2246, + "id": 2289, "name": "object", "kind": 1024, "kindString": "Property", @@ -16035,7 +16276,7 @@ } }, { - "id": 2251, + "id": 2294, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -16045,14 +16286,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2252, + "id": 2295, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2253, + "id": 2296, "name": "fields", "kind": 1024, "kindString": "Property", @@ -16068,7 +16309,7 @@ } }, { - "id": 2254, + "id": 2297, "name": "filters", "kind": 1024, "kindString": "Property", @@ -16078,14 +16319,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2255, + "id": 2298, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2256, + "id": 2299, "name": "junction", "kind": 1024, "kindString": "Property", @@ -16103,19 +16344,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2256 + 2299 ] } ], "indexSignature": { - "id": 2257, + "id": 2300, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2258, + "id": 2301, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -16139,8 +16380,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2253, - 2254 + 2296, + 2297 ] } ] @@ -16148,7 +16389,7 @@ } }, { - "id": 2259, + "id": 2302, "name": "result", "kind": 1024, "kindString": "Property", @@ -16158,14 +16399,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2260, + "id": 2303, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2261, + "id": 2304, "name": "url", "kind": 1024, "kindString": "Property", @@ -16181,7 +16422,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2261 + 2304 ] } ] @@ -16189,7 +16430,7 @@ } }, { - "id": 2248, + "id": 2291, "name": "status", "kind": 1024, "kindString": "Property", @@ -16222,27 +16463,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2249, - 2247, - 2250, - 2245, - 2246, - 2251, - 2259, - 2248 + 2292, + 2290, + 2293, + 2288, + 2289, + 2294, + 2302, + 2291 ] } ] }, { - "id": 2427, + "id": 2470, "name": "GiftRedemptionParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2428, + "id": 2471, "name": "credits", "kind": 1024, "kindString": "Property", @@ -16260,20 +16501,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2428 + 2471 ] } ] }, { - "id": 1610, + "id": 1653, "name": "LoyaltiesAddPoints", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1611, + "id": 1654, "name": "points", "kind": 1024, "kindString": "Property", @@ -16289,20 +16530,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1611 + 1654 ] } ] }, { - "id": 1612, + "id": 1655, "name": "LoyaltiesAddPointsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1615, + "id": 1658, "name": "balance", "kind": 1024, "kindString": "Property", @@ -16313,7 +16554,7 @@ } }, { - "id": 1617, + "id": 1660, "name": "object", "kind": 1024, "kindString": "Property", @@ -16324,7 +16565,7 @@ } }, { - "id": 1613, + "id": 1656, "name": "points", "kind": 1024, "kindString": "Property", @@ -16335,7 +16576,7 @@ } }, { - "id": 1618, + "id": 1661, "name": "related_object", "kind": 1024, "kindString": "Property", @@ -16345,14 +16586,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1619, + "id": 1662, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1621, + "id": 1664, "name": "id", "kind": 1024, "kindString": "Property", @@ -16365,7 +16606,7 @@ } }, { - "id": 1620, + "id": 1663, "name": "type", "kind": 1024, "kindString": "Property", @@ -16383,8 +16624,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1621, - 1620 + 1664, + 1663 ] } ] @@ -16392,7 +16633,7 @@ } }, { - "id": 1614, + "id": 1657, "name": "total", "kind": 1024, "kindString": "Property", @@ -16403,7 +16644,7 @@ } }, { - "id": 1616, + "id": 1659, "name": "type", "kind": 1024, "kindString": "Property", @@ -16419,25 +16660,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1615, - 1617, - 1613, - 1618, - 1614, - 1616 + 1658, + 1660, + 1656, + 1661, + 1657, + 1659 ] } ] }, { - "id": 1371, + "id": 1414, "name": "LoyaltiesCreateCampaign", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1374, + "id": 1417, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -16450,7 +16691,7 @@ } }, { - "id": 1394, + "id": 1437, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -16473,7 +16714,7 @@ } }, { - "id": 1372, + "id": 1415, "name": "name", "kind": 1024, "kindString": "Property", @@ -16484,7 +16725,7 @@ } }, { - "id": 1373, + "id": 1416, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -16497,7 +16738,7 @@ } }, { - "id": 1375, + "id": 1418, "name": "type", "kind": 1024, "kindString": "Property", @@ -16519,7 +16760,7 @@ } }, { - "id": 1377, + "id": 1420, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -16527,14 +16768,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1378, + "id": 1421, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1387, + "id": 1430, "name": "code_config", "kind": 1024, "kindString": "Property", @@ -16544,14 +16785,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1388, + "id": 1431, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1390, + "id": 1433, "name": "charset", "kind": 1024, "kindString": "Property", @@ -16564,7 +16805,7 @@ } }, { - "id": 1389, + "id": 1432, "name": "length", "kind": 1024, "kindString": "Property", @@ -16577,7 +16818,7 @@ } }, { - "id": 1391, + "id": 1434, "name": "pattern", "kind": 1024, "kindString": "Property", @@ -16590,7 +16831,7 @@ } }, { - "id": 1392, + "id": 1435, "name": "prefix", "kind": 1024, "kindString": "Property", @@ -16603,7 +16844,7 @@ } }, { - "id": 1393, + "id": 1436, "name": "suffix", "kind": 1024, "kindString": "Property", @@ -16621,11 +16862,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1390, - 1389, - 1391, - 1392, - 1393 + 1433, + 1432, + 1434, + 1435, + 1436 ] } ] @@ -16633,7 +16874,7 @@ } }, { - "id": 1383, + "id": 1426, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -16641,14 +16882,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1384, + "id": 1427, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1386, + "id": 1429, "name": "balance", "kind": 1024, "kindString": "Property", @@ -16661,7 +16902,7 @@ } }, { - "id": 1385, + "id": 1428, "name": "points", "kind": 1024, "kindString": "Property", @@ -16677,8 +16918,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1386, - 1385 + 1429, + 1428 ] } ] @@ -16686,7 +16927,7 @@ } }, { - "id": 1380, + "id": 1423, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -16696,14 +16937,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1381, + "id": 1424, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1382, + "id": 1425, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -16719,7 +16960,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1382 + 1425 ] } ] @@ -16727,7 +16968,7 @@ } }, { - "id": 1379, + "id": 1422, "name": "type", "kind": 1024, "kindString": "Property", @@ -16743,10 +16984,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1387, - 1383, - 1380, - 1379 + 1430, + 1426, + 1423, + 1422 ] } ] @@ -16754,7 +16995,7 @@ } }, { - "id": 1376, + "id": 1419, "name": "vouchers_count", "kind": 1024, "kindString": "Property", @@ -16772,26 +17013,26 @@ "title": "Properties", "kind": 1024, "children": [ - 1374, - 1394, - 1372, - 1373, - 1375, - 1377, - 1376 + 1417, + 1437, + 1415, + 1416, + 1418, + 1420, + 1419 ] } ] }, { - "id": 1395, + "id": 1438, "name": "LoyaltiesCreateCampaignResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1421, + "id": 1464, "name": "active", "kind": 1024, "kindString": "Property", @@ -16802,7 +17043,7 @@ } }, { - "id": 1412, + "id": 1455, "name": "activity_duration_after_publishing", "kind": 1024, "kindString": "Property", @@ -16815,7 +17056,7 @@ } }, { - "id": 1401, + "id": 1444, "name": "auto_join", "kind": 1024, "kindString": "Property", @@ -16828,7 +17069,7 @@ } }, { - "id": 1398, + "id": 1441, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -16841,7 +17082,7 @@ } }, { - "id": 1400, + "id": 1443, "name": "category", "kind": 1024, "kindString": "Property", @@ -16854,7 +17095,7 @@ } }, { - "id": 1419, + "id": 1462, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -16865,7 +17106,7 @@ } }, { - "id": 1403, + "id": 1446, "name": "description", "kind": 1024, "kindString": "Property", @@ -16878,7 +17119,7 @@ } }, { - "id": 1411, + "id": 1454, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -16891,7 +17132,7 @@ } }, { - "id": 1396, + "id": 1439, "name": "id", "kind": 1024, "kindString": "Property", @@ -16902,7 +17143,7 @@ } }, { - "id": 1402, + "id": 1445, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -16915,7 +17156,7 @@ } }, { - "id": 1418, + "id": 1461, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -16938,7 +17179,7 @@ } }, { - "id": 1397, + "id": 1440, "name": "name", "kind": 1024, "kindString": "Property", @@ -16949,7 +17190,7 @@ } }, { - "id": 1427, + "id": 1470, "name": "object", "kind": 1024, "kindString": "Property", @@ -16960,7 +17201,7 @@ } }, { - "id": 1425, + "id": 1468, "name": "protected", "kind": 1024, "kindString": "Property", @@ -16973,7 +17214,7 @@ } }, { - "id": 1423, + "id": 1466, "name": "referral_program", "kind": 1024, "kindString": "Property", @@ -16986,7 +17227,7 @@ } }, { - "id": 1404, + "id": 1447, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -16999,7 +17240,7 @@ } }, { - "id": 1399, + "id": 1442, "name": "type", "kind": 1024, "kindString": "Property", @@ -17019,7 +17260,7 @@ } }, { - "id": 1424, + "id": 1467, "name": "use_voucher_metadata_schema", "kind": 1024, "kindString": "Property", @@ -17032,7 +17273,7 @@ } }, { - "id": 1405, + "id": 1448, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -17042,14 +17283,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1406, + "id": 1449, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1407, + "id": 1450, "name": "data", "kind": 1024, "kindString": "Property", @@ -17060,13 +17301,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1967, + "id": 2010, "name": "ValidationRulesCreateAssignmentResponse" } } }, { - "id": 1410, + "id": 1453, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -17077,7 +17318,7 @@ } }, { - "id": 1408, + "id": 1451, "name": "object", "kind": 1024, "kindString": "Property", @@ -17088,7 +17329,7 @@ } }, { - "id": 1409, + "id": 1452, "name": "total", "kind": 1024, "kindString": "Property", @@ -17104,10 +17345,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1407, - 1410, - 1408, - 1409 + 1450, + 1453, + 1451, + 1452 ] } ] @@ -17115,7 +17356,7 @@ } }, { - "id": 1417, + "id": 1460, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -17131,7 +17372,7 @@ } }, { - "id": 1413, + "id": 1456, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -17141,14 +17382,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1414, + "id": 1457, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1416, + "id": 1459, "name": "duration", "kind": 1024, "kindString": "Property", @@ -17161,7 +17402,7 @@ } }, { - "id": 1415, + "id": 1458, "name": "interval", "kind": 1024, "kindString": "Property", @@ -17179,8 +17420,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1416, - 1415 + 1459, + 1458 ] } ] @@ -17188,7 +17429,7 @@ } }, { - "id": 1422, + "id": 1465, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -17201,7 +17442,7 @@ } }, { - "id": 1426, + "id": 1469, "name": "vouchers_count", "kind": 1024, "kindString": "Property", @@ -17214,7 +17455,7 @@ } }, { - "id": 1420, + "id": 1463, "name": "vouchers_generation_status", "kind": 1024, "kindString": "Property", @@ -17247,43 +17488,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1421, - 1412, - 1401, - 1398, - 1400, - 1419, - 1403, - 1411, - 1396, - 1402, - 1418, - 1397, - 1427, - 1425, - 1423, - 1404, - 1399, - 1424, - 1405, - 1417, - 1413, - 1422, - 1426, - 1420 + 1464, + 1455, + 1444, + 1441, + 1443, + 1462, + 1446, + 1454, + 1439, + 1445, + 1461, + 1440, + 1470, + 1468, + 1466, + 1447, + 1442, + 1467, + 1448, + 1460, + 1456, + 1465, + 1469, + 1463 ] } ] }, { - "id": 1511, + "id": 1554, "name": "LoyaltiesCreateEarningRule", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1518, + "id": 1561, "name": "custom_event", "kind": 1024, "kindString": "Property", @@ -17293,14 +17534,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1519, + "id": 1562, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1520, + "id": 1563, "name": "schema_id", "kind": 1024, "kindString": "Property", @@ -17318,7 +17559,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1520 + 1563 ] } ] @@ -17326,7 +17567,7 @@ } }, { - "id": 1512, + "id": 1555, "name": "event", "kind": 1024, "kindString": "Property", @@ -17337,7 +17578,7 @@ } }, { - "id": 1514, + "id": 1557, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -17347,19 +17588,19 @@ "types": [ { "type": "reference", - "id": 1478, + "id": 1521, "name": "LoyaltyFixed" }, { "type": "reference", - "id": 1481, + "id": 1524, "name": "LoyaltyProportional" } ] } }, { - "id": 1521, + "id": 1564, "name": "segment", "kind": 1024, "kindString": "Property", @@ -17369,14 +17610,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1522, + "id": 1565, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1523, + "id": 1566, "name": "id", "kind": 1024, "kindString": "Property", @@ -17394,7 +17635,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1523 + 1566 ] } ] @@ -17402,7 +17643,7 @@ } }, { - "id": 1515, + "id": 1558, "name": "source", "kind": 1024, "kindString": "Property", @@ -17412,14 +17653,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1516, + "id": 1559, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1517, + "id": 1560, "name": "banner", "kind": 1024, "kindString": "Property", @@ -17437,7 +17678,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1517 + 1560 ] } ] @@ -17445,7 +17686,7 @@ } }, { - "id": 1513, + "id": 1556, "name": "validation_rule_id", "kind": 1024, "kindString": "Property", @@ -17463,25 +17704,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1518, - 1512, - 1514, - 1521, - 1515, - 1513 + 1561, + 1555, + 1557, + 1564, + 1558, + 1556 ] } ] }, { - "id": 1585, + "id": 1628, "name": "LoyaltiesCreateMember", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1587, + "id": 1630, "name": "channel", "kind": 1024, "kindString": "Property", @@ -17494,7 +17735,7 @@ } }, { - "id": 1588, + "id": 1631, "name": "customer", "kind": 1024, "kindString": "Property", @@ -17502,14 +17743,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1589, + "id": 1632, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1594, + "id": 1637, "name": "description", "kind": 1024, "kindString": "Property", @@ -17522,7 +17763,7 @@ } }, { - "id": 1592, + "id": 1635, "name": "email", "kind": 1024, "kindString": "Property", @@ -17535,7 +17776,7 @@ } }, { - "id": 1590, + "id": 1633, "name": "id", "kind": 1024, "kindString": "Property", @@ -17548,7 +17789,7 @@ } }, { - "id": 1593, + "id": 1636, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -17571,7 +17812,7 @@ } }, { - "id": 1591, + "id": 1634, "name": "name", "kind": 1024, "kindString": "Property", @@ -17584,7 +17825,7 @@ } }, { - "id": 1595, + "id": 1638, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -17602,12 +17843,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1594, - 1592, - 1590, - 1593, - 1591, - 1595 + 1637, + 1635, + 1633, + 1636, + 1634, + 1638 ] } ] @@ -17615,7 +17856,7 @@ } }, { - "id": 1596, + "id": 1639, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -17638,7 +17879,7 @@ } }, { - "id": 1586, + "id": 1629, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -17656,23 +17897,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1587, - 1588, - 1596, - 1586 + 1630, + 1631, + 1639, + 1629 ] } ] }, { - "id": 1454, + "id": 1497, "name": "LoyaltiesCreateRewardAssignmentResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1464, + "id": 1507, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -17683,7 +17924,7 @@ } }, { - "id": 1455, + "id": 1498, "name": "id", "kind": 1024, "kindString": "Property", @@ -17694,7 +17935,7 @@ } }, { - "id": 1466, + "id": 1509, "name": "object", "kind": 1024, "kindString": "Property", @@ -17705,7 +17946,7 @@ } }, { - "id": 1459, + "id": 1502, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -17715,14 +17956,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1460, + "id": 1503, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1461, + "id": 1504, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -17730,14 +17971,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1462, + "id": 1505, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1463, + "id": 1506, "name": "points", "kind": 1024, "kindString": "Property", @@ -17753,7 +17994,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1463 + 1506 ] } ] @@ -17766,7 +18007,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1461 + 1504 ] } ] @@ -17774,7 +18015,7 @@ } }, { - "id": 1457, + "id": 1500, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -17787,7 +18028,7 @@ } }, { - "id": 1458, + "id": 1501, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -17800,7 +18041,7 @@ } }, { - "id": 1456, + "id": 1499, "name": "reward_id", "kind": 1024, "kindString": "Property", @@ -17811,7 +18052,7 @@ } }, { - "id": 1465, + "id": 1508, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -17829,27 +18070,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1464, - 1455, - 1466, - 1459, - 1457, - 1458, - 1456, - 1465 + 1507, + 1498, + 1509, + 1502, + 1500, + 1501, + 1499, + 1508 ] } ] }, { - "id": 1447, + "id": 1490, "name": "LoyaltiesCreateRewardAssignments", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1449, + "id": 1492, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -17857,14 +18098,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1450, + "id": 1493, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1451, + "id": 1494, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -17872,14 +18113,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1452, + "id": 1495, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1453, + "id": 1496, "name": "points", "kind": 1024, "kindString": "Property", @@ -17895,7 +18136,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1453 + 1496 ] } ] @@ -17908,7 +18149,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1451 + 1494 ] } ] @@ -17916,7 +18157,7 @@ } }, { - "id": 1448, + "id": 1491, "name": "reward", "kind": 1024, "kindString": "Property", @@ -17932,21 +18173,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1449, - 1448 + 1492, + 1491 ] } ] }, { - "id": 1437, + "id": 1480, "name": "LoyaltiesDeleteCampaignParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1438, + "id": 1481, "name": "force", "kind": 1024, "kindString": "Property", @@ -17964,20 +18205,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1438 + 1481 ] } ] }, { - "id": 1489, + "id": 1532, "name": "LoyaltiesEarningRulesResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1505, + "id": 1548, "name": "automation_id", "kind": 1024, "kindString": "Property", @@ -17988,7 +18229,7 @@ } }, { - "id": 1491, + "id": 1534, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -17999,7 +18240,7 @@ } }, { - "id": 1498, + "id": 1541, "name": "event", "kind": 1024, "kindString": "Property", @@ -18010,7 +18251,7 @@ } }, { - "id": 1490, + "id": 1533, "name": "id", "kind": 1024, "kindString": "Property", @@ -18021,7 +18262,7 @@ } }, { - "id": 1494, + "id": 1537, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -18031,19 +18272,19 @@ "types": [ { "type": "reference", - "id": 1478, + "id": 1521, "name": "LoyaltyFixed" }, { "type": "reference", - "id": 1481, + "id": 1524, "name": "LoyaltyProportional" } ] } }, { - "id": 1504, + "id": 1547, "name": "object", "kind": 1024, "kindString": "Property", @@ -18054,7 +18295,7 @@ } }, { - "id": 1495, + "id": 1538, "name": "segment", "kind": 1024, "kindString": "Property", @@ -18064,14 +18305,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1496, + "id": 1539, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1497, + "id": 1540, "name": "id", "kind": 1024, "kindString": "Property", @@ -18087,7 +18328,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1497 + 1540 ] } ] @@ -18095,7 +18336,7 @@ } }, { - "id": 1499, + "id": 1542, "name": "source", "kind": 1024, "kindString": "Property", @@ -18105,14 +18346,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1500, + "id": 1543, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1501, + "id": 1544, "name": "banner", "kind": 1024, "kindString": "Property", @@ -18125,7 +18366,7 @@ } }, { - "id": 1502, + "id": 1545, "name": "object_id", "kind": 1024, "kindString": "Property", @@ -18138,7 +18379,7 @@ } }, { - "id": 1503, + "id": 1546, "name": "object_type", "kind": 1024, "kindString": "Property", @@ -18156,9 +18397,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1501, - 1502, - 1503 + 1544, + 1545, + 1546 ] } ] @@ -18166,7 +18407,7 @@ } }, { - "id": 1492, + "id": 1535, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -18179,7 +18420,7 @@ } }, { - "id": 1493, + "id": 1536, "name": "validation_rule_id", "kind": 1024, "kindString": "Property", @@ -18197,29 +18438,29 @@ "title": "Properties", "kind": 1024, "children": [ - 1505, - 1491, - 1498, - 1490, - 1494, - 1504, - 1495, - 1499, - 1492, - 1493 + 1548, + 1534, + 1541, + 1533, + 1537, + 1547, + 1538, + 1542, + 1535, + 1536 ] } ] }, { - "id": 1599, + "id": 1642, "name": "LoyaltiesGetMemberActivitiesResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1603, + "id": 1646, "name": "activities", "kind": 1024, "kindString": "Property", @@ -18229,14 +18470,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1604, + "id": 1647, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1608, + "id": 1651, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -18247,7 +18488,7 @@ } }, { - "id": 1609, + "id": 1652, "name": "data", "kind": 1024, "kindString": "Property", @@ -18258,7 +18499,7 @@ } }, { - "id": 1605, + "id": 1648, "name": "id", "kind": 1024, "kindString": "Property", @@ -18269,7 +18510,7 @@ } }, { - "id": 1607, + "id": 1650, "name": "object", "kind": 1024, "kindString": "Property", @@ -18280,7 +18521,7 @@ } }, { - "id": 1606, + "id": 1649, "name": "type", "kind": 1024, "kindString": "Property", @@ -18296,11 +18537,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1608, - 1609, - 1605, - 1607, - 1606 + 1651, + 1652, + 1648, + 1650, + 1649 ] } ] @@ -18309,7 +18550,7 @@ } }, { - "id": 1601, + "id": 1644, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -18320,7 +18561,7 @@ } }, { - "id": 1600, + "id": 1643, "name": "object", "kind": 1024, "kindString": "Property", @@ -18331,7 +18572,7 @@ } }, { - "id": 1602, + "id": 1645, "name": "total", "kind": 1024, "kindString": "Property", @@ -18347,23 +18588,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1603, - 1601, - 1600, - 1602 + 1646, + 1644, + 1643, + 1645 ] } ] }, { - "id": 1475, + "id": 1518, "name": "LoyaltiesListEarningRulesParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1476, + "id": 1519, "name": "limit", "kind": 1024, "kindString": "Property", @@ -18376,7 +18617,7 @@ } }, { - "id": 1477, + "id": 1520, "name": "page", "kind": 1024, "kindString": "Property", @@ -18394,21 +18635,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1476, - 1477 + 1519, + 1520 ] } ] }, { - "id": 1506, + "id": 1549, "name": "LoyaltiesListEarningRulesResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1510, + "id": 1553, "name": "data", "kind": 1024, "kindString": "Property", @@ -18417,13 +18658,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1489, + "id": 1532, "name": "LoyaltiesEarningRulesResponse" } } }, { - "id": 1509, + "id": 1552, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -18434,7 +18675,7 @@ } }, { - "id": 1507, + "id": 1550, "name": "object", "kind": 1024, "kindString": "Property", @@ -18445,7 +18686,7 @@ } }, { - "id": 1508, + "id": 1551, "name": "total", "kind": 1024, "kindString": "Property", @@ -18461,23 +18702,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1510, - 1509, - 1507, - 1508 + 1553, + 1552, + 1550, + 1551 ] } ] }, { - "id": 1535, + "id": 1578, "name": "LoyaltiesListMembersParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1538, + "id": 1581, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -18487,14 +18728,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1539, + "id": 1582, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1541, + "id": 1584, "name": "after", "kind": 1024, "kindString": "Property", @@ -18507,7 +18748,7 @@ } }, { - "id": 1540, + "id": 1583, "name": "before", "kind": 1024, "kindString": "Property", @@ -18525,8 +18766,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1541, - 1540 + 1584, + 1583 ] } ] @@ -18534,7 +18775,7 @@ } }, { - "id": 1536, + "id": 1579, "name": "limit", "kind": 1024, "kindString": "Property", @@ -18547,7 +18788,7 @@ } }, { - "id": 1537, + "id": 1580, "name": "page", "kind": 1024, "kindString": "Property", @@ -18560,7 +18801,7 @@ } }, { - "id": 1542, + "id": 1585, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -18570,14 +18811,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1543, + "id": 1586, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1545, + "id": 1588, "name": "after", "kind": 1024, "kindString": "Property", @@ -18590,7 +18831,7 @@ } }, { - "id": 1544, + "id": 1587, "name": "before", "kind": 1024, "kindString": "Property", @@ -18608,8 +18849,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1545, - 1544 + 1588, + 1587 ] } ] @@ -18622,23 +18863,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1538, - 1536, - 1537, - 1542 + 1581, + 1579, + 1580, + 1585 ] } ] }, { - "id": 1580, + "id": 1623, "name": "LoyaltiesListMembersResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1583, + "id": 1626, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -18649,7 +18890,7 @@ } }, { - "id": 1581, + "id": 1624, "name": "object", "kind": 1024, "kindString": "Property", @@ -18660,7 +18901,7 @@ } }, { - "id": 1582, + "id": 1625, "name": "total", "kind": 1024, "kindString": "Property", @@ -18671,7 +18912,7 @@ } }, { - "id": 1584, + "id": 1627, "name": "vouchers", "kind": 1024, "kindString": "Property", @@ -18680,7 +18921,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1546, + "id": 1589, "name": "LoyaltiesVoucherResponse" } } @@ -18691,23 +18932,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1583, - 1581, - 1582, - 1584 + 1626, + 1624, + 1625, + 1627 ] } ] }, { - "id": 1363, + "id": 1406, "name": "LoyaltiesListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1364, + "id": 1407, "name": "limit", "kind": 1024, "kindString": "Property", @@ -18720,7 +18961,7 @@ } }, { - "id": 1365, + "id": 1408, "name": "page", "kind": 1024, "kindString": "Property", @@ -18738,21 +18979,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1364, - 1365 + 1407, + 1408 ] } ] }, { - "id": 1366, + "id": 1409, "name": "LoyaltiesListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1370, + "id": 1413, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -18763,13 +19004,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1395, + "id": 1438, "name": "LoyaltiesCreateCampaignResponse" } } }, { - "id": 1369, + "id": 1412, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -18780,7 +19021,7 @@ } }, { - "id": 1367, + "id": 1410, "name": "object", "kind": 1024, "kindString": "Property", @@ -18791,7 +19032,7 @@ } }, { - "id": 1368, + "id": 1411, "name": "total", "kind": 1024, "kindString": "Property", @@ -18807,23 +19048,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1370, - 1369, - 1367, - 1368 + 1413, + 1412, + 1410, + 1411 ] } ] }, { - "id": 1439, + "id": 1482, "name": "LoyaltiesListRewardAssignmentsParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1440, + "id": 1483, "name": "limit", "kind": 1024, "kindString": "Property", @@ -18836,7 +19077,7 @@ } }, { - "id": 1441, + "id": 1484, "name": "page", "kind": 1024, "kindString": "Property", @@ -18854,21 +19095,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1440, - 1441 + 1483, + 1484 ] } ] }, { - "id": 1442, + "id": 1485, "name": "LoyaltiesListRewardAssignmentsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1446, + "id": 1489, "name": "data", "kind": 1024, "kindString": "Property", @@ -18877,13 +19118,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1454, + "id": 1497, "name": "LoyaltiesCreateRewardAssignmentResponse" } } }, { - "id": 1445, + "id": 1488, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -18894,7 +19135,7 @@ } }, { - "id": 1443, + "id": 1486, "name": "object", "kind": 1024, "kindString": "Property", @@ -18905,7 +19146,7 @@ } }, { - "id": 1444, + "id": 1487, "name": "total", "kind": 1024, "kindString": "Property", @@ -18921,23 +19162,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1446, - 1445, - 1443, - 1444 + 1489, + 1488, + 1486, + 1487 ] } ] }, { - "id": 1622, + "id": 1665, "name": "LoyaltiesRedeemRewardParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1633, + "id": 1676, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -18960,7 +19201,7 @@ } }, { - "id": 1626, + "id": 1669, "name": "order", "kind": 1024, "kindString": "Property", @@ -18970,14 +19211,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1627, + "id": 1670, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1630, + "id": 1673, "name": "amount", "kind": 1024, "kindString": "Property", @@ -18988,7 +19229,7 @@ } }, { - "id": 1628, + "id": 1671, "name": "id", "kind": 1024, "kindString": "Property", @@ -19001,7 +19242,7 @@ } }, { - "id": 1631, + "id": 1674, "name": "items", "kind": 1024, "kindString": "Property", @@ -19012,13 +19253,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" } } }, { - "id": 1632, + "id": 1675, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -19041,7 +19282,7 @@ } }, { - "id": 1629, + "id": 1672, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -19059,11 +19300,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1630, - 1628, - 1631, - 1632, - 1629 + 1673, + 1671, + 1674, + 1675, + 1672 ] } ] @@ -19071,7 +19312,7 @@ } }, { - "id": 1623, + "id": 1666, "name": "reward", "kind": 1024, "kindString": "Property", @@ -19079,14 +19320,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1624, + "id": 1667, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1625, + "id": 1668, "name": "id", "kind": 1024, "kindString": "Property", @@ -19102,7 +19343,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1625 + 1668 ] } ] @@ -19115,22 +19356,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1633, - 1626, - 1623 + 1676, + 1669, + 1666 ] } ] }, { - "id": 1634, + "id": 1677, "name": "LoyaltiesRedeemRewardResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1639, + "id": 1682, "name": "amount", "kind": 1024, "kindString": "Property", @@ -19141,7 +19382,7 @@ } }, { - "id": 1652, + "id": 1695, "name": "customer", "kind": 1024, "kindString": "Property", @@ -19153,7 +19394,7 @@ } }, { - "id": 1638, + "id": 1681, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -19164,7 +19405,7 @@ } }, { - "id": 1637, + "id": 1680, "name": "date", "kind": 1024, "kindString": "Property", @@ -19175,7 +19416,7 @@ } }, { - "id": 1635, + "id": 1678, "name": "id", "kind": 1024, "kindString": "Property", @@ -19186,7 +19427,7 @@ } }, { - "id": 1636, + "id": 1679, "name": "object", "kind": 1024, "kindString": "Property", @@ -19197,7 +19438,7 @@ } }, { - "id": 1640, + "id": 1683, "name": "order", "kind": 1024, "kindString": "Property", @@ -19212,7 +19453,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" }, { @@ -19294,14 +19535,14 @@ { "type": "reflection", "declaration": { - "id": 1641, + "id": 1684, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1644, + "id": 1687, "name": "customer", "kind": 1024, "kindString": "Property", @@ -19309,14 +19550,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1645, + "id": 1688, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1646, + "id": 1689, "name": "id", "kind": 1024, "kindString": "Property", @@ -19327,7 +19568,7 @@ } }, { - "id": 1647, + "id": 1690, "name": "object", "kind": 1024, "kindString": "Property", @@ -19338,7 +19579,7 @@ } }, { - "id": 1648, + "id": 1691, "name": "referrals", "kind": 1024, "kindString": "Property", @@ -19346,14 +19587,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1649, + "id": 1692, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1650, + "id": 1693, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -19367,7 +19608,7 @@ } }, { - "id": 1651, + "id": 1694, "name": "total", "kind": 1024, "kindString": "Property", @@ -19383,8 +19624,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1650, - 1651 + 1693, + 1694 ] } ] @@ -19397,9 +19638,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1646, - 1647, - 1648 + 1689, + 1690, + 1691 ] } ] @@ -19407,7 +19648,7 @@ } }, { - "id": 1643, + "id": 1686, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -19418,7 +19659,7 @@ } }, { - "id": 1642, + "id": 1685, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -19434,9 +19675,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1644, - 1643, - 1642 + 1687, + 1686, + 1685 ] } ] @@ -19446,7 +19687,7 @@ } }, { - "id": 1654, + "id": 1697, "name": "result", "kind": 1024, "kindString": "Property", @@ -19466,7 +19707,7 @@ } }, { - "id": 1653, + "id": 1696, "name": "reward", "kind": 1024, "kindString": "Property", @@ -19490,7 +19731,7 @@ } }, { - "id": 1655, + "id": 1698, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -19503,7 +19744,7 @@ } }, { - "id": 1656, + "id": 1699, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -19511,14 +19752,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1657, + "id": 1700, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1687, + "id": 1730, "name": "active", "kind": 1024, "kindString": "Property", @@ -19529,7 +19770,7 @@ } }, { - "id": 1688, + "id": 1731, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -19542,7 +19783,7 @@ } }, { - "id": 1689, + "id": 1732, "name": "assets", "kind": 1024, "kindString": "Property", @@ -19552,14 +19793,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1690, + "id": 1733, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1695, + "id": 1738, "name": "barcode", "kind": 1024, "kindString": "Property", @@ -19569,14 +19810,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1696, + "id": 1739, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1697, + "id": 1740, "name": "id", "kind": 1024, "kindString": "Property", @@ -19587,7 +19828,7 @@ } }, { - "id": 1698, + "id": 1741, "name": "url", "kind": 1024, "kindString": "Property", @@ -19603,8 +19844,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1697, - 1698 + 1740, + 1741 ] } ] @@ -19612,7 +19853,7 @@ } }, { - "id": 1691, + "id": 1734, "name": "qr", "kind": 1024, "kindString": "Property", @@ -19622,14 +19863,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1692, + "id": 1735, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1693, + "id": 1736, "name": "id", "kind": 1024, "kindString": "Property", @@ -19640,7 +19881,7 @@ } }, { - "id": 1694, + "id": 1737, "name": "url", "kind": 1024, "kindString": "Property", @@ -19656,8 +19897,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1693, - 1694 + 1736, + 1737 ] } ] @@ -19670,8 +19911,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1695, - 1691 + 1738, + 1734 ] } ] @@ -19679,7 +19920,7 @@ } }, { - "id": 1660, + "id": 1703, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -19692,7 +19933,7 @@ } }, { - "id": 1661, + "id": 1704, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -19705,7 +19946,7 @@ } }, { - "id": 1662, + "id": 1705, "name": "category", "kind": 1024, "kindString": "Property", @@ -19718,7 +19959,7 @@ } }, { - "id": 1659, + "id": 1702, "name": "code", "kind": 1024, "kindString": "Property", @@ -19731,7 +19972,7 @@ } }, { - "id": 1702, + "id": 1745, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -19742,7 +19983,7 @@ } }, { - "id": 1669, + "id": 1712, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -19755,7 +19996,7 @@ } }, { - "id": 1704, + "id": 1747, "name": "holder", "kind": 1024, "kindString": "Property", @@ -19763,14 +20004,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1705, + "id": 1748, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1706, + "id": 1749, "name": "id", "kind": 1024, "kindString": "Property", @@ -19781,7 +20022,7 @@ } }, { - "id": 1708, + "id": 1751, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -19804,7 +20045,7 @@ } }, { - "id": 1709, + "id": 1752, "name": "object", "kind": 1024, "kindString": "Property", @@ -19815,7 +20056,7 @@ } }, { - "id": 1707, + "id": 1750, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -19831,10 +20072,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1706, - 1708, - 1709, - 1707 + 1749, + 1751, + 1752, + 1750 ] } ] @@ -19842,7 +20083,7 @@ } }, { - "id": 1701, + "id": 1744, "name": "holder_id", "kind": 1024, "kindString": "Property", @@ -19853,7 +20094,7 @@ } }, { - "id": 1658, + "id": 1701, "name": "id", "kind": 1024, "kindString": "Property", @@ -19864,7 +20105,7 @@ } }, { - "id": 1699, + "id": 1742, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -19875,7 +20116,7 @@ } }, { - "id": 1664, + "id": 1707, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -19885,14 +20126,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1665, + "id": 1708, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1667, + "id": 1710, "name": "balance", "kind": 1024, "kindString": "Property", @@ -19903,7 +20144,7 @@ } }, { - "id": 1666, + "id": 1709, "name": "points", "kind": 1024, "kindString": "Property", @@ -19919,8 +20160,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1667, - 1666 + 1710, + 1709 ] } ] @@ -19928,7 +20169,7 @@ } }, { - "id": 1710, + "id": 1753, "name": "object", "kind": 1024, "kindString": "Property", @@ -19941,7 +20182,7 @@ } }, { - "id": 1675, + "id": 1718, "name": "publish", "kind": 1024, "kindString": "Property", @@ -19949,14 +20190,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1676, + "id": 1719, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1678, + "id": 1721, "name": "count", "kind": 1024, "kindString": "Property", @@ -19967,7 +20208,7 @@ } }, { - "id": 1677, + "id": 1720, "name": "object", "kind": 1024, "kindString": "Property", @@ -19978,7 +20219,7 @@ } }, { - "id": 1679, + "id": 1722, "name": "url", "kind": 1024, "kindString": "Property", @@ -19994,9 +20235,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1678, - 1677, - 1679 + 1721, + 1720, + 1722 ] } ] @@ -20004,7 +20245,7 @@ } }, { - "id": 1680, + "id": 1723, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -20012,14 +20253,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1681, + "id": 1724, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1682, + "id": 1725, "name": "object", "kind": 1024, "kindString": "Property", @@ -20030,7 +20271,7 @@ } }, { - "id": 1683, + "id": 1726, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -20041,7 +20282,7 @@ } }, { - "id": 1686, + "id": 1729, "name": "redeemed_points", "kind": 1024, "kindString": "Property", @@ -20052,7 +20293,7 @@ } }, { - "id": 1684, + "id": 1727, "name": "redeemed_quantity", "kind": 1024, "kindString": "Property", @@ -20063,7 +20304,7 @@ } }, { - "id": 1685, + "id": 1728, "name": "url", "kind": 1024, "kindString": "Property", @@ -20079,11 +20320,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1682, - 1683, - 1686, - 1684, - 1685 + 1725, + 1726, + 1729, + 1727, + 1728 ] } ] @@ -20091,7 +20332,7 @@ } }, { - "id": 1700, + "id": 1743, "name": "referrer_id", "kind": 1024, "kindString": "Property", @@ -20102,7 +20343,7 @@ } }, { - "id": 1668, + "id": 1711, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -20115,7 +20356,7 @@ } }, { - "id": 1663, + "id": 1706, "name": "type", "kind": 1024, "kindString": "Property", @@ -20126,7 +20367,7 @@ } }, { - "id": 1703, + "id": 1746, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -20137,7 +20378,7 @@ } }, { - "id": 1711, + "id": 1754, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -20145,14 +20386,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1712, + "id": 1755, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1716, + "id": 1759, "name": "data", "kind": 1024, "kindString": "Property", @@ -20164,14 +20405,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1717, + "id": 1760, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1722, + "id": 1765, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -20182,7 +20423,7 @@ } }, { - "id": 1718, + "id": 1761, "name": "id", "kind": 1024, "kindString": "Property", @@ -20193,7 +20434,7 @@ } }, { - "id": 1723, + "id": 1766, "name": "object", "kind": 1024, "kindString": "Property", @@ -20204,7 +20445,7 @@ } }, { - "id": 1720, + "id": 1763, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -20217,7 +20458,7 @@ } }, { - "id": 1721, + "id": 1764, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -20230,7 +20471,7 @@ } }, { - "id": 1719, + "id": 1762, "name": "rule_id", "kind": 1024, "kindString": "Property", @@ -20248,12 +20489,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1722, - 1718, - 1723, - 1720, - 1721, - 1719 + 1765, + 1761, + 1766, + 1763, + 1764, + 1762 ] } ] @@ -20262,7 +20503,7 @@ } }, { - "id": 1715, + "id": 1758, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -20273,7 +20514,7 @@ } }, { - "id": 1713, + "id": 1756, "name": "object", "kind": 1024, "kindString": "Property", @@ -20284,7 +20525,7 @@ } }, { - "id": 1714, + "id": 1757, "name": "total", "kind": 1024, "kindString": "Property", @@ -20300,10 +20541,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1716, - 1715, - 1713, - 1714 + 1759, + 1758, + 1756, + 1757 ] } ] @@ -20311,7 +20552,7 @@ } }, { - "id": 1674, + "id": 1717, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -20327,7 +20568,7 @@ } }, { - "id": 1670, + "id": 1713, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -20337,14 +20578,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1671, + "id": 1714, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1673, + "id": 1716, "name": "duration", "kind": 1024, "kindString": "Property", @@ -20357,7 +20598,7 @@ } }, { - "id": 1672, + "id": 1715, "name": "interval", "kind": 1024, "kindString": "Property", @@ -20375,8 +20616,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1673, - 1672 + 1716, + 1715 ] } ] @@ -20389,30 +20630,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1687, - 1688, - 1689, - 1660, - 1661, - 1662, - 1659, - 1702, - 1669, + 1730, + 1731, + 1732, + 1703, 1704, + 1705, + 1702, + 1745, + 1712, + 1747, + 1744, 1701, - 1658, - 1699, - 1664, - 1710, - 1675, - 1680, - 1700, - 1668, - 1663, - 1703, + 1742, + 1707, + 1753, + 1718, + 1723, + 1743, 1711, - 1674, - 1670 + 1706, + 1746, + 1754, + 1717, + 1713 ] } ] @@ -20425,30 +20666,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1639, - 1652, - 1638, - 1637, - 1635, - 1636, - 1640, - 1654, - 1653, - 1655, - 1656 + 1682, + 1695, + 1681, + 1680, + 1678, + 1679, + 1683, + 1697, + 1696, + 1698, + 1699 ] } ] }, { - "id": 1429, + "id": 1472, "name": "LoyaltiesUpdateCampaign", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1434, + "id": 1477, "name": "description", "kind": 1024, "kindString": "Property", @@ -20461,7 +20702,7 @@ } }, { - "id": 1432, + "id": 1475, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -20474,7 +20715,7 @@ } }, { - "id": 1430, + "id": 1473, "name": "id", "kind": 1024, "kindString": "Property", @@ -20485,7 +20726,7 @@ } }, { - "id": 1433, + "id": 1476, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -20508,7 +20749,7 @@ } }, { - "id": 1431, + "id": 1474, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -20521,7 +20762,7 @@ } }, { - "id": 1435, + "id": 1478, "name": "type", "kind": 1024, "kindString": "Property", @@ -20548,25 +20789,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1434, - 1432, - 1430, - 1433, - 1431, - 1435 + 1477, + 1475, + 1473, + 1476, + 1474, + 1478 ] } ] }, { - "id": 1525, + "id": 1568, "name": "LoyaltiesUpdateEarningRule", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1526, + "id": 1569, "name": "id", "kind": 1024, "kindString": "Property", @@ -20577,7 +20818,7 @@ } }, { - "id": 1531, + "id": 1574, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -20587,14 +20828,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1532, + "id": 1575, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1533, + "id": 1576, "name": "points", "kind": 1024, "kindString": "Property", @@ -20610,7 +20851,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1533 + 1576 ] } ] @@ -20618,7 +20859,7 @@ } }, { - "id": 1528, + "id": 1571, "name": "source", "kind": 1024, "kindString": "Property", @@ -20628,14 +20869,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1529, + "id": 1572, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1530, + "id": 1573, "name": "banner", "kind": 1024, "kindString": "Property", @@ -20651,7 +20892,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1530 + 1573 ] } ] @@ -20659,7 +20900,7 @@ } }, { - "id": 1527, + "id": 1570, "name": "validation_rule_id", "kind": 1024, "kindString": "Property", @@ -20677,23 +20918,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1526, - 1531, - 1528, - 1527 + 1569, + 1574, + 1571, + 1570 ] } ] }, { - "id": 1467, + "id": 1510, "name": "LoyaltiesUpdateRewardAssignment", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1468, + "id": 1511, "name": "id", "kind": 1024, "kindString": "Property", @@ -20704,7 +20945,7 @@ } }, { - "id": 1469, + "id": 1512, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -20712,14 +20953,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1470, + "id": 1513, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1471, + "id": 1514, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -20727,14 +20968,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1472, + "id": 1515, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1473, + "id": 1516, "name": "points", "kind": 1024, "kindString": "Property", @@ -20750,7 +20991,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1473 + 1516 ] } ] @@ -20763,7 +21004,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1471 + 1514 ] } ] @@ -20776,21 +21017,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1468, - 1469 + 1511, + 1512 ] } ] }, { - "id": 1546, + "id": 1589, "name": "LoyaltiesVoucherResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1574, + "id": 1617, "name": "active", "kind": 1024, "kindString": "Property", @@ -20803,7 +21044,7 @@ } }, { - "id": 1575, + "id": 1618, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -20816,7 +21057,7 @@ } }, { - "id": 1549, + "id": 1592, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -20827,7 +21068,7 @@ } }, { - "id": 1550, + "id": 1593, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -20838,7 +21079,7 @@ } }, { - "id": 1551, + "id": 1594, "name": "category", "kind": 1024, "kindString": "Property", @@ -20851,7 +21092,7 @@ } }, { - "id": 1548, + "id": 1591, "name": "code", "kind": 1024, "kindString": "Property", @@ -20862,7 +21103,7 @@ } }, { - "id": 1558, + "id": 1601, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -20875,7 +21116,7 @@ } }, { - "id": 1578, + "id": 1621, "name": "holder_id", "kind": 1024, "kindString": "Property", @@ -20888,7 +21129,7 @@ } }, { - "id": 1547, + "id": 1590, "name": "id", "kind": 1024, "kindString": "Property", @@ -20899,7 +21140,7 @@ } }, { - "id": 1577, + "id": 1620, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -20912,7 +21153,7 @@ } }, { - "id": 1553, + "id": 1596, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -20920,14 +21161,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1554, + "id": 1597, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1556, + "id": 1599, "name": "balance", "kind": 1024, "kindString": "Property", @@ -20938,7 +21179,7 @@ } }, { - "id": 1555, + "id": 1598, "name": "points", "kind": 1024, "kindString": "Property", @@ -20954,8 +21195,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1556, - 1555 + 1599, + 1598 ] } ] @@ -20963,7 +21204,7 @@ } }, { - "id": 1576, + "id": 1619, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -20986,7 +21227,7 @@ } }, { - "id": 1564, + "id": 1607, "name": "publish", "kind": 1024, "kindString": "Property", @@ -20996,14 +21237,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1565, + "id": 1608, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1566, + "id": 1609, "name": "count", "kind": 1024, "kindString": "Property", @@ -21016,7 +21257,7 @@ } }, { - "id": 1567, + "id": 1610, "name": "entries", "kind": 1024, "kindString": "Property", @@ -21037,8 +21278,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1566, - 1567 + 1609, + 1610 ] } ] @@ -21046,7 +21287,7 @@ } }, { - "id": 1568, + "id": 1611, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -21056,14 +21297,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1569, + "id": 1612, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1570, + "id": 1613, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -21076,7 +21317,7 @@ } }, { - "id": 1571, + "id": 1614, "name": "redeemed_points", "kind": 1024, "kindString": "Property", @@ -21089,7 +21330,7 @@ } }, { - "id": 1572, + "id": 1615, "name": "redeemed_quantity", "kind": 1024, "kindString": "Property", @@ -21102,7 +21343,7 @@ } }, { - "id": 1573, + "id": 1616, "name": "redemption_entries", "kind": 1024, "kindString": "Property", @@ -21123,10 +21364,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1570, - 1571, - 1572, - 1573 + 1613, + 1614, + 1615, + 1616 ] } ] @@ -21134,7 +21375,7 @@ } }, { - "id": 1557, + "id": 1600, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -21147,7 +21388,7 @@ } }, { - "id": 1552, + "id": 1595, "name": "type", "kind": 1024, "kindString": "Property", @@ -21158,7 +21399,7 @@ } }, { - "id": 1579, + "id": 1622, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -21171,7 +21412,7 @@ } }, { - "id": 1563, + "id": 1606, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -21187,7 +21428,7 @@ } }, { - "id": 1559, + "id": 1602, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -21197,14 +21438,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1560, + "id": 1603, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1562, + "id": 1605, "name": "duration", "kind": 1024, "kindString": "Property", @@ -21217,7 +21458,7 @@ } }, { - "id": 1561, + "id": 1604, "name": "interval", "kind": 1024, "kindString": "Property", @@ -21235,8 +21476,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1562, - 1561 + 1605, + 1604 ] } ] @@ -21249,38 +21490,38 @@ "title": "Properties", "kind": 1024, "children": [ - 1574, - 1575, - 1549, - 1550, - 1551, - 1548, - 1558, - 1578, - 1547, - 1577, - 1553, - 1576, - 1564, - 1568, - 1557, - 1552, - 1579, - 1563, - 1559 + 1617, + 1618, + 1592, + 1593, + 1594, + 1591, + 1601, + 1621, + 1590, + 1620, + 1596, + 1619, + 1607, + 1611, + 1600, + 1595, + 1622, + 1606, + 1602 ] } ] }, { - "id": 1478, + "id": 1521, "name": "LoyaltyFixed", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1480, + "id": 1523, "name": "points", "kind": 1024, "kindString": "Property", @@ -21291,7 +21532,7 @@ } }, { - "id": 1479, + "id": 1522, "name": "type", "kind": 1024, "kindString": "Property", @@ -21307,21 +21548,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1480, - 1479 + 1523, + 1522 ] } ] }, { - "id": 1724, + "id": 1767, "name": "LoyaltyPointsTransfer", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1725, + "id": 1768, "name": "code", "kind": 1024, "kindString": "Property", @@ -21332,7 +21573,7 @@ } }, { - "id": 1726, + "id": 1769, "name": "points", "kind": 1024, "kindString": "Property", @@ -21348,21 +21589,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1725, - 1726 + 1768, + 1769 ] } ] }, { - "id": 1481, + "id": 1524, "name": "LoyaltyProportional", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1483, + "id": 1526, "name": "order", "kind": 1024, "kindString": "Property", @@ -21372,14 +21613,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1484, + "id": 1527, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1485, + "id": 1528, "name": "amount", "kind": 1024, "kindString": "Property", @@ -21387,14 +21628,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1486, + "id": 1529, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1487, + "id": 1530, "name": "every", "kind": 1024, "kindString": "Property", @@ -21405,7 +21646,7 @@ } }, { - "id": 1488, + "id": 1531, "name": "points", "kind": 1024, "kindString": "Property", @@ -21421,8 +21662,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1487, - 1488 + 1530, + 1531 ] } ] @@ -21435,7 +21676,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1485 + 1528 ] } ] @@ -21443,7 +21684,7 @@ } }, { - "id": 1482, + "id": 1525, "name": "type", "kind": 1024, "kindString": "Property", @@ -21459,21 +21700,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1483, - 1482 + 1526, + 1525 ] } ] }, { - "id": 2294, + "id": 2337, "name": "OrdersCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2298, + "id": 2341, "name": "amount", "kind": 1024, "kindString": "Property", @@ -21486,7 +21727,7 @@ } }, { - "id": 2297, + "id": 2340, "name": "customer", "kind": 1024, "kindString": "Property", @@ -21500,7 +21741,7 @@ } }, { - "id": 2299, + "id": 2342, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -21513,7 +21754,7 @@ } }, { - "id": 2300, + "id": 2343, "name": "items", "kind": 1024, "kindString": "Property", @@ -21524,13 +21765,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" } } }, { - "id": 2301, + "id": 2344, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -21553,7 +21794,7 @@ } }, { - "id": 2295, + "id": 2338, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -21566,7 +21807,7 @@ } }, { - "id": 2296, + "id": 2339, "name": "status", "kind": 1024, "kindString": "Property", @@ -21601,26 +21842,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2298, - 2297, - 2299, - 2300, - 2301, - 2295, - 2296 + 2341, + 2340, + 2342, + 2343, + 2344, + 2338, + 2339 ] } ] }, { - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2308, + "id": 2351, "name": "amount", "kind": 1024, "kindString": "Property", @@ -21633,7 +21874,7 @@ } }, { - "id": 2313, + "id": 2356, "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -21646,7 +21887,7 @@ } }, { - "id": 2305, + "id": 2348, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -21657,7 +21898,7 @@ } }, { - "id": 2319, + "id": 2362, "name": "customer", "kind": 1024, "kindString": "Property", @@ -21671,7 +21912,7 @@ } }, { - "id": 2310, + "id": 2353, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -21684,7 +21925,7 @@ } }, { - "id": 2303, + "id": 2346, "name": "id", "kind": 1024, "kindString": "Property", @@ -21695,7 +21936,7 @@ } }, { - "id": 2309, + "id": 2352, "name": "initial_amount", "kind": 1024, "kindString": "Property", @@ -21708,7 +21949,7 @@ } }, { - "id": 2317, + "id": 2360, "name": "items", "kind": 1024, "kindString": "Property", @@ -21719,13 +21960,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" } } }, { - "id": 2314, + "id": 2357, "name": "items_applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -21738,7 +21979,7 @@ } }, { - "id": 2311, + "id": 2354, "name": "items_discount_amount", "kind": 1024, "kindString": "Property", @@ -21751,7 +21992,7 @@ } }, { - "id": 2318, + "id": 2361, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -21774,7 +22015,7 @@ } }, { - "id": 2320, + "id": 2363, "name": "object", "kind": 1024, "kindString": "Property", @@ -21785,7 +22026,7 @@ } }, { - "id": 2304, + "id": 2347, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -21798,7 +22039,7 @@ } }, { - "id": 2307, + "id": 2350, "name": "status", "kind": 1024, "kindString": "Property", @@ -21832,7 +22073,7 @@ } }, { - "id": 2315, + "id": 2358, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -21845,7 +22086,7 @@ } }, { - "id": 2316, + "id": 2359, "name": "total_applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -21858,7 +22099,7 @@ } }, { - "id": 2312, + "id": 2355, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -21871,7 +22112,7 @@ } }, { - "id": 2306, + "id": 2349, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -21889,37 +22130,37 @@ "title": "Properties", "kind": 1024, "children": [ - 2308, - 2313, - 2305, - 2319, - 2310, - 2303, - 2309, - 2317, - 2314, - 2311, - 2318, - 2320, - 2304, - 2307, - 2315, - 2316, - 2312, - 2306 + 2351, + 2356, + 2348, + 2362, + 2353, + 2346, + 2352, + 2360, + 2357, + 2354, + 2361, + 2363, + 2347, + 2350, + 2358, + 2359, + 2355, + 2349 ] } ] }, { - "id": 2263, + "id": 2306, "name": "OrdersItem", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2272, + "id": 2315, "name": "amount", "kind": 1024, "kindString": "Property", @@ -21932,7 +22173,7 @@ } }, { - "id": 2275, + "id": 2318, "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -21945,7 +22186,7 @@ } }, { - "id": 2273, + "id": 2316, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -21958,7 +22199,7 @@ } }, { - "id": 2268, + "id": 2311, "name": "discount_quantity", "kind": 1024, "kindString": "Property", @@ -21971,7 +22212,7 @@ } }, { - "id": 2274, + "id": 2317, "name": "initial_amount", "kind": 1024, "kindString": "Property", @@ -21984,7 +22225,7 @@ } }, { - "id": 2269, + "id": 2312, "name": "initial_quantity", "kind": 1024, "kindString": "Property", @@ -21997,7 +22238,7 @@ } }, { - "id": 2293, + "id": 2336, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22020,7 +22261,7 @@ } }, { - "id": 2292, + "id": 2335, "name": "object", "kind": 1024, "kindString": "Property", @@ -22033,7 +22274,7 @@ } }, { - "id": 2271, + "id": 2314, "name": "price", "kind": 1024, "kindString": "Property", @@ -22046,7 +22287,7 @@ } }, { - "id": 2277, + "id": 2320, "name": "product", "kind": 1024, "kindString": "Property", @@ -22056,14 +22297,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2278, + "id": 2321, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2279, + "id": 2322, "name": "id", "kind": 1024, "kindString": "Property", @@ -22076,7 +22317,7 @@ } }, { - "id": 2283, + "id": 2326, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22099,7 +22340,7 @@ } }, { - "id": 2282, + "id": 2325, "name": "name", "kind": 1024, "kindString": "Property", @@ -22112,7 +22353,7 @@ } }, { - "id": 2281, + "id": 2324, "name": "override", "kind": 1024, "kindString": "Property", @@ -22125,7 +22366,7 @@ } }, { - "id": 2284, + "id": 2327, "name": "price", "kind": 1024, "kindString": "Property", @@ -22138,7 +22379,7 @@ } }, { - "id": 2280, + "id": 2323, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22156,12 +22397,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2279, - 2283, - 2282, - 2281, - 2284, - 2280 + 2322, + 2326, + 2325, + 2324, + 2327, + 2323 ] } ] @@ -22169,7 +22410,7 @@ } }, { - "id": 2265, + "id": 2308, "name": "product_id", "kind": 1024, "kindString": "Property", @@ -22182,7 +22423,7 @@ } }, { - "id": 2270, + "id": 2313, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -22195,7 +22436,7 @@ } }, { - "id": 2266, + "id": 2309, "name": "related_object", "kind": 1024, "kindString": "Property", @@ -22217,7 +22458,7 @@ } }, { - "id": 2285, + "id": 2328, "name": "sku", "kind": 1024, "kindString": "Property", @@ -22227,14 +22468,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2286, + "id": 2329, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2287, + "id": 2330, "name": "id", "kind": 1024, "kindString": "Property", @@ -22247,7 +22488,7 @@ } }, { - "id": 2289, + "id": 2332, "name": "override", "kind": 1024, "kindString": "Property", @@ -22260,7 +22501,7 @@ } }, { - "id": 2291, + "id": 2334, "name": "price", "kind": 1024, "kindString": "Property", @@ -22273,7 +22514,7 @@ } }, { - "id": 2290, + "id": 2333, "name": "sku", "kind": 1024, "kindString": "Property", @@ -22286,7 +22527,7 @@ } }, { - "id": 2288, + "id": 2331, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22304,11 +22545,11 @@ "title": "Properties", "kind": 1024, "children": [ - 2287, - 2289, - 2291, - 2290, - 2288 + 2330, + 2332, + 2334, + 2333, + 2331 ] } ] @@ -22316,7 +22557,7 @@ } }, { - "id": 2264, + "id": 2307, "name": "sku_id", "kind": 1024, "kindString": "Property", @@ -22329,7 +22570,7 @@ } }, { - "id": 2267, + "id": 2310, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22342,7 +22583,7 @@ } }, { - "id": 2276, + "id": 2319, "name": "subtotal_amount", "kind": 1024, "kindString": "Property", @@ -22360,36 +22601,36 @@ "title": "Properties", "kind": 1024, "children": [ - 2272, - 2275, - 2273, - 2268, - 2274, - 2269, - 2293, - 2292, - 2271, - 2277, - 2265, - 2270, - 2266, - 2285, - 2264, - 2267, - 2276 + 2315, + 2318, + 2316, + 2311, + 2317, + 2312, + 2336, + 2335, + 2314, + 2320, + 2308, + 2313, + 2309, + 2328, + 2307, + 2310, + 2319 ] } ] }, { - "id": 2334, + "id": 2377, "name": "OrdersListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2335, + "id": 2378, "name": "limit", "kind": 1024, "kindString": "Property", @@ -22402,7 +22643,7 @@ } }, { - "id": 2336, + "id": 2379, "name": "page", "kind": 1024, "kindString": "Property", @@ -22420,21 +22661,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2335, - 2336 + 2378, + 2379 ] } ] }, { - "id": 2337, + "id": 2380, "name": "OrdersListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2340, + "id": 2383, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -22445,7 +22686,7 @@ } }, { - "id": 2338, + "id": 2381, "name": "object", "kind": 1024, "kindString": "Property", @@ -22456,7 +22697,7 @@ } }, { - "id": 2341, + "id": 2384, "name": "orders", "kind": 1024, "kindString": "Property", @@ -22465,13 +22706,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } } }, { - "id": 2339, + "id": 2382, "name": "total", "kind": 1024, "kindString": "Property", @@ -22487,23 +22728,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2340, - 2338, - 2341, - 2339 + 2383, + 2381, + 2384, + 2382 ] } ] }, { - "id": 2322, + "id": 2365, "name": "OrdersUpdate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2327, + "id": 2370, "name": "amount", "kind": 1024, "kindString": "Property", @@ -22516,7 +22757,7 @@ } }, { - "id": 2330, + "id": 2373, "name": "customer", "kind": 1024, "kindString": "Property", @@ -22526,14 +22767,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2331, + "id": 2374, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2332, + "id": 2375, "name": "id", "kind": 1024, "kindString": "Property", @@ -22549,7 +22790,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2332 + 2375 ] } ] @@ -22557,7 +22798,7 @@ } }, { - "id": 2328, + "id": 2371, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -22570,7 +22811,7 @@ } }, { - "id": 2323, + "id": 2366, "name": "id", "kind": 1024, "kindString": "Property", @@ -22581,7 +22822,7 @@ } }, { - "id": 2326, + "id": 2369, "name": "items", "kind": 1024, "kindString": "Property", @@ -22592,13 +22833,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" } } }, { - "id": 2329, + "id": 2372, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22621,7 +22862,7 @@ } }, { - "id": 2324, + "id": 2367, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22634,7 +22875,7 @@ } }, { - "id": 2325, + "id": 2368, "name": "status", "kind": 1024, "kindString": "Property", @@ -22669,27 +22910,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2327, - 2330, - 2328, - 2323, - 2326, - 2329, - 2324, - 2325 + 2370, + 2373, + 2371, + 2366, + 2369, + 2372, + 2367, + 2368 ] } ] }, { - "id": 2091, + "id": 2134, "name": "ProductsBulkUpdateMetadata", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2093, + "id": 2136, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22710,7 +22951,7 @@ } }, { - "id": 2092, + "id": 2135, "name": "source_ids", "kind": 1024, "kindString": "Property", @@ -22729,21 +22970,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2093, - 2092 + 2136, + 2135 ] } ] }, { - "id": 2057, + "id": 2100, "name": "ProductsCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2061, + "id": 2104, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -22759,7 +23000,7 @@ } }, { - "id": 2063, + "id": 2106, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -22772,7 +23013,7 @@ } }, { - "id": 2062, + "id": 2105, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22795,7 +23036,7 @@ } }, { - "id": 2058, + "id": 2101, "name": "name", "kind": 1024, "kindString": "Property", @@ -22808,7 +23049,7 @@ } }, { - "id": 2060, + "id": 2103, "name": "price", "kind": 1024, "kindString": "Property", @@ -22821,7 +23062,7 @@ } }, { - "id": 2059, + "id": 2102, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22839,25 +23080,25 @@ "title": "Properties", "kind": 1024, "children": [ - 2061, - 2063, - 2062, - 2058, - 2060, - 2059 + 2104, + 2106, + 2105, + 2101, + 2103, + 2102 ] } ] }, { - "id": 2070, + "id": 2113, "name": "ProductsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2076, + "id": 2119, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -22873,7 +23114,7 @@ } }, { - "id": 2077, + "id": 2120, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -22884,7 +23125,7 @@ } }, { - "id": 2071, + "id": 2114, "name": "id", "kind": 1024, "kindString": "Property", @@ -22895,7 +23136,7 @@ } }, { - "id": 2078, + "id": 2121, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -22908,7 +23149,7 @@ } }, { - "id": 2079, + "id": 2122, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22931,7 +23172,7 @@ } }, { - "id": 2074, + "id": 2117, "name": "name", "kind": 1024, "kindString": "Property", @@ -22944,7 +23185,7 @@ } }, { - "id": 2073, + "id": 2116, "name": "object", "kind": 1024, "kindString": "Property", @@ -22955,7 +23196,7 @@ } }, { - "id": 2075, + "id": 2118, "name": "price", "kind": 1024, "kindString": "Property", @@ -22968,7 +23209,7 @@ } }, { - "id": 2072, + "id": 2115, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22986,28 +23227,28 @@ "title": "Properties", "kind": 1024, "children": [ - 2076, - 2077, - 2071, - 2078, - 2079, - 2074, - 2073, - 2075, - 2072 + 2119, + 2120, + 2114, + 2121, + 2122, + 2117, + 2116, + 2118, + 2115 ] } ] }, { - "id": 2111, + "id": 2154, "name": "ProductsCreateSku", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2114, + "id": 2157, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -23030,7 +23271,7 @@ } }, { - "id": 2118, + "id": 2161, "name": "currency", "kind": 1024, "kindString": "Property", @@ -23043,7 +23284,7 @@ } }, { - "id": 2117, + "id": 2160, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -23056,7 +23297,7 @@ } }, { - "id": 2115, + "id": 2158, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -23079,7 +23320,7 @@ } }, { - "id": 2116, + "id": 2159, "name": "price", "kind": 1024, "kindString": "Property", @@ -23092,7 +23333,7 @@ } }, { - "id": 2112, + "id": 2155, "name": "sku", "kind": 1024, "kindString": "Property", @@ -23103,7 +23344,7 @@ } }, { - "id": 2113, + "id": 2156, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -23121,26 +23362,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2114, - 2118, - 2117, - 2115, - 2116, - 2112, - 2113 + 2157, + 2161, + 2160, + 2158, + 2159, + 2155, + 2156 ] } ] }, { - "id": 2119, + "id": 2162, "name": "ProductsCreateSkuResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2124, + "id": 2167, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -23163,7 +23404,7 @@ } }, { - "id": 2128, + "id": 2171, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -23174,7 +23415,7 @@ } }, { - "id": 2127, + "id": 2170, "name": "currency", "kind": 1024, "kindString": "Property", @@ -23187,7 +23428,7 @@ } }, { - "id": 2120, + "id": 2163, "name": "id", "kind": 1024, "kindString": "Property", @@ -23198,7 +23439,7 @@ } }, { - "id": 2125, + "id": 2168, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -23221,7 +23462,7 @@ } }, { - "id": 2129, + "id": 2172, "name": "object", "kind": 1024, "kindString": "Property", @@ -23232,7 +23473,7 @@ } }, { - "id": 2123, + "id": 2166, "name": "price", "kind": 1024, "kindString": "Property", @@ -23245,7 +23486,7 @@ } }, { - "id": 2122, + "id": 2165, "name": "sku", "kind": 1024, "kindString": "Property", @@ -23258,7 +23499,7 @@ } }, { - "id": 2121, + "id": 2164, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -23271,7 +23512,7 @@ } }, { - "id": 2126, + "id": 2169, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -23289,29 +23530,29 @@ "title": "Properties", "kind": 1024, "children": [ - 2124, - 2128, - 2127, - 2120, - 2125, - 2129, - 2123, - 2122, - 2121, - 2126 + 2167, + 2171, + 2170, + 2163, + 2168, + 2172, + 2166, + 2165, + 2164, + 2169 ] } ] }, { - "id": 2101, + "id": 2144, "name": "ProductsDeleteParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2102, + "id": 2145, "name": "force", "kind": 1024, "kindString": "Property", @@ -23329,20 +23570,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2102 + 2145 ] } ] }, { - "id": 2136, + "id": 2179, "name": "ProductsDeleteSkuParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2137, + "id": 2180, "name": "force", "kind": 1024, "kindString": "Property", @@ -23360,20 +23601,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2137 + 2180 ] } ] }, { - "id": 2064, + "id": 2107, "name": "ProductsGetResponseSkus", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2065, + "id": 2108, "name": "skus", "kind": 1024, "kindString": "Property", @@ -23383,14 +23624,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2066, + "id": 2109, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2069, + "id": 2112, "name": "data", "kind": 1024, "kindString": "Property", @@ -23401,13 +23642,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2119, + "id": 2162, "name": "ProductsCreateSkuResponse" } } }, { - "id": 2067, + "id": 2110, "name": "object", "kind": 1024, "kindString": "Property", @@ -23418,7 +23659,7 @@ } }, { - "id": 2068, + "id": 2111, "name": "total", "kind": 1024, "kindString": "Property", @@ -23434,9 +23675,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2069, - 2067, - 2068 + 2112, + 2110, + 2111 ] } ] @@ -23449,20 +23690,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2065 + 2108 ] } ] }, { - "id": 2103, + "id": 2146, "name": "ProductsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2105, + "id": 2148, "name": "limit", "kind": 1024, "kindString": "Property", @@ -23475,7 +23716,7 @@ } }, { - "id": 2104, + "id": 2147, "name": "page", "kind": 1024, "kindString": "Property", @@ -23493,21 +23734,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2105, - 2104 + 2148, + 2147 ] } ] }, { - "id": 2106, + "id": 2149, "name": "ProductsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2109, + "id": 2152, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -23518,7 +23759,7 @@ } }, { - "id": 2107, + "id": 2150, "name": "object", "kind": 1024, "kindString": "Property", @@ -23529,7 +23770,7 @@ } }, { - "id": 2110, + "id": 2153, "name": "products", "kind": 1024, "kindString": "Property", @@ -23538,13 +23779,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2080, + "id": 2123, "name": "ProductsGetResponse" } } }, { - "id": 2108, + "id": 2151, "name": "total", "kind": 1024, "kindString": "Property", @@ -23560,23 +23801,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2109, - 2107, - 2110, - 2108 + 2152, + 2150, + 2153, + 2151 ] } ] }, { - "id": 2138, + "id": 2181, "name": "ProductsListSkus", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2139, + "id": 2182, "name": "object", "kind": 1024, "kindString": "Property", @@ -23587,7 +23828,7 @@ } }, { - "id": 2141, + "id": 2184, "name": "skus", "kind": 1024, "kindString": "Property", @@ -23596,13 +23837,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2119, + "id": 2162, "name": "ProductsCreateSkuResponse" } } }, { - "id": 2140, + "id": 2183, "name": "total", "kind": 1024, "kindString": "Property", @@ -23618,22 +23859,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2139, - 2141, - 2140 + 2182, + 2184, + 2183 ] } ] }, { - "id": 1161, + "id": 1204, "name": "PromotionTier", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1174, + "id": 1217, "name": "action", "kind": 1024, "kindString": "Property", @@ -23641,14 +23882,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1175, + "id": 1218, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1176, + "id": 1219, "name": "discount", "kind": 1024, "kindString": "Property", @@ -23658,22 +23899,22 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] @@ -23685,7 +23926,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1176 + 1219 ] } ] @@ -23693,7 +23934,7 @@ } }, { - "id": 1179, + "id": 1222, "name": "active", "kind": 1024, "kindString": "Property", @@ -23706,7 +23947,7 @@ } }, { - "id": 1165, + "id": 1208, "name": "banner", "kind": 1024, "kindString": "Property", @@ -23719,7 +23960,7 @@ } }, { - "id": 1166, + "id": 1209, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -23727,14 +23968,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1167, + "id": 1210, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1172, + "id": 1215, "name": "active", "kind": 1024, "kindString": "Property", @@ -23745,7 +23986,7 @@ } }, { - "id": 1171, + "id": 1214, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -23758,7 +23999,7 @@ } }, { - "id": 1168, + "id": 1211, "name": "id", "kind": 1024, "kindString": "Property", @@ -23769,7 +24010,7 @@ } }, { - "id": 1169, + "id": 1212, "name": "object", "kind": 1024, "kindString": "Property", @@ -23780,7 +24021,7 @@ } }, { - "id": 1170, + "id": 1213, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -23798,11 +24039,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1172, - 1171, - 1168, - 1169, - 1170 + 1215, + 1214, + 1211, + 1212, + 1213 ] } ] @@ -23810,7 +24051,7 @@ } }, { - "id": 1177, + "id": 1220, "name": "hierarchy", "kind": 1024, "kindString": "Property", @@ -23821,7 +24062,7 @@ } }, { - "id": 1162, + "id": 1205, "name": "id", "kind": 1024, "kindString": "Property", @@ -23832,7 +24073,7 @@ } }, { - "id": 1178, + "id": 1221, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -23855,7 +24096,7 @@ } }, { - "id": 1164, + "id": 1207, "name": "name", "kind": 1024, "kindString": "Property", @@ -23866,7 +24107,7 @@ } }, { - "id": 1163, + "id": 1206, "name": "object", "kind": 1024, "kindString": "Property", @@ -23877,14 +24118,14 @@ } }, { - "id": 1173, + "id": 1216, "name": "validation_rule_assignments", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 1986, + "id": 2029, "name": "ValidationRulesListAssignmentsResponse" } } @@ -23894,29 +24135,29 @@ "title": "Properties", "kind": 1024, "children": [ - 1174, - 1179, - 1165, - 1166, - 1177, - 1162, - 1178, - 1164, - 1163, - 1173 + 1217, + 1222, + 1208, + 1209, + 1220, + 1205, + 1221, + 1207, + 1206, + 1216 ] } ] }, { - "id": 1243, + "id": 1286, "name": "PromotionTierRedeemDetailsSimple", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1246, + "id": 1289, "name": "banner", "kind": 1024, "kindString": "Property", @@ -23929,7 +24170,7 @@ } }, { - "id": 1247, + "id": 1290, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -23937,14 +24178,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1248, + "id": 1291, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1249, + "id": 1292, "name": "id", "kind": 1024, "kindString": "Property", @@ -23960,7 +24201,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1249 + 1292 ] } ] @@ -23968,7 +24209,7 @@ } }, { - "id": 1244, + "id": 1287, "name": "id", "kind": 1024, "kindString": "Property", @@ -23979,7 +24220,7 @@ } }, { - "id": 1245, + "id": 1288, "name": "name", "kind": 1024, "kindString": "Property", @@ -23995,23 +24236,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1246, - 1247, - 1244, - 1245 + 1289, + 1290, + 1287, + 1288 ] } ] }, { - "id": 1191, + "id": 1234, "name": "PromotionTiersCreateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1194, + "id": 1237, "name": "action", "kind": 1024, "kindString": "Property", @@ -24021,14 +24262,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1195, + "id": 1238, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1196, + "id": 1239, "name": "discount", "kind": 1024, "kindString": "Property", @@ -24040,22 +24281,22 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] @@ -24067,7 +24308,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1196 + 1239 ] } ] @@ -24075,7 +24316,7 @@ } }, { - "id": 1193, + "id": 1236, "name": "banner", "kind": 1024, "kindString": "Property", @@ -24088,7 +24329,7 @@ } }, { - "id": 1197, + "id": 1240, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -24111,7 +24352,7 @@ } }, { - "id": 1192, + "id": 1235, "name": "name", "kind": 1024, "kindString": "Property", @@ -24129,23 +24370,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1194, - 1193, - 1197, - 1192 + 1237, + 1236, + 1240, + 1235 ] } ] }, { - "id": 1180, + "id": 1223, "name": "PromotionTiersListAllParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1181, + "id": 1224, "name": "is_available", "kind": 1024, "kindString": "Property", @@ -24158,7 +24399,7 @@ } }, { - "id": 1182, + "id": 1225, "name": "limit", "kind": 1024, "kindString": "Property", @@ -24171,7 +24412,7 @@ } }, { - "id": 1183, + "id": 1226, "name": "page", "kind": 1024, "kindString": "Property", @@ -24189,22 +24430,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1181, - 1182, - 1183 + 1224, + 1225, + 1226 ] } ] }, { - "id": 1184, + "id": 1227, "name": "PromotionTiersListAllResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1186, + "id": 1229, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -24215,7 +24456,7 @@ } }, { - "id": 1188, + "id": 1231, "name": "has_more", "kind": 1024, "kindString": "Property", @@ -24226,7 +24467,7 @@ } }, { - "id": 1185, + "id": 1228, "name": "object", "kind": 1024, "kindString": "Property", @@ -24237,7 +24478,7 @@ } }, { - "id": 1187, + "id": 1230, "name": "tiers", "kind": 1024, "kindString": "Property", @@ -24246,7 +24487,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" } } @@ -24257,23 +24498,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1186, - 1188, - 1185, - 1187 + 1229, + 1231, + 1228, + 1230 ] } ] }, { - "id": 1199, + "id": 1242, "name": "PromotionTiersRedeemParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1200, + "id": 1243, "name": "customer", "kind": 1024, "kindString": "Property", @@ -24322,14 +24563,14 @@ { "type": "reflection", "declaration": { - "id": 1201, + "id": 1244, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1202, + "id": 1245, "name": "description", "kind": 1024, "kindString": "Property", @@ -24347,7 +24588,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1202 + 1245 ] } ] @@ -24357,7 +24598,7 @@ } }, { - "id": 1211, + "id": 1254, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -24380,7 +24621,7 @@ } }, { - "id": 1203, + "id": 1246, "name": "order", "kind": 1024, "kindString": "Property", @@ -24390,14 +24631,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1204, + "id": 1247, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1207, + "id": 1250, "name": "amount", "kind": 1024, "kindString": "Property", @@ -24410,7 +24651,7 @@ } }, { - "id": 1205, + "id": 1248, "name": "id", "kind": 1024, "kindString": "Property", @@ -24423,7 +24664,7 @@ } }, { - "id": 1208, + "id": 1251, "name": "items", "kind": 1024, "kindString": "Property", @@ -24434,13 +24675,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" } } }, { - "id": 1210, + "id": 1253, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -24463,7 +24704,7 @@ } }, { - "id": 1206, + "id": 1249, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -24476,7 +24717,7 @@ } }, { - "id": 1209, + "id": 1252, "name": "status", "kind": 1024, "kindString": "Property", @@ -24511,12 +24752,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1207, - 1205, - 1208, - 1210, - 1206, - 1209 + 1250, + 1248, + 1251, + 1253, + 1249, + 1252 ] } ] @@ -24524,7 +24765,7 @@ } }, { - "id": 1212, + "id": 1255, "name": "session", "kind": 1024, "kindString": "Property", @@ -24533,7 +24774,7 @@ }, "type": { "type": "reference", - "id": 2441, + "id": 2484, "name": "ValidationSessionReleaseParams" } } @@ -24543,23 +24784,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1200, - 1211, - 1203, - 1212 + 1243, + 1254, + 1246, + 1255 ] } ] }, { - "id": 1213, + "id": 1256, "name": "PromotionTiersRedeemResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1217, + "id": 1260, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -24572,7 +24813,7 @@ } }, { - "id": 1216, + "id": 1259, "name": "date", "kind": 1024, "kindString": "Property", @@ -24583,7 +24824,7 @@ } }, { - "id": 1214, + "id": 1257, "name": "id", "kind": 1024, "kindString": "Property", @@ -24594,7 +24835,7 @@ } }, { - "id": 1215, + "id": 1258, "name": "object", "kind": 1024, "kindString": "Property", @@ -24605,7 +24846,7 @@ } }, { - "id": 1219, + "id": 1262, "name": "order", "kind": 1024, "kindString": "Property", @@ -24618,7 +24859,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" }, { @@ -24696,14 +24937,14 @@ { "type": "reflection", "declaration": { - "id": 1220, + "id": 1263, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1221, + "id": 1264, "name": "customer", "kind": 1024, "kindString": "Property", @@ -24711,14 +24952,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1222, + "id": 1265, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1223, + "id": 1266, "name": "id", "kind": 1024, "kindString": "Property", @@ -24729,7 +24970,7 @@ } }, { - "id": 1224, + "id": 1267, "name": "object", "kind": 1024, "kindString": "Property", @@ -24740,7 +24981,7 @@ } }, { - "id": 1225, + "id": 1268, "name": "referrals", "kind": 1024, "kindString": "Property", @@ -24748,14 +24989,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1226, + "id": 1269, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1227, + "id": 1270, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -24769,7 +25010,7 @@ } }, { - "id": 1228, + "id": 1271, "name": "total", "kind": 1024, "kindString": "Property", @@ -24785,8 +25026,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1227, - 1228 + 1270, + 1271 ] } ] @@ -24799,9 +25040,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1223, - 1224, - 1225 + 1266, + 1267, + 1268 ] } ] @@ -24809,7 +25050,7 @@ } }, { - "id": 1230, + "id": 1273, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -24822,7 +25063,7 @@ } }, { - "id": 1229, + "id": 1272, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -24840,9 +25081,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1221, - 1230, - 1229 + 1264, + 1273, + 1272 ] } ] @@ -24852,7 +25093,7 @@ } }, { - "id": 1232, + "id": 1275, "name": "promotion_tier", "kind": 1024, "kindString": "Property", @@ -24862,20 +25103,20 @@ "types": [ { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" }, { "type": "reflection", "declaration": { - "id": 1233, + "id": 1276, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1234, + "id": 1277, "name": "summary", "kind": 1024, "kindString": "Property", @@ -24883,14 +25124,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1235, + "id": 1278, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1239, + "id": 1282, "name": "orders", "kind": 1024, "kindString": "Property", @@ -24898,14 +25139,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1240, + "id": 1283, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1241, + "id": 1284, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -24916,7 +25157,7 @@ } }, { - "id": 1242, + "id": 1285, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -24932,8 +25173,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1241, - 1242 + 1284, + 1285 ] } ] @@ -24941,7 +25182,7 @@ } }, { - "id": 1236, + "id": 1279, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -24949,14 +25190,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1237, + "id": 1280, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1238, + "id": 1281, "name": "total_redeemed", "kind": 1024, "kindString": "Property", @@ -24972,7 +25213,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1238 + 1281 ] } ] @@ -24985,8 +25226,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1239, - 1236 + 1282, + 1279 ] } ] @@ -24999,7 +25240,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1234 + 1277 ] } ] @@ -25009,7 +25250,7 @@ } }, { - "id": 1231, + "id": 1274, "name": "result", "kind": 1024, "kindString": "Property", @@ -25022,7 +25263,7 @@ } }, { - "id": 1218, + "id": 1261, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -25040,27 +25281,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1217, - 1216, - 1214, - 1215, - 1219, - 1232, - 1231, - 1218 + 1260, + 1259, + 1257, + 1258, + 1262, + 1275, + 1274, + 1261 ] } ] }, { - "id": 1301, + "id": 1344, "name": "PromotionsCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1303, + "id": 1346, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -25071,7 +25312,7 @@ } }, { - "id": 1305, + "id": 1348, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -25084,7 +25325,7 @@ } }, { - "id": 1302, + "id": 1345, "name": "name", "kind": 1024, "kindString": "Property", @@ -25095,7 +25336,7 @@ } }, { - "id": 1306, + "id": 1349, "name": "promotion", "kind": 1024, "kindString": "Property", @@ -25105,14 +25346,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1307, + "id": 1350, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1308, + "id": 1351, "name": "tiers", "kind": 1024, "kindString": "Property", @@ -25122,14 +25363,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1309, + "id": 1352, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1312, + "id": 1355, "name": "action", "kind": 1024, "kindString": "Property", @@ -25137,14 +25378,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1313, + "id": 1356, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1314, + "id": 1357, "name": "discount", "kind": 1024, "kindString": "Property", @@ -25154,22 +25395,22 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] @@ -25181,7 +25422,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1314 + 1357 ] } ] @@ -25189,18 +25430,20 @@ } }, { - "id": 1311, + "id": 1354, "name": "banner", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 1315, + "id": 1358, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -25223,7 +25466,7 @@ } }, { - "id": 1310, + "id": 1353, "name": "name", "kind": 1024, "kindString": "Property", @@ -25239,10 +25482,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1312, - 1311, - 1315, - 1310 + 1355, + 1354, + 1358, + 1353 ] } ] @@ -25256,7 +25499,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1308 + 1351 ] } ] @@ -25264,7 +25507,7 @@ } }, { - "id": 1304, + "id": 1347, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -25282,24 +25525,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1303, - 1305, - 1302, - 1306, - 1304 + 1346, + 1348, + 1345, + 1349, + 1347 ] } ] }, { - "id": 1265, + "id": 1308, "name": "PromotionsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1297, + "id": 1340, "name": "active", "kind": 1024, "kindString": "Property", @@ -25310,7 +25553,7 @@ } }, { - "id": 1288, + "id": 1331, "name": "activity_duration_after_publishing", "kind": 1024, "kindString": "Property", @@ -25323,7 +25566,7 @@ } }, { - "id": 1280, + "id": 1323, "name": "auto_join", "kind": 1024, "kindString": "Property", @@ -25334,7 +25577,7 @@ } }, { - "id": 1268, + "id": 1311, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -25347,7 +25590,7 @@ } }, { - "id": 1279, + "id": 1322, "name": "category", "kind": 1024, "kindString": "Property", @@ -25360,7 +25603,7 @@ } }, { - "id": 1295, + "id": 1338, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -25371,7 +25614,7 @@ } }, { - "id": 1270, + "id": 1313, "name": "description", "kind": 1024, "kindString": "Property", @@ -25384,7 +25627,7 @@ } }, { - "id": 1272, + "id": 1315, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -25397,7 +25640,7 @@ } }, { - "id": 1266, + "id": 1309, "name": "id", "kind": 1024, "kindString": "Property", @@ -25408,7 +25651,7 @@ } }, { - "id": 1281, + "id": 1324, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -25419,7 +25662,7 @@ } }, { - "id": 1294, + "id": 1337, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -25442,7 +25685,7 @@ } }, { - "id": 1267, + "id": 1310, "name": "name", "kind": 1024, "kindString": "Property", @@ -25453,7 +25696,7 @@ } }, { - "id": 1300, + "id": 1343, "name": "object", "kind": 1024, "kindString": "Property", @@ -25464,7 +25707,7 @@ } }, { - "id": 1273, + "id": 1316, "name": "promotion", "kind": 1024, "kindString": "Property", @@ -25472,14 +25715,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1274, + "id": 1317, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1276, + "id": 1319, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -25490,7 +25733,7 @@ } }, { - "id": 1278, + "id": 1321, "name": "has_more", "kind": 1024, "kindString": "Property", @@ -25501,7 +25744,7 @@ } }, { - "id": 1275, + "id": 1318, "name": "object", "kind": 1024, "kindString": "Property", @@ -25512,7 +25755,7 @@ } }, { - "id": 1277, + "id": 1320, "name": "tiers", "kind": 1024, "kindString": "Property", @@ -25523,7 +25766,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" } } @@ -25534,10 +25777,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1276, - 1278, - 1275, - 1277 + 1319, + 1321, + 1318, + 1320 ] } ] @@ -25545,7 +25788,7 @@ } }, { - "id": 1299, + "id": 1342, "name": "protected", "kind": 1024, "kindString": "Property", @@ -25556,7 +25799,7 @@ } }, { - "id": 1271, + "id": 1314, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -25569,7 +25812,7 @@ } }, { - "id": 1269, + "id": 1312, "name": "type", "kind": 1024, "kindString": "Property", @@ -25580,7 +25823,7 @@ } }, { - "id": 1298, + "id": 1341, "name": "use_voucher_metadata_schema", "kind": 1024, "kindString": "Property", @@ -25591,7 +25834,7 @@ } }, { - "id": 1282, + "id": 1325, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -25599,14 +25842,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1283, + "id": 1326, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1284, + "id": 1327, "name": "data", "kind": 1024, "kindString": "Property", @@ -25617,13 +25860,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1967, + "id": 2010, "name": "ValidationRulesCreateAssignmentResponse" } } }, { - "id": 1287, + "id": 1330, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -25634,7 +25877,7 @@ } }, { - "id": 1285, + "id": 1328, "name": "object", "kind": 1024, "kindString": "Property", @@ -25645,7 +25888,7 @@ } }, { - "id": 1286, + "id": 1329, "name": "total", "kind": 1024, "kindString": "Property", @@ -25661,10 +25904,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1284, - 1287, - 1285, - 1286 + 1327, + 1330, + 1328, + 1329 ] } ] @@ -25672,7 +25915,7 @@ } }, { - "id": 1293, + "id": 1336, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -25688,7 +25931,7 @@ } }, { - "id": 1289, + "id": 1332, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -25698,14 +25941,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1290, + "id": 1333, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1292, + "id": 1335, "name": "duration", "kind": 1024, "kindString": "Property", @@ -25718,7 +25961,7 @@ } }, { - "id": 1291, + "id": 1334, "name": "interval", "kind": 1024, "kindString": "Property", @@ -25736,8 +25979,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1292, - 1291 + 1335, + 1334 ] } ] @@ -25745,7 +25988,7 @@ } }, { - "id": 1296, + "id": 1339, "name": "vouchers_generation_status", "kind": 1024, "kindString": "Property", @@ -25761,41 +26004,41 @@ "title": "Properties", "kind": 1024, "children": [ - 1297, - 1288, - 1280, - 1268, - 1279, - 1295, - 1270, - 1272, - 1266, - 1281, - 1294, - 1267, - 1300, - 1273, - 1299, - 1271, - 1269, - 1298, - 1282, - 1293, - 1289, - 1296 + 1340, + 1331, + 1323, + 1311, + 1322, + 1338, + 1313, + 1315, + 1309, + 1324, + 1337, + 1310, + 1343, + 1316, + 1342, + 1314, + 1312, + 1341, + 1325, + 1336, + 1332, + 1339 ] } ] }, { - "id": 1316, + "id": 1359, "name": "PromotionsValidateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1317, + "id": 1360, "name": "customer", "kind": 1024, "kindString": "Property", @@ -25840,14 +26083,14 @@ { "type": "reflection", "declaration": { - "id": 1318, + "id": 1361, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1319, + "id": 1362, "name": "description", "kind": 1024, "kindString": "Property", @@ -25860,7 +26103,7 @@ } }, { - "id": 1320, + "id": 1363, "name": "id", "kind": 1024, "kindString": "Property", @@ -25878,8 +26121,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1319, - 1320 + 1362, + 1363 ] } ] @@ -25889,7 +26132,7 @@ } }, { - "id": 1328, + "id": 1371, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -25912,7 +26155,7 @@ } }, { - "id": 1321, + "id": 1364, "name": "order", "kind": 1024, "kindString": "Property", @@ -25922,14 +26165,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1322, + "id": 1365, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1326, + "id": 1369, "name": "amount", "kind": 1024, "kindString": "Property", @@ -25942,7 +26185,7 @@ } }, { - "id": 1323, + "id": 1366, "name": "id", "kind": 1024, "kindString": "Property", @@ -25955,7 +26198,7 @@ } }, { - "id": 1325, + "id": 1368, "name": "items", "kind": 1024, "kindString": "Property", @@ -25966,13 +26209,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" } } }, { - "id": 1327, + "id": 1370, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -25995,7 +26238,7 @@ } }, { - "id": 1324, + "id": 1367, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -26013,11 +26256,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1326, - 1323, - 1325, - 1327, - 1324 + 1369, + 1366, + 1368, + 1370, + 1367 ] } ] @@ -26030,22 +26273,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1317, - 1328, - 1321 + 1360, + 1371, + 1364 ] } ] }, { - "id": 1329, + "id": 1372, "name": "PromotionsValidateQueryParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1330, + "id": 1373, "name": "audienceRulesOnly", "kind": 1024, "kindString": "Property", @@ -26058,7 +26301,7 @@ } }, { - "id": 1331, + "id": 1374, "name": "filters", "kind": 1024, "kindString": "Property", @@ -26086,21 +26329,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1330, - 1331 + 1373, + 1374 ] } ] }, { - "id": 1332, + "id": 1375, "name": "PromotionsValidateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1334, + "id": 1377, "name": "promotions", "kind": 1024, "kindString": "Property", @@ -26112,14 +26355,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1335, + "id": 1378, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1344, + "id": 1387, "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -26132,7 +26375,7 @@ } }, { - "id": 1338, + "id": 1381, "name": "banner", "kind": 1024, "kindString": "Property", @@ -26145,7 +26388,7 @@ } }, { - "id": 1342, + "id": 1385, "name": "discount", "kind": 1024, "kindString": "Property", @@ -26157,29 +26400,29 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] } }, { - "id": 1343, + "id": 1386, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -26192,7 +26435,7 @@ } }, { - "id": 1341, + "id": 1384, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -26205,7 +26448,7 @@ } }, { - "id": 1361, + "id": 1404, "name": "hierarchy", "kind": 1024, "kindString": "Property", @@ -26218,7 +26461,7 @@ } }, { - "id": 1336, + "id": 1379, "name": "id", "kind": 1024, "kindString": "Property", @@ -26229,7 +26472,7 @@ } }, { - "id": 1345, + "id": 1388, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -26252,7 +26495,7 @@ } }, { - "id": 1339, + "id": 1382, "name": "name", "kind": 1024, "kindString": "Property", @@ -26263,7 +26506,7 @@ } }, { - "id": 1337, + "id": 1380, "name": "object", "kind": 1024, "kindString": "Property", @@ -26274,7 +26517,7 @@ } }, { - "id": 1346, + "id": 1389, "name": "order", "kind": 1024, "kindString": "Property", @@ -26284,14 +26527,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1347, + "id": 1390, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1350, + "id": 1393, "name": "amount", "kind": 1024, "kindString": "Property", @@ -26302,7 +26545,7 @@ } }, { - "id": 1359, + "id": 1402, "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -26315,7 +26558,7 @@ } }, { - "id": 1356, + "id": 1399, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -26328,7 +26571,7 @@ } }, { - "id": 1348, + "id": 1391, "name": "id", "kind": 1024, "kindString": "Property", @@ -26341,7 +26584,7 @@ } }, { - "id": 1351, + "id": 1394, "name": "initial_amount", "kind": 1024, "kindString": "Property", @@ -26354,7 +26597,7 @@ } }, { - "id": 1354, + "id": 1397, "name": "items", "kind": 1024, "kindString": "Property", @@ -26365,13 +26608,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" } } }, { - "id": 1353, + "id": 1396, "name": "items_applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -26384,7 +26627,7 @@ } }, { - "id": 1352, + "id": 1395, "name": "items_discount_amount", "kind": 1024, "kindString": "Property", @@ -26397,7 +26640,7 @@ } }, { - "id": 1355, + "id": 1398, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -26420,7 +26663,7 @@ } }, { - "id": 1349, + "id": 1392, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -26433,7 +26676,7 @@ } }, { - "id": 1358, + "id": 1401, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -26446,7 +26689,7 @@ } }, { - "id": 1360, + "id": 1403, "name": "total_applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -26459,7 +26702,7 @@ } }, { - "id": 1357, + "id": 1400, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -26477,19 +26720,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1350, - 1359, - 1356, - 1348, - 1351, - 1354, - 1353, - 1352, - 1355, - 1349, - 1358, - 1360, - 1357 + 1393, + 1402, + 1399, + 1391, + 1394, + 1397, + 1396, + 1395, + 1398, + 1392, + 1401, + 1403, + 1400 ] } ] @@ -26497,7 +26740,7 @@ } }, { - "id": 1340, + "id": 1383, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -26515,18 +26758,18 @@ "title": "Properties", "kind": 1024, "children": [ - 1344, - 1338, - 1342, - 1343, - 1341, - 1361, - 1336, - 1345, - 1339, - 1337, - 1346, - 1340 + 1387, + 1381, + 1385, + 1386, + 1384, + 1404, + 1379, + 1388, + 1382, + 1380, + 1389, + 1383 ] } ] @@ -26535,7 +26778,7 @@ } }, { - "id": 1362, + "id": 1405, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -26548,7 +26791,7 @@ } }, { - "id": 1333, + "id": 1376, "name": "valid", "kind": 1024, "kindString": "Property", @@ -26564,22 +26807,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1334, - 1362, - 1333 + 1377, + 1405, + 1376 ] } ] }, { - "id": 860, + "id": 861, "name": "Redemption", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 875, + "id": 876, "name": "customer", "kind": 1024, "kindString": "Property", @@ -26593,7 +26836,7 @@ } }, { - "id": 864, + "id": 865, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -26606,7 +26849,7 @@ } }, { - "id": 863, + "id": 864, "name": "date", "kind": 1024, "kindString": "Property", @@ -26619,7 +26862,7 @@ } }, { - "id": 873, + "id": 874, "name": "failure_code", "kind": 1024, "kindString": "Property", @@ -26632,7 +26875,7 @@ } }, { - "id": 874, + "id": 875, "name": "failure_message", "kind": 1024, "kindString": "Property", @@ -26645,7 +26888,7 @@ } }, { - "id": 884, + "id": 885, "name": "gift", "kind": 1024, "kindString": "Property", @@ -26655,14 +26898,14 @@ "type": { "type": "reflection", "declaration": { - "id": 885, + "id": 886, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 886, + "id": 887, "name": "amount", "kind": 1024, "kindString": "Property", @@ -26678,7 +26921,7 @@ "title": "Properties", "kind": 1024, "children": [ - 886 + 887 ] } ] @@ -26686,7 +26929,7 @@ } }, { - "id": 861, + "id": 862, "name": "id", "kind": 1024, "kindString": "Property", @@ -26697,7 +26940,7 @@ } }, { - "id": 887, + "id": 888, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -26707,14 +26950,14 @@ "type": { "type": "reflection", "declaration": { - "id": 888, + "id": 889, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 889, + "id": 890, "name": "points", "kind": 1024, "kindString": "Property", @@ -26730,7 +26973,7 @@ "title": "Properties", "kind": 1024, "children": [ - 889 + 890 ] } ] @@ -26738,7 +26981,7 @@ } }, { - "id": 871, + "id": 872, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -26761,7 +27004,7 @@ } }, { - "id": 862, + "id": 863, "name": "object", "kind": 1024, "kindString": "Property", @@ -26772,7 +27015,7 @@ } }, { - "id": 866, + "id": 867, "name": "order", "kind": 1024, "kindString": "Property", @@ -26787,7 +27030,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" }, { @@ -26869,14 +27112,14 @@ { "type": "reflection", "declaration": { - "id": 867, + "id": 868, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 870, + "id": 871, "name": "referrer", "kind": 1024, "kindString": "Property", @@ -26889,7 +27132,7 @@ } }, { - "id": 868, + "id": 869, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -26900,7 +27143,7 @@ } }, { - "id": 869, + "id": 870, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -26916,9 +27159,9 @@ "title": "Properties", "kind": 1024, "children": [ - 870, - 868, - 869 + 871, + 869, + 870 ] } ] @@ -26928,7 +27171,7 @@ } }, { - "id": 876, + "id": 877, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -26941,7 +27184,7 @@ } }, { - "id": 872, + "id": 873, "name": "result", "kind": 1024, "kindString": "Property", @@ -26961,7 +27204,7 @@ } }, { - "id": 865, + "id": 866, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -26974,7 +27217,7 @@ } }, { - "id": 877, + "id": 878, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -26984,14 +27227,14 @@ "type": { "type": "reflection", "declaration": { - "id": 878, + "id": 879, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 880, + "id": 881, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -27004,7 +27247,7 @@ } }, { - "id": 883, + "id": 884, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -27017,7 +27260,7 @@ } }, { - "id": 879, + "id": 880, "name": "code", "kind": 1024, "kindString": "Property", @@ -27028,7 +27271,7 @@ } }, { - "id": 881, + "id": 882, "name": "id", "kind": 1024, "kindString": "Property", @@ -27039,7 +27282,7 @@ } }, { - "id": 882, + "id": 883, "name": "object", "kind": 1024, "kindString": "Property", @@ -27055,11 +27298,11 @@ "title": "Properties", "kind": 1024, "children": [ - 880, - 883, - 879, 881, - 882 + 884, + 880, + 882, + 883 ] } ] @@ -27072,34 +27315,34 @@ "title": "Properties", "kind": 1024, "children": [ - 875, + 876, + 865, 864, - 863, - 873, 874, - 884, - 861, - 887, - 871, + 875, + 885, 862, - 866, - 876, + 888, 872, - 865, - 877 + 863, + 867, + 877, + 873, + 866, + 878 ] } ] }, { - "id": 895, + "id": 896, "name": "RedemptionsGetForVoucherResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 898, + "id": 899, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -27110,7 +27353,7 @@ } }, { - "id": 896, + "id": 897, "name": "object", "kind": 1024, "kindString": "Property", @@ -27121,7 +27364,7 @@ } }, { - "id": 899, + "id": 900, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -27132,7 +27375,7 @@ } }, { - "id": 901, + "id": 902, "name": "redeemed_amount", "kind": 1024, "kindString": "Property", @@ -27145,7 +27388,7 @@ } }, { - "id": 900, + "id": 901, "name": "redeemed_quantity", "kind": 1024, "kindString": "Property", @@ -27158,7 +27401,7 @@ } }, { - "id": 902, + "id": 903, "name": "redemption_entries", "kind": 1024, "kindString": "Property", @@ -27172,12 +27415,12 @@ "types": [ { "type": "reference", - "id": 860, + "id": 861, "name": "Redemption" }, { "type": "reference", - "id": 932, + "id": 933, "name": "SimpleRollback" } ] @@ -27185,7 +27428,7 @@ } }, { - "id": 897, + "id": 898, "name": "total", "kind": 1024, "kindString": "Property", @@ -27201,26 +27444,26 @@ "title": "Properties", "kind": 1024, "children": [ - 898, - 896, 899, - 901, + 897, 900, 902, - 897 + 901, + 903, + 898 ] } ] }, { - "id": 850, + "id": 851, "name": "RedemptionsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 854, + "id": 855, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -27233,7 +27476,7 @@ } }, { - "id": 856, + "id": 857, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -27243,14 +27486,14 @@ "type": { "type": "reflection", "declaration": { - "id": 857, + "id": 858, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 859, + "id": 860, "name": "after", "kind": 1024, "kindString": "Property", @@ -27263,7 +27506,7 @@ } }, { - "id": 858, + "id": 859, "name": "before", "kind": 1024, "kindString": "Property", @@ -27281,8 +27524,8 @@ "title": "Properties", "kind": 1024, "children": [ - 859, - 858 + 860, + 859 ] } ] @@ -27290,7 +27533,7 @@ } }, { - "id": 855, + "id": 856, "name": "customer", "kind": 1024, "kindString": "Property", @@ -27303,7 +27546,7 @@ } }, { - "id": 851, + "id": 852, "name": "limit", "kind": 1024, "kindString": "Property", @@ -27316,7 +27559,7 @@ } }, { - "id": 852, + "id": 853, "name": "page", "kind": 1024, "kindString": "Property", @@ -27329,7 +27572,7 @@ } }, { - "id": 853, + "id": 854, "name": "result", "kind": 1024, "kindString": "Property", @@ -27356,25 +27599,25 @@ "title": "Properties", "kind": 1024, "children": [ - 854, - 856, 855, - 851, + 857, + 856, 852, - 853 + 853, + 854 ] } ] }, { - "id": 890, + "id": 891, "name": "RedemptionsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 893, + "id": 894, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -27385,7 +27628,7 @@ } }, { - "id": 891, + "id": 892, "name": "object", "kind": 1024, "kindString": "Property", @@ -27396,7 +27639,7 @@ } }, { - "id": 894, + "id": 895, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -27408,12 +27651,12 @@ "types": [ { "type": "reference", - "id": 860, + "id": 861, "name": "Redemption" }, { "type": "reference", - "id": 932, + "id": 933, "name": "SimpleRollback" } ] @@ -27421,7 +27664,7 @@ } }, { - "id": 892, + "id": 893, "name": "total", "kind": 1024, "kindString": "Property", @@ -27437,23 +27680,23 @@ "title": "Properties", "kind": 1024, "children": [ - 893, - 891, 894, - 892 + 892, + 895, + 893 ] } ] }, { - "id": 817, + "id": 818, "name": "RedemptionsRedeemBody", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 819, + "id": 820, "name": "customer", "kind": 1024, "kindString": "Property", @@ -27502,14 +27745,14 @@ { "type": "reflection", "declaration": { - "id": 820, + "id": 821, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 821, + "id": 822, "name": "description", "kind": 1024, "kindString": "Property", @@ -27522,7 +27765,7 @@ } }, { - "id": 822, + "id": 823, "name": "id", "kind": 1024, "kindString": "Property", @@ -27540,8 +27783,8 @@ "title": "Properties", "kind": 1024, "children": [ - 821, - 822 + 822, + 823 ] } ] @@ -27551,7 +27794,7 @@ } }, { - "id": 826, + "id": 827, "name": "gift", "kind": 1024, "kindString": "Property", @@ -27560,12 +27803,12 @@ }, "type": { "type": "reference", - "id": 2427, + "id": 2470, "name": "GiftRedemptionParams" } }, { - "id": 824, + "id": 825, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -27588,7 +27831,7 @@ } }, { - "id": 823, + "id": 824, "name": "order", "kind": 1024, "kindString": "Property", @@ -27603,7 +27846,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } ], @@ -27643,7 +27886,7 @@ } }, { - "id": 825, + "id": 826, "name": "reward", "kind": 1024, "kindString": "Property", @@ -27652,12 +27895,12 @@ }, "type": { "type": "reference", - "id": 2053, + "id": 2096, "name": "RewardRedemptionParams" } }, { - "id": 827, + "id": 828, "name": "session", "kind": 1024, "kindString": "Property", @@ -27666,12 +27909,12 @@ }, "type": { "type": "reference", - "id": 2441, + "id": 2484, "name": "ValidationSessionReleaseParams" } }, { - "id": 818, + "id": 819, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -27689,26 +27932,26 @@ "title": "Properties", "kind": 1024, "children": [ - 819, - 826, - 824, - 823, - 825, + 820, 827, - 818 + 825, + 824, + 826, + 828, + 819 ] } ] }, { - "id": 828, + "id": 829, "name": "RedemptionsRedeemResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 838, + "id": 839, "name": "customer", "kind": 1024, "kindString": "Property", @@ -27722,7 +27965,7 @@ } }, { - "id": 832, + "id": 833, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -27735,7 +27978,7 @@ } }, { - "id": 831, + "id": 832, "name": "date", "kind": 1024, "kindString": "Property", @@ -27748,7 +27991,7 @@ } }, { - "id": 848, + "id": 849, "name": "failure_code", "kind": 1024, "kindString": "Property", @@ -27761,7 +28004,7 @@ } }, { - "id": 849, + "id": 850, "name": "failure_message", "kind": 1024, "kindString": "Property", @@ -27774,7 +28017,7 @@ } }, { - "id": 841, + "id": 842, "name": "gift", "kind": 1024, "kindString": "Property", @@ -27784,14 +28027,14 @@ "type": { "type": "reflection", "declaration": { - "id": 842, + "id": 843, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 843, + "id": 844, "name": "amount", "kind": 1024, "kindString": "Property", @@ -27807,7 +28050,7 @@ "title": "Properties", "kind": 1024, "children": [ - 843 + 844 ] } ] @@ -27815,7 +28058,7 @@ } }, { - "id": 829, + "id": 830, "name": "id", "kind": 1024, "kindString": "Property", @@ -27826,7 +28069,7 @@ } }, { - "id": 844, + "id": 845, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -27836,14 +28079,14 @@ "type": { "type": "reflection", "declaration": { - "id": 845, + "id": 846, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 846, + "id": 847, "name": "points", "kind": 1024, "kindString": "Property", @@ -27859,7 +28102,7 @@ "title": "Properties", "kind": 1024, "children": [ - 846 + 847 ] } ] @@ -27867,7 +28110,7 @@ } }, { - "id": 835, + "id": 836, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -27890,7 +28133,7 @@ } }, { - "id": 830, + "id": 831, "name": "object", "kind": 1024, "kindString": "Property", @@ -27901,7 +28144,7 @@ } }, { - "id": 834, + "id": 835, "name": "order", "kind": 1024, "kindString": "Property", @@ -27910,12 +28153,12 @@ }, "type": { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } }, { - "id": 847, + "id": 848, "name": "promotion_tier", "kind": 1024, "kindString": "Property", @@ -27927,19 +28170,19 @@ "types": [ { "type": "reference", - "id": 1243, + "id": 1286, "name": "PromotionTierRedeemDetailsSimple" }, { "type": "reference", - "id": 1250, + "id": 1293, "name": "PromotionTierRedeemDetails" } ] } }, { - "id": 840, + "id": 841, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -27950,7 +28193,7 @@ } }, { - "id": 836, + "id": 837, "name": "result", "kind": 1024, "kindString": "Property", @@ -27970,7 +28213,7 @@ } }, { - "id": 839, + "id": 840, "name": "reward", "kind": 1024, "kindString": "Property", @@ -27985,7 +28228,7 @@ "types": [ { "type": "reference", - "id": 1994, + "id": 2037, "name": "RewardsResponse" }, { @@ -28005,7 +28248,7 @@ "types": [ { "type": "reference", - "id": 1994, + "id": 2037, "name": "RewardsResponse" }, { @@ -28025,7 +28268,7 @@ "types": [ { "type": "reference", - "id": 1994, + "id": 2037, "name": "RewardsResponse" }, { @@ -28044,7 +28287,7 @@ } }, { - "id": 833, + "id": 834, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28057,14 +28300,14 @@ } }, { - "id": 837, + "id": 838, "name": "voucher", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } } @@ -28074,36 +28317,36 @@ "title": "Properties", "kind": 1024, "children": [ - 838, + 839, + 833, 832, + 849, + 850, + 842, + 830, + 845, + 836, 831, + 835, 848, - 849, 841, - 829, - 844, - 835, - 830, - 834, - 847, + 837, 840, - 836, - 839, - 833, - 837 + 834, + 838 ] } ] }, { - "id": 948, + "id": 949, "name": "RedemptionsRedeemStackableParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 953, + "id": 954, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28117,7 +28360,7 @@ } }, { - "id": 954, + "id": 955, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -28140,7 +28383,7 @@ } }, { - "id": 949, + "id": 950, "name": "options", "kind": 1024, "kindString": "Property", @@ -28149,12 +28392,12 @@ }, "type": { "type": "reference", - "id": 2377, + "id": 2420, "name": "StackableOptions" } }, { - "id": 952, + "id": 953, "name": "order", "kind": 1024, "kindString": "Property", @@ -28163,12 +28406,12 @@ }, "type": { "type": "reference", - "id": 2294, + "id": 2337, "name": "OrdersCreate" } }, { - "id": 950, + "id": 951, "name": "redeemables", "kind": 1024, "kindString": "Property", @@ -28177,13 +28420,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2380, + "id": 2423, "name": "StackableRedeemableParams" } } }, { - "id": 951, + "id": 952, "name": "session", "kind": 1024, "kindString": "Property", @@ -28192,7 +28435,7 @@ }, "type": { "type": "reference", - "id": 2431, + "id": 2474, "name": "ValidationSessionParams" } } @@ -28202,25 +28445,25 @@ "title": "Properties", "kind": 1024, "children": [ - 953, 954, - 949, - 952, + 955, 950, - 951 + 953, + 951, + 952 ] } ] }, { - "id": 969, + "id": 970, "name": "RedemptionsRedeemStackableResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 984, + "id": 985, "name": "order", "kind": 1024, "kindString": "Property", @@ -28229,12 +28472,12 @@ }, "type": { "type": "reference", - "id": 958, + "id": 959, "name": "RedemptionsRedeemStackableOrderResponse" } }, { - "id": 971, + "id": 972, "name": "parent_redemption", "kind": 1024, "kindString": "Property", @@ -28242,14 +28485,14 @@ "type": { "type": "reflection", "declaration": { - "id": 972, + "id": 973, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 981, + "id": 982, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28263,7 +28506,7 @@ } }, { - "id": 976, + "id": 977, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -28276,7 +28519,7 @@ } }, { - "id": 975, + "id": 976, "name": "date", "kind": 1024, "kindString": "Property", @@ -28287,7 +28530,7 @@ } }, { - "id": 973, + "id": 974, "name": "id", "kind": 1024, "kindString": "Property", @@ -28298,7 +28541,7 @@ } }, { - "id": 978, + "id": 979, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -28321,7 +28564,7 @@ } }, { - "id": 974, + "id": 975, "name": "object", "kind": 1024, "kindString": "Property", @@ -28332,7 +28575,7 @@ } }, { - "id": 980, + "id": 981, "name": "order", "kind": 1024, "kindString": "Property", @@ -28341,12 +28584,12 @@ }, "type": { "type": "reference", - "id": 958, + "id": 959, "name": "RedemptionsRedeemStackableOrderResponse" } }, { - "id": 983, + "id": 984, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -28357,7 +28600,7 @@ } }, { - "id": 982, + "id": 983, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -28368,7 +28611,7 @@ } }, { - "id": 979, + "id": 980, "name": "result", "kind": 1024, "kindString": "Property", @@ -28388,7 +28631,7 @@ } }, { - "id": 977, + "id": 978, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28406,17 +28649,17 @@ "title": "Properties", "kind": 1024, "children": [ - 981, + 982, + 977, 976, - 975, - 973, - 978, 974, - 980, - 983, - 982, 979, - 977 + 975, + 981, + 984, + 983, + 980, + 978 ] } ] @@ -28424,7 +28667,7 @@ } }, { - "id": 970, + "id": 971, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -28433,7 +28676,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 955, + "id": 956, "name": "RedemptionsRedeemStackableRedemptionResult" } } @@ -28444,22 +28687,22 @@ "title": "Properties", "kind": 1024, "children": [ - 984, - 971, - 970 + 985, + 972, + 971 ] } ] }, { - "id": 903, + "id": 904, "name": "RedemptionsRollbackParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 906, + "id": 907, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28477,14 +28720,14 @@ { "type": "reflection", "declaration": { - "id": 907, + "id": 908, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 908, + "id": 909, "name": "description", "kind": 1024, "kindString": "Property", @@ -28502,7 +28745,7 @@ "title": "Properties", "kind": 1024, "children": [ - 908 + 909 ] } ] @@ -28512,7 +28755,7 @@ } }, { - "id": 904, + "id": 905, "name": "reason", "kind": 1024, "kindString": "Property", @@ -28525,7 +28768,7 @@ } }, { - "id": 905, + "id": 906, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28543,22 +28786,22 @@ "title": "Properties", "kind": 1024, "children": [ - 906, - 904, - 905 + 907, + 905, + 906 ] } ] }, { - "id": 912, + "id": 913, "name": "RedemptionsRollbackPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 913, + "id": 914, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28576,14 +28819,14 @@ { "type": "reflection", "declaration": { - "id": 914, + "id": 915, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 915, + "id": 916, "name": "description", "kind": 1024, "kindString": "Property", @@ -28601,7 +28844,7 @@ "title": "Properties", "kind": 1024, "children": [ - 915 + 916 ] } ] @@ -28616,20 +28859,20 @@ "title": "Properties", "kind": 1024, "children": [ - 913 + 914 ] } ] }, { - "id": 909, + "id": 910, "name": "RedemptionsRollbackQueryParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 910, + "id": 911, "name": "reason", "kind": 1024, "kindString": "Property", @@ -28642,7 +28885,7 @@ } }, { - "id": 911, + "id": 912, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28660,21 +28903,21 @@ "title": "Properties", "kind": 1024, "children": [ - 910, - 911 + 911, + 912 ] } ] }, { - "id": 916, + "id": 917, "name": "RedemptionsRollbackResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 923, + "id": 924, "name": "amount", "kind": 1024, "kindString": "Property", @@ -28687,7 +28930,7 @@ } }, { - "id": 927, + "id": 928, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28701,7 +28944,7 @@ } }, { - "id": 920, + "id": 921, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -28714,7 +28957,7 @@ } }, { - "id": 919, + "id": 920, "name": "date", "kind": 1024, "kindString": "Property", @@ -28727,7 +28970,7 @@ } }, { - "id": 917, + "id": 918, "name": "id", "kind": 1024, "kindString": "Property", @@ -28738,7 +28981,7 @@ } }, { - "id": 918, + "id": 919, "name": "object", "kind": 1024, "kindString": "Property", @@ -28749,7 +28992,7 @@ } }, { - "id": 924, + "id": 925, "name": "reason", "kind": 1024, "kindString": "Property", @@ -28762,7 +29005,7 @@ } }, { - "id": 922, + "id": 923, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -28775,7 +29018,7 @@ } }, { - "id": 925, + "id": 926, "name": "result", "kind": 1024, "kindString": "Property", @@ -28795,7 +29038,7 @@ } }, { - "id": 928, + "id": 929, "name": "reward", "kind": 1024, "kindString": "Property", @@ -28805,14 +29048,14 @@ "type": { "type": "reflection", "declaration": { - "id": 929, + "id": 930, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 930, + "id": 931, "name": "assignment_id", "kind": 1024, "kindString": "Property", @@ -28823,7 +29066,7 @@ } }, { - "id": 931, + "id": 932, "name": "object", "kind": 1024, "kindString": "Property", @@ -28839,8 +29082,8 @@ "title": "Properties", "kind": 1024, "children": [ - 930, - 931 + 931, + 932 ] } ] @@ -28848,7 +29091,7 @@ } }, { - "id": 921, + "id": 922, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28861,7 +29104,7 @@ } }, { - "id": 926, + "id": 927, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -28870,7 +29113,7 @@ }, "type": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } } @@ -28880,31 +29123,31 @@ "title": "Properties", "kind": 1024, "children": [ - 923, - 927, - 920, - 919, - 917, - 918, 924, - 922, - 925, 928, 921, - 926 + 920, + 918, + 919, + 925, + 923, + 926, + 929, + 922, + 927 ] } ] }, { - "id": 985, + "id": 986, "name": "RedemptionsRollbackStackableResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 998, + "id": 999, "name": "order", "kind": 1024, "kindString": "Property", @@ -28913,12 +29156,12 @@ }, "type": { "type": "reference", - "id": 958, + "id": 959, "name": "RedemptionsRedeemStackableOrderResponse" } }, { - "id": 987, + "id": 988, "name": "parent_rollback", "kind": 1024, "kindString": "Property", @@ -28926,14 +29169,14 @@ "type": { "type": "reflection", "declaration": { - "id": 988, + "id": 989, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 996, + "id": 997, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28947,7 +29190,7 @@ } }, { - "id": 991, + "id": 992, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -28960,7 +29203,7 @@ } }, { - "id": 990, + "id": 991, "name": "date", "kind": 1024, "kindString": "Property", @@ -28971,7 +29214,7 @@ } }, { - "id": 989, + "id": 990, "name": "id", "kind": 1024, "kindString": "Property", @@ -28982,7 +29225,7 @@ } }, { - "id": 993, + "id": 994, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -29005,7 +29248,7 @@ } }, { - "id": 995, + "id": 996, "name": "order", "kind": 1024, "kindString": "Property", @@ -29014,12 +29257,12 @@ }, "type": { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } }, { - "id": 997, + "id": 998, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -29030,7 +29273,7 @@ } }, { - "id": 994, + "id": 995, "name": "result", "kind": 1024, "kindString": "Property", @@ -29050,7 +29293,7 @@ } }, { - "id": 992, + "id": 993, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -29068,15 +29311,15 @@ "title": "Properties", "kind": 1024, "children": [ - 996, + 997, + 992, 991, 990, - 989, - 993, - 995, - 997, 994, - 992 + 996, + 998, + 995, + 993 ] } ] @@ -29084,7 +29327,7 @@ } }, { - "id": 986, + "id": 987, "name": "rollbacks", "kind": 1024, "kindString": "Property", @@ -29093,7 +29336,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 955, + "id": 956, "name": "RedemptionsRedeemStackableRedemptionResult" } } @@ -29104,115 +29347,47 @@ "title": "Properties", "kind": 1024, "children": [ - 998, - 987, - 986 + 999, + 988, + 987 ] } ] }, { - "id": 2053, - "name": "RewardRedemptionParams", + "id": 1076, + "name": "ResponseValidateVoucherFalse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2055, - "name": "assignment_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2056, - "name": "id", + "id": 1078, + "name": "code", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 2054, - "name": "points", + "id": 1089, + "name": "customer_id", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2055, - 2056, - 2054 - ] - } - ] - }, - { - "id": 2020, - "name": "RewardsAssignmentObject", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2030, - "name": "created_at", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2021, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 2032, - "name": "object", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "literal", - "value": "reward_assignment" - } - }, - { - "id": 2025, - "name": "parameters", + "id": 1079, + "name": "error", "kind": 1024, "kindString": "Property", "flags": { @@ -29221,51 +29396,93 @@ "type": { "type": "reflection", "declaration": { - "id": 2026, + "id": 1080, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2027, - "name": "loyalty", + "id": 1081, + "name": "code", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1084, + "name": "details", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1082, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1083, + "name": "message", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1085, + "name": "request_id", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reflection", - "declaration": { - "id": 2028, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2029, - "name": "points", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2029 - ] - } - ] - } + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1086, + "name": "resource_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1087, + "name": "resource_type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" } } ], @@ -29274,7 +29491,13 @@ "title": "Properties", "kind": 1024, "children": [ - 2027 + 1081, + 1084, + 1082, + 1083, + 1085, + 1086, + 1087 ] } ] @@ -29282,21 +29505,31 @@ } }, { - "id": 2023, - "name": "related_object_id", + "id": 1090, + "name": "metadata", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" } }, { - "id": 2024, - "name": "related_object_type", + "id": 1091, + "name": "reason", "kind": 1024, "kindString": "Property", "flags": { @@ -29308,27 +29541,27 @@ } }, { - "id": 2022, - "name": "reward_id", + "id": 1088, + "name": "tracking_id", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 2031, - "name": "updated_at", + "id": 1077, + "name": "valid", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": false } } ], @@ -29337,27 +29570,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2030, - 2021, - 2032, - 2025, - 2023, - 2024, - 2022, - 2031 + 1078, + 1089, + 1079, + 1090, + 1091, + 1088, + 1077 ] } ] }, { - "id": 2041, - "name": "RewardsCreateAssignment", + "id": 1021, + "name": "ResponseValidateVoucherTrue", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2042, + "id": 1024, + "name": "applicable_to", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "id": 2499, + "name": "ApplicableToResultList" + } + }, + { + "id": 1026, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -29370,111 +29614,873 @@ } }, { - "id": 2043, - "name": "parameters", + "id": 1027, + "name": "campaign_id", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reflection", - "declaration": { - "id": 2044, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2045, - "name": "loyalty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 2046, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2047, - "name": "points", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2047 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2045 - ] - } - ] - } + "type": "intrinsic", + "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2042, - 2043 - ] - } - ] - }, - { - "id": 2033, - "name": "RewardsListAssignmentsParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ + }, { - "id": 2034, - "name": "limit", + "id": 1023, + "name": "code", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 2035, - "name": "page", + "id": 1029, + "name": "discount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "id": 2525, + "name": "DiscountUnit" + }, + { + "type": "reference", + "id": 2533, + "name": "DiscountAmount" + }, + { + "type": "reference", + "id": 2538, + "name": "DiscountPercent" + }, + { + "type": "reference", + "id": 2544, + "name": "DiscountFixed" + }, + { + "type": "reference", + "id": 2514, + "name": "DiscountUnitMultiple" + } + ] + } + }, + { + "id": 1074, + "name": "expiration_date", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1030, + "name": "gift", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1031, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1032, + "name": "amount", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1033, + "name": "balance", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1034, + "name": "effect", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "APPLY_TO_ORDER" + }, + { + "type": "literal", + "value": "APPLY_TO_ITEMS" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1032, + 1033, + 1034 + ] + } + ] + } + } + }, + { + "id": 1025, + "name": "inapplicable_to", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "id": 2499, + "name": "ApplicableToResultList" + } + }, + { + "id": 1035, + "name": "loyalty", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1036, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1037, + "name": "points_cost", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1037 + ] + } + ] + } + } + }, + { + "id": 1028, + "name": "metadata", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + }, + { + "id": 1043, + "name": "order", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1044, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1050, + "name": "amount", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1053, + "name": "applied_discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1047, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1061, + "name": "customer", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "id": 644, + "name": "CustomerRequest" + } + }, + { + "id": 1062, + "name": "customer_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1052, + "name": "discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1045, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1051, + "name": "initial_amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1059, + "name": "items", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2306, + "name": "OrdersItem" + } + } + }, + { + "id": 1057, + "name": "items_applied_discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1054, + "name": "items_discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1060, + "name": "metadata", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + }, + { + "id": 1064, + "name": "object", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "literal", + "value": "order" + } + }, + { + "id": 1065, + "name": "redemptions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1066, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1067, + "name": "date", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1069, + "name": "related_object_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1070, + "name": "related_object_parent_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1068, + "name": "related_object_type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "voucher" + }, + { + "type": "literal", + "value": "promotion_tier" + } + ] + } + }, + { + "id": 1071, + "name": "stacked", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1067, + 1069, + 1070, + 1068, + 1071 + ] + } + ] + } + } + ], + "name": "Record" + } + }, + { + "id": 1063, + "name": "referrer_id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1046, + "name": "source_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1049, + "name": "status", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "CREATED" + }, + { + "type": "literal", + "value": "PAID" + }, + { + "type": "literal", + "value": "CANCELED" + }, + { + "type": "literal", + "value": "FULFILLED" + }, + { + "type": "literal", + "value": "PROCESSING" + } + ] + } + }, + { + "id": 1056, + "name": "total_amount", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1058, + "name": "total_applied_discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1055, + "name": "total_discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1048, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1050, + 1053, + 1047, + 1061, + 1062, + 1052, + 1045, + 1051, + 1059, + 1057, + 1054, + 1060, + 1064, + 1065, + 1063, + 1046, + 1049, + 1056, + 1058, + 1055, + 1048 + ] + } + ] + } + } + }, + { + "id": 1038, + "name": "reward", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1039, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1041, + "name": "assignment_id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1040, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1042, + "name": "points", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1041, + 1040, + 1042 + ] + } + ] + } + } + }, + { + "id": 1072, + "name": "session", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "id": 2474, + "name": "ValidationSessionParams" + } + }, + { + "id": 1073, + "name": "start_date", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1075, + "name": "tracking_id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1022, + "name": "valid", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "literal", + "value": true + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1024, + 1026, + 1027, + 1023, + 1029, + 1074, + 1030, + 1025, + 1035, + 1028, + 1043, + 1038, + 1072, + 1073, + 1075, + 1022 + ] + } + ] + }, + { + "id": 2096, + "name": "RewardRedemptionParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2098, + "name": "assignment_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2099, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2097, + "name": "points", "kind": 1024, "kindString": "Property", "flags": { @@ -29491,21 +30497,349 @@ "title": "Properties", "kind": 1024, "children": [ - 2034, - 2035 + 2098, + 2099, + 2097 + ] + } + ] + }, + { + "id": 2063, + "name": "RewardsAssignmentObject", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2073, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2064, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2075, + "name": "object", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "literal", + "value": "reward_assignment" + } + }, + { + "id": 2068, + "name": "parameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 2069, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2070, + "name": "loyalty", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 2071, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2072, + "name": "points", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2072 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2070 + ] + } + ] + } + } + }, + { + "id": 2066, + "name": "related_object_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2067, + "name": "related_object_type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2065, + "name": "reward_id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2074, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2073, + 2064, + 2075, + 2068, + 2066, + 2067, + 2065, + 2074 + ] + } + ] + }, + { + "id": 2084, + "name": "RewardsCreateAssignment", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2085, + "name": "campaign", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2086, + "name": "parameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 2087, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2088, + "name": "loyalty", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 2089, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2090, + "name": "points", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2090 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2088 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2085, + 2086 + ] + } + ] + }, + { + "id": 2076, + "name": "RewardsListAssignmentsParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2077, + "name": "limit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2078, + "name": "page", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2077, + 2078 ] } ] }, { - "id": 2036, + "id": 2079, "name": "RewardsListAssignmentsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2038, + "id": 2081, "name": "data", "kind": 1024, "kindString": "Property", @@ -29514,13 +30848,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2020, + "id": 2063, "name": "RewardsAssignmentObject" } } }, { - "id": 2040, + "id": 2083, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -29531,7 +30865,7 @@ } }, { - "id": 2039, + "id": 2082, "name": "object", "kind": 1024, "kindString": "Property", @@ -29542,7 +30876,7 @@ } }, { - "id": 2037, + "id": 2080, "name": "total", "kind": 1024, "kindString": "Property", @@ -29558,23 +30892,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2038, - 2040, - 2039, - 2037 + 2081, + 2083, + 2082, + 2080 ] } ] }, { - "id": 1991, + "id": 2034, "name": "RewardsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1993, + "id": 2036, "name": "limit", "kind": 1024, "kindString": "Property", @@ -29587,7 +30921,7 @@ } }, { - "id": 1992, + "id": 2035, "name": "page", "kind": 1024, "kindString": "Property", @@ -29605,21 +30939,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1993, - 1992 + 2036, + 2035 ] } ] }, { - "id": 2007, + "id": 2050, "name": "RewardsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2011, + "id": 2054, "name": "data", "kind": 1024, "kindString": "Property", @@ -29628,13 +30962,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2006, + "id": 2049, "name": "RewardsCreateResponse" } } }, { - "id": 2010, + "id": 2053, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -29645,7 +30979,7 @@ } }, { - "id": 2008, + "id": 2051, "name": "object", "kind": 1024, "kindString": "Property", @@ -29656,7 +30990,7 @@ } }, { - "id": 2009, + "id": 2052, "name": "total", "kind": 1024, "kindString": "Property", @@ -29672,23 +31006,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2011, - 2010, - 2008, - 2009 + 2054, + 2053, + 2051, + 2052 ] } ] }, { - "id": 1994, + "id": 2037, "name": "RewardsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1999, + "id": 2042, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -29698,14 +31032,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2000, + "id": 2043, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2002, + "id": 2045, "name": "description", "kind": 1024, "kindString": "Property", @@ -29718,7 +31052,7 @@ } }, { - "id": 2001, + "id": 2044, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -29736,8 +31070,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2002, - 2001 + 2045, + 2044 ] } ] @@ -29745,7 +31079,7 @@ } }, { - "id": 2003, + "id": 2046, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -29756,7 +31090,7 @@ } }, { - "id": 1995, + "id": 2038, "name": "id", "kind": 1024, "kindString": "Property", @@ -29767,7 +31101,7 @@ } }, { - "id": 1996, + "id": 2039, "name": "name", "kind": 1024, "kindString": "Property", @@ -29780,7 +31114,7 @@ } }, { - "id": 2005, + "id": 2048, "name": "object", "kind": 1024, "kindString": "Property", @@ -29791,7 +31125,7 @@ } }, { - "id": 1998, + "id": 2041, "name": "redeemed", "kind": 1024, "kindString": "Property", @@ -29804,7 +31138,7 @@ } }, { - "id": 1997, + "id": 2040, "name": "stock", "kind": 1024, "kindString": "Property", @@ -29817,7 +31151,7 @@ } }, { - "id": 2004, + "id": 2047, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -29835,27 +31169,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1999, - 2003, - 1995, - 1996, - 2005, - 1998, - 1997, - 2004 + 2042, + 2046, + 2038, + 2039, + 2048, + 2041, + 2040, + 2047 ] } ] }, { - "id": 2202, + "id": 2245, "name": "SegmentsCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2210, + "id": 2253, "name": "customers", "kind": 1024, "kindString": "Property", @@ -29871,7 +31205,7 @@ } }, { - "id": 2205, + "id": 2248, "name": "filter", "kind": 1024, "kindString": "Property", @@ -29881,14 +31215,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2206, + "id": 2249, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2207, + "id": 2250, "name": "junction", "kind": 1024, "kindString": "Property", @@ -29915,19 +31249,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2207 + 2250 ] } ], "indexSignature": { - "id": 2208, + "id": 2251, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2209, + "id": 2252, "name": "filter_conditions", "kind": 32768, "flags": {}, @@ -29946,7 +31280,7 @@ } }, { - "id": 2203, + "id": 2246, "name": "name", "kind": 1024, "kindString": "Property", @@ -29957,7 +31291,7 @@ } }, { - "id": 2204, + "id": 2247, "name": "type", "kind": 1024, "kindString": "Property", @@ -29982,23 +31316,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2210, - 2205, - 2203, - 2204 + 2253, + 2248, + 2246, + 2247 ] } ] }, { - "id": 2211, + "id": 2254, "name": "SegmentsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2214, + "id": 2257, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -30009,7 +31343,7 @@ } }, { - "id": 2216, + "id": 2259, "name": "filter", "kind": 1024, "kindString": "Property", @@ -30019,14 +31353,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2217, + "id": 2260, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2218, + "id": 2261, "name": "junction", "kind": 1024, "kindString": "Property", @@ -30053,19 +31387,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2218 + 2261 ] } ], "indexSignature": { - "id": 2219, + "id": 2262, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2220, + "id": 2263, "name": "filter_conditions", "kind": 32768, "flags": {}, @@ -30084,7 +31418,7 @@ } }, { - "id": 2212, + "id": 2255, "name": "id", "kind": 1024, "kindString": "Property", @@ -30095,7 +31429,7 @@ } }, { - "id": 2215, + "id": 2258, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -30118,7 +31452,7 @@ } }, { - "id": 2213, + "id": 2256, "name": "name", "kind": 1024, "kindString": "Property", @@ -30129,7 +31463,7 @@ } }, { - "id": 2222, + "id": 2265, "name": "object", "kind": 1024, "kindString": "Property", @@ -30140,7 +31474,7 @@ } }, { - "id": 2221, + "id": 2264, "name": "type", "kind": 1024, "kindString": "Property", @@ -30158,26 +31492,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2214, - 2216, - 2212, - 2215, - 2213, - 2222, - 2221 + 2257, + 2259, + 2255, + 2258, + 2256, + 2265, + 2264 ] } ] }, { - "id": 2224, + "id": 2267, "name": "SegmentsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2228, + "id": 2271, "name": "data", "kind": 1024, "kindString": "Property", @@ -30187,14 +31521,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2229, + "id": 2272, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2230, + "id": 2273, "name": "id", "kind": 1024, "kindString": "Property", @@ -30205,7 +31539,7 @@ } }, { - "id": 2231, + "id": 2274, "name": "name", "kind": 1024, "kindString": "Property", @@ -30216,7 +31550,7 @@ } }, { - "id": 2232, + "id": 2275, "name": "object", "kind": 1024, "kindString": "Property", @@ -30232,9 +31566,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2230, - 2231, - 2232 + 2273, + 2274, + 2275 ] } ] @@ -30243,7 +31577,7 @@ } }, { - "id": 2227, + "id": 2270, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -30254,7 +31588,7 @@ } }, { - "id": 2225, + "id": 2268, "name": "object", "kind": 1024, "kindString": "Property", @@ -30265,7 +31599,7 @@ } }, { - "id": 2226, + "id": 2269, "name": "total", "kind": 1024, "kindString": "Property", @@ -30281,10 +31615,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2228, - 2227, - 2225, - 2226 + 2271, + 2270, + 2268, + 2269 ] } ] @@ -30397,14 +31731,14 @@ ] }, { - "id": 2142, + "id": 2185, "name": "SimpleProduct", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2143, + "id": 2186, "name": "id", "kind": 1024, "kindString": "Property", @@ -30415,7 +31749,7 @@ } }, { - "id": 2145, + "id": 2188, "name": "name", "kind": 1024, "kindString": "Property", @@ -30428,7 +31762,7 @@ } }, { - "id": 2144, + "id": 2187, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -30446,22 +31780,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2143, - 2145, - 2144 + 2186, + 2188, + 2187 ] } ] }, { - "id": 1151, + "id": 1194, "name": "SimplePromotionTier", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1157, + "id": 1200, "name": "banner", "kind": 1024, "kindString": "Property", @@ -30474,7 +31808,7 @@ } }, { - "id": 1158, + "id": 1201, "name": "discount", "kind": 1024, "kindString": "Property", @@ -30484,29 +31818,29 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] } }, { - "id": 1159, + "id": 1202, "name": "hierarchy", "kind": 1024, "kindString": "Property", @@ -30517,7 +31851,7 @@ } }, { - "id": 1155, + "id": 1198, "name": "id", "kind": 1024, "kindString": "Property", @@ -30528,7 +31862,7 @@ } }, { - "id": 1153, + "id": 1196, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -30551,7 +31885,7 @@ } }, { - "id": 1156, + "id": 1199, "name": "name", "kind": 1024, "kindString": "Property", @@ -30562,7 +31896,7 @@ } }, { - "id": 1160, + "id": 1203, "name": "object", "kind": 1024, "kindString": "Property", @@ -30573,7 +31907,7 @@ } }, { - "id": 1152, + "id": 1195, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -30584,7 +31918,7 @@ } }, { - "id": 1154, + "id": 1197, "name": "valid", "kind": 1024, "kindString": "Property", @@ -30600,28 +31934,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1157, - 1158, - 1159, - 1155, - 1153, - 1156, - 1160, - 1152, - 1154 + 1200, + 1201, + 1202, + 1198, + 1196, + 1199, + 1203, + 1195, + 1197 ] } ] }, { - "id": 2146, + "id": 2189, "name": "SimpleSku", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2147, + "id": 2190, "name": "id", "kind": 1024, "kindString": "Property", @@ -30632,7 +31966,7 @@ } }, { - "id": 2149, + "id": 2192, "name": "sku", "kind": 1024, "kindString": "Property", @@ -30645,7 +31979,7 @@ } }, { - "id": 2148, + "id": 2191, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -30663,22 +31997,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2147, - 2149, - 2148 + 2190, + 2192, + 2191 ] } ] }, { - "id": 1728, + "id": 1771, "name": "SimpleVoucher", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1729, + "id": 1772, "name": "code_config", "kind": 1024, "kindString": "Property", @@ -30688,14 +32022,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1730, + "id": 1773, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1732, + "id": 1775, "name": "charset", "kind": 1024, "kindString": "Property", @@ -30708,7 +32042,7 @@ } }, { - "id": 1731, + "id": 1774, "name": "length", "kind": 1024, "kindString": "Property", @@ -30721,7 +32055,7 @@ } }, { - "id": 1733, + "id": 1776, "name": "pattern", "kind": 1024, "kindString": "Property", @@ -30734,7 +32068,7 @@ } }, { - "id": 1734, + "id": 1777, "name": "prefix", "kind": 1024, "kindString": "Property", @@ -30747,7 +32081,7 @@ } }, { - "id": 1735, + "id": 1778, "name": "suffix", "kind": 1024, "kindString": "Property", @@ -30765,11 +32099,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1732, - 1731, - 1733, - 1734, - 1735 + 1775, + 1774, + 1776, + 1777, + 1778 ] } ] @@ -30777,7 +32111,7 @@ } }, { - "id": 1738, + "id": 1781, "name": "discount", "kind": 1024, "kindString": "Property", @@ -30789,29 +32123,29 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] } }, { - "id": 1737, + "id": 1780, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -30824,7 +32158,7 @@ } }, { - "id": 1739, + "id": 1782, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -30834,14 +32168,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1740, + "id": 1783, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1742, + "id": 1785, "name": "balance", "kind": 1024, "kindString": "Property", @@ -30852,7 +32186,7 @@ } }, { - "id": 1741, + "id": 1784, "name": "points", "kind": 1024, "kindString": "Property", @@ -30868,8 +32202,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1742, - 1741 + 1785, + 1784 ] } ] @@ -30877,7 +32211,7 @@ } }, { - "id": 1743, + "id": 1786, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -30887,14 +32221,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1744, + "id": 1787, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1745, + "id": 1788, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -30910,7 +32244,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1745 + 1788 ] } ] @@ -30918,14 +32252,14 @@ } }, { - "id": 1736, + "id": 1779, "name": "type", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 1727, + "id": 1770, "name": "VoucherType" } } @@ -30935,25 +32269,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1729, - 1738, - 1737, - 1739, - 1743, - 1736 + 1772, + 1781, + 1780, + 1782, + 1786, + 1779 ] } ] }, { - "id": 2377, + "id": 2420, "name": "StackableOptions", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2378, + "id": 2421, "name": "expand", "kind": 1024, "kindString": "Property", @@ -30972,20 +32306,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2378 + 2421 ] } ] }, { - "id": 2380, + "id": 2423, "name": "StackableRedeemableParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2384, + "id": 2427, "name": "gift", "kind": 1024, "kindString": "Property", @@ -30994,12 +32328,12 @@ }, "type": { "type": "reference", - "id": 2427, + "id": 2470, "name": "GiftRedemptionParams" } }, { - "id": 2382, + "id": 2425, "name": "id", "kind": 1024, "kindString": "Property", @@ -31010,19 +32344,19 @@ } }, { - "id": 2381, + "id": 2424, "name": "object", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2379, + "id": 2422, "name": "StackableRedeemableObject" } }, { - "id": 2383, + "id": 2426, "name": "reward", "kind": 1024, "kindString": "Property", @@ -31031,7 +32365,7 @@ }, "type": { "type": "reference", - "id": 2053, + "id": 2096, "name": "RewardRedemptionParams" } } @@ -31041,23 +32375,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2384, - 2382, - 2381, - 2383 + 2427, + 2425, + 2424, + 2426 ] } ] }, { - "id": 2418, + "id": 2461, "name": "StackableRedeemableResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2423, + "id": 2466, "name": "applicable_to", "kind": 1024, "kindString": "Property", @@ -31066,12 +32400,12 @@ }, "type": { "type": "reference", - "id": 2452, + "id": 2499, "name": "ApplicableToResultList" } }, { - "id": 2420, + "id": 2463, "name": "id", "kind": 1024, "kindString": "Property", @@ -31082,7 +32416,7 @@ } }, { - "id": 2424, + "id": 2467, "name": "inapplicable_to", "kind": 1024, "kindString": "Property", @@ -31091,12 +32425,12 @@ }, "type": { "type": "reference", - "id": 2452, + "id": 2499, "name": "ApplicableToResultList" } }, { - "id": 2426, + "id": 2469, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -31119,19 +32453,19 @@ } }, { - "id": 2421, + "id": 2464, "name": "object", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2379, + "id": 2422, "name": "StackableRedeemableObject" } }, { - "id": 2422, + "id": 2465, "name": "order", "kind": 1024, "kindString": "Property", @@ -31140,12 +32474,12 @@ }, "type": { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } }, { - "id": 2425, + "id": 2468, "name": "result", "kind": 1024, "kindString": "Property", @@ -31154,19 +32488,19 @@ }, "type": { "type": "reference", - "id": 2413, + "id": 2456, "name": "StackableRedeemableResultResponse" } }, { - "id": 2419, + "id": 2462, "name": "status", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2385, + "id": 2428, "name": "StackableRedeemableResponseStatus" } } @@ -31176,27 +32510,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2423, - 2420, - 2424, - 2426, - 2421, - 2422, - 2425, - 2419 + 2466, + 2463, + 2467, + 2469, + 2464, + 2465, + 2468, + 2462 ] } ] }, { - "id": 2392, + "id": 2435, "name": "StackableRedeemableResultDiscount", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2399, + "id": 2442, "name": "amount_limit", "kind": 1024, "kindString": "Property", @@ -31209,7 +32543,7 @@ } }, { - "id": 2395, + "id": 2438, "name": "amount_off", "kind": 1024, "kindString": "Property", @@ -31222,7 +32556,7 @@ } }, { - "id": 2396, + "id": 2439, "name": "amount_off_formula", "kind": 1024, "kindString": "Property", @@ -31235,19 +32569,19 @@ } }, { - "id": 2394, + "id": 2437, "name": "effect", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2462, + "id": 2509, "name": "DiscountVouchersEffectTypes" } }, { - "id": 2400, + "id": 2443, "name": "fixed_amount", "kind": 1024, "kindString": "Property", @@ -31260,7 +32594,7 @@ } }, { - "id": 2401, + "id": 2444, "name": "fixed_amount_formula", "kind": 1024, "kindString": "Property", @@ -31273,7 +32607,7 @@ } }, { - "id": 2397, + "id": 2440, "name": "percent_off", "kind": 1024, "kindString": "Property", @@ -31286,7 +32620,7 @@ } }, { - "id": 2398, + "id": 2441, "name": "percent_off_formula", "kind": 1024, "kindString": "Property", @@ -31299,7 +32633,7 @@ } }, { - "id": 2406, + "id": 2449, "name": "product", "kind": 1024, "kindString": "Property", @@ -31308,12 +32642,12 @@ }, "type": { "type": "reference", - "id": 2142, + "id": 2185, "name": "SimpleProduct" } }, { - "id": 2405, + "id": 2448, "name": "sku", "kind": 1024, "kindString": "Property", @@ -31322,24 +32656,24 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2189, "name": "SimpleSku" } }, { - "id": 2393, + "id": 2436, "name": "type", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2456, + "id": 2503, "name": "DiscountVouchersTypes" } }, { - "id": 2402, + "id": 2445, "name": "unit_off", "kind": 1024, "kindString": "Property", @@ -31352,7 +32686,7 @@ } }, { - "id": 2403, + "id": 2446, "name": "unit_off_formula", "kind": 1024, "kindString": "Property", @@ -31365,7 +32699,7 @@ } }, { - "id": 2404, + "id": 2447, "name": "unit_type", "kind": 1024, "kindString": "Property", @@ -31378,7 +32712,7 @@ } }, { - "id": 2407, + "id": 2450, "name": "units", "kind": 1024, "kindString": "Property", @@ -31389,7 +32723,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2386, + "id": 2429, "name": "StackableRedeemableResultDiscountUnit" } } @@ -31400,46 +32734,46 @@ "title": "Properties", "kind": 1024, "children": [ - 2399, - 2395, - 2396, - 2394, - 2400, - 2401, - 2397, - 2398, - 2406, - 2405, - 2393, - 2402, - 2403, - 2404, - 2407 + 2442, + 2438, + 2439, + 2437, + 2443, + 2444, + 2440, + 2441, + 2449, + 2448, + 2436, + 2445, + 2446, + 2447, + 2450 ] } ] }, { - "id": 2386, + "id": 2429, "name": "StackableRedeemableResultDiscountUnit", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2387, + "id": 2430, "name": "effect", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2463, + "id": 2510, "name": "DiscountUnitVouchersEffectTypes" } }, { - "id": 2391, + "id": 2434, "name": "product", "kind": 1024, "kindString": "Property", @@ -31448,12 +32782,12 @@ }, "type": { "type": "reference", - "id": 2142, + "id": 2185, "name": "SimpleProduct" } }, { - "id": 2390, + "id": 2433, "name": "sku", "kind": 1024, "kindString": "Property", @@ -31462,12 +32796,12 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2189, "name": "SimpleSku" } }, { - "id": 2388, + "id": 2431, "name": "unit_off", "kind": 1024, "kindString": "Property", @@ -31478,7 +32812,7 @@ } }, { - "id": 2389, + "id": 2432, "name": "unit_type", "kind": 1024, "kindString": "Property", @@ -31494,24 +32828,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2387, - 2391, - 2390, - 2388, - 2389 + 2430, + 2434, + 2433, + 2431, + 2432 ] } ] }, { - "id": 2408, + "id": 2451, "name": "StackableRedeemableResultGift", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2409, + "id": 2452, "name": "credits", "kind": 1024, "kindString": "Property", @@ -31529,20 +32863,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2409 + 2452 ] } ] }, { - "id": 2410, + "id": 2453, "name": "StackableRedeemableResultLoyaltyCard", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2411, + "id": 2454, "name": "points", "kind": 1024, "kindString": "Property", @@ -31555,7 +32889,7 @@ } }, { - "id": 2412, + "id": 2455, "name": "transfers", "kind": 1024, "kindString": "Property", @@ -31566,7 +32900,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1724, + "id": 1767, "name": "LoyaltyPointsTransfer" } } @@ -31577,21 +32911,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2411, - 2412 + 2454, + 2455 ] } ] }, { - "id": 2413, + "id": 2456, "name": "StackableRedeemableResultResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2414, + "id": 2457, "name": "discount", "kind": 1024, "kindString": "Property", @@ -31600,12 +32934,12 @@ }, "type": { "type": "reference", - "id": 2392, + "id": 2435, "name": "StackableRedeemableResultDiscount" } }, { - "id": 2417, + "id": 2460, "name": "error", "kind": 1024, "kindString": "Property", @@ -31618,7 +32952,7 @@ } }, { - "id": 2415, + "id": 2458, "name": "gift", "kind": 1024, "kindString": "Property", @@ -31627,12 +32961,12 @@ }, "type": { "type": "reference", - "id": 2408, + "id": 2451, "name": "StackableRedeemableResultGift" } }, { - "id": 2416, + "id": 2459, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -31641,7 +32975,7 @@ }, "type": { "type": "reference", - "id": 2410, + "id": 2453, "name": "StackableRedeemableResultLoyaltyCard" } } @@ -31651,23 +32985,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2414, - 2417, - 2415, - 2416 + 2457, + 2460, + 2458, + 2459 ] } ] }, { - "id": 1928, + "id": 1971, "name": "ValidationRulesCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1930, + "id": 1973, "name": "error", "kind": 1024, "kindString": "Property", @@ -31677,14 +33011,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1931, + "id": 1974, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1932, + "id": 1975, "name": "message", "kind": 1024, "kindString": "Property", @@ -31702,7 +33036,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1932 + 1975 ] } ] @@ -31710,7 +33044,7 @@ } }, { - "id": 1929, + "id": 1972, "name": "name", "kind": 1024, "kindString": "Property", @@ -31721,7 +33055,7 @@ } }, { - "id": 1933, + "id": 1976, "name": "rules", "kind": 1024, "kindString": "Property", @@ -31731,14 +33065,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1934, + "id": 1977, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1935, + "id": 1978, "name": "logic", "kind": 1024, "kindString": "Property", @@ -31756,19 +33090,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1935 + 1978 ] } ], "indexSignature": { - "id": 1936, + "id": 1979, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1937, + "id": 1980, "name": "rule", "kind": 32768, "flags": {}, @@ -31792,22 +33126,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1930, - 1929, - 1933 + 1973, + 1972, + 1976 ] } ] }, { - "id": 1963, + "id": 2006, "name": "ValidationRulesCreateAssignment", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1965, + "id": 2008, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -31820,7 +33154,7 @@ } }, { - "id": 1966, + "id": 2009, "name": "promotion_tier", "kind": 1024, "kindString": "Property", @@ -31833,7 +33167,7 @@ } }, { - "id": 1964, + "id": 2007, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -31851,22 +33185,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1965, - 1966, - 1964 + 2008, + 2009, + 2007 ] } ] }, { - "id": 1967, + "id": 2010, "name": "ValidationRulesCreateAssignmentResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1972, + "id": 2015, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -31879,7 +33213,7 @@ } }, { - "id": 1968, + "id": 2011, "name": "id", "kind": 1024, "kindString": "Property", @@ -31890,7 +33224,7 @@ } }, { - "id": 1974, + "id": 2017, "name": "object", "kind": 1024, "kindString": "Property", @@ -31901,7 +33235,7 @@ } }, { - "id": 1970, + "id": 2013, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -31914,7 +33248,7 @@ } }, { - "id": 1971, + "id": 2014, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -31927,7 +33261,7 @@ } }, { - "id": 1969, + "id": 2012, "name": "rule_id", "kind": 1024, "kindString": "Property", @@ -31938,7 +33272,7 @@ } }, { - "id": 1973, + "id": 2016, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -31954,26 +33288,26 @@ "title": "Properties", "kind": 1024, "children": [ - 1972, - 1968, - 1974, - 1970, - 1971, - 1969, - 1973 + 2015, + 2011, + 2017, + 2013, + 2014, + 2012, + 2016 ] } ] }, { - "id": 1938, + "id": 1981, "name": "ValidationRulesCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1949, + "id": 1992, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -31984,7 +33318,7 @@ } }, { - "id": 1941, + "id": 1984, "name": "error", "kind": 1024, "kindString": "Property", @@ -31994,14 +33328,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1942, + "id": 1985, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1943, + "id": 1986, "name": "message", "kind": 1024, "kindString": "Property", @@ -32019,7 +33353,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1943 + 1986 ] } ] @@ -32027,7 +33361,7 @@ } }, { - "id": 1939, + "id": 1982, "name": "id", "kind": 1024, "kindString": "Property", @@ -32038,7 +33372,7 @@ } }, { - "id": 1940, + "id": 1983, "name": "name", "kind": 1024, "kindString": "Property", @@ -32049,7 +33383,7 @@ } }, { - "id": 1951, + "id": 1994, "name": "object", "kind": 1024, "kindString": "Property", @@ -32060,7 +33394,7 @@ } }, { - "id": 1944, + "id": 1987, "name": "rules", "kind": 1024, "kindString": "Property", @@ -32070,14 +33404,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1945, + "id": 1988, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1946, + "id": 1989, "name": "logic", "kind": 1024, "kindString": "Property", @@ -32095,19 +33429,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1946 + 1989 ] } ], "indexSignature": { - "id": 1947, + "id": 1990, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1948, + "id": 1991, "name": "rule", "kind": 32768, "flags": {}, @@ -32126,7 +33460,7 @@ } }, { - "id": 1950, + "id": 1993, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -32144,26 +33478,26 @@ "title": "Properties", "kind": 1024, "children": [ - 1949, - 1941, - 1939, - 1940, - 1951, - 1944, - 1950 + 1992, + 1984, + 1982, + 1983, + 1994, + 1987, + 1993 ] } ] }, { - "id": 1983, + "id": 2026, "name": "ValidationRulesListAssignmentsParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1984, + "id": 2027, "name": "limit", "kind": 1024, "kindString": "Property", @@ -32176,7 +33510,7 @@ } }, { - "id": 1985, + "id": 2028, "name": "page", "kind": 1024, "kindString": "Property", @@ -32194,21 +33528,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1984, - 1985 + 2027, + 2028 ] } ] }, { - "id": 1986, + "id": 2029, "name": "ValidationRulesListAssignmentsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1990, + "id": 2033, "name": "data", "kind": 1024, "kindString": "Property", @@ -32217,13 +33551,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1967, + "id": 2010, "name": "ValidationRulesCreateAssignmentResponse" } } }, { - "id": 1989, + "id": 2032, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -32234,7 +33568,7 @@ } }, { - "id": 1987, + "id": 2030, "name": "object", "kind": 1024, "kindString": "Property", @@ -32245,7 +33579,7 @@ } }, { - "id": 1988, + "id": 2031, "name": "total", "kind": 1024, "kindString": "Property", @@ -32261,23 +33595,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1990, - 1989, - 1987, - 1988 + 2033, + 2032, + 2030, + 2031 ] } ] }, { - "id": 1975, + "id": 2018, "name": "ValidationRulesListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1976, + "id": 2019, "name": "limit", "kind": 1024, "kindString": "Property", @@ -32290,7 +33624,7 @@ } }, { - "id": 1977, + "id": 2020, "name": "page", "kind": 1024, "kindString": "Property", @@ -32308,21 +33642,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1976, - 1977 + 2019, + 2020 ] } ] }, { - "id": 1978, + "id": 2021, "name": "ValidationRulesListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1982, + "id": 2025, "name": "data", "kind": 1024, "kindString": "Property", @@ -32331,13 +33665,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1956, + "id": 1999, "name": "ValidationRulesGetResponse" } } }, { - "id": 1981, + "id": 2024, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -32348,7 +33682,7 @@ } }, { - "id": 1979, + "id": 2022, "name": "object", "kind": 1024, "kindString": "Property", @@ -32359,7 +33693,7 @@ } }, { - "id": 1980, + "id": 2023, "name": "total", "kind": 1024, "kindString": "Property", @@ -32375,35 +33709,35 @@ "title": "Properties", "kind": 1024, "children": [ - 1982, - 1981, - 1979, - 1980 + 2025, + 2024, + 2022, + 2023 ] } ] }, { - "id": 1952, + "id": 1995, "name": "ValidationRulesValidateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1955, + "id": 1998, "name": "applicable_to", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2452, + "id": 2499, "name": "ApplicableToResultList" } }, { - "id": 1954, + "id": 1997, "name": "rule_id", "kind": 1024, "kindString": "Property", @@ -32414,7 +33748,7 @@ } }, { - "id": 1953, + "id": 1996, "name": "valid", "kind": 1024, "kindString": "Property", @@ -32430,22 +33764,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1955, - 1954, - 1953 + 1998, + 1997, + 1996 ] } ] }, { - "id": 2431, + "id": 2474, "name": "ValidationSessionParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2432, + "id": 2475, "name": "key", "kind": 1024, "kindString": "Property", @@ -32458,7 +33792,7 @@ } }, { - "id": 2434, + "id": 2477, "name": "ttl", "kind": 1024, "kindString": "Property", @@ -32471,7 +33805,7 @@ } }, { - "id": 2435, + "id": 2478, "name": "ttl_unit", "kind": 1024, "kindString": "Property", @@ -32513,7 +33847,7 @@ } }, { - "id": 2433, + "id": 2476, "name": "type", "kind": 1024, "kindString": "Property", @@ -32531,654 +33865,93 @@ "title": "Properties", "kind": 1024, "children": [ - 2432, - 2434, - 2435, - 2433 + 2475, + 2477, + 2478, + 2476 ] } ] }, { - "id": 2441, + "id": 2484, "name": "ValidationSessionReleaseParams", "kind": 256, "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2442, - "name": "key", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2442 - ] - } - ] - }, - { - "id": 2436, - "name": "ValidationSessionResponse", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2437, - "name": "key", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2439, - "name": "ttl", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2440, - "name": "ttl_unit", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "id": 2430, - "name": "ValidationSessionTTLUnit" - } - }, - { - "id": 2438, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "literal", - "value": "LOCK" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2437, - 2439, - 2440, - 2438 - ] - } - ] - }, - { - "id": 1063, - "name": "ValidationValidateStackableResponse", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 1067, - "name": "order", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 2302, - "name": "OrdersCreateResponse" - } - }, - { - "id": 1068, - "name": "redeemables", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2418, - "name": "StackableRedeemableResponse" - } - } - }, - { - "id": 1066, - "name": "session", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 2436, - "name": "ValidationSessionResponse" - } - }, - { - "id": 1065, - "name": "tracking_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1064, - "name": "valid", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1067, - 1068, - 1066, - 1065, - 1064 - ] - } - ] - }, - { - "id": 1056, - "name": "ValidationsValidateStackableParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 1061, - "name": "customer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 644, - "name": "CustomerRequest" - } - }, - { - "id": 1062, - "name": "metadata", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - }, - { - "id": 1057, - "name": "options", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 2377, - "name": "StackableOptions" - } - }, - { - "id": 1060, - "name": "order", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 2294, - "name": "OrdersCreate" - } - }, - { - "id": 1058, - "name": "redeemables", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2380, - "name": "StackableRedeemableParams" - } - } - }, - { - "id": 1059, - "name": "session", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 2431, - "name": "ValidationSessionParams" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1061, - 1062, - 1057, - 1060, - 1058, - 1059 - ] - } - ] - }, - { - "id": 999, - "name": "ValidationsValidateVoucherParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 1000, - "name": "customer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1001, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1006, - "name": "description", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1005, - "name": "email", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1002, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1007, - "name": "metadata", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - }, - { - "id": 1004, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1003, - "name": "source_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1006, - 1005, - 1002, - 1007, - 1004, - 1003 - ] - } - ] - } + "flags": {}, + "children": [ + { + "id": 2485, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" } - }, + } + ], + "groups": [ { - "id": 1015, - "name": "gift", + "title": "Properties", + "kind": 1024, + "children": [ + 2485 + ] + } + ] + }, + { + "id": 2479, + "name": "ValidationSessionResponse", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2480, + "name": "key", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reflection", - "declaration": { - "id": 1016, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1017, - "name": "credits", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1017 - ] - } - ] - } + "type": "intrinsic", + "name": "string" } }, { - "id": 1008, - "name": "order", + "id": 2482, + "name": "ttl", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reflection", - "declaration": { - "id": 1009, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1012, - "name": "amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1010, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1013, - "name": "items", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2263, - "name": "OrdersItem" - } - } - }, - { - "id": 1014, - "name": "metadata", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - }, - { - "id": 1011, - "name": "source_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1012, - 1010, - 1013, - 1014, - 1011 - ] - } - ] - } + "type": "intrinsic", + "name": "number" } }, { - "id": 1018, - "name": "reward", + "id": 2483, + "name": "ttl_unit", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reflection", - "declaration": { - "id": 1019, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1020, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1020 - ] - } - ] - } + "type": "reference", + "id": 2473, + "name": "ValidationSessionTTLUnit" } }, { - "id": 1021, - "name": "session", + "id": 2481, + "name": "type", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reference", - "id": 2431, - "name": "ValidationSessionParams" + "type": "literal", + "value": "LOCK" } } ], @@ -33187,25 +33960,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1000, - 1015, - 1008, - 1018, - 1021 + 2480, + 2482, + 2483, + 2481 ] } ] }, { - "id": 1022, - "name": "ValidationsValidateVoucherResponse", + "id": 1106, + "name": "ValidationValidateStackableResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1023, - "name": "applicable_to", + "id": 1110, + "name": "order", "kind": 1024, "kindString": "Property", "flags": { @@ -33213,39 +33985,44 @@ }, "type": { "type": "reference", - "id": 2452, - "name": "ApplicableToResultList" + "id": 2345, + "name": "OrdersCreateResponse" } }, { - "id": 1025, - "name": "campaign", + "id": 1111, + "name": "redeemables", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 2461, + "name": "StackableRedeemableResponse" + } } }, { - "id": 1026, - "name": "campaign_id", + "id": 1109, + "name": "session", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2479, + "name": "ValidationSessionResponse" } }, { - "id": 1028, - "name": "code", + "id": 1108, + "name": "tracking_id", "kind": 1024, "kindString": "Property", "flags": { @@ -33257,42 +34034,78 @@ } }, { - "id": 1030, - "name": "discount", + "id": 1107, + "name": "valid", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1110, + 1111, + 1109, + 1108, + 1107 + ] + } + ] + }, + { + "id": 1099, + "name": "ValidationsValidateStackableParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1104, + "name": "customer", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 2467, - "name": "DiscountUnit" - }, - { - "type": "reference", - "id": 2475, - "name": "DiscountAmount" - }, + "type": "reference", + "id": 644, + "name": "CustomerRequest" + } + }, + { + "id": 1105, + "name": "metadata", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "typeArguments": [ { - "type": "reference", - "id": 2480, - "name": "DiscountPercent" + "type": "intrinsic", + "name": "string" }, { - "type": "reference", - "id": 2486, - "name": "DiscountFixed" + "type": "intrinsic", + "name": "any" } - ] + ], + "name": "Record" } }, { - "id": 1055, - "name": "error", + "id": 1100, + "name": "options", "kind": 1024, "kindString": "Property", "flags": { @@ -33300,78 +34113,79 @@ }, "type": { "type": "reference", - "name": "ValidationError" + "id": 2420, + "name": "StackableOptions" } }, { - "id": 1053, - "name": "expiration_date", + "id": 1103, + "name": "order", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2337, + "name": "OrdersCreate" } }, { - "id": 1031, - "name": "gift", + "id": 1101, + "name": "redeemables", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2423, + "name": "StackableRedeemableParams" + } + } + }, + { + "id": 1102, + "name": "session", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reflection", - "declaration": { - "id": 1032, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1033, - "name": "amount", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1034, - "name": "balance", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1033, - 1034 - ] - } - ] - } + "type": "reference", + "id": 2474, + "name": "ValidationSessionParams" } - }, + } + ], + "groups": [ { - "id": 1024, - "name": "inapplicable_to", + "title": "Properties", + "kind": 1024, + "children": [ + 1104, + 1105, + 1100, + 1103, + 1101, + 1102 + ] + } + ] + }, + { + "id": 1000, + "name": "ValidationsValidateVoucherParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1001, + "name": "customer", "kind": 1024, "kindString": "Property", "flags": { @@ -33379,13 +34193,13 @@ }, "type": { "type": "reference", - "id": 2452, - "name": "ApplicableToResultList" + "id": 644, + "name": "CustomerRequest" } }, { - "id": 1035, - "name": "loyalty", + "id": 1012, + "name": "gift", "kind": 1024, "kindString": "Property", "flags": { @@ -33394,15 +34208,15 @@ "type": { "type": "reflection", "declaration": { - "id": 1036, + "id": 1013, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1037, - "name": "points_cost", + "id": 1014, + "name": "credits", "kind": 1024, "kindString": "Property", "flags": {}, @@ -33417,7 +34231,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1037 + 1014 ] } ] @@ -33425,30 +34239,7 @@ } }, { - "id": 1027, - "name": "metadata", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - }, - { - "id": 1038, + "id": 1002, "name": "order", "kind": 1024, "kindString": "Property", @@ -33458,28 +34249,17 @@ "type": { "type": "reflection", "declaration": { - "id": 1039, + "id": 1003, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1040, + "id": 1007, "name": "amount", "kind": 1024, "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1044, - "name": "applied_discount_amount", - "kind": 1024, - "kindString": "Property", "flags": { "isOptional": true }, @@ -33489,19 +34269,22 @@ } }, { - "id": 1041, - "name": "discount_amount", + "id": 1009, + "name": "customer", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "number" + "type": "reference", + "id": 644, + "name": "CustomerRequest" } }, { - "id": 1047, - "name": "initial_amount", + "id": 1004, + "name": "id", "kind": 1024, "kindString": "Property", "flags": { @@ -33509,11 +34292,11 @@ }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 1046, + "id": 1008, "name": "items", "kind": 1024, "kindString": "Property", @@ -33524,39 +34307,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2263, + "id": 2306, "name": "OrdersItem" } } }, { - "id": 1049, - "name": "items_applied_discount_amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1048, - "name": "items_discount_amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1050, + "id": 1011, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -33579,19 +34336,22 @@ } }, { - "id": 1043, - "name": "total_amount", + "id": 1010, + "name": "referrer", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "number" + "type": "reference", + "id": 644, + "name": "CustomerRequest" } }, { - "id": 1045, - "name": "total_applied_discount_amount", + "id": 1005, + "name": "source_id", "kind": 1024, "kindString": "Property", "flags": { @@ -33599,18 +34359,37 @@ }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 1042, - "name": "total_discount_amount", + "id": 1006, + "name": "status", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "literal", + "value": "CREATED" + }, + { + "type": "literal", + "value": "PAID" + }, + { + "type": "literal", + "value": "CANCELED" + }, + { + "type": "literal", + "value": "FULFILLED" + } + ] } } ], @@ -33619,17 +34398,14 @@ "title": "Properties", "kind": 1024, "children": [ - 1040, - 1044, - 1041, - 1047, - 1046, - 1049, - 1048, - 1050, - 1043, - 1045, - 1042 + 1007, + 1009, + 1004, + 1008, + 1011, + 1010, + 1005, + 1006 ] } ] @@ -33637,54 +34413,72 @@ } }, { - "id": 1051, - "name": "session", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 2431, - "name": "ValidationSessionParams" - } - }, - { - "id": 1052, - "name": "start_date", + "id": 1015, + "name": "reward", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1054, - "name": "tracking_id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 1016, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1017, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1018, + "name": "points", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1017, + 1018 + ] + } + ] + } } }, { - "id": 1029, - "name": "valid", + "id": 1019, + "name": "session", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2474, + "name": "ValidationSessionParams" } } ], @@ -33693,35 +34487,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1023, - 1025, - 1026, - 1028, - 1030, - 1055, - 1053, - 1031, - 1024, - 1035, - 1027, - 1038, - 1051, - 1052, - 1054, - 1029 + 1001, + 1012, + 1002, + 1015, + 1019 ] } ] }, { - "id": 2150, + "id": 2193, "name": "VoucherDiscount", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2159, + "id": 2202, "name": "amount_limit", "kind": 1024, "kindString": "Property", @@ -33734,7 +34517,7 @@ } }, { - "id": 2155, + "id": 2198, "name": "amount_off", "kind": 1024, "kindString": "Property", @@ -33747,7 +34530,7 @@ } }, { - "id": 2156, + "id": 2199, "name": "amount_off_formula", "kind": 1024, "kindString": "Property", @@ -33760,7 +34543,7 @@ } }, { - "id": 2154, + "id": 2197, "name": "effect", "kind": 1024, "kindString": "Property", @@ -33773,7 +34556,7 @@ } }, { - "id": 2157, + "id": 2200, "name": "percent_off", "kind": 1024, "kindString": "Property", @@ -33786,7 +34569,7 @@ } }, { - "id": 2158, + "id": 2201, "name": "percent_off_formula", "kind": 1024, "kindString": "Property", @@ -33799,7 +34582,7 @@ } }, { - "id": 2151, + "id": 2194, "name": "type", "kind": 1024, "kindString": "Property", @@ -33823,7 +34606,7 @@ } }, { - "id": 2152, + "id": 2195, "name": "unit_off", "kind": 1024, "kindString": "Property", @@ -33836,7 +34619,7 @@ } }, { - "id": 2153, + "id": 2196, "name": "unit_off_formula", "kind": 1024, "kindString": "Property", @@ -33854,28 +34637,28 @@ "title": "Properties", "kind": 1024, "children": [ - 2159, - 2155, - 2156, - 2154, - 2157, - 2158, - 2151, - 2152, - 2153 + 2202, + 2198, + 2199, + 2197, + 2200, + 2201, + 2194, + 2195, + 2196 ] } ] }, { - "id": 2525, + "id": 2583, "name": "VoucherifyClientSideOptions", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2526, + "id": 2584, "name": "apiUrl", "kind": 1024, "kindString": "Property", @@ -33892,7 +34675,7 @@ } }, { - "id": 2527, + "id": 2585, "name": "clientApplicationId", "kind": 1024, "kindString": "Property", @@ -33907,7 +34690,7 @@ } }, { - "id": 2528, + "id": 2586, "name": "clientSecretKey", "kind": 1024, "kindString": "Property", @@ -33922,7 +34705,7 @@ } }, { - "id": 2531, + "id": 2589, "name": "customHeaders", "kind": 1024, "kindString": "Property", @@ -33948,7 +34731,7 @@ } }, { - "id": 2532, + "id": 2590, "name": "exposeErrorCause", "kind": 1024, "kindString": "Property", @@ -33964,7 +34747,7 @@ } }, { - "id": 2530, + "id": 2588, "name": "origin", "kind": 1024, "kindString": "Property", @@ -33987,7 +34770,7 @@ } }, { - "id": 2529, + "id": 2587, "name": "trackingId", "kind": 1024, "kindString": "Property", @@ -34009,26 +34792,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2526, - 2527, - 2528, - 2531, - 2532, - 2530, - 2529 + 2584, + 2585, + 2586, + 2589, + 2590, + 2588, + 2587 ] } ] }, { - "id": 2513, + "id": 2571, "name": "VoucherifyServerSideOptions", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2514, + "id": 2572, "name": "apiUrl", "kind": 1024, "kindString": "Property", @@ -34045,7 +34828,7 @@ } }, { - "id": 2517, + "id": 2575, "name": "apiVersion", "kind": 1024, "kindString": "Property", @@ -34062,7 +34845,7 @@ } }, { - "id": 2515, + "id": 2573, "name": "applicationId", "kind": 1024, "kindString": "Property", @@ -34077,7 +34860,7 @@ } }, { - "id": 2518, + "id": 2576, "name": "channel", "kind": 1024, "kindString": "Property", @@ -34090,7 +34873,7 @@ } }, { - "id": 2520, + "id": 2578, "name": "customHeaders", "kind": 1024, "kindString": "Property", @@ -34116,7 +34899,7 @@ } }, { - "id": 2519, + "id": 2577, "name": "dangerouslySetSecretKeyInBrowser", "kind": 1024, "kindString": "Property", @@ -34133,7 +34916,7 @@ } }, { - "id": 2521, + "id": 2579, "name": "exposeErrorCause", "kind": 1024, "kindString": "Property", @@ -34149,7 +34932,7 @@ } }, { - "id": 2516, + "id": 2574, "name": "secretKey", "kind": 1024, "kindString": "Property", @@ -34169,27 +34952,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2514, - 2517, - 2515, - 2518, - 2520, - 2519, - 2521, - 2516 + 2572, + 2575, + 2573, + 2576, + 2578, + 2577, + 2579, + 2574 ] } ] }, { - "id": 1916, + "id": 1959, "name": "VouchersBulkUpdateMetadata", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1917, + "id": 1960, "name": "codes", "kind": 1024, "kindString": "Property", @@ -34203,7 +34986,7 @@ } }, { - "id": 1918, + "id": 1961, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -34229,21 +35012,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1917, - 1918 + 1960, + 1961 ] } ] }, { - "id": 1912, + "id": 1955, "name": "VouchersBulkUpdateObject", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1913, + "id": 1956, "name": "code", "kind": 1024, "kindString": "Property", @@ -34254,7 +35037,7 @@ } }, { - "id": 1914, + "id": 1957, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -34280,21 +35063,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1913, - 1914 + 1956, + 1957 ] } ] }, { - "id": 1835, + "id": 1878, "name": "VouchersCreateParameters", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1836, + "id": 1879, "name": "active", "kind": 1024, "kindString": "Property", @@ -34307,7 +35090,7 @@ } }, { - "id": 1837, + "id": 1880, "name": "code", "kind": 1024, "kindString": "Property", @@ -34320,7 +35103,7 @@ } }, { - "id": 1838, + "id": 1881, "name": "code_config", "kind": 1024, "kindString": "Property", @@ -34330,14 +35113,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1839, + "id": 1882, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1841, + "id": 1884, "name": "charset", "kind": 1024, "kindString": "Property", @@ -34350,7 +35133,7 @@ } }, { - "id": 1840, + "id": 1883, "name": "length", "kind": 1024, "kindString": "Property", @@ -34363,7 +35146,7 @@ } }, { - "id": 1842, + "id": 1885, "name": "pattern", "kind": 1024, "kindString": "Property", @@ -34376,7 +35159,7 @@ } }, { - "id": 1843, + "id": 1886, "name": "prefix", "kind": 1024, "kindString": "Property", @@ -34389,7 +35172,7 @@ } }, { - "id": 1844, + "id": 1887, "name": "suffix", "kind": 1024, "kindString": "Property", @@ -34407,11 +35190,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1841, - 1840, - 1842, - 1843, - 1844 + 1884, + 1883, + 1885, + 1886, + 1887 ] } ] @@ -34419,7 +35202,7 @@ } }, { - "id": 1845, + "id": 1888, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -34429,14 +35212,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1846, + "id": 1889, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1847, + "id": 1890, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -34452,7 +35235,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1847 + 1890 ] } ] @@ -34465,23 +35248,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1836, - 1837, - 1838, - 1845 + 1879, + 1880, + 1881, + 1888 ] } ] }, { - "id": 1863, + "id": 1906, "name": "VouchersDeleteParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1864, + "id": 1907, "name": "force", "kind": 1024, "kindString": "Property", @@ -34499,20 +35282,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1864 + 1907 ] } ] }, { - "id": 1892, + "id": 1935, "name": "VouchersImport", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1900, + "id": 1943, "name": "active", "kind": 1024, "kindString": "Property", @@ -34525,7 +35308,7 @@ } }, { - "id": 1897, + "id": 1940, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -34538,7 +35321,7 @@ } }, { - "id": 1894, + "id": 1937, "name": "category", "kind": 1024, "kindString": "Property", @@ -34551,7 +35334,7 @@ } }, { - "id": 1893, + "id": 1936, "name": "code", "kind": 1024, "kindString": "Property", @@ -34562,7 +35345,7 @@ } }, { - "id": 1905, + "id": 1948, "name": "code_config", "kind": 1024, "kindString": "Property", @@ -34572,14 +35355,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1906, + "id": 1949, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1908, + "id": 1951, "name": "charset", "kind": 1024, "kindString": "Property", @@ -34592,7 +35375,7 @@ } }, { - "id": 1907, + "id": 1950, "name": "length", "kind": 1024, "kindString": "Property", @@ -34605,7 +35388,7 @@ } }, { - "id": 1909, + "id": 1952, "name": "pattern", "kind": 1024, "kindString": "Property", @@ -34618,7 +35401,7 @@ } }, { - "id": 1910, + "id": 1953, "name": "prefix", "kind": 1024, "kindString": "Property", @@ -34631,7 +35414,7 @@ } }, { - "id": 1911, + "id": 1954, "name": "suffix", "kind": 1024, "kindString": "Property", @@ -34649,11 +35432,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1908, - 1907, - 1909, - 1910, - 1911 + 1951, + 1950, + 1952, + 1953, + 1954 ] } ] @@ -34661,7 +35444,7 @@ } }, { - "id": 1896, + "id": 1939, "name": "discount", "kind": 1024, "kindString": "Property", @@ -34671,29 +35454,29 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] } }, { - "id": 1899, + "id": 1942, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -34706,7 +35489,7 @@ } }, { - "id": 1901, + "id": 1944, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -34729,7 +35512,7 @@ } }, { - "id": 1902, + "id": 1945, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -34739,14 +35522,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1903, + "id": 1946, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1904, + "id": 1947, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -34762,7 +35545,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1904 + 1947 ] } ] @@ -34770,7 +35553,7 @@ } }, { - "id": 1898, + "id": 1941, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -34783,7 +35566,7 @@ } }, { - "id": 1895, + "id": 1938, "name": "type", "kind": 1024, "kindString": "Property", @@ -34810,30 +35593,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1900, - 1897, - 1894, - 1893, - 1905, - 1896, - 1899, - 1901, - 1902, - 1898, - 1895 + 1943, + 1940, + 1937, + 1936, + 1948, + 1939, + 1942, + 1944, + 1945, + 1941, + 1938 ] } ] }, { - "id": 1865, + "id": 1908, "name": "VouchersListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1869, + "id": 1912, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -34846,7 +35629,7 @@ } }, { - "id": 1868, + "id": 1911, "name": "category", "kind": 1024, "kindString": "Property", @@ -34859,7 +35642,7 @@ } }, { - "id": 1871, + "id": 1914, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -34869,14 +35652,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1872, + "id": 1915, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1873, + "id": 1916, "name": "after", "kind": 1024, "kindString": "Property", @@ -34889,7 +35672,7 @@ } }, { - "id": 1874, + "id": 1917, "name": "before", "kind": 1024, "kindString": "Property", @@ -34907,8 +35690,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1873, - 1874 + 1916, + 1917 ] } ] @@ -34916,7 +35699,7 @@ } }, { - "id": 1870, + "id": 1913, "name": "customer", "kind": 1024, "kindString": "Property", @@ -34929,7 +35712,7 @@ } }, { - "id": 1880, + "id": 1923, "name": "filters", "kind": 1024, "kindString": "Property", @@ -34939,14 +35722,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1881, + "id": 1924, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1882, + "id": 1925, "name": "junction", "kind": 1024, "kindString": "Property", @@ -34964,19 +35747,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1882 + 1925 ] } ], "indexSignature": { - "id": 1883, + "id": 1926, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1884, + "id": 1927, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -34995,7 +35778,7 @@ } }, { - "id": 1866, + "id": 1909, "name": "limit", "kind": 1024, "kindString": "Property", @@ -35008,7 +35791,7 @@ } }, { - "id": 1879, + "id": 1922, "name": "order", "kind": 1024, "kindString": "Property", @@ -35070,7 +35853,7 @@ } }, { - "id": 1867, + "id": 1910, "name": "page", "kind": 1024, "kindString": "Property", @@ -35083,7 +35866,7 @@ } }, { - "id": 1875, + "id": 1918, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -35093,14 +35876,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1876, + "id": 1919, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1877, + "id": 1920, "name": "after", "kind": 1024, "kindString": "Property", @@ -35113,7 +35896,7 @@ } }, { - "id": 1878, + "id": 1921, "name": "before", "kind": 1024, "kindString": "Property", @@ -35131,8 +35914,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1877, - 1878 + 1920, + 1921 ] } ] @@ -35145,28 +35928,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1869, - 1868, - 1871, - 1870, - 1880, - 1866, - 1879, - 1867, - 1875 + 1912, + 1911, + 1914, + 1913, + 1923, + 1909, + 1922, + 1910, + 1918 ] } ] }, { - "id": 1885, + "id": 1928, "name": "VouchersListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1888, + "id": 1931, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -35177,7 +35960,7 @@ } }, { - "id": 1886, + "id": 1929, "name": "object", "kind": 1024, "kindString": "Property", @@ -35188,7 +35971,7 @@ } }, { - "id": 1887, + "id": 1930, "name": "total", "kind": 1024, "kindString": "Property", @@ -35199,7 +35982,7 @@ } }, { - "id": 1889, + "id": 1932, "name": "vouchers", "kind": 1024, "kindString": "Property", @@ -35208,7 +35991,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } } @@ -35219,23 +36002,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1888, - 1886, - 1887, - 1889 + 1931, + 1929, + 1930, + 1932 ] } ] }, { - "id": 1816, + "id": 1859, "name": "VouchersQualificationExamineBody", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1817, + "id": 1860, "name": "customer", "kind": 1024, "kindString": "Property", @@ -35284,14 +36067,14 @@ { "type": "reflection", "declaration": { - "id": 1818, + "id": 1861, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1819, + "id": 1862, "name": "description", "kind": 1024, "kindString": "Property", @@ -35307,7 +36090,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1819 + 1862 ] } ] @@ -35317,7 +36100,7 @@ } }, { - "id": 1825, + "id": 1868, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -35340,7 +36123,7 @@ } }, { - "id": 1820, + "id": 1863, "name": "order", "kind": 1024, "kindString": "Property", @@ -35352,7 +36135,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" }, { @@ -35385,7 +36168,7 @@ } }, { - "id": 1821, + "id": 1864, "name": "reward", "kind": 1024, "kindString": "Property", @@ -35395,14 +36178,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1822, + "id": 1865, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1824, + "id": 1867, "name": "assignment_id", "kind": 1024, "kindString": "Property", @@ -35415,7 +36198,7 @@ } }, { - "id": 1823, + "id": 1866, "name": "id", "kind": 1024, "kindString": "Property", @@ -35431,8 +36214,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1824, - 1823 + 1867, + 1866 ] } ] @@ -35445,23 +36228,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1817, - 1825, - 1820, - 1821 + 1860, + 1868, + 1863, + 1864 ] } ] }, { - "id": 1826, + "id": 1869, "name": "VouchersQualificationExamineParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1827, + "id": 1870, "name": "audienceRulesOnly", "kind": 1024, "kindString": "Property", @@ -35474,7 +36257,7 @@ } }, { - "id": 1829, + "id": 1872, "name": "limit", "kind": 1024, "kindString": "Property", @@ -35487,7 +36270,7 @@ } }, { - "id": 1828, + "id": 1871, "name": "order", "kind": 1024, "kindString": "Property", @@ -35522,22 +36305,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1827, - 1829, - 1828 + 1870, + 1872, + 1871 ] } ] }, { - "id": 1830, + "id": 1873, "name": "VouchersQualificationExamineResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1834, + "id": 1877, "name": "data", "kind": 1024, "kindString": "Property", @@ -35548,13 +36331,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } } }, { - "id": 1833, + "id": 1876, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -35565,7 +36348,7 @@ } }, { - "id": 1831, + "id": 1874, "name": "object", "kind": 1024, "kindString": "Property", @@ -35576,7 +36359,7 @@ } }, { - "id": 1832, + "id": 1875, "name": "total", "kind": 1024, "kindString": "Property", @@ -35592,23 +36375,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1834, - 1833, - 1831, - 1832 + 1877, + 1876, + 1874, + 1875 ] } ] }, { - "id": 1746, + "id": 1789, "name": "VouchersResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1784, + "id": 1827, "name": "active", "kind": 1024, "kindString": "Property", @@ -35619,7 +36402,7 @@ } }, { - "id": 1785, + "id": 1828, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -35632,7 +36415,7 @@ } }, { - "id": 1787, + "id": 1830, "name": "assets", "kind": 1024, "kindString": "Property", @@ -35642,14 +36425,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1788, + "id": 1831, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1793, + "id": 1836, "name": "barcode", "kind": 1024, "kindString": "Property", @@ -35659,14 +36442,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1794, + "id": 1837, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1795, + "id": 1838, "name": "id", "kind": 1024, "kindString": "Property", @@ -35677,7 +36460,7 @@ } }, { - "id": 1796, + "id": 1839, "name": "url", "kind": 1024, "kindString": "Property", @@ -35693,8 +36476,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1795, - 1796 + 1838, + 1839 ] } ] @@ -35702,7 +36485,7 @@ } }, { - "id": 1789, + "id": 1832, "name": "qr", "kind": 1024, "kindString": "Property", @@ -35712,14 +36495,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1790, + "id": 1833, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1791, + "id": 1834, "name": "id", "kind": 1024, "kindString": "Property", @@ -35730,7 +36513,7 @@ } }, { - "id": 1792, + "id": 1835, "name": "url", "kind": 1024, "kindString": "Property", @@ -35746,8 +36529,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1791, - 1792 + 1834, + 1835 ] } ] @@ -35760,8 +36543,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1793, - 1789 + 1836, + 1832 ] } ] @@ -35769,7 +36552,7 @@ } }, { - "id": 1749, + "id": 1792, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -35782,7 +36565,7 @@ } }, { - "id": 1750, + "id": 1793, "name": "category", "kind": 1024, "kindString": "Property", @@ -35795,7 +36578,7 @@ } }, { - "id": 1748, + "id": 1791, "name": "code", "kind": 1024, "kindString": "Property", @@ -35806,7 +36589,7 @@ } }, { - "id": 1801, + "id": 1844, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -35817,7 +36600,7 @@ } }, { - "id": 1752, + "id": 1795, "name": "discount", "kind": 1024, "kindString": "Property", @@ -35829,29 +36612,29 @@ "types": [ { "type": "reference", - "id": 2467, + "id": 2525, "name": "DiscountUnit" }, { "type": "reference", - "id": 2475, + "id": 2533, "name": "DiscountAmount" }, { "type": "reference", - "id": 2480, + "id": 2538, "name": "DiscountPercent" }, { "type": "reference", - "id": 2486, + "id": 2544, "name": "DiscountFixed" } ] } }, { - "id": 1761, + "id": 1804, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -35864,7 +36647,7 @@ } }, { - "id": 1753, + "id": 1796, "name": "gift", "kind": 1024, "kindString": "Property", @@ -35874,14 +36657,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1754, + "id": 1797, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1755, + "id": 1798, "name": "amount", "kind": 1024, "kindString": "Property", @@ -35892,7 +36675,7 @@ } }, { - "id": 1756, + "id": 1799, "name": "balance", "kind": 1024, "kindString": "Property", @@ -35908,8 +36691,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1755, - 1756 + 1798, + 1799 ] } ] @@ -35917,7 +36700,7 @@ } }, { - "id": 1799, + "id": 1842, "name": "holder_id", "kind": 1024, "kindString": "Property", @@ -35930,7 +36713,7 @@ } }, { - "id": 1747, + "id": 1790, "name": "id", "kind": 1024, "kindString": "Property", @@ -35941,7 +36724,7 @@ } }, { - "id": 1797, + "id": 1840, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -35952,7 +36735,7 @@ } }, { - "id": 1757, + "id": 1800, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -35962,14 +36745,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1758, + "id": 1801, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1759, + "id": 1802, "name": "points", "kind": 1024, "kindString": "Property", @@ -35985,7 +36768,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1759 + 1802 ] } ] @@ -35993,7 +36776,7 @@ } }, { - "id": 1786, + "id": 1829, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -36016,7 +36799,7 @@ } }, { - "id": 1802, + "id": 1845, "name": "object", "kind": 1024, "kindString": "Property", @@ -36027,7 +36810,7 @@ } }, { - "id": 1767, + "id": 1810, "name": "publish", "kind": 1024, "kindString": "Property", @@ -36037,14 +36820,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1768, + "id": 1811, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1770, + "id": 1813, "name": "count", "kind": 1024, "kindString": "Property", @@ -36055,7 +36838,7 @@ } }, { - "id": 1771, + "id": 1814, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -36066,7 +36849,7 @@ } }, { - "id": 1772, + "id": 1815, "name": "entries", "kind": 1024, "kindString": "Property", @@ -36080,7 +36863,7 @@ } }, { - "id": 1769, + "id": 1812, "name": "object", "kind": 1024, "kindString": "Property", @@ -36091,7 +36874,7 @@ } }, { - "id": 1773, + "id": 1816, "name": "total", "kind": 1024, "kindString": "Property", @@ -36102,7 +36885,7 @@ } }, { - "id": 1774, + "id": 1817, "name": "url", "kind": 1024, "kindString": "Property", @@ -36118,12 +36901,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1770, - 1771, - 1772, - 1769, - 1773, - 1774 + 1813, + 1814, + 1815, + 1812, + 1816, + 1817 ] } ] @@ -36131,7 +36914,7 @@ } }, { - "id": 1775, + "id": 1818, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -36141,14 +36924,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1776, + "id": 1819, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1780, + "id": 1823, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -36159,7 +36942,7 @@ } }, { - "id": 1777, + "id": 1820, "name": "object", "kind": 1024, "kindString": "Property", @@ -36170,7 +36953,7 @@ } }, { - "id": 1778, + "id": 1821, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -36183,7 +36966,7 @@ } }, { - "id": 1779, + "id": 1822, "name": "redeemed_quantity", "kind": 1024, "kindString": "Property", @@ -36194,7 +36977,7 @@ } }, { - "id": 1781, + "id": 1824, "name": "redemption_entries", "kind": 1024, "kindString": "Property", @@ -36208,7 +36991,7 @@ } }, { - "id": 1782, + "id": 1825, "name": "total", "kind": 1024, "kindString": "Property", @@ -36219,7 +37002,7 @@ } }, { - "id": 1783, + "id": 1826, "name": "url", "kind": 1024, "kindString": "Property", @@ -36235,13 +37018,13 @@ "title": "Properties", "kind": 1024, "children": [ - 1780, - 1777, - 1778, - 1779, - 1781, - 1782, - 1783 + 1823, + 1820, + 1821, + 1822, + 1824, + 1825, + 1826 ] } ] @@ -36249,7 +37032,7 @@ } }, { - "id": 1798, + "id": 1841, "name": "referrer_id", "kind": 1024, "kindString": "Property", @@ -36262,7 +37045,7 @@ } }, { - "id": 1760, + "id": 1803, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -36275,7 +37058,7 @@ } }, { - "id": 1751, + "id": 1794, "name": "type", "kind": 1024, "kindString": "Property", @@ -36297,7 +37080,7 @@ } }, { - "id": 1800, + "id": 1843, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -36310,7 +37093,7 @@ } }, { - "id": 1803, + "id": 1846, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -36318,14 +37101,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1804, + "id": 1847, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1808, + "id": 1851, "name": "data", "kind": 1024, "kindString": "Property", @@ -36337,14 +37120,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1809, + "id": 1852, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1814, + "id": 1857, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -36355,7 +37138,7 @@ } }, { - "id": 1810, + "id": 1853, "name": "id", "kind": 1024, "kindString": "Property", @@ -36366,7 +37149,7 @@ } }, { - "id": 1815, + "id": 1858, "name": "object", "kind": 1024, "kindString": "Property", @@ -36377,7 +37160,7 @@ } }, { - "id": 1812, + "id": 1855, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -36390,7 +37173,7 @@ } }, { - "id": 1813, + "id": 1856, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -36403,7 +37186,7 @@ } }, { - "id": 1811, + "id": 1854, "name": "rule_id", "kind": 1024, "kindString": "Property", @@ -36421,12 +37204,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1814, - 1810, - 1815, - 1812, - 1813, - 1811 + 1857, + 1853, + 1858, + 1855, + 1856, + 1854 ] } ] @@ -36435,7 +37218,7 @@ } }, { - "id": 1807, + "id": 1850, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -36446,7 +37229,7 @@ } }, { - "id": 1805, + "id": 1848, "name": "object", "kind": 1024, "kindString": "Property", @@ -36457,7 +37240,7 @@ } }, { - "id": 1806, + "id": 1849, "name": "total", "kind": 1024, "kindString": "Property", @@ -36473,10 +37256,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1808, - 1807, - 1805, - 1806 + 1851, + 1850, + 1848, + 1849 ] } ] @@ -36484,7 +37267,7 @@ } }, { - "id": 1766, + "id": 1809, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -36500,7 +37283,7 @@ } }, { - "id": 1762, + "id": 1805, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -36510,14 +37293,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1763, + "id": 1806, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1765, + "id": 1808, "name": "duration", "kind": 1024, "kindString": "Property", @@ -36528,7 +37311,7 @@ } }, { - "id": 1764, + "id": 1807, "name": "interval", "kind": 1024, "kindString": "Property", @@ -36544,8 +37327,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1765, - 1764 + 1808, + 1807 ] } ] @@ -36558,44 +37341,44 @@ "title": "Properties", "kind": 1024, "children": [ - 1784, - 1785, - 1787, - 1749, - 1750, - 1748, - 1801, - 1752, - 1761, - 1753, - 1799, - 1747, - 1797, - 1757, - 1786, - 1802, - 1767, - 1775, - 1798, - 1760, - 1751, + 1827, + 1828, + 1830, + 1792, + 1793, + 1791, + 1844, + 1795, + 1804, + 1796, + 1842, + 1790, + 1840, 1800, + 1829, + 1845, + 1810, + 1818, + 1841, 1803, - 1766, - 1762 + 1794, + 1843, + 1846, + 1809, + 1805 ] } ] }, { - "id": 1851, + "id": 1894, "name": "VouchersUpdate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1856, + "id": 1899, "name": "active", "kind": 1024, "kindString": "Property", @@ -36608,7 +37391,7 @@ } }, { - "id": 1857, + "id": 1900, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -36621,7 +37404,7 @@ } }, { - "id": 1853, + "id": 1896, "name": "category", "kind": 1024, "kindString": "Property", @@ -36634,7 +37417,7 @@ } }, { - "id": 1852, + "id": 1895, "name": "code", "kind": 1024, "kindString": "Property", @@ -36645,7 +37428,7 @@ } }, { - "id": 1855, + "id": 1898, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -36658,7 +37441,7 @@ } }, { - "id": 1859, + "id": 1902, "name": "gift", "kind": 1024, "kindString": "Property", @@ -36668,14 +37451,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1860, + "id": 1903, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1861, + "id": 1904, "name": "amount", "kind": 1024, "kindString": "Property", @@ -36691,7 +37474,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1861 + 1904 ] } ] @@ -36699,7 +37482,7 @@ } }, { - "id": 1858, + "id": 1901, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -36722,7 +37505,7 @@ } }, { - "id": 1854, + "id": 1897, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -36740,20 +37523,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1856, - 1857, - 1853, - 1852, - 1855, - 1859, - 1858, - 1854 + 1899, + 1900, + 1896, + 1895, + 1898, + 1902, + 1901, + 1897 ] } ] }, { - "id": 2443, + "id": 2486, "name": "ApplicableToEffect", "kind": 4194304, "kindString": "Type alias", @@ -36777,7 +37560,7 @@ } }, { - "id": 1127, + "id": 1170, "name": "CampaignsAddCertainVoucherParams", "kind": 4194304, "kindString": "Type alias", @@ -36790,7 +37573,7 @@ "typeArguments": [ { "type": "reference", - "id": 1892, + "id": 1935, "name": "VouchersImport" } ], @@ -36822,19 +37605,19 @@ } }, { - "id": 1129, + "id": 1172, "name": "CampaignsAddCertainVoucherResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1128, + "id": 1171, "name": "CampaignsAddVoucherResponse" } }, { - "id": 1124, + "id": 1167, "name": "CampaignsAddVoucherBody", "kind": 4194304, "kindString": "Type alias", @@ -36847,7 +37630,7 @@ "typeArguments": [ { "type": "reference", - "id": 1892, + "id": 1935, "name": "VouchersImport" } ], @@ -36883,7 +37666,7 @@ } }, { - "id": 1128, + "id": 1171, "name": "CampaignsAddVoucherResponse", "kind": 4194304, "kindString": "Type alias", @@ -36893,7 +37676,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" }, { @@ -36970,7 +37753,7 @@ } }, { - "id": 1118, + "id": 1161, "name": "CampaignsCreateCampaign", "kind": 4194304, "kindString": "Type alias", @@ -36983,7 +37766,7 @@ "typeArguments": [ { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" }, { @@ -37025,14 +37808,14 @@ { "type": "reflection", "declaration": { - "id": 1119, + "id": 1162, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1120, + "id": 1163, "name": "active", "kind": 1024, "kindString": "Property", @@ -37050,7 +37833,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1120 + 1163 ] } ] @@ -37060,31 +37843,31 @@ } }, { - "id": 1148, + "id": 1191, "name": "CampaignsCreateCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" } }, { - "id": 1150, + "id": 1193, "name": "CampaignsGetCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" } }, { - "id": 1130, + "id": 1173, "name": "CampaignsImportVouchers", "kind": 4194304, "kindString": "Type alias", @@ -37094,7 +37877,7 @@ "typeArguments": [ { "type": "reference", - "id": 1892, + "id": 1935, "name": "VouchersImport" }, { @@ -37127,7 +37910,7 @@ } }, { - "id": 1121, + "id": 1164, "name": "CampaignsUpdateCampaign", "kind": 4194304, "kindString": "Type alias", @@ -37137,7 +37920,7 @@ "typeArguments": [ { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" }, { @@ -37170,19 +37953,19 @@ } }, { - "id": 1149, + "id": 1192, "name": "CampaignsUpdateCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1071, + "id": 1114, "name": "CampaignResponse" } }, { - "id": 1145, + "id": 1188, "name": "CampaignsVouchersImportResponse", "kind": 4194304, "kindString": "Type alias", @@ -37190,14 +37973,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1146, + "id": 1189, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1147, + "id": 1190, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -37213,7 +37996,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1147 + 1190 ] } ] @@ -37221,79 +38004,79 @@ } }, { - "id": 812, + "id": 813, "name": "ClientSideConsentsListResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2350, + "id": 2393, "name": "ConsentsListResponse" } }, { - "id": 710, + "id": 711, "name": "ClientSideCustomersCreateParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 686, + "id": 687, "name": "CustomersCreateBody" } }, { - "id": 711, + "id": 712, "name": "ClientSideCustomersCreateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 687, + "id": 688, "name": "CustomersCreateResponse" } }, { - "id": 709, + "id": 710, "name": "ClientSideCustomersUpdateConsentsBody", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 696, + "id": 697, "name": "CustomersUpdateConsentsBody" } }, { - "id": 727, + "id": 728, "name": "ClientSideListVouchersParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1865, + "id": 1908, "name": "VouchersListParams" } }, { - "id": 781, + "id": 782, "name": "ClientSidePublishPreparedPayload", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 775, + "id": 776, "name": "ClientSidePublishPayload" } }, { - "id": 788, + "id": 789, "name": "ClientSidePublishResponse", "kind": 4194304, "kindString": "Type alias", @@ -37303,20 +38086,20 @@ "types": [ { "type": "reference", - "id": 2190, + "id": 2233, "name": "DistributionsPublicationsCreateResponse" }, { "type": "reflection", "declaration": { - "id": 789, + "id": 790, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 790, + "id": 791, "name": "vouchers_id", "kind": 1024, "kindString": "Property", @@ -37337,7 +38120,7 @@ "title": "Properties", "kind": 1024, "children": [ - 790 + 791 ] } ] @@ -37347,7 +38130,7 @@ } }, { - "id": 804, + "id": 805, "name": "ClientSideRedeemOrder", "kind": 4194304, "kindString": "Type alias", @@ -37363,7 +38146,7 @@ "typeArguments": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" }, { @@ -37396,14 +38179,14 @@ { "type": "reflection", "declaration": { - "id": 805, + "id": 806, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 806, + "id": 807, "name": "items", "kind": 1024, "kindString": "Property", @@ -37424,7 +38207,7 @@ "title": "Properties", "kind": 1024, "children": [ - 806 + 807 ] } ] @@ -37434,31 +38217,31 @@ } }, { - "id": 815, + "id": 816, "name": "ClientSideRedemptionsRedeemStackableParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 948, + "id": 949, "name": "RedemptionsRedeemStackableParams" } }, { - "id": 816, + "id": 817, "name": "ClientSideRedemptionsRedeemStackableResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 969, + "id": 970, "name": "RedemptionsRedeemStackableResponse" } }, { - "id": 811, + "id": 812, "name": "ClientSideTrackCustomer", "kind": 4194304, "kindString": "Type alias", @@ -37470,31 +38253,31 @@ } }, { - "id": 814, + "id": 815, "name": "ClientSideValidationValidateStackableResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1063, + "id": 1106, "name": "ValidationValidateStackableResponse" } }, { - "id": 813, + "id": 814, "name": "ClientSideValidationsValidateStackableParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1056, + "id": 1099, "name": "ValidationsValidateStackableParams" } }, { - "id": 728, + "id": 729, "name": "ClientSideVoucherListing", "kind": 4194304, "kindString": "Type alias", @@ -37504,7 +38287,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" }, { @@ -37621,7 +38404,7 @@ } }, { - "id": 686, + "id": 687, "name": "CustomersCreateBody", "kind": 4194304, "kindString": "Type alias", @@ -37633,7 +38416,7 @@ } }, { - "id": 687, + "id": 688, "name": "CustomersCreateResponse", "kind": 4194304, "kindString": "Type alias", @@ -37655,7 +38438,7 @@ } }, { - "id": 688, + "id": 689, "name": "CustomersGetResponse", "kind": 4194304, "kindString": "Type alias", @@ -37677,55 +38460,55 @@ } }, { - "id": 689, + "id": 690, "name": "CustomersListParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 660, + "id": 661, "name": "CustomersCommonListRequest" } }, { - "id": 690, + "id": 691, "name": "CustomersListResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 668, + "id": 669, "name": "CustomersCommonListResponse" } }, { - "id": 691, + "id": 692, "name": "CustomersScrollParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 660, + "id": 661, "name": "CustomersCommonListRequest" } }, { - "id": 692, + "id": 693, "name": "CustomersScrollResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 668, + "id": 669, "name": "CustomersCommonListResponse" } }, { - "id": 693, + "id": 694, "name": "CustomersScrollYield", "kind": 4194304, "kindString": "Type alias", @@ -37737,7 +38520,7 @@ } }, { - "id": 696, + "id": 697, "name": "CustomersUpdateConsentsBody", "kind": 4194304, "kindString": "Type alias", @@ -37758,7 +38541,7 @@ } }, { - "id": 694, + "id": 695, "name": "CustomersUpdateParams", "kind": 4194304, "kindString": "Type alias", @@ -37779,7 +38562,7 @@ } }, { - "id": 695, + "id": 696, "name": "CustomersUpdateResponse", "kind": 4194304, "kindString": "Type alias", @@ -37801,7 +38584,7 @@ } }, { - "id": 2464, + "id": 2511, "name": "DiscountAmountVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -37829,7 +38612,7 @@ } }, { - "id": 2466, + "id": 2513, "name": "DiscountFixedVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -37849,7 +38632,7 @@ } }, { - "id": 2465, + "id": 2512, "name": "DiscountPercentVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -37869,7 +38652,7 @@ } }, { - "id": 2463, + "id": 2510, "name": "DiscountUnitVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -37893,7 +38676,7 @@ } }, { - "id": 2462, + "id": 2509, "name": "DiscountVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -37933,7 +38716,7 @@ } }, { - "id": 2456, + "id": 2503, "name": "DiscountVouchersTypes", "kind": 4194304, "kindString": "Type alias", @@ -37961,127 +38744,246 @@ } }, { - "id": 2262, + "id": 2305, "name": "ExportsGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2244, + "id": 2287, "name": "ExportsCreateResponse" } }, { - "id": 1524, + "id": 1567, "name": "LoyaltiesCreateEarningRuleResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1489, + "id": 1532, "name": "LoyaltiesEarningRulesResponse" } }, { - "id": 1597, + "id": 1640, "name": "LoyaltiesCreateMemberResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1546, + "id": 1589, "name": "LoyaltiesVoucherResponse" } }, { - "id": 1428, + "id": 1471, "name": "LoyaltiesGetCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1395, + "id": 1438, "name": "LoyaltiesCreateCampaignResponse" } }, { - "id": 1598, + "id": 1641, "name": "LoyaltiesGetMemberResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1597, + "id": 1640, "name": "LoyaltiesCreateMemberResponse" } }, { - "id": 1436, + "id": 1479, "name": "LoyaltiesUpdateCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1395, + "id": 1438, "name": "LoyaltiesCreateCampaignResponse" } }, { - "id": 1534, + "id": 1577, "name": "LoyaltiesUpdateEarningRuleResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1489, + "id": 1532, "name": "LoyaltiesEarningRulesResponse" } }, { - "id": 1474, + "id": 1517, "name": "LoyaltiesUpdateRewardAssignmentResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1454, + "id": 1497, "name": "LoyaltiesCreateRewardAssignmentResponse" } }, { - "id": 2321, + "id": 1092, + "name": "OrderObjectRedemptions", + "kind": 4194304, + "kindString": "Type alias", + "flags": {}, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 1093, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1094, + "name": "date", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1096, + "name": "related_object_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1097, + "name": "related_object_parent_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1095, + "name": "related_object_type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "voucher" + }, + { + "type": "literal", + "value": "promotion_tier" + } + ] + } + }, + { + "id": 1098, + "name": "stacked", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1094, + 1096, + 1097, + 1095, + 1098 + ] + } + ] + } + } + ], + "name": "Record" + } + }, + { + "id": 2364, "name": "OrdersGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" } }, { - "id": 2333, + "id": 2376, "name": "OrdersUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2321, + "id": 2364, "name": "OrdersGetResponse" } }, { - "id": 2094, + "id": 2137, "name": "ProductsBulkUpdate", "kind": 4194304, "kindString": "Type alias", @@ -38090,13 +38992,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2057, + "id": 2100, "name": "ProductsCreate" } } }, { - "id": 2098, + "id": 2141, "name": "ProductsBulkUpdateMetadataResponse", "kind": 4194304, "kindString": "Type alias", @@ -38104,14 +39006,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2099, + "id": 2142, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2100, + "id": 2143, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -38127,7 +39029,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2100 + 2143 ] } ] @@ -38135,7 +39037,7 @@ } }, { - "id": 2095, + "id": 2138, "name": "ProductsBulkUpdateResponse", "kind": 4194304, "kindString": "Type alias", @@ -38143,14 +39045,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2096, + "id": 2139, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2097, + "id": 2140, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -38166,7 +39068,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2097 + 2140 ] } ] @@ -38174,7 +39076,7 @@ } }, { - "id": 2080, + "id": 2123, "name": "ProductsGetResponse", "kind": 4194304, "kindString": "Type alias", @@ -38184,31 +39086,31 @@ "types": [ { "type": "reference", - "id": 2070, + "id": 2113, "name": "ProductsCreateResponse" }, { "type": "reference", - "id": 2064, + "id": 2107, "name": "ProductsGetResponseSkus" } ] } }, { - "id": 2130, + "id": 2173, "name": "ProductsGetSkuResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2119, + "id": 2162, "name": "ProductsCreateSkuResponse" } }, { - "id": 2081, + "id": 2124, "name": "ProductsUpdate", "kind": 4194304, "kindString": "Type alias", @@ -38216,14 +39118,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2082, + "id": 2125, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2086, + "id": 2129, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -38239,7 +39141,7 @@ } }, { - "id": 2084, + "id": 2127, "name": "id", "kind": 1024, "kindString": "Property", @@ -38252,7 +39154,7 @@ } }, { - "id": 2088, + "id": 2131, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -38265,7 +39167,7 @@ } }, { - "id": 2089, + "id": 2132, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -38288,7 +39190,7 @@ } }, { - "id": 2083, + "id": 2126, "name": "name", "kind": 1024, "kindString": "Property", @@ -38301,7 +39203,7 @@ } }, { - "id": 2087, + "id": 2130, "name": "price", "kind": 1024, "kindString": "Property", @@ -38314,7 +39216,7 @@ } }, { - "id": 2085, + "id": 2128, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -38332,13 +39234,13 @@ "title": "Properties", "kind": 1024, "children": [ - 2086, - 2084, - 2088, - 2089, - 2083, - 2087, - 2085 + 2129, + 2127, + 2131, + 2132, + 2126, + 2130, + 2128 ] } ] @@ -38346,19 +39248,19 @@ } }, { - "id": 2090, + "id": 2133, "name": "ProductsUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2070, + "id": 2113, "name": "ProductsCreateResponse" } }, { - "id": 2131, + "id": 2174, "name": "ProductsUpdateSku", "kind": 4194304, "kindString": "Type alias", @@ -38368,20 +39270,20 @@ "types": [ { "type": "reference", - "id": 2111, + "id": 2154, "name": "ProductsCreateSku" }, { "type": "reflection", "declaration": { - "id": 2132, + "id": 2175, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2133, + "id": 2176, "name": "id", "kind": 1024, "kindString": "Property", @@ -38394,7 +39296,7 @@ } }, { - "id": 2134, + "id": 2177, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -38412,8 +39314,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2133, - 2134 + 2176, + 2177 ] } ] @@ -38423,31 +39325,31 @@ } }, { - "id": 2135, + "id": 2178, "name": "ProductsUpdateSkuResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2130, + "id": 2173, "name": "ProductsGetSkuResponse" } }, { - "id": 1190, + "id": 1233, "name": "PromotionTierGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" } }, { - "id": 1250, + "id": 1293, "name": "PromotionTierRedeemDetails", "kind": 4194304, "kindString": "Type alias", @@ -38457,20 +39359,20 @@ "types": [ { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" }, { "type": "reflection", "declaration": { - "id": 1251, + "id": 1294, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1252, + "id": 1295, "name": "summary", "kind": 1024, "kindString": "Property", @@ -38478,14 +39380,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1253, + "id": 1296, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1257, + "id": 1300, "name": "orders", "kind": 1024, "kindString": "Property", @@ -38493,14 +39395,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1258, + "id": 1301, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1259, + "id": 1302, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -38511,7 +39413,7 @@ } }, { - "id": 1260, + "id": 1303, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -38527,8 +39429,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1259, - 1260 + 1302, + 1303 ] } ] @@ -38536,7 +39438,7 @@ } }, { - "id": 1254, + "id": 1297, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -38544,14 +39446,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1255, + "id": 1298, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1256, + "id": 1299, "name": "total_redeemed", "kind": 1024, "kindString": "Property", @@ -38567,7 +39469,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1256 + 1299 ] } ] @@ -38580,8 +39482,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1257, - 1254 + 1300, + 1297 ] } ] @@ -38594,7 +39496,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1252 + 1295 ] } ] @@ -38604,31 +39506,31 @@ } }, { - "id": 1198, + "id": 1241, "name": "PromotionTiersCreateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" } }, { - "id": 1189, + "id": 1232, "name": "PromotionTiersListResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1184, + "id": 1227, "name": "PromotionTiersListAllResponse" } }, { - "id": 1261, + "id": 1304, "name": "PromotionTiersUpdateParams", "kind": 4194304, "kindString": "Type alias", @@ -38638,20 +39540,20 @@ "types": [ { "type": "reference", - "id": 1191, + "id": 1234, "name": "PromotionTiersCreateParams" }, { "type": "reflection", "declaration": { - "id": 1262, + "id": 1305, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1263, + "id": 1306, "name": "id", "kind": 1024, "kindString": "Property", @@ -38667,7 +39569,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1263 + 1306 ] } ] @@ -38677,19 +39579,19 @@ } }, { - "id": 1264, + "id": 1307, "name": "PromotionTiersUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1161, + "id": 1204, "name": "PromotionTier" } }, { - "id": 958, + "id": 959, "name": "RedemptionsRedeemStackableOrderResponse", "kind": 4194304, "kindString": "Type alias", @@ -38699,20 +39601,20 @@ "types": [ { "type": "reference", - "id": 2302, + "id": 2345, "name": "OrdersCreateResponse" }, { "type": "reflection", "declaration": { - "id": 959, + "id": 960, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 960, + "id": 961, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -38729,14 +39631,14 @@ { "type": "reflection", "declaration": { - "id": 961, + "id": 962, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 962, + "id": 963, "name": "date", "kind": 1024, "kindString": "Property", @@ -38747,7 +39649,7 @@ } }, { - "id": 966, + "id": 967, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -38758,7 +39660,7 @@ } }, { - "id": 965, + "id": 966, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -38769,7 +39671,7 @@ } }, { - "id": 964, + "id": 965, "name": "rollback_date", "kind": 1024, "kindString": "Property", @@ -38782,7 +39684,7 @@ } }, { - "id": 963, + "id": 964, "name": "rollback_id", "kind": 1024, "kindString": "Property", @@ -38795,7 +39697,7 @@ } }, { - "id": 968, + "id": 969, "name": "rollback_stacked", "kind": 1024, "kindString": "Property", @@ -38811,7 +39713,7 @@ } }, { - "id": 967, + "id": 968, "name": "stacked", "kind": 1024, "kindString": "Property", @@ -38830,13 +39732,13 @@ "title": "Properties", "kind": 1024, "children": [ - 962, + 963, + 967, 966, 965, 964, - 963, - 968, - 967 + 969, + 968 ] } ] @@ -38852,7 +39754,7 @@ "title": "Properties", "kind": 1024, "children": [ - 960 + 961 ] } ] @@ -38862,7 +39764,7 @@ } }, { - "id": 955, + "id": 956, "name": "RedemptionsRedeemStackableRedemptionResult", "kind": 4194304, "kindString": "Type alias", @@ -38872,20 +39774,20 @@ "types": [ { "type": "reference", - "id": 828, + "id": 829, "name": "RedemptionsRedeemResponse" }, { "type": "reflection", "declaration": { - "id": 956, + "id": 957, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 957, + "id": 958, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -38901,7 +39803,7 @@ "title": "Properties", "kind": 1024, "children": [ - 957 + 958 ] } ] @@ -38911,7 +39813,7 @@ } }, { - "id": 2014, + "id": 2057, "name": "RewardsCreate", "kind": 4194304, "kindString": "Type alias", @@ -38925,26 +39827,26 @@ }, { "type": "reference", - "id": 2012, + "id": 2055, "name": "RewardsType" } ] } }, { - "id": 2048, + "id": 2091, "name": "RewardsCreateAssignmentResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2063, "name": "RewardsAssignmentObject" } }, { - "id": 2006, + "id": 2049, "name": "RewardsCreateResponse", "kind": 4194304, "kindString": "Type alias", @@ -38954,31 +39856,31 @@ "types": [ { "type": "reference", - "id": 1994, + "id": 2037, "name": "RewardsResponse" }, { "type": "reference", - "id": 2013, + "id": 2056, "name": "RewardsTypeResponse" } ] } }, { - "id": 2015, + "id": 2058, "name": "RewardsGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2006, + "id": 2049, "name": "RewardsCreateResponse" } }, { - "id": 2012, + "id": 2055, "name": "RewardsType", "kind": 4194304, "kindString": "Type alias", @@ -39002,7 +39904,7 @@ } }, { - "id": 2013, + "id": 2056, "name": "RewardsTypeResponse", "kind": 4194304, "kindString": "Type alias", @@ -39044,7 +39946,7 @@ } }, { - "id": 2016, + "id": 2059, "name": "RewardsUpdate", "kind": 4194304, "kindString": "Type alias", @@ -39057,7 +39959,7 @@ "typeArguments": [ { "type": "reference", - "id": 2014, + "id": 2057, "name": "RewardsCreate" }, { @@ -39070,14 +39972,14 @@ { "type": "reflection", "declaration": { - "id": 2017, + "id": 2060, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2018, + "id": 2061, "name": "id", "kind": 1024, "kindString": "Property", @@ -39093,7 +39995,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2018 + 2061 ] } ] @@ -39103,7 +40005,7 @@ } }, { - "id": 2049, + "id": 2092, "name": "RewardsUpdateAssignment", "kind": 4194304, "kindString": "Type alias", @@ -39113,20 +40015,20 @@ "types": [ { "type": "reference", - "id": 2041, + "id": 2084, "name": "RewardsCreateAssignment" }, { "type": "reflection", "declaration": { - "id": 2050, + "id": 2093, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2051, + "id": 2094, "name": "id", "kind": 1024, "kindString": "Property", @@ -39142,7 +40044,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2051 + 2094 ] } ] @@ -39152,43 +40054,43 @@ } }, { - "id": 2052, + "id": 2095, "name": "RewardsUpdateAssignmentResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2020, + "id": 2063, "name": "RewardsAssignmentObject" } }, { - "id": 2019, + "id": 2062, "name": "RewardsUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2006, + "id": 2049, "name": "RewardsCreateResponse" } }, { - "id": 2223, + "id": 2266, "name": "SegmentsGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2211, + "id": 2254, "name": "SegmentsCreateResponse" } }, { - "id": 932, + "id": 933, "name": "SimpleRollback", "kind": 4194304, "kindString": "Type alias", @@ -39201,7 +40103,7 @@ "typeArguments": [ { "type": "reference", - "id": 916, + "id": 917, "name": "RedemptionsRollbackResponse" }, { @@ -39247,14 +40149,14 @@ { "type": "reflection", "declaration": { - "id": 933, + "id": 934, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 942, + "id": 943, "name": "gift", "kind": 1024, "kindString": "Property", @@ -39264,14 +40166,14 @@ "type": { "type": "reflection", "declaration": { - "id": 943, + "id": 944, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 944, + "id": 945, "name": "amount", "kind": 1024, "kindString": "Property", @@ -39287,7 +40189,7 @@ "title": "Properties", "kind": 1024, "children": [ - 944 + 945 ] } ] @@ -39295,7 +40197,7 @@ } }, { - "id": 945, + "id": 946, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -39305,14 +40207,14 @@ "type": { "type": "reflection", "declaration": { - "id": 946, + "id": 947, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 947, + "id": 948, "name": "points", "kind": 1024, "kindString": "Property", @@ -39328,7 +40230,7 @@ "title": "Properties", "kind": 1024, "children": [ - 947 + 948 ] } ] @@ -39336,7 +40238,7 @@ } }, { - "id": 934, + "id": 935, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -39347,7 +40249,7 @@ } }, { - "id": 935, + "id": 936, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -39355,14 +40257,14 @@ "type": { "type": "reflection", "declaration": { - "id": 936, + "id": 937, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 940, + "id": 941, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -39375,7 +40277,7 @@ } }, { - "id": 941, + "id": 942, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -39388,7 +40290,7 @@ } }, { - "id": 939, + "id": 940, "name": "code", "kind": 1024, "kindString": "Property", @@ -39399,7 +40301,7 @@ } }, { - "id": 937, + "id": 938, "name": "id", "kind": 1024, "kindString": "Property", @@ -39410,7 +40312,7 @@ } }, { - "id": 938, + "id": 939, "name": "object", "kind": 1024, "kindString": "Property", @@ -39426,11 +40328,11 @@ "title": "Properties", "kind": 1024, "children": [ - 940, 941, - 939, - 937, - 938 + 942, + 940, + 938, + 939 ] } ] @@ -39443,10 +40345,10 @@ "title": "Properties", "kind": 1024, "children": [ - 942, - 945, - 934, - 935 + 943, + 946, + 935, + 936 ] } ] @@ -39456,7 +40358,7 @@ } }, { - "id": 2379, + "id": 2422, "name": "StackableRedeemableObject", "kind": 4194304, "kindString": "Type alias", @@ -39480,7 +40382,7 @@ } }, { - "id": 2385, + "id": 2428, "name": "StackableRedeemableResponseStatus", "kind": 4194304, "kindString": "Type alias", @@ -39504,7 +40406,7 @@ } }, { - "id": 1956, + "id": 1999, "name": "ValidationRulesGetResponse", "kind": 4194304, "kindString": "Type alias", @@ -39514,20 +40416,20 @@ "types": [ { "type": "reference", - "id": 1938, + "id": 1981, "name": "ValidationRulesCreateResponse" }, { "type": "reflection", "declaration": { - "id": 1957, + "id": 2000, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1958, + "id": 2001, "name": "assignments_count", "kind": 1024, "kindString": "Property", @@ -39545,7 +40447,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1958 + 2001 ] } ] @@ -39555,7 +40457,7 @@ } }, { - "id": 1959, + "id": 2002, "name": "ValidationRulesUpdate", "kind": 4194304, "kindString": "Type alias", @@ -39568,7 +40470,7 @@ "typeArguments": [ { "type": "reference", - "id": 1928, + "id": 1971, "name": "ValidationRulesCreate" } ], @@ -39577,14 +40479,14 @@ { "type": "reflection", "declaration": { - "id": 1960, + "id": 2003, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1961, + "id": 2004, "name": "id", "kind": 1024, "kindString": "Property", @@ -39600,7 +40502,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1961 + 2004 ] } ] @@ -39610,19 +40512,19 @@ } }, { - "id": 1962, + "id": 2005, "name": "ValidationRulesUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1938, + "id": 1981, "name": "ValidationRulesCreateResponse" } }, { - "id": 2430, + "id": 2473, "name": "ValidationSessionTTLUnit", "kind": 4194304, "kindString": "Type alias", @@ -39662,7 +40564,7 @@ } }, { - "id": 2429, + "id": 2472, "name": "ValidationSessionType", "kind": 4194304, "kindString": "Type alias", @@ -39673,31 +40575,53 @@ } }, { - "id": 1069, + "id": 1112, "name": "ValidationsValidateCode", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1316, + "id": 1359, "name": "PromotionsValidateParams" } }, { - "id": 1070, + "id": 1113, "name": "ValidationsValidateContext", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 999, + "id": 1000, "name": "ValidationsValidateVoucherParams" } }, { - "id": 1727, + "id": 1020, + "name": "ValidationsValidateVoucherResponse", + "kind": 4194304, + "kindString": "Type alias", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "id": 1021, + "name": "ResponseValidateVoucherTrue" + }, + { + "type": "reference", + "id": 1076, + "name": "ResponseValidateVoucherFalse" + } + ] + } + }, + { + "id": 1770, "name": "VoucherType", "kind": 4194304, "kindString": "Type alias", @@ -39725,7 +40649,7 @@ } }, { - "id": 1915, + "id": 1958, "name": "VouchersBulkUpdate", "kind": 4194304, "kindString": "Type alias", @@ -39734,13 +40658,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1912, + "id": 1955, "name": "VouchersBulkUpdateObject" } } }, { - "id": 1922, + "id": 1965, "name": "VouchersBulkUpdateMetadataResponse", "kind": 4194304, "kindString": "Type alias", @@ -39748,14 +40672,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1923, + "id": 1966, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1924, + "id": 1967, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -39771,7 +40695,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1924 + 1967 ] } ] @@ -39779,7 +40703,7 @@ } }, { - "id": 1925, + "id": 1968, "name": "VouchersBulkUpdateResponse", "kind": 4194304, "kindString": "Type alias", @@ -39787,14 +40711,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1926, + "id": 1969, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1927, + "id": 1970, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -39810,7 +40734,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1927 + 1970 ] } ] @@ -39818,7 +40742,7 @@ } }, { - "id": 1848, + "id": 1891, "name": "VouchersCreate", "kind": 4194304, "kindString": "Type alias", @@ -39828,7 +40752,7 @@ "types": [ { "type": "reference", - "id": 1835, + "id": 1878, "name": "VouchersCreateParameters" }, { @@ -39836,7 +40760,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" }, { @@ -39883,7 +40807,7 @@ } }, { - "id": 1849, + "id": 1892, "name": "VouchersCreateResponse", "kind": 4194304, "kindString": "Type alias", @@ -39893,7 +40817,7 @@ "typeArguments": [ { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" }, { @@ -39905,43 +40829,43 @@ } }, { - "id": 1891, + "id": 1934, "name": "VouchersDisableResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } }, { - "id": 1890, + "id": 1933, "name": "VouchersEnableResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } }, { - "id": 1850, + "id": 1893, "name": "VouchersGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } }, { - "id": 1919, + "id": 1962, "name": "VouchersImportResponse", "kind": 4194304, "kindString": "Type alias", @@ -39949,14 +40873,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1920, + "id": 1963, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1921, + "id": 1964, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -39972,7 +40896,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1921 + 1964 ] } ] @@ -39980,40 +40904,40 @@ } }, { - "id": 1862, + "id": 1905, "name": "VouchersUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1746, + "id": 1789, "name": "VouchersResponse" } }, { - "id": 2522, + "id": 2580, "name": "VoucherifyClientSide", "kind": 64, "kindString": "Function", "flags": {}, "signatures": [ { - "id": 2523, + "id": 2581, "name": "VoucherifyClientSide", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2524, + "id": 2582, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2525, + "id": 2583, "name": "VoucherifyClientSideOptions" } } @@ -40027,28 +40951,28 @@ ] }, { - "id": 2491, + "id": 2549, "name": "VoucherifyServerSide", "kind": 64, "kindString": "Function", "flags": {}, "signatures": [ { - "id": 2492, + "id": 2550, "name": "VoucherifyServerSide", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2493, + "id": 2551, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2513, + "id": 2571, "name": "VoucherifyServerSideOptions" } } @@ -40056,14 +40980,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2494, + "id": 2552, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2511, + "id": 2569, "name": "apiLimitsHandler", "kind": 1024, "kindString": "Property", @@ -40074,7 +40998,7 @@ } }, { - "id": 2510, + "id": 2568, "name": "asyncActions", "kind": 1024, "kindString": "Property", @@ -40085,7 +41009,7 @@ } }, { - "id": 2496, + "id": 2554, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -40097,7 +41021,7 @@ } }, { - "id": 2502, + "id": 2560, "name": "consents", "kind": 1024, "kindString": "Property", @@ -40109,7 +41033,7 @@ } }, { - "id": 2501, + "id": 2559, "name": "customers", "kind": 1024, "kindString": "Property", @@ -40121,7 +41045,7 @@ } }, { - "id": 2497, + "id": 2555, "name": "distributions", "kind": 1024, "kindString": "Property", @@ -40133,7 +41057,7 @@ } }, { - "id": 2509, + "id": 2567, "name": "events", "kind": 1024, "kindString": "Property", @@ -40145,7 +41069,7 @@ } }, { - "id": 2506, + "id": 2564, "name": "loyalties", "kind": 1024, "kindString": "Property", @@ -40157,7 +41081,7 @@ } }, { - "id": 2512, + "id": 2570, "name": "metadataSchemas", "kind": 1024, "kindString": "Property", @@ -40168,7 +41092,7 @@ } }, { - "id": 2503, + "id": 2561, "name": "orders", "kind": 1024, "kindString": "Property", @@ -40180,7 +41104,7 @@ } }, { - "id": 2504, + "id": 2562, "name": "products", "kind": 1024, "kindString": "Property", @@ -40192,7 +41116,7 @@ } }, { - "id": 2500, + "id": 2558, "name": "promotions", "kind": 1024, "kindString": "Property", @@ -40204,7 +41128,7 @@ } }, { - "id": 2499, + "id": 2557, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -40216,7 +41140,7 @@ } }, { - "id": 2505, + "id": 2563, "name": "rewards", "kind": 1024, "kindString": "Property", @@ -40228,7 +41152,7 @@ } }, { - "id": 2507, + "id": 2565, "name": "segments", "kind": 1024, "kindString": "Property", @@ -40240,7 +41164,7 @@ } }, { - "id": 2508, + "id": 2566, "name": "validationRules", "kind": 1024, "kindString": "Property", @@ -40252,7 +41176,7 @@ } }, { - "id": 2498, + "id": 2556, "name": "validations", "kind": 1024, "kindString": "Property", @@ -40264,7 +41188,7 @@ } }, { - "id": 2495, + "id": 2553, "name": "vouchers", "kind": 1024, "kindString": "Property", @@ -40281,24 +41205,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2511, - 2510, - 2496, - 2502, - 2501, - 2497, - 2509, - 2506, - 2512, - 2503, - 2504, - 2500, - 2499, - 2505, - 2507, - 2508, - 2498, - 2495 + 2569, + 2568, + 2554, + 2560, + 2559, + 2555, + 2567, + 2564, + 2570, + 2561, + 2562, + 2558, + 2557, + 2563, + 2565, + 2566, + 2556, + 2553 ] } ] @@ -40313,7 +41237,7 @@ "title": "Enumerations", "kind": 4, "children": [ - 2457 + 2504 ] }, { @@ -40347,211 +41271,213 @@ "title": "Interfaces", "kind": 256, "children": [ - 2444, - 2452, - 697, - 699, - 1071, - 1125, - 1122, - 1131, - 1140, - 1104, - 1107, - 1111, - 729, - 785, - 775, - 782, - 756, - 765, - 807, - 791, - 795, - 793, - 801, - 712, - 734, - 2342, - 2350, - 674, - 681, + 2487, + 2499, + 698, + 700, + 1114, + 1168, + 1165, + 1174, + 1183, + 1147, + 1150, + 1154, + 730, + 786, + 776, + 783, + 757, + 766, + 808, + 792, + 796, + 794, + 802, + 713, + 735, + 2385, + 2393, + 675, + 682, 590, 644, - 660, - 668, - 2475, - 2486, - 2480, - 2467, - 2180, - 2190, - 2160, - 2175, - 2363, - 2374, + 661, + 669, + 2533, + 2544, + 2538, + 2525, + 2514, + 2518, + 2223, 2233, - 2244, - 2427, - 1610, - 1612, - 1371, - 1395, - 1511, - 1585, - 1454, - 1447, - 1437, - 1489, - 1599, - 1475, - 1506, - 1535, - 1580, - 1363, - 1366, - 1439, - 1442, - 1622, - 1634, - 1429, - 1525, - 1467, - 1546, - 1478, - 1724, - 1481, - 2294, - 2302, - 2263, - 2334, + 2203, + 2218, + 2406, + 2417, + 2276, + 2287, + 2470, + 1653, + 1655, + 1414, + 1438, + 1554, + 1628, + 1497, + 1490, + 1480, + 1532, + 1642, + 1518, + 1549, + 1578, + 1623, + 1406, + 1409, + 1482, + 1485, + 1665, + 1677, + 1472, + 1568, + 1510, + 1589, + 1521, + 1767, + 1524, 2337, - 2322, - 2091, - 2057, - 2070, - 2111, - 2119, - 2101, - 2136, - 2064, - 2103, - 2106, - 2138, - 1161, - 1243, - 1191, - 1180, - 1184, - 1199, - 1213, - 1301, - 1265, - 1316, - 1329, - 1332, - 860, - 895, - 850, - 890, - 817, - 828, - 948, - 969, - 903, - 912, - 909, - 916, - 985, - 2053, - 2020, - 2041, - 2033, - 2036, - 1991, - 2007, - 1994, - 2202, - 2211, - 2224, - 583, - 2142, - 1151, - 2146, - 1728, + 2345, + 2306, 2377, 2380, - 2418, - 2392, - 2386, - 2408, - 2410, - 2413, + 2365, + 2134, + 2100, + 2113, + 2154, + 2162, + 2144, + 2179, + 2107, + 2146, + 2149, + 2181, + 1204, + 1286, + 1234, + 1223, + 1227, + 1242, + 1256, + 1344, + 1308, + 1359, + 1372, + 1375, + 861, + 896, + 851, + 891, + 818, + 829, + 949, + 970, + 904, + 913, + 910, + 917, + 986, + 1076, + 1021, + 2096, + 2063, + 2084, + 2076, + 2079, + 2034, + 2050, + 2037, + 2245, + 2254, + 2267, + 583, + 2185, + 1194, + 2189, + 1771, + 2420, + 2423, + 2461, + 2435, + 2429, + 2451, + 2453, + 2456, + 1971, + 2006, + 2010, + 1981, + 2026, + 2029, + 2018, + 2021, + 1995, + 2474, + 2484, + 2479, + 1106, + 1099, + 1000, + 2193, + 2583, + 2571, + 1959, + 1955, + 1878, + 1906, + 1935, + 1908, 1928, - 1963, - 1967, - 1938, - 1983, - 1986, - 1975, - 1978, - 1952, - 2431, - 2441, - 2436, - 1063, - 1056, - 999, - 1022, - 2150, - 2525, - 2513, - 1916, - 1912, - 1835, - 1863, - 1892, - 1865, - 1885, - 1816, - 1826, - 1830, - 1746, - 1851 + 1859, + 1869, + 1873, + 1789, + 1894 ] }, { "title": "Type aliases", "kind": 4194304, "children": [ - 2443, - 1127, - 1129, - 1124, - 1128, - 1118, - 1148, - 1150, - 1130, - 1121, - 1149, - 1145, - 812, - 710, + 2486, + 1170, + 1172, + 1167, + 1171, + 1161, + 1191, + 1193, + 1173, + 1164, + 1192, + 1188, + 813, 711, - 709, - 727, - 781, - 788, - 804, - 815, + 712, + 710, + 728, + 782, + 789, + 805, 816, - 811, + 817, + 812, + 815, 814, - 813, - 728, + 729, 641, - 686, 687, 688, 689, @@ -40559,82 +41485,85 @@ 691, 692, 693, - 696, 694, + 697, 695, - 2464, - 2466, - 2465, - 2463, - 2462, - 2456, - 2262, - 1524, - 1597, - 1428, - 1598, - 1436, - 1534, - 1474, - 2321, - 2333, - 2094, - 2098, - 2095, - 2080, - 2130, - 2081, - 2090, - 2131, - 2135, - 1190, - 1250, - 1198, - 1189, - 1261, - 1264, - 958, - 955, - 2014, - 2048, - 2006, - 2015, - 2012, - 2013, - 2016, + 696, + 2511, + 2513, + 2512, + 2510, + 2509, + 2503, + 2305, + 1567, + 1640, + 1471, + 1641, + 1479, + 1577, + 1517, + 1092, + 2364, + 2376, + 2137, + 2141, + 2138, + 2123, + 2173, + 2124, + 2133, + 2174, + 2178, + 1233, + 1293, + 1241, + 1232, + 1304, + 1307, + 959, + 956, + 2057, + 2091, 2049, - 2052, - 2019, - 2223, - 932, - 2379, - 2385, - 1956, - 1959, - 1962, - 2430, - 2429, - 1069, - 1070, - 1727, - 1915, - 1922, - 1925, - 1848, - 1849, + 2058, + 2055, + 2056, + 2059, + 2092, + 2095, + 2062, + 2266, + 933, + 2422, + 2428, + 1999, + 2002, + 2005, + 2473, + 2472, + 1112, + 1113, + 1020, + 1770, + 1958, + 1965, + 1968, 1891, - 1890, - 1850, - 1919, - 1862 + 1892, + 1934, + 1933, + 1893, + 1962, + 1905 ] }, { "title": "Functions", "kind": 64, "children": [ - 2522, - 2491 + 2580, + 2549 ] } ] diff --git a/docs/index.html b/docs/index.html index c5a0928a9..9e3eb2eed 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1458,6 +1458,12 @@

🗄️ Changelog

  • DiscountUnit
  • +
  • + DiscountUnitMultiple +
  • +
  • + DiscountUnitMultipleOneUnit +
  • DistributionsPublicationsCreateParams
  • @@ -1695,6 +1701,12 @@

    🗄️ Changelog

  • RedemptionsRollbackStackableResponse
  • +
  • + ResponseValidateVoucherFalse +
  • +
  • + ResponseValidateVoucherTrue +
  • RewardRedemptionParams
  • @@ -1812,9 +1824,6 @@

    🗄️ Changelog

  • ValidationsValidateVoucherParams
  • -
  • - ValidationsValidateVoucherResponse -
  • VoucherDiscount
  • @@ -2016,6 +2025,9 @@

    🗄️ Changelog

  • LoyaltiesUpdateRewardAssignmentResponse
  • +
  • + OrderObjectRedemptions +
  • OrdersGetResponse
  • @@ -2136,6 +2148,9 @@

    🗄️ Changelog

  • ValidationsValidateContext
  • +
  • + ValidationsValidateVoucherResponse +
  • VoucherType
  • diff --git a/docs/interfaces/ApplicableTo.html b/docs/interfaces/ApplicableTo.html index 04158bbc5..47c986988 100644 --- a/docs/interfaces/ApplicableTo.html +++ b/docs/interfaces/ApplicableTo.html @@ -80,11 +80,15 @@

    Index

    Properties

    @@ -94,6 +98,13 @@

    Properties

    Properties

    +
    + +

    Optional aggregated_quantity_limit

    +
    aggregated_quantity_limit: number
    + +

    effect

    @@ -129,6 +140,27 @@

    Optional price_formula

    +
    + +

    Optional product_id

    +
    product_id: string
    + +
    +
    + +

    Optional product_source_id

    +
    product_source_id: string
    + +
    +
    + +

    Optional quantity_limit

    +
    quantity_limit: number
    + +

    Optional source_id

    @@ -160,6 +192,9 @@

    strict

  • ApplicableTo
  • Optional description

    @@ -194,6 +202,9 @@

    Optional source_id

  • address
  • +
  • + birthdate +
  • description
  • diff --git a/docs/interfaces/DiscountUnitMultiple.html b/docs/interfaces/DiscountUnitMultiple.html new file mode 100644 index 000000000..4ca6641f8 --- /dev/null +++ b/docs/interfaces/DiscountUnitMultiple.html @@ -0,0 +1,171 @@ + + + + + + DiscountUnitMultiple | @voucherify/sdk - v2.2.5 + + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Interface DiscountUnitMultiple

    +
    +
    +
    +
    +
    +
    +
    +

    Hierarchy

    +
      +
    • + DiscountUnitMultiple +
    • +
    +
    +
    +

    Index

    +
    +
    +
    +

    Properties

    + +
    +
    +
    +
    +
    +

    Properties

    +
    + +

    effect

    +
    effect: "ADD_MANY_ITEMS"
    + +
    +
    + +

    type

    +
    type: UNIT
    + +
    +
    + +

    units

    + + +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    +
      +
    • Private property
    • +
    • Private method
    • +
    +
      +
    • Property
    • +
    +
    +
    +
    +
    + + + \ No newline at end of file diff --git a/docs/interfaces/DiscountUnitMultipleOneUnit.html b/docs/interfaces/DiscountUnitMultipleOneUnit.html new file mode 100644 index 000000000..276c0b43e --- /dev/null +++ b/docs/interfaces/DiscountUnitMultipleOneUnit.html @@ -0,0 +1,204 @@ + + + + + + DiscountUnitMultipleOneUnit | @voucherify/sdk - v2.2.5 + + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Interface DiscountUnitMultipleOneUnit

    +
    +
    +
    +
    +
    +
    +
    +

    Hierarchy

    +
      +
    • + DiscountUnitMultipleOneUnit +
    • +
    +
    +
    +

    Index

    +
    +
    +
    +

    Properties

    + +
    +
    +
    +
    +
    +

    Properties

    +
    + +

    effect

    +
    effect: "ADD_MISSING_ITEMS" | "ADD_NEW_ITEMS"
    + +
    +
    + +

    Optional product

    +
    product: SimpleProductDiscountUnit
    + +
    +
    + +

    Optional sku

    +
    sku: SimpleSkuDiscountUnit
    + +
    +
    + +

    type

    +
    type: UNIT
    + +
    +
    + +

    unit_off

    +
    unit_off: number
    + +
    +
    + +

    Optional unit_type

    +
    unit_type: string
    + +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    +
      +
    • Private property
    • +
    • Private method
    • +
    +
      +
    • Property
    • +
    +
    +
    +
    +
    + + + \ No newline at end of file diff --git a/docs/interfaces/PromotionsCreate.html b/docs/interfaces/PromotionsCreate.html index 04107dbc4..e20d3af9f 100644 --- a/docs/interfaces/PromotionsCreate.html +++ b/docs/interfaces/PromotionsCreate.html @@ -116,14 +116,14 @@

    name

    Optional promotion

    -
    promotion: { tiers: { action: { discount: DiscountUnit | DiscountAmount | DiscountPercent | DiscountFixed }; banner: string; metadata?: Record<string, any>; name: string }[] }
    +
    promotion: { tiers: { action: { discount: DiscountUnit | DiscountAmount | DiscountPercent | DiscountFixed }; banner?: string; metadata?: Record<string, any>; name: string }[] }

    Type declaration

    diff --git a/docs/interfaces/ResponseValidateVoucherFalse.html b/docs/interfaces/ResponseValidateVoucherFalse.html new file mode 100644 index 000000000..6d3a4dfc8 --- /dev/null +++ b/docs/interfaces/ResponseValidateVoucherFalse.html @@ -0,0 +1,241 @@ + + + + + + ResponseValidateVoucherFalse | @voucherify/sdk - v2.2.5 + + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Interface ResponseValidateVoucherFalse

    +
    +
    +
    +
    +
    +
    +
    +

    Hierarchy

    +
      +
    • + ResponseValidateVoucherFalse +
    • +
    +
    +
    +

    Index

    +
    +
    +
    +

    Properties

    + +
    +
    +
    +
    +
    +

    Properties

    +
    + +

    code

    +
    code: string
    + +
    +
    + +

    Optional customer_id

    +
    customer_id: string
    + +
    +
    + +

    Optional error

    +
    error: { code: number; details: string; key: string; message: string; request_id?: string; resource_id?: string; resource_type?: string }
    + +
    +

    Type declaration

    +
      +
    • +
      code: number
      +
    • +
    • +
      details: string
      +
    • +
    • +
      key: string
      +
    • +
    • +
      message: string
      +
    • +
    • +
      Optional request_id?: string
      +
    • +
    • +
      Optional resource_id?: string
      +
    • +
    • +
      Optional resource_type?: string
      +
    • +
    +
    +
    +
    + +

    Optional metadata

    +
    metadata: Record<string, any>
    + +
    +
    + +

    Optional reason

    +
    reason: string
    + +
    +
    + +

    Optional tracking_id

    +
    tracking_id: string
    + +
    +
    + +

    valid

    +
    valid: false
    + +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Constructor
    • +
    • Property
    • +
    • Method
    • +
    +
      +
    • Private property
    • +
    • Private method
    • +
    +
      +
    • Property
    • +
    +
    +
    +
    +
    + + + \ No newline at end of file diff --git a/docs/interfaces/ValidationsValidateVoucherResponse.html b/docs/interfaces/ResponseValidateVoucherTrue.html similarity index 55% rename from docs/interfaces/ValidationsValidateVoucherResponse.html rename to docs/interfaces/ResponseValidateVoucherTrue.html index 9b90bae90..1a93e8677 100644 --- a/docs/interfaces/ValidationsValidateVoucherResponse.html +++ b/docs/interfaces/ResponseValidateVoucherTrue.html @@ -3,7 +3,7 @@ - ValidationsValidateVoucherResponse | @voucherify/sdk - v2.2.5 + ResponseValidateVoucherTrue | @voucherify/sdk - v2.2.5 @@ -55,10 +55,10 @@ @voucherify/sdk - v2.2.5
  • - ValidationsValidateVoucherResponse + ResponseValidateVoucherTrue
  • -

    Interface ValidationsValidateVoucherResponse

    +

    Interface ResponseValidateVoucherTrue

    @@ -69,7 +69,7 @@

    Interface ValidationsValidateVoucherResponse

    Hierarchy

    • - ValidationsValidateVoucherResponse + ResponseValidateVoucherTrue
    @@ -80,22 +80,22 @@

    Index

    Properties

    @@ -105,7 +105,7 @@

    Properties

    Properties

    -

    Optional applicable_to

    +

    applicable_to

    applicable_to: ApplicableToResultList
    @@ -126,7 +126,7 @@

    Optional campaign_id

    -

    Optional code

    +

    code

    code: string
    @@ -134,14 +134,7 @@

    Optional code

    Optional discount

    - - -
    -
    - -

    Optional error

    -
    error: ValidationError
    +
    @@ -155,7 +148,7 @@

    Optional expiration_date<

    Optional gift

    -
    gift: { amount: number; balance: number }
    +
    gift: { amount: number; balance: number; effect?: "APPLY_TO_ORDER" | "APPLY_TO_ITEMS" }
    @@ -167,12 +160,15 @@
    amount:
    balance: number
    +
  • +
    Optional effect?: "APPLY_TO_ORDER" | "APPLY_TO_ITEMS"
    +
  • -

    Optional inapplicable_to

    +

    inapplicable_to

    inapplicable_to: ApplicableToResultList
    @@ -194,7 +190,7 @@
    points_cost: -

    Optional metadata

    +

    metadata

    metadata: Record<string, any>
    @@ -202,7 +198,7 @@

    Optional metadata

    Optional order

    -
    order: { amount: number; applied_discount_amount?: number; discount_amount: number; initial_amount?: number; items?: OrdersItem[]; items_applied_discount_amount?: number; items_discount_amount?: number; metadata?: Record<string, any>; total_amount: number; total_applied_discount_amount?: number; total_discount_amount: number }
    +
    order: { amount: number; applied_discount_amount?: number; created_at?: string; customer?: CustomerRequest; customer_id?: string; discount_amount: number; id?: string; initial_amount?: number; items?: OrdersItem[]; items_applied_discount_amount?: number; items_discount_amount?: number; metadata?: Record<string, any>; object: "order"; redemptions?: Record<string, { date?: string; related_object_id?: string; related_object_parent_id?: string; related_object_type?: "voucher" | "promotion_tier"; stacked?: string[] }>; referrer_id: null | string; source_id?: string; status?: "CREATED" | "PAID" | "CANCELED" | "FULFILLED" | "PROCESSING"; total_amount: number; total_applied_discount_amount?: number; total_discount_amount?: number; updated_at?: string }
    @@ -214,9 +210,21 @@
    amount:
    Optional applied_discount_amount?: number
    +
  • +
    Optional created_at?: string
    +
  • +
  • +
    Optional customer?: CustomerRequest
    +
  • +
  • +
    Optional customer_id?: string
    +
  • discount_amount: number
  • +
  • +
    Optional id?: string
    +
  • Optional initial_amount?: number
  • @@ -232,6 +240,21 @@
    Optional items_discount_<
  • Optional metadata?: Record<string, any>
  • +
  • +
    object: "order"
    +
  • +
  • +
    Optional redemptions?: Record<string, { date?: string; related_object_id?: string; related_object_parent_id?: string; related_object_type?: "voucher" | "promotion_tier"; stacked?: string[] }>
    +
  • +
  • +
    referrer_id: null | string
    +
  • +
  • +
    Optional source_id?: string
    +
  • +
  • +
    Optional status?: "CREATED" | "PAID" | "CANCELED" | "FULFILLED" | "PROCESSING"
    +
  • total_amount: number
  • @@ -239,7 +262,31 @@
    total_amount: Optional total_applied_discount_amount?: number
  • -
    total_discount_amount: number
    +
    Optional total_discount_amount?: number
    +
  • +
  • +
    Optional updated_at?: string
    +
  • + +
    +
    +
    + +

    Optional reward

    +
    reward: { assignment_id: string; id: string; points: number }
    + +
    +

    Type declaration

    +
      +
    • +
      assignment_id: string
      +
    • +
    • +
      id: string
      +
    • +
    • +
      points: number
    @@ -267,8 +314,8 @@

    tracking_id

    -

    Optional valid

    -
    valid: boolean
    +

    valid

    +
    valid: true
    @@ -287,55 +334,55 @@

    Optional valid

    Optional reward

    -
    reward: { id: string }
    +
    reward: { id: string; points?: number }
    @@ -176,6 +162,9 @@

    Type declaration

  • id: string
  • +
  • +
    Optional points?: number
    +
  • diff --git a/docs/modules.html b/docs/modules.html index d16a9e18f..efdb42a50 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -133,6 +133,8 @@

    Interfaces

  • DiscountFixed
  • DiscountPercent
  • DiscountUnit
  • +
  • DiscountUnitMultiple
  • +
  • DiscountUnitMultipleOneUnit
  • DistributionsPublicationsCreateParams
  • DistributionsPublicationsCreateResponse
  • DistributionsPublicationsListParams
  • @@ -212,6 +214,8 @@

    Interfaces

  • RedemptionsRollbackQueryParams
  • RedemptionsRollbackResponse
  • RedemptionsRollbackStackableResponse
  • +
  • ResponseValidateVoucherFalse
  • +
  • ResponseValidateVoucherTrue
  • RewardRedemptionParams
  • RewardsAssignmentObject
  • RewardsCreateAssignment
  • @@ -251,7 +255,6 @@

    Interfaces

  • ValidationValidateStackableResponse
  • ValidationsValidateStackableParams
  • ValidationsValidateVoucherParams
  • -
  • ValidationsValidateVoucherResponse
  • VoucherDiscount
  • VoucherifyClientSideOptions
  • VoucherifyServerSideOptions
  • @@ -324,6 +327,7 @@

    Type aliases

  • LoyaltiesUpdateCampaignResponse
  • LoyaltiesUpdateEarningRuleResponse
  • LoyaltiesUpdateRewardAssignmentResponse
  • +
  • OrderObjectRedemptions
  • OrdersGetResponse
  • OrdersUpdateResponse
  • ProductsBulkUpdate
  • @@ -364,6 +368,7 @@

    Type aliases

  • ValidationSessionType
  • ValidationsValidateCode
  • ValidationsValidateContext
  • +
  • ValidationsValidateVoucherResponse
  • VoucherType
  • VouchersBulkUpdate
  • VouchersBulkUpdateMetadataResponse
  • @@ -761,6 +766,13 @@

    LoyaltiesUpdateRewardAssignmentResponse

    +
    + +

    OrderObjectRedemptions

    +
    OrderObjectRedemptions: Record<string, { date?: string; related_object_id?: string; related_object_parent_id?: string; related_object_type?: "voucher" | "promotion_tier"; stacked?: string[] }>
    + +

    OrdersGetResponse

    @@ -1083,6 +1095,13 @@

    ValidationsValidateContext

    +
    + +

    ValidationsValidateVoucherResponse

    +
    ValidationsValidateVoucherResponse: ResponseValidateVoucherTrue | ResponseValidateVoucherFalse
    + +

    VoucherType

    @@ -1472,6 +1491,12 @@
    vouchers: DiscountUnit +
  • + DiscountUnitMultiple +
  • +
  • + DiscountUnitMultipleOneUnit +
  • DistributionsPublicationsCreateParams
  • @@ -1709,6 +1734,12 @@
    vouchers: RedemptionsRollbackStackableResponse +
  • + ResponseValidateVoucherFalse +
  • +
  • + ResponseValidateVoucherTrue +
  • RewardRedemptionParams
  • @@ -1826,9 +1857,6 @@
    vouchers: ValidationsValidateVoucherParams -
  • - ValidationsValidateVoucherResponse -
  • VoucherDiscount
  • @@ -2030,6 +2058,9 @@
    vouchers: LoyaltiesUpdateRewardAssignmentResponse +
  • + OrderObjectRedemptions +
  • OrdersGetResponse
  • @@ -2150,6 +2181,9 @@
    vouchers: ValidationsValidateContext +
  • + ValidationsValidateVoucherResponse +
  • VoucherType
  • From 8eb0de53b42d8a1dc8676072f62c798f08d8b4d1 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 09:28:22 +0200 Subject: [PATCH 19/65] Revert "docs" This reverts commit 4d1aa28f347bb0ac86634439c85c36fb3538ef87. --- docs/assets/js/search.js | 2 +- docs/classes/Validations.html | 8 +- docs/classes/VoucherifyError.html | 6 +- docs/docs.json | 10473 +++++++--------- docs/index.html | 21 +- docs/interfaces/ApplicableTo.html | 44 - docs/interfaces/CustomerRequest.html | 11 - docs/interfaces/DiscountUnitMultiple.html | 171 - .../DiscountUnitMultipleOneUnit.html | 204 - docs/interfaces/PromotionsCreate.html | 4 +- .../ResponseValidateVoucherFalse.html | 241 - .../ValidationsValidateVoucherParams.html | 41 +- ...> ValidationsValidateVoucherResponse.html} | 155 +- docs/modules.html | 42 +- 14 files changed, 4869 insertions(+), 6554 deletions(-) delete mode 100644 docs/interfaces/DiscountUnitMultiple.html delete mode 100644 docs/interfaces/DiscountUnitMultipleOneUnit.html delete mode 100644 docs/interfaces/ResponseValidateVoucherFalse.html rename docs/interfaces/{ResponseValidateVoucherTrue.html => ValidationsValidateVoucherResponse.html} (55%) diff --git a/docs/assets/js/search.js b/docs/assets/js/search.js index 7d9303b9e..f5e13c82a 100644 --- a/docs/assets/js/search.js +++ b/docs/assets/js/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"4":"Enumeration","16":"Enumeration member","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Balance","url":"classes/Balance.html","classes":"tsd-kind-class"},{"id":1,"kind":512,"name":"constructor","url":"classes/Balance.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Balance"},{"id":2,"kind":2048,"name":"create","url":"classes/Balance.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Balance"},{"id":3,"kind":128,"name":"Campaigns","url":"classes/Campaigns.html","classes":"tsd-kind-class"},{"id":4,"kind":512,"name":"constructor","url":"classes/Campaigns.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Campaigns"},{"id":5,"kind":1024,"name":"qualifications","url":"classes/Campaigns.html#qualifications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Campaigns"},{"id":6,"kind":2048,"name":"create","url":"classes/Campaigns.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":7,"kind":2048,"name":"update","url":"classes/Campaigns.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":8,"kind":2048,"name":"get","url":"classes/Campaigns.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":9,"kind":2048,"name":"delete","url":"classes/Campaigns.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":10,"kind":2048,"name":"addVoucher","url":"classes/Campaigns.html#addVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":11,"kind":2048,"name":"addCertainVoucher","url":"classes/Campaigns.html#addCertainVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":12,"kind":2048,"name":"importVouchers","url":"classes/Campaigns.html#importVouchers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":13,"kind":2048,"name":"list","url":"classes/Campaigns.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":14,"kind":128,"name":"ClientSide","url":"classes/ClientSide.html","classes":"tsd-kind-class"},{"id":15,"kind":512,"name":"constructor","url":"classes/ClientSide.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ClientSide"},{"id":16,"kind":2048,"name":"setIdentity","url":"classes/ClientSide.html#setIdentity","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":17,"kind":2048,"name":"validate","url":"classes/ClientSide.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":18,"kind":2048,"name":"redeem","url":"classes/ClientSide.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":19,"kind":2048,"name":"publish","url":"classes/ClientSide.html#publish","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":20,"kind":2048,"name":"track","url":"classes/ClientSide.html#track","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":21,"kind":2048,"name":"listVouchers","url":"classes/ClientSide.html#listVouchers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":22,"kind":2048,"name":"createCustomer","url":"classes/ClientSide.html#createCustomer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":23,"kind":2048,"name":"listConsents","url":"classes/ClientSide.html#listConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":24,"kind":2048,"name":"updateConsents","url":"classes/ClientSide.html#updateConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":25,"kind":2048,"name":"validateStackable","url":"classes/ClientSide.html#validateStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":26,"kind":2048,"name":"redeemStackable","url":"classes/ClientSide.html#redeemStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":27,"kind":128,"name":"Consents","url":"classes/Consents.html","classes":"tsd-kind-class"},{"id":28,"kind":512,"name":"constructor","url":"classes/Consents.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Consents"},{"id":29,"kind":2048,"name":"list","url":"classes/Consents.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Consents"},{"id":30,"kind":128,"name":"Customers","url":"classes/Customers.html","classes":"tsd-kind-class"},{"id":31,"kind":512,"name":"constructor","url":"classes/Customers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Customers"},{"id":32,"kind":2048,"name":"create","url":"classes/Customers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":33,"kind":2048,"name":"get","url":"classes/Customers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":34,"kind":2048,"name":"list","url":"classes/Customers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":35,"kind":2048,"name":"scroll","url":"classes/Customers.html#scroll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":36,"kind":2048,"name":"update","url":"classes/Customers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":37,"kind":2048,"name":"delete","url":"classes/Customers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":38,"kind":2048,"name":"updateConsents","url":"classes/Customers.html#updateConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":39,"kind":2048,"name":"listActivities","url":"classes/Customers.html#listActivities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":40,"kind":128,"name":"Distributions","url":"classes/Distributions.html","classes":"tsd-kind-class"},{"id":41,"kind":512,"name":"constructor","url":"classes/Distributions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Distributions"},{"id":42,"kind":1024,"name":"publications","url":"classes/Distributions.html#publications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Distributions"},{"id":43,"kind":1024,"name":"exports","url":"classes/Distributions.html#exports","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Distributions"},{"id":44,"kind":128,"name":"Events","url":"classes/Events.html","classes":"tsd-kind-class"},{"id":45,"kind":512,"name":"constructor","url":"classes/Events.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Events"},{"id":46,"kind":2048,"name":"create","url":"classes/Events.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Events"},{"id":47,"kind":128,"name":"Exports","url":"classes/Exports.html","classes":"tsd-kind-class"},{"id":48,"kind":512,"name":"constructor","url":"classes/Exports.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Exports"},{"id":49,"kind":2048,"name":"create","url":"classes/Exports.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":50,"kind":2048,"name":"get","url":"classes/Exports.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":51,"kind":2048,"name":"delete","url":"classes/Exports.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":52,"kind":128,"name":"Loyalties","url":"classes/Loyalties.html","classes":"tsd-kind-class"},{"id":53,"kind":512,"name":"constructor","url":"classes/Loyalties.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Loyalties"},{"id":54,"kind":2048,"name":"list","url":"classes/Loyalties.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":55,"kind":2048,"name":"create","url":"classes/Loyalties.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":56,"kind":2048,"name":"get","url":"classes/Loyalties.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":57,"kind":2048,"name":"update","url":"classes/Loyalties.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":58,"kind":2048,"name":"delete","url":"classes/Loyalties.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":59,"kind":2048,"name":"listRewardAssignments","url":"classes/Loyalties.html#listRewardAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":60,"kind":2048,"name":"createRewardAssignments","url":"classes/Loyalties.html#createRewardAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":61,"kind":2048,"name":"updateRewardAssignment","url":"classes/Loyalties.html#updateRewardAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":62,"kind":2048,"name":"deleteRewardAssignment","url":"classes/Loyalties.html#deleteRewardAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":63,"kind":2048,"name":"listEarningRules","url":"classes/Loyalties.html#listEarningRules","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":64,"kind":2048,"name":"createEarningRule","url":"classes/Loyalties.html#createEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":65,"kind":2048,"name":"updateEarningRule","url":"classes/Loyalties.html#updateEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":66,"kind":2048,"name":"deleteEarningRule","url":"classes/Loyalties.html#deleteEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":67,"kind":2048,"name":"listMembers","url":"classes/Loyalties.html#listMembers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":68,"kind":2048,"name":"createMember","url":"classes/Loyalties.html#createMember","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":69,"kind":2048,"name":"getMember","url":"classes/Loyalties.html#getMember","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":70,"kind":2048,"name":"getMemberActivities","url":"classes/Loyalties.html#getMemberActivities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":71,"kind":2048,"name":"addPoints","url":"classes/Loyalties.html#addPoints","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":72,"kind":2048,"name":"redeemReward","url":"classes/Loyalties.html#redeemReward","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":73,"kind":128,"name":"Orders","url":"classes/Orders.html","classes":"tsd-kind-class"},{"id":74,"kind":512,"name":"constructor","url":"classes/Orders.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Orders"},{"id":75,"kind":2048,"name":"create","url":"classes/Orders.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":76,"kind":2048,"name":"get","url":"classes/Orders.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":77,"kind":2048,"name":"update","url":"classes/Orders.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":78,"kind":2048,"name":"list","url":"classes/Orders.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":79,"kind":2048,"name":"import","url":"classes/Orders.html#import","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":80,"kind":128,"name":"Products","url":"classes/Products.html","classes":"tsd-kind-class"},{"id":81,"kind":512,"name":"constructor","url":"classes/Products.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Products"},{"id":82,"kind":2048,"name":"create","url":"classes/Products.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":83,"kind":2048,"name":"get","url":"classes/Products.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":84,"kind":2048,"name":"update","url":"classes/Products.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":85,"kind":2048,"name":"bulkUpdateMetadata","url":"classes/Products.html#bulkUpdateMetadata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":86,"kind":2048,"name":"bulkUpdate","url":"classes/Products.html#bulkUpdate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":87,"kind":2048,"name":"delete","url":"classes/Products.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":88,"kind":2048,"name":"list","url":"classes/Products.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":89,"kind":2048,"name":"createSku","url":"classes/Products.html#createSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":90,"kind":2048,"name":"getSku","url":"classes/Products.html#getSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":91,"kind":2048,"name":"updateSku","url":"classes/Products.html#updateSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":92,"kind":2048,"name":"deleteSku","url":"classes/Products.html#deleteSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":93,"kind":2048,"name":"listSkus","url":"classes/Products.html#listSkus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":94,"kind":128,"name":"Promotions","url":"classes/Promotions.html","classes":"tsd-kind-class"},{"id":95,"kind":512,"name":"constructor","url":"classes/Promotions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Promotions"},{"id":96,"kind":1024,"name":"tiers","url":"classes/Promotions.html#tiers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Promotions"},{"id":97,"kind":2048,"name":"create","url":"classes/Promotions.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Promotions"},{"id":98,"kind":2048,"name":"validate","url":"classes/Promotions.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Promotions"},{"id":99,"kind":128,"name":"PromotionTiers","url":"classes/PromotionTiers.html","classes":"tsd-kind-class"},{"id":100,"kind":512,"name":"constructor","url":"classes/PromotionTiers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PromotionTiers"},{"id":101,"kind":2048,"name":"listAll","url":"classes/PromotionTiers.html#listAll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":102,"kind":2048,"name":"list","url":"classes/PromotionTiers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":103,"kind":2048,"name":"get","url":"classes/PromotionTiers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":104,"kind":2048,"name":"create","url":"classes/PromotionTiers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":105,"kind":2048,"name":"redeem","url":"classes/PromotionTiers.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":106,"kind":2048,"name":"update","url":"classes/PromotionTiers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":107,"kind":2048,"name":"delete","url":"classes/PromotionTiers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":108,"kind":128,"name":"Redemptions","url":"classes/Redemptions.html","classes":"tsd-kind-class"},{"id":109,"kind":512,"name":"constructor","url":"classes/Redemptions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Redemptions"},{"id":110,"kind":2048,"name":"redeem","url":"classes/Redemptions.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":111,"kind":2048,"name":"redeemStackable","url":"classes/Redemptions.html#redeemStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":112,"kind":2048,"name":"get","url":"classes/Redemptions.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":113,"kind":2048,"name":"list","url":"classes/Redemptions.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":114,"kind":2048,"name":"getForVoucher","url":"classes/Redemptions.html#getForVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":115,"kind":2048,"name":"rollback","url":"classes/Redemptions.html#rollback","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":116,"kind":2048,"name":"rollbackStackable","url":"classes/Redemptions.html#rollbackStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":117,"kind":128,"name":"RequestController","url":"classes/RequestController.html","classes":"tsd-kind-class"},{"id":118,"kind":512,"name":"constructor","url":"classes/RequestController.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"RequestController"},{"id":119,"kind":1024,"name":"baseURL","url":"classes/RequestController.html#baseURL","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":120,"kind":1024,"name":"basePath","url":"classes/RequestController.html#basePath","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":121,"kind":1024,"name":"headers","url":"classes/RequestController.html#headers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":122,"kind":1024,"name":"request","url":"classes/RequestController.html#request","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":123,"kind":1024,"name":"lastResponseHeaders","url":"classes/RequestController.html#lastResponseHeaders","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":124,"kind":1024,"name":"isLastResponseHeadersSet","url":"classes/RequestController.html#isLastResponseHeadersSet","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":125,"kind":1024,"name":"exposeErrorCause","url":"classes/RequestController.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":126,"kind":2048,"name":"isLastReponseHeadersSet","url":"classes/RequestController.html#isLastReponseHeadersSet","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":127,"kind":2048,"name":"getLastResponseHeaders","url":"classes/RequestController.html#getLastResponseHeaders","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":128,"kind":2048,"name":"setLastResponseHeaders","url":"classes/RequestController.html#setLastResponseHeaders","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":129,"kind":2048,"name":"setBaseUrl","url":"classes/RequestController.html#setBaseUrl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":130,"kind":2048,"name":"get","url":"classes/RequestController.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":131,"kind":2048,"name":"post","url":"classes/RequestController.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":132,"kind":2048,"name":"put","url":"classes/RequestController.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":133,"kind":2048,"name":"delete","url":"classes/RequestController.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":134,"kind":128,"name":"Rewards","url":"classes/Rewards.html","classes":"tsd-kind-class"},{"id":135,"kind":512,"name":"constructor","url":"classes/Rewards.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Rewards"},{"id":136,"kind":2048,"name":"list","url":"classes/Rewards.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":137,"kind":2048,"name":"create","url":"classes/Rewards.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":138,"kind":2048,"name":"get","url":"classes/Rewards.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":139,"kind":2048,"name":"update","url":"classes/Rewards.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":140,"kind":2048,"name":"delete","url":"classes/Rewards.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":141,"kind":2048,"name":"listAssignments","url":"classes/Rewards.html#listAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":142,"kind":2048,"name":"createAssignment","url":"classes/Rewards.html#createAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":143,"kind":2048,"name":"updateAssignment","url":"classes/Rewards.html#updateAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":144,"kind":2048,"name":"deleteAssignment","url":"classes/Rewards.html#deleteAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":145,"kind":128,"name":"Segments","url":"classes/Segments.html","classes":"tsd-kind-class"},{"id":146,"kind":512,"name":"constructor","url":"classes/Segments.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Segments"},{"id":147,"kind":2048,"name":"create","url":"classes/Segments.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":148,"kind":2048,"name":"get","url":"classes/Segments.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":149,"kind":2048,"name":"delete","url":"classes/Segments.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":150,"kind":2048,"name":"list","url":"classes/Segments.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":151,"kind":128,"name":"ValidationRules","url":"classes/ValidationRules.html","classes":"tsd-kind-class"},{"id":152,"kind":512,"name":"constructor","url":"classes/ValidationRules.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ValidationRules"},{"id":153,"kind":2048,"name":"create","url":"classes/ValidationRules.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":154,"kind":2048,"name":"get","url":"classes/ValidationRules.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":155,"kind":2048,"name":"update","url":"classes/ValidationRules.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":156,"kind":2048,"name":"delete","url":"classes/ValidationRules.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":157,"kind":2048,"name":"createAssignment","url":"classes/ValidationRules.html#createAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":158,"kind":2048,"name":"deleteAssignment","url":"classes/ValidationRules.html#deleteAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":159,"kind":2048,"name":"validate","url":"classes/ValidationRules.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":160,"kind":2048,"name":"list","url":"classes/ValidationRules.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":161,"kind":2048,"name":"listAssignments","url":"classes/ValidationRules.html#listAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":162,"kind":128,"name":"Validations","url":"classes/Validations.html","classes":"tsd-kind-class"},{"id":163,"kind":512,"name":"constructor","url":"classes/Validations.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Validations"},{"id":164,"kind":2048,"name":"validateVoucher","url":"classes/Validations.html#validateVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":165,"kind":2048,"name":"validate","url":"classes/Validations.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":166,"kind":2048,"name":"validateStackable","url":"classes/Validations.html#validateStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":167,"kind":128,"name":"VoucherifyError","url":"classes/VoucherifyError.html","classes":"tsd-kind-class"},{"id":168,"kind":512,"name":"constructor","url":"classes/VoucherifyError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"VoucherifyError"},{"id":169,"kind":1024,"name":"code","url":"classes/VoucherifyError.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":170,"kind":1024,"name":"key","url":"classes/VoucherifyError.html#key","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":171,"kind":1024,"name":"details","url":"classes/VoucherifyError.html#details","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":172,"kind":1024,"name":"request_id","url":"classes/VoucherifyError.html#request_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":173,"kind":1024,"name":"resource_id","url":"classes/VoucherifyError.html#resource_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":174,"kind":1024,"name":"resource_type","url":"classes/VoucherifyError.html#resource_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":175,"kind":1024,"name":"related_object_ids","url":"classes/VoucherifyError.html#related_object_ids","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":176,"kind":1024,"name":"related_object_type","url":"classes/VoucherifyError.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":177,"kind":1024,"name":"related_object_total","url":"classes/VoucherifyError.html#related_object_total","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":178,"kind":1024,"name":"cause","url":"classes/VoucherifyError.html#cause","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":179,"kind":128,"name":"Vouchers","url":"classes/Vouchers.html","classes":"tsd-kind-class"},{"id":180,"kind":512,"name":"constructor","url":"classes/Vouchers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Vouchers"},{"id":181,"kind":1024,"name":"qualifications","url":"classes/Vouchers.html#qualifications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vouchers"},{"id":182,"kind":1024,"name":"balance","url":"classes/Vouchers.html#balance","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vouchers"},{"id":183,"kind":2048,"name":"create","url":"classes/Vouchers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":184,"kind":2048,"name":"get","url":"classes/Vouchers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":185,"kind":2048,"name":"update","url":"classes/Vouchers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":186,"kind":2048,"name":"delete","url":"classes/Vouchers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":187,"kind":2048,"name":"list","url":"classes/Vouchers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":188,"kind":2048,"name":"enable","url":"classes/Vouchers.html#enable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":189,"kind":2048,"name":"disable","url":"classes/Vouchers.html#disable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":190,"kind":2048,"name":"import","url":"classes/Vouchers.html#import","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":191,"kind":2048,"name":"bulkUpdateMetadata","url":"classes/Vouchers.html#bulkUpdateMetadata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":192,"kind":2048,"name":"bulkUpdate","url":"classes/Vouchers.html#bulkUpdate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":193,"kind":2048,"name":"releaseValidationSession","url":"classes/Vouchers.html#releaseValidationSession","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":194,"kind":256,"name":"SimpleCustomer","url":"interfaces/SimpleCustomer.html","classes":"tsd-kind-interface"},{"id":195,"kind":1024,"name":"id","url":"interfaces/SimpleCustomer.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":196,"kind":1024,"name":"name","url":"interfaces/SimpleCustomer.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":197,"kind":1024,"name":"email","url":"interfaces/SimpleCustomer.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":198,"kind":1024,"name":"source_id","url":"interfaces/SimpleCustomer.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":199,"kind":1024,"name":"metadata","url":"interfaces/SimpleCustomer.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":200,"kind":1024,"name":"object","url":"interfaces/SimpleCustomer.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":201,"kind":256,"name":"CustomerObject","url":"interfaces/CustomerObject.html","classes":"tsd-kind-interface"},{"id":202,"kind":1024,"name":"id","url":"interfaces/CustomerObject.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":203,"kind":1024,"name":"source_id","url":"interfaces/CustomerObject.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":204,"kind":1024,"name":"name","url":"interfaces/CustomerObject.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":205,"kind":1024,"name":"email","url":"interfaces/CustomerObject.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":206,"kind":1024,"name":"phone","url":"interfaces/CustomerObject.html#phone","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":207,"kind":1024,"name":"description","url":"interfaces/CustomerObject.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":208,"kind":1024,"name":"address","url":"interfaces/CustomerObject.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":209,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":210,"kind":1024,"name":"city","url":"interfaces/CustomerObject.html#__type.city","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":211,"kind":1024,"name":"state","url":"interfaces/CustomerObject.html#__type.state","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":212,"kind":1024,"name":"line_1","url":"interfaces/CustomerObject.html#__type.line_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":213,"kind":1024,"name":"line_2","url":"interfaces/CustomerObject.html#__type.line_2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":214,"kind":1024,"name":"country","url":"interfaces/CustomerObject.html#__type.country","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":215,"kind":1024,"name":"postal_code","url":"interfaces/CustomerObject.html#__type.postal_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":216,"kind":1024,"name":"summary","url":"interfaces/CustomerObject.html#summary","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":217,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":218,"kind":1024,"name":"redemptions","url":"interfaces/CustomerObject.html#__type-2.redemptions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":219,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":220,"kind":1024,"name":"total_redeemed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_redeemed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":221,"kind":1024,"name":"total_failed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_failed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":222,"kind":1024,"name":"total_succeeded","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_succeeded","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":223,"kind":1024,"name":"total_rolled_back","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rolled_back","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":224,"kind":1024,"name":"total_rollback_failed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rollback_failed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":225,"kind":1024,"name":"total_rollback_succeeded","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rollback_succeeded","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":226,"kind":1024,"name":"gift","url":"interfaces/CustomerObject.html#__type-2.__type-4.gift","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":227,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":228,"kind":1024,"name":"redeemed_amount","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5.redeemed_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":229,"kind":1024,"name":"amount_to_go","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5.amount_to_go","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":230,"kind":1024,"name":"loyalty","url":"interfaces/CustomerObject.html#__type-2.__type-4.loyalty-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":231,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":232,"kind":1024,"name":"redeemed_points","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":233,"kind":1024,"name":"points_to_go","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6.points_to_go","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":234,"kind":1024,"name":"orders","url":"interfaces/CustomerObject.html#__type-2.orders","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":235,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":236,"kind":1024,"name":"total_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":237,"kind":1024,"name":"total_count","url":"interfaces/CustomerObject.html#__type-2.__type-3.total_count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":238,"kind":1024,"name":"average_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.average_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":239,"kind":1024,"name":"last_order_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.last_order_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":240,"kind":1024,"name":"last_order_date","url":"interfaces/CustomerObject.html#__type-2.__type-3.last_order_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":241,"kind":1024,"name":"loyalty","url":"interfaces/CustomerObject.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":242,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":243,"kind":1024,"name":"points","url":"interfaces/CustomerObject.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":244,"kind":1024,"name":"referred_customers","url":"interfaces/CustomerObject.html#__type-1.referred_customers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":245,"kind":1024,"name":"campaigns","url":"interfaces/CustomerObject.html#__type-1.campaigns","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":246,"kind":1024,"name":"metadata","url":"interfaces/CustomerObject.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":247,"kind":1024,"name":"created_at","url":"interfaces/CustomerObject.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":248,"kind":1024,"name":"object","url":"interfaces/CustomerObject.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":249,"kind":4194304,"name":"CustomerUnconfirmed","url":"modules.html#CustomerUnconfirmed","classes":"tsd-kind-type-alias"},{"id":250,"kind":256,"name":"CustomerRequest","url":"interfaces/CustomerRequest.html","classes":"tsd-kind-interface"},{"id":251,"kind":1024,"name":"id","url":"interfaces/CustomerRequest.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":252,"kind":1024,"name":"source_id","url":"interfaces/CustomerRequest.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":253,"kind":1024,"name":"name","url":"interfaces/CustomerRequest.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":254,"kind":1024,"name":"email","url":"interfaces/CustomerRequest.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":255,"kind":1024,"name":"metadata","url":"interfaces/CustomerRequest.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":256,"kind":1024,"name":"description","url":"interfaces/CustomerRequest.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":257,"kind":1024,"name":"address","url":"interfaces/CustomerRequest.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":258,"kind":65536,"name":"__type","url":"interfaces/CustomerRequest.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":259,"kind":1024,"name":"city","url":"interfaces/CustomerRequest.html#__type.city","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":260,"kind":1024,"name":"state","url":"interfaces/CustomerRequest.html#__type.state","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":261,"kind":1024,"name":"line_1","url":"interfaces/CustomerRequest.html#__type.line_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":262,"kind":1024,"name":"line_2","url":"interfaces/CustomerRequest.html#__type.line_2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":263,"kind":1024,"name":"country","url":"interfaces/CustomerRequest.html#__type.country","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":264,"kind":1024,"name":"postal_code","url":"interfaces/CustomerRequest.html#__type.postal_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":265,"kind":1024,"name":"phone","url":"interfaces/CustomerRequest.html#phone","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":266,"kind":1024,"name":"birthdate","url":"interfaces/CustomerRequest.html#birthdate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":267,"kind":256,"name":"CustomersCommonListRequest","url":"interfaces/CustomersCommonListRequest.html","classes":"tsd-kind-interface"},{"id":268,"kind":1024,"name":"limit","url":"interfaces/CustomersCommonListRequest.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":269,"kind":1024,"name":"page","url":"interfaces/CustomersCommonListRequest.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":270,"kind":1024,"name":"email","url":"interfaces/CustomersCommonListRequest.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":271,"kind":1024,"name":"city","url":"interfaces/CustomersCommonListRequest.html#city","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":272,"kind":1024,"name":"name","url":"interfaces/CustomersCommonListRequest.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":273,"kind":1024,"name":"order","url":"interfaces/CustomersCommonListRequest.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":274,"kind":1024,"name":"starting_after","url":"interfaces/CustomersCommonListRequest.html#starting_after","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":275,"kind":256,"name":"CustomersCommonListResponse","url":"interfaces/CustomersCommonListResponse.html","classes":"tsd-kind-interface"},{"id":276,"kind":1024,"name":"object","url":"interfaces/CustomersCommonListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":277,"kind":1024,"name":"total","url":"interfaces/CustomersCommonListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":278,"kind":1024,"name":"data_ref","url":"interfaces/CustomersCommonListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":279,"kind":1024,"name":"customers","url":"interfaces/CustomersCommonListResponse.html#customers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":280,"kind":1024,"name":"has_more","url":"interfaces/CustomersCommonListResponse.html#has_more","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":281,"kind":256,"name":"CustomerActivitiesListQueryParams","url":"interfaces/CustomerActivitiesListQueryParams.html","classes":"tsd-kind-interface"},{"id":282,"kind":1024,"name":"limit","url":"interfaces/CustomerActivitiesListQueryParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":283,"kind":1024,"name":"order","url":"interfaces/CustomerActivitiesListQueryParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":284,"kind":1024,"name":"starting_after","url":"interfaces/CustomerActivitiesListQueryParams.html#starting_after","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":285,"kind":1024,"name":"starting_after_id","url":"interfaces/CustomerActivitiesListQueryParams.html#starting_after_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":286,"kind":1024,"name":"campaign_type","url":"interfaces/CustomerActivitiesListQueryParams.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":287,"kind":1024,"name":"campaign_id","url":"interfaces/CustomerActivitiesListQueryParams.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":288,"kind":256,"name":"CustomerActivitiesListResponse","url":"interfaces/CustomerActivitiesListResponse.html","classes":"tsd-kind-interface"},{"id":289,"kind":1024,"name":"object","url":"interfaces/CustomerActivitiesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":290,"kind":1024,"name":"total","url":"interfaces/CustomerActivitiesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":291,"kind":1024,"name":"data_ref","url":"interfaces/CustomerActivitiesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":292,"kind":1024,"name":"data","url":"interfaces/CustomerActivitiesListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":293,"kind":4194304,"name":"CustomersCreateBody","url":"modules.html#CustomersCreateBody","classes":"tsd-kind-type-alias"},{"id":294,"kind":4194304,"name":"CustomersCreateResponse","url":"modules.html#CustomersCreateResponse","classes":"tsd-kind-type-alias"},{"id":295,"kind":4194304,"name":"CustomersGetResponse","url":"modules.html#CustomersGetResponse","classes":"tsd-kind-type-alias"},{"id":296,"kind":4194304,"name":"CustomersListParams","url":"modules.html#CustomersListParams","classes":"tsd-kind-type-alias"},{"id":297,"kind":4194304,"name":"CustomersListResponse","url":"modules.html#CustomersListResponse","classes":"tsd-kind-type-alias"},{"id":298,"kind":4194304,"name":"CustomersScrollParams","url":"modules.html#CustomersScrollParams","classes":"tsd-kind-type-alias"},{"id":299,"kind":4194304,"name":"CustomersScrollResponse","url":"modules.html#CustomersScrollResponse","classes":"tsd-kind-type-alias"},{"id":300,"kind":4194304,"name":"CustomersScrollYield","url":"modules.html#CustomersScrollYield","classes":"tsd-kind-type-alias"},{"id":301,"kind":4194304,"name":"CustomersUpdateParams","url":"modules.html#CustomersUpdateParams","classes":"tsd-kind-type-alias"},{"id":302,"kind":4194304,"name":"CustomersUpdateResponse","url":"modules.html#CustomersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":303,"kind":4194304,"name":"CustomersUpdateConsentsBody","url":"modules.html#CustomersUpdateConsentsBody","classes":"tsd-kind-type-alias"},{"id":304,"kind":256,"name":"BalanceCreateParams","url":"interfaces/BalanceCreateParams.html","classes":"tsd-kind-interface"},{"id":305,"kind":1024,"name":"amount","url":"interfaces/BalanceCreateParams.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateParams"},{"id":306,"kind":256,"name":"BalanceCreateResponse","url":"interfaces/BalanceCreateResponse.html","classes":"tsd-kind-interface"},{"id":307,"kind":1024,"name":"amount","url":"interfaces/BalanceCreateResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":308,"kind":1024,"name":"total","url":"interfaces/BalanceCreateResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":309,"kind":1024,"name":"balance","url":"interfaces/BalanceCreateResponse.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":310,"kind":1024,"name":"type","url":"interfaces/BalanceCreateResponse.html#type-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":311,"kind":1024,"name":"object","url":"interfaces/BalanceCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":312,"kind":1024,"name":"related_object","url":"interfaces/BalanceCreateResponse.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":313,"kind":65536,"name":"__type","url":"interfaces/BalanceCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":314,"kind":1024,"name":"type","url":"interfaces/BalanceCreateResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"BalanceCreateResponse.__type"},{"id":315,"kind":1024,"name":"id","url":"interfaces/BalanceCreateResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"BalanceCreateResponse.__type"},{"id":316,"kind":4194304,"name":"ClientSideCustomersUpdateConsentsBody","url":"modules.html#ClientSideCustomersUpdateConsentsBody","classes":"tsd-kind-type-alias"},{"id":317,"kind":4194304,"name":"ClientSideCustomersCreateParams","url":"modules.html#ClientSideCustomersCreateParams","classes":"tsd-kind-type-alias"},{"id":318,"kind":4194304,"name":"ClientSideCustomersCreateResponse","url":"modules.html#ClientSideCustomersCreateResponse","classes":"tsd-kind-type-alias"},{"id":319,"kind":256,"name":"ClientSideValidateParams","url":"interfaces/ClientSideValidateParams.html","classes":"tsd-kind-interface"},{"id":320,"kind":1024,"name":"code","url":"interfaces/ClientSideValidateParams.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":321,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideValidateParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":322,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateParams.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":323,"kind":1024,"name":"items","url":"interfaces/ClientSideValidateParams.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":324,"kind":1024,"name":"orderMetadata","url":"interfaces/ClientSideValidateParams.html#orderMetadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":325,"kind":1024,"name":"customer","url":"interfaces/ClientSideValidateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":326,"kind":1024,"name":"reward","url":"interfaces/ClientSideValidateParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":327,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":328,"kind":1024,"name":"id","url":"interfaces/ClientSideValidateParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateParams.__type"},{"id":329,"kind":1024,"name":"metadata","url":"interfaces/ClientSideValidateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":330,"kind":1024,"name":"session_type","url":"interfaces/ClientSideValidateParams.html#session_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":331,"kind":1024,"name":"session_key","url":"interfaces/ClientSideValidateParams.html#session_key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":332,"kind":1024,"name":"session_ttl","url":"interfaces/ClientSideValidateParams.html#session_ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":333,"kind":1024,"name":"session_ttl_unit","url":"interfaces/ClientSideValidateParams.html#session_ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":334,"kind":4194304,"name":"ClientSideListVouchersParams","url":"modules.html#ClientSideListVouchersParams","classes":"tsd-kind-type-alias"},{"id":335,"kind":4194304,"name":"ClientSideVoucherListing","url":"modules.html#ClientSideVoucherListing","classes":"tsd-kind-type-alias"},{"id":336,"kind":256,"name":"ClientSideListVouchersResponse","url":"interfaces/ClientSideListVouchersResponse.html","classes":"tsd-kind-interface"},{"id":337,"kind":1024,"name":"object","url":"interfaces/ClientSideListVouchersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":338,"kind":1024,"name":"total","url":"interfaces/ClientSideListVouchersResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":339,"kind":1024,"name":"data_ref","url":"interfaces/ClientSideListVouchersResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":340,"kind":1024,"name":"vouchers","url":"interfaces/ClientSideListVouchersResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":341,"kind":256,"name":"ClientSideValidateResponse","url":"interfaces/ClientSideValidateResponse.html","classes":"tsd-kind-interface"},{"id":342,"kind":1024,"name":"code","url":"interfaces/ClientSideValidateResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":343,"kind":1024,"name":"valid","url":"interfaces/ClientSideValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":344,"kind":1024,"name":"discount","url":"interfaces/ClientSideValidateResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":345,"kind":1024,"name":"applicable_to","url":"interfaces/ClientSideValidateResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":346,"kind":1024,"name":"order","url":"interfaces/ClientSideValidateResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":347,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":348,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.amount-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":349,"kind":1024,"name":"discount_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":350,"kind":1024,"name":"total_discount_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":351,"kind":1024,"name":"total_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":352,"kind":1024,"name":"items","url":"interfaces/ClientSideValidateResponse.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":353,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideValidateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":354,"kind":1024,"name":"campaign_id","url":"interfaces/ClientSideValidateResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":355,"kind":1024,"name":"loyalty","url":"interfaces/ClientSideValidateResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":356,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":357,"kind":1024,"name":"points_cost","url":"interfaces/ClientSideValidateResponse.html#__type-1.points_cost","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":358,"kind":1024,"name":"gift","url":"interfaces/ClientSideValidateResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":359,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":360,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":361,"kind":1024,"name":"balance","url":"interfaces/ClientSideValidateResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":362,"kind":1024,"name":"promotions","url":"interfaces/ClientSideValidateResponse.html#promotions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":363,"kind":256,"name":"ClientSideRedeemPayload","url":"interfaces/ClientSideRedeemPayload.html","classes":"tsd-kind-interface"},{"id":364,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideRedeemPayload.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":365,"kind":1024,"name":"customer","url":"interfaces/ClientSideRedeemPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":366,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemPayload.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":367,"kind":1024,"name":"metadata","url":"interfaces/ClientSideRedeemPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":368,"kind":1024,"name":"reward","url":"interfaces/ClientSideRedeemPayload.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":369,"kind":65536,"name":"__type","url":"interfaces/ClientSideRedeemPayload.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":370,"kind":1024,"name":"id","url":"interfaces/ClientSideRedeemPayload.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideRedeemPayload.__type"},{"id":371,"kind":1024,"name":"session","url":"interfaces/ClientSideRedeemPayload.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":372,"kind":256,"name":"ClientSideRedeemResponse","url":"interfaces/ClientSideRedeemResponse.html","classes":"tsd-kind-interface"},{"id":373,"kind":1024,"name":"id","url":"interfaces/ClientSideRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":374,"kind":1024,"name":"object","url":"interfaces/ClientSideRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":375,"kind":1024,"name":"date","url":"interfaces/ClientSideRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":376,"kind":1024,"name":"customer_id","url":"interfaces/ClientSideRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":377,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":378,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":379,"kind":1024,"name":"metadata","url":"interfaces/ClientSideRedeemResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":380,"kind":1024,"name":"result","url":"interfaces/ClientSideRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":381,"kind":1024,"name":"voucher","url":"interfaces/ClientSideRedeemResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":382,"kind":256,"name":"ClientSidePublishPayload","url":"interfaces/ClientSidePublishPayload.html","classes":"tsd-kind-interface"},{"id":383,"kind":1024,"name":"source_id","url":"interfaces/ClientSidePublishPayload.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":384,"kind":1024,"name":"channel","url":"interfaces/ClientSidePublishPayload.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":385,"kind":1024,"name":"customer","url":"interfaces/ClientSidePublishPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":386,"kind":1024,"name":"voucher","url":"interfaces/ClientSidePublishPayload.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":387,"kind":1024,"name":"metadata","url":"interfaces/ClientSidePublishPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":388,"kind":4194304,"name":"ClientSidePublishPreparedPayload","url":"modules.html#ClientSidePublishPreparedPayload","classes":"tsd-kind-type-alias"},{"id":389,"kind":256,"name":"ClientSidePublishQueryParams","url":"interfaces/ClientSidePublishQueryParams.html","classes":"tsd-kind-interface"},{"id":390,"kind":1024,"name":"join_once","url":"interfaces/ClientSidePublishQueryParams.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishQueryParams"},{"id":391,"kind":1024,"name":"campaign","url":"interfaces/ClientSidePublishQueryParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishQueryParams"},{"id":392,"kind":256,"name":"ClientSidePublishCampaign","url":"interfaces/ClientSidePublishCampaign.html","classes":"tsd-kind-interface"},{"id":393,"kind":1024,"name":"name","url":"interfaces/ClientSidePublishCampaign.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishCampaign"},{"id":394,"kind":1024,"name":"count","url":"interfaces/ClientSidePublishCampaign.html#count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishCampaign"},{"id":395,"kind":4194304,"name":"ClientSidePublishResponse","url":"modules.html#ClientSidePublishResponse","classes":"tsd-kind-type-alias"},{"id":396,"kind":256,"name":"ClientSideTrackLoyalty","url":"interfaces/ClientSideTrackLoyalty.html","classes":"tsd-kind-interface"},{"id":397,"kind":1024,"name":"code","url":"interfaces/ClientSideTrackLoyalty.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackLoyalty"},{"id":398,"kind":256,"name":"ClientSideTrackReferral","url":"interfaces/ClientSideTrackReferral.html","classes":"tsd-kind-interface"},{"id":399,"kind":1024,"name":"code","url":"interfaces/ClientSideTrackReferral.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackReferral"},{"id":400,"kind":256,"name":"ClientSideTrackPayload","url":"interfaces/ClientSideTrackPayload.html","classes":"tsd-kind-interface"},{"id":401,"kind":1024,"name":"event","url":"interfaces/ClientSideTrackPayload.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":402,"kind":1024,"name":"metadata","url":"interfaces/ClientSideTrackPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":403,"kind":1024,"name":"customer","url":"interfaces/ClientSideTrackPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":404,"kind":1024,"name":"loyalty","url":"interfaces/ClientSideTrackPayload.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":405,"kind":1024,"name":"referral","url":"interfaces/ClientSideTrackPayload.html#referral","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":406,"kind":256,"name":"ClientSideTrackResponse","url":"interfaces/ClientSideTrackResponse.html","classes":"tsd-kind-interface"},{"id":407,"kind":1024,"name":"object","url":"interfaces/ClientSideTrackResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackResponse"},{"id":408,"kind":1024,"name":"type","url":"interfaces/ClientSideTrackResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackResponse"},{"id":409,"kind":4194304,"name":"ClientSideRedeemOrder","url":"modules.html#ClientSideRedeemOrder","classes":"tsd-kind-type-alias"},{"id":410,"kind":256,"name":"ClientSideRedeemWidgetPayload","url":"interfaces/ClientSideRedeemWidgetPayload.html","classes":"tsd-kind-interface"},{"id":411,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemWidgetPayload.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemWidgetPayload"},{"id":412,"kind":65536,"name":"__type","url":"interfaces/ClientSideRedeemWidgetPayload.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideRedeemWidgetPayload"},{"id":413,"kind":1024,"name":"amount","url":"interfaces/ClientSideRedeemWidgetPayload.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideRedeemWidgetPayload.__type"},{"id":414,"kind":4194304,"name":"ClientSideTrackCustomer","url":"modules.html#ClientSideTrackCustomer","classes":"tsd-kind-type-alias"},{"id":415,"kind":4194304,"name":"ClientSideConsentsListResponse","url":"modules.html#ClientSideConsentsListResponse","classes":"tsd-kind-type-alias"},{"id":416,"kind":4194304,"name":"ClientSideValidationsValidateStackableParams","url":"modules.html#ClientSideValidationsValidateStackableParams","classes":"tsd-kind-type-alias"},{"id":417,"kind":4194304,"name":"ClientSideValidationValidateStackableResponse","url":"modules.html#ClientSideValidationValidateStackableResponse","classes":"tsd-kind-type-alias"},{"id":418,"kind":4194304,"name":"ClientSideRedemptionsRedeemStackableParams","url":"modules.html#ClientSideRedemptionsRedeemStackableParams","classes":"tsd-kind-type-alias"},{"id":419,"kind":4194304,"name":"ClientSideRedemptionsRedeemStackableResponse","url":"modules.html#ClientSideRedemptionsRedeemStackableResponse","classes":"tsd-kind-type-alias"},{"id":420,"kind":256,"name":"RedemptionsRedeemBody","url":"interfaces/RedemptionsRedeemBody.html","classes":"tsd-kind-interface"},{"id":421,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemBody.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":422,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":423,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":424,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemBody.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":425,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRedeemBody.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":426,"kind":1024,"name":"gift","url":"interfaces/RedemptionsRedeemBody.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":427,"kind":1024,"name":"session","url":"interfaces/RedemptionsRedeemBody.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":428,"kind":256,"name":"RedemptionsRedeemResponse","url":"interfaces/RedemptionsRedeemResponse.html","classes":"tsd-kind-interface"},{"id":429,"kind":1024,"name":"id","url":"interfaces/RedemptionsRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":430,"kind":1024,"name":"object","url":"interfaces/RedemptionsRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":431,"kind":1024,"name":"date","url":"interfaces/RedemptionsRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":432,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":433,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":434,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":435,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":436,"kind":1024,"name":"result","url":"interfaces/RedemptionsRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":437,"kind":1024,"name":"voucher","url":"interfaces/RedemptionsRedeemResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":438,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":439,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRedeemResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":440,"kind":1024,"name":"related_object_type","url":"interfaces/RedemptionsRedeemResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":441,"kind":1024,"name":"gift","url":"interfaces/RedemptionsRedeemResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":442,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":443,"kind":1024,"name":"amount","url":"interfaces/RedemptionsRedeemResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemResponse.__type"},{"id":444,"kind":1024,"name":"loyalty_card","url":"interfaces/RedemptionsRedeemResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":445,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":446,"kind":1024,"name":"points","url":"interfaces/RedemptionsRedeemResponse.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemResponse.__type"},{"id":447,"kind":1024,"name":"promotion_tier","url":"interfaces/RedemptionsRedeemResponse.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":448,"kind":1024,"name":"failure_code","url":"interfaces/RedemptionsRedeemResponse.html#failure_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":449,"kind":1024,"name":"failure_message","url":"interfaces/RedemptionsRedeemResponse.html#failure_message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":450,"kind":256,"name":"RedemptionsListParams","url":"interfaces/RedemptionsListParams.html","classes":"tsd-kind-interface"},{"id":451,"kind":1024,"name":"limit","url":"interfaces/RedemptionsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":452,"kind":1024,"name":"page","url":"interfaces/RedemptionsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":453,"kind":1024,"name":"result","url":"interfaces/RedemptionsListParams.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":454,"kind":1024,"name":"campaign","url":"interfaces/RedemptionsListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":455,"kind":1024,"name":"customer","url":"interfaces/RedemptionsListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":456,"kind":1024,"name":"created_at","url":"interfaces/RedemptionsListParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":457,"kind":65536,"name":"__type","url":"interfaces/RedemptionsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":458,"kind":1024,"name":"before","url":"interfaces/RedemptionsListParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsListParams.__type"},{"id":459,"kind":1024,"name":"after","url":"interfaces/RedemptionsListParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsListParams.__type"},{"id":460,"kind":256,"name":"Redemption","url":"interfaces/Redemption.html","classes":"tsd-kind-interface"},{"id":461,"kind":1024,"name":"id","url":"interfaces/Redemption.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":462,"kind":1024,"name":"object","url":"interfaces/Redemption.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":463,"kind":1024,"name":"date","url":"interfaces/Redemption.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":464,"kind":1024,"name":"customer_id","url":"interfaces/Redemption.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":465,"kind":1024,"name":"tracking_id","url":"interfaces/Redemption.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":466,"kind":1024,"name":"order","url":"interfaces/Redemption.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":467,"kind":1024,"name":"metadata","url":"interfaces/Redemption.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":468,"kind":1024,"name":"result","url":"interfaces/Redemption.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":469,"kind":1024,"name":"failure_code","url":"interfaces/Redemption.html#failure_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":470,"kind":1024,"name":"failure_message","url":"interfaces/Redemption.html#failure_message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":471,"kind":1024,"name":"customer","url":"interfaces/Redemption.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":472,"kind":1024,"name":"related_object_type","url":"interfaces/Redemption.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":473,"kind":1024,"name":"voucher","url":"interfaces/Redemption.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":474,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":475,"kind":1024,"name":"code","url":"interfaces/Redemption.html#__type-2.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":476,"kind":1024,"name":"campaign","url":"interfaces/Redemption.html#__type-2.campaign","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":477,"kind":1024,"name":"id","url":"interfaces/Redemption.html#__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":478,"kind":1024,"name":"object","url":"interfaces/Redemption.html#__type-2.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":479,"kind":1024,"name":"campaign_id","url":"interfaces/Redemption.html#__type-2.campaign_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":480,"kind":1024,"name":"gift","url":"interfaces/Redemption.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":481,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":482,"kind":1024,"name":"amount","url":"interfaces/Redemption.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":483,"kind":1024,"name":"loyalty_card","url":"interfaces/Redemption.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":484,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":485,"kind":1024,"name":"points","url":"interfaces/Redemption.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":486,"kind":256,"name":"RedemptionsListResponse","url":"interfaces/RedemptionsListResponse.html","classes":"tsd-kind-interface"},{"id":487,"kind":1024,"name":"object","url":"interfaces/RedemptionsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":488,"kind":1024,"name":"total","url":"interfaces/RedemptionsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":489,"kind":1024,"name":"data_ref","url":"interfaces/RedemptionsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":490,"kind":1024,"name":"redemptions","url":"interfaces/RedemptionsListResponse.html#redemptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":491,"kind":256,"name":"RedemptionsGetForVoucherResponse","url":"interfaces/RedemptionsGetForVoucherResponse.html","classes":"tsd-kind-interface"},{"id":492,"kind":1024,"name":"object","url":"interfaces/RedemptionsGetForVoucherResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":493,"kind":1024,"name":"total","url":"interfaces/RedemptionsGetForVoucherResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":494,"kind":1024,"name":"data_ref","url":"interfaces/RedemptionsGetForVoucherResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":495,"kind":1024,"name":"quantity","url":"interfaces/RedemptionsGetForVoucherResponse.html#quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":496,"kind":1024,"name":"redeemed_quantity","url":"interfaces/RedemptionsGetForVoucherResponse.html#redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":497,"kind":1024,"name":"redeemed_amount","url":"interfaces/RedemptionsGetForVoucherResponse.html#redeemed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":498,"kind":1024,"name":"redemption_entries","url":"interfaces/RedemptionsGetForVoucherResponse.html#redemption_entries","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":499,"kind":256,"name":"RedemptionsRollbackParams","url":"interfaces/RedemptionsRollbackParams.html","classes":"tsd-kind-interface"},{"id":500,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackParams.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":501,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":502,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":503,"kind":256,"name":"RedemptionsRollbackQueryParams","url":"interfaces/RedemptionsRollbackQueryParams.html","classes":"tsd-kind-interface"},{"id":504,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackQueryParams.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackQueryParams"},{"id":505,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackQueryParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackQueryParams"},{"id":506,"kind":256,"name":"RedemptionsRollbackPayload","url":"interfaces/RedemptionsRollbackPayload.html","classes":"tsd-kind-interface"},{"id":507,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackPayload"},{"id":508,"kind":256,"name":"RedemptionsRollbackResponse","url":"interfaces/RedemptionsRollbackResponse.html","classes":"tsd-kind-interface"},{"id":509,"kind":1024,"name":"id","url":"interfaces/RedemptionsRollbackResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":510,"kind":1024,"name":"object","url":"interfaces/RedemptionsRollbackResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":511,"kind":1024,"name":"date","url":"interfaces/RedemptionsRollbackResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":512,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRollbackResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":513,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":514,"kind":1024,"name":"redemption","url":"interfaces/RedemptionsRollbackResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":515,"kind":1024,"name":"amount","url":"interfaces/RedemptionsRollbackResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":516,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackResponse.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":517,"kind":1024,"name":"result","url":"interfaces/RedemptionsRollbackResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":518,"kind":1024,"name":"voucher","url":"interfaces/RedemptionsRollbackResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":519,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":520,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRollbackResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":521,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRollbackResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":522,"kind":1024,"name":"assignment_id","url":"interfaces/RedemptionsRollbackResponse.html#__type.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackResponse.__type"},{"id":523,"kind":1024,"name":"object","url":"interfaces/RedemptionsRollbackResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackResponse.__type"},{"id":524,"kind":4194304,"name":"SimpleRollback","url":"modules.html#SimpleRollback","classes":"tsd-kind-type-alias"},{"id":525,"kind":256,"name":"RedemptionsRedeemStackableParams","url":"interfaces/RedemptionsRedeemStackableParams.html","classes":"tsd-kind-interface"},{"id":526,"kind":1024,"name":"options","url":"interfaces/RedemptionsRedeemStackableParams.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":527,"kind":1024,"name":"redeemables","url":"interfaces/RedemptionsRedeemStackableParams.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":528,"kind":1024,"name":"session","url":"interfaces/RedemptionsRedeemStackableParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":529,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":530,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemStackableParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":531,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemStackableParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":532,"kind":4194304,"name":"RedemptionsRedeemStackableRedemptionResult","url":"modules.html#RedemptionsRedeemStackableRedemptionResult","classes":"tsd-kind-type-alias"},{"id":533,"kind":4194304,"name":"RedemptionsRedeemStackableOrderResponse","url":"modules.html#RedemptionsRedeemStackableOrderResponse","classes":"tsd-kind-type-alias"},{"id":534,"kind":256,"name":"RedemptionsRedeemStackableResponse","url":"interfaces/RedemptionsRedeemStackableResponse.html","classes":"tsd-kind-interface"},{"id":535,"kind":1024,"name":"redemptions","url":"interfaces/RedemptionsRedeemStackableResponse.html#redemptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":536,"kind":1024,"name":"parent_redemption","url":"interfaces/RedemptionsRedeemStackableResponse.html#parent_redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":537,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":538,"kind":1024,"name":"id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":539,"kind":1024,"name":"object","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":540,"kind":1024,"name":"date","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":541,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":542,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.tracking_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":543,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":544,"kind":1024,"name":"result","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.result","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":545,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.order-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":546,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":547,"kind":1024,"name":"related_object_type","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.related_object_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":548,"kind":1024,"name":"related_object_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.related_object_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":549,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":550,"kind":256,"name":"RedemptionsRollbackStackableResponse","url":"interfaces/RedemptionsRollbackStackableResponse.html","classes":"tsd-kind-interface"},{"id":551,"kind":1024,"name":"rollbacks","url":"interfaces/RedemptionsRollbackStackableResponse.html#rollbacks","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":552,"kind":1024,"name":"parent_rollback","url":"interfaces/RedemptionsRollbackStackableResponse.html#parent_rollback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":553,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":554,"kind":1024,"name":"id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":555,"kind":1024,"name":"date","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":556,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":557,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.tracking_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":558,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":559,"kind":1024,"name":"result","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.result","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":560,"kind":1024,"name":"order","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.order-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":561,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":562,"kind":1024,"name":"redemption","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":563,"kind":1024,"name":"order","url":"interfaces/RedemptionsRollbackStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":564,"kind":256,"name":"ValidationsValidateVoucherParams","url":"interfaces/ValidationsValidateVoucherParams.html","classes":"tsd-kind-interface"},{"id":565,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateVoucherParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":566,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateVoucherParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":567,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":568,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":569,"kind":1024,"name":"source_id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":570,"kind":1024,"name":"status","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.status","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":571,"kind":1024,"name":"amount","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":572,"kind":1024,"name":"items","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":573,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.customer-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":574,"kind":1024,"name":"referrer","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.referrer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":575,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":576,"kind":1024,"name":"gift","url":"interfaces/ValidationsValidateVoucherParams.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":577,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":578,"kind":1024,"name":"credits","url":"interfaces/ValidationsValidateVoucherParams.html#__type.credits","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":579,"kind":1024,"name":"reward","url":"interfaces/ValidationsValidateVoucherParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":580,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":581,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":582,"kind":1024,"name":"points","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":583,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateVoucherParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":584,"kind":4194304,"name":"ValidationsValidateVoucherResponse","url":"modules.html#ValidationsValidateVoucherResponse","classes":"tsd-kind-type-alias"},{"id":585,"kind":256,"name":"ResponseValidateVoucherTrue","url":"interfaces/ResponseValidateVoucherTrue.html","classes":"tsd-kind-interface"},{"id":586,"kind":1024,"name":"valid","url":"interfaces/ResponseValidateVoucherTrue.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":587,"kind":1024,"name":"code","url":"interfaces/ResponseValidateVoucherTrue.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":588,"kind":1024,"name":"applicable_to","url":"interfaces/ResponseValidateVoucherTrue.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":589,"kind":1024,"name":"inapplicable_to","url":"interfaces/ResponseValidateVoucherTrue.html#inapplicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":590,"kind":1024,"name":"campaign","url":"interfaces/ResponseValidateVoucherTrue.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":591,"kind":1024,"name":"campaign_id","url":"interfaces/ResponseValidateVoucherTrue.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":592,"kind":1024,"name":"metadata","url":"interfaces/ResponseValidateVoucherTrue.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":593,"kind":1024,"name":"discount","url":"interfaces/ResponseValidateVoucherTrue.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":594,"kind":1024,"name":"gift","url":"interfaces/ResponseValidateVoucherTrue.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":595,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherTrue.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":596,"kind":1024,"name":"amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":597,"kind":1024,"name":"balance","url":"interfaces/ResponseValidateVoucherTrue.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":598,"kind":1024,"name":"effect","url":"interfaces/ResponseValidateVoucherTrue.html#__type.effect","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":599,"kind":1024,"name":"loyalty","url":"interfaces/ResponseValidateVoucherTrue.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":600,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherTrue.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":601,"kind":1024,"name":"points_cost","url":"interfaces/ResponseValidateVoucherTrue.html#__type-1.points_cost","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":602,"kind":1024,"name":"reward","url":"interfaces/ResponseValidateVoucherTrue.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":603,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherTrue.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":604,"kind":1024,"name":"id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-3.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":605,"kind":1024,"name":"assignment_id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-3.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":606,"kind":1024,"name":"points","url":"interfaces/ResponseValidateVoucherTrue.html#__type-3.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":607,"kind":1024,"name":"order","url":"interfaces/ResponseValidateVoucherTrue.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":608,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":609,"kind":1024,"name":"id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":610,"kind":1024,"name":"source_id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":611,"kind":1024,"name":"created_at","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.created_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":612,"kind":1024,"name":"updated_at","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.updated_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":613,"kind":1024,"name":"status","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.status","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":614,"kind":1024,"name":"amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.amount-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":615,"kind":1024,"name":"initial_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.initial_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":616,"kind":1024,"name":"discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":617,"kind":1024,"name":"applied_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":618,"kind":1024,"name":"items_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.items_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":619,"kind":1024,"name":"total_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":620,"kind":1024,"name":"total_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":621,"kind":1024,"name":"items_applied_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.items_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":622,"kind":1024,"name":"total_applied_discount_amount","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.total_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":623,"kind":1024,"name":"items","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":624,"kind":1024,"name":"metadata","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":625,"kind":1024,"name":"customer","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":626,"kind":1024,"name":"customer_id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":627,"kind":1024,"name":"referrer_id","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":628,"kind":1024,"name":"object","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":629,"kind":1024,"name":"redemptions","url":"interfaces/ResponseValidateVoucherTrue.html#__type-2.redemptions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherTrue.__type"},{"id":630,"kind":1024,"name":"session","url":"interfaces/ResponseValidateVoucherTrue.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":631,"kind":1024,"name":"start_date","url":"interfaces/ResponseValidateVoucherTrue.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":632,"kind":1024,"name":"expiration_date","url":"interfaces/ResponseValidateVoucherTrue.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":633,"kind":1024,"name":"tracking_id","url":"interfaces/ResponseValidateVoucherTrue.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherTrue"},{"id":634,"kind":256,"name":"ResponseValidateVoucherFalse","url":"interfaces/ResponseValidateVoucherFalse.html","classes":"tsd-kind-interface"},{"id":635,"kind":1024,"name":"valid","url":"interfaces/ResponseValidateVoucherFalse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":636,"kind":1024,"name":"code","url":"interfaces/ResponseValidateVoucherFalse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":637,"kind":1024,"name":"error","url":"interfaces/ResponseValidateVoucherFalse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":638,"kind":65536,"name":"__type","url":"interfaces/ResponseValidateVoucherFalse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":639,"kind":1024,"name":"code","url":"interfaces/ResponseValidateVoucherFalse.html#__type.code-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":640,"kind":1024,"name":"key","url":"interfaces/ResponseValidateVoucherFalse.html#__type.key","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":641,"kind":1024,"name":"message","url":"interfaces/ResponseValidateVoucherFalse.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":642,"kind":1024,"name":"details","url":"interfaces/ResponseValidateVoucherFalse.html#__type.details","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":643,"kind":1024,"name":"request_id","url":"interfaces/ResponseValidateVoucherFalse.html#__type.request_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":644,"kind":1024,"name":"resource_id","url":"interfaces/ResponseValidateVoucherFalse.html#__type.resource_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":645,"kind":1024,"name":"resource_type","url":"interfaces/ResponseValidateVoucherFalse.html#__type.resource_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ResponseValidateVoucherFalse.__type"},{"id":646,"kind":1024,"name":"tracking_id","url":"interfaces/ResponseValidateVoucherFalse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":647,"kind":1024,"name":"customer_id","url":"interfaces/ResponseValidateVoucherFalse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":648,"kind":1024,"name":"metadata","url":"interfaces/ResponseValidateVoucherFalse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":649,"kind":1024,"name":"reason","url":"interfaces/ResponseValidateVoucherFalse.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ResponseValidateVoucherFalse"},{"id":650,"kind":4194304,"name":"OrderObjectRedemptions","url":"modules.html#OrderObjectRedemptions","classes":"tsd-kind-type-alias"},{"id":651,"kind":256,"name":"ValidationsValidateStackableParams","url":"interfaces/ValidationsValidateStackableParams.html","classes":"tsd-kind-interface"},{"id":652,"kind":1024,"name":"options","url":"interfaces/ValidationsValidateStackableParams.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":653,"kind":1024,"name":"redeemables","url":"interfaces/ValidationsValidateStackableParams.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":654,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateStackableParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":655,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateStackableParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":656,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateStackableParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":657,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateStackableParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":658,"kind":256,"name":"ValidationValidateStackableResponse","url":"interfaces/ValidationValidateStackableResponse.html","classes":"tsd-kind-interface"},{"id":659,"kind":1024,"name":"valid","url":"interfaces/ValidationValidateStackableResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":660,"kind":1024,"name":"tracking_id","url":"interfaces/ValidationValidateStackableResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":661,"kind":1024,"name":"session","url":"interfaces/ValidationValidateStackableResponse.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":662,"kind":1024,"name":"order","url":"interfaces/ValidationValidateStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":663,"kind":1024,"name":"redeemables","url":"interfaces/ValidationValidateStackableResponse.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":664,"kind":4194304,"name":"ValidationsValidateCode","url":"modules.html#ValidationsValidateCode","classes":"tsd-kind-type-alias"},{"id":665,"kind":4194304,"name":"ValidationsValidateContext","url":"modules.html#ValidationsValidateContext","classes":"tsd-kind-type-alias"},{"id":666,"kind":256,"name":"CampaignResponse","url":"interfaces/CampaignResponse.html","classes":"tsd-kind-interface"},{"id":667,"kind":1024,"name":"id","url":"interfaces/CampaignResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":668,"kind":1024,"name":"name","url":"interfaces/CampaignResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":669,"kind":1024,"name":"campaign_type","url":"interfaces/CampaignResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":670,"kind":1024,"name":"type","url":"interfaces/CampaignResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":671,"kind":1024,"name":"category","url":"interfaces/CampaignResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":672,"kind":1024,"name":"auto_join","url":"interfaces/CampaignResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":673,"kind":1024,"name":"join_once","url":"interfaces/CampaignResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":674,"kind":1024,"name":"description","url":"interfaces/CampaignResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":675,"kind":1024,"name":"start_date","url":"interfaces/CampaignResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":676,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/CampaignResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":677,"kind":65536,"name":"__type","url":"interfaces/CampaignResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":678,"kind":1024,"name":"data","url":"interfaces/CampaignResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":679,"kind":1024,"name":"object","url":"interfaces/CampaignResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":680,"kind":1024,"name":"total","url":"interfaces/CampaignResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":681,"kind":1024,"name":"data_ref","url":"interfaces/CampaignResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":682,"kind":1024,"name":"expiration_date","url":"interfaces/CampaignResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":683,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/CampaignResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":684,"kind":1024,"name":"validity_timeframe","url":"interfaces/CampaignResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":685,"kind":65536,"name":"__type","url":"interfaces/CampaignResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":686,"kind":1024,"name":"interval","url":"interfaces/CampaignResponse.html#__type-1.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":687,"kind":1024,"name":"duration","url":"interfaces/CampaignResponse.html#__type-1.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":688,"kind":1024,"name":"validity_day_of_week","url":"interfaces/CampaignResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":689,"kind":1024,"name":"metadata","url":"interfaces/CampaignResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":690,"kind":1024,"name":"created_at","url":"interfaces/CampaignResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":691,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/CampaignResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":692,"kind":1024,"name":"active","url":"interfaces/CampaignResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":693,"kind":1024,"name":"voucher","url":"interfaces/CampaignResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":694,"kind":1024,"name":"referral_program","url":"interfaces/CampaignResponse.html#referral_program","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":695,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/CampaignResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":696,"kind":1024,"name":"protected","url":"interfaces/CampaignResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":697,"kind":1024,"name":"vouchers_count","url":"interfaces/CampaignResponse.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":698,"kind":1024,"name":"object","url":"interfaces/CampaignResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":699,"kind":256,"name":"CampaignsQualificationsBody","url":"interfaces/CampaignsQualificationsBody.html","classes":"tsd-kind-interface"},{"id":700,"kind":1024,"name":"customer","url":"interfaces/CampaignsQualificationsBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsBody"},{"id":701,"kind":1024,"name":"order","url":"interfaces/CampaignsQualificationsBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsBody"},{"id":702,"kind":256,"name":"CampaignsQualificationsParams","url":"interfaces/CampaignsQualificationsParams.html","classes":"tsd-kind-interface"},{"id":703,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/CampaignsQualificationsParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":704,"kind":1024,"name":"order","url":"interfaces/CampaignsQualificationsParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":705,"kind":1024,"name":"limit","url":"interfaces/CampaignsQualificationsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":706,"kind":256,"name":"CampaignsQualificationsResponse","url":"interfaces/CampaignsQualificationsResponse.html","classes":"tsd-kind-interface"},{"id":707,"kind":1024,"name":"object","url":"interfaces/CampaignsQualificationsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":708,"kind":1024,"name":"total","url":"interfaces/CampaignsQualificationsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":709,"kind":1024,"name":"data_ref","url":"interfaces/CampaignsQualificationsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":710,"kind":1024,"name":"data","url":"interfaces/CampaignsQualificationsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":711,"kind":1024,"name":"id","url":"interfaces/CampaignsQualificationsResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":712,"kind":1024,"name":"created_at","url":"interfaces/CampaignsQualificationsResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":713,"kind":4194304,"name":"CampaignsCreateCampaign","url":"modules.html#CampaignsCreateCampaign","classes":"tsd-kind-type-alias"},{"id":714,"kind":4194304,"name":"CampaignsUpdateCampaign","url":"modules.html#CampaignsUpdateCampaign","classes":"tsd-kind-type-alias"},{"id":715,"kind":256,"name":"CampaignsDeleteParams","url":"interfaces/CampaignsDeleteParams.html","classes":"tsd-kind-interface"},{"id":716,"kind":1024,"name":"force","url":"interfaces/CampaignsDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsDeleteParams"},{"id":717,"kind":4194304,"name":"CampaignsAddVoucherBody","url":"modules.html#CampaignsAddVoucherBody","classes":"tsd-kind-type-alias"},{"id":718,"kind":256,"name":"CampaignsAddVoucherParams","url":"interfaces/CampaignsAddVoucherParams.html","classes":"tsd-kind-interface"},{"id":719,"kind":1024,"name":"vouchers_count","url":"interfaces/CampaignsAddVoucherParams.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsAddVoucherParams"},{"id":720,"kind":4194304,"name":"CampaignsAddCertainVoucherParams","url":"modules.html#CampaignsAddCertainVoucherParams","classes":"tsd-kind-type-alias"},{"id":721,"kind":4194304,"name":"CampaignsAddVoucherResponse","url":"modules.html#CampaignsAddVoucherResponse","classes":"tsd-kind-type-alias"},{"id":722,"kind":4194304,"name":"CampaignsAddCertainVoucherResponse","url":"modules.html#CampaignsAddCertainVoucherResponse","classes":"tsd-kind-type-alias"},{"id":723,"kind":4194304,"name":"CampaignsImportVouchers","url":"modules.html#CampaignsImportVouchers","classes":"tsd-kind-type-alias"},{"id":724,"kind":256,"name":"CampaignsListParams","url":"interfaces/CampaignsListParams.html","classes":"tsd-kind-interface"},{"id":725,"kind":1024,"name":"limit","url":"interfaces/CampaignsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":726,"kind":1024,"name":"page","url":"interfaces/CampaignsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":727,"kind":1024,"name":"campaign_type","url":"interfaces/CampaignsListParams.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":728,"kind":1024,"name":"filters","url":"interfaces/CampaignsListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":729,"kind":65536,"name":"__type","url":"interfaces/CampaignsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":730,"kind":1024,"name":"junction","url":"interfaces/CampaignsListParams.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignsListParams.__type"},{"id":731,"kind":256,"name":"CampaignsListResponse","url":"interfaces/CampaignsListResponse.html","classes":"tsd-kind-interface"},{"id":732,"kind":1024,"name":"object","url":"interfaces/CampaignsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":733,"kind":1024,"name":"total","url":"interfaces/CampaignsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":734,"kind":1024,"name":"data_ref","url":"interfaces/CampaignsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":735,"kind":1024,"name":"campaigns","url":"interfaces/CampaignsListResponse.html#campaigns","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":736,"kind":4194304,"name":"CampaignsVouchersImportResponse","url":"modules.html#CampaignsVouchersImportResponse","classes":"tsd-kind-type-alias"},{"id":737,"kind":65536,"name":"__type","url":"modules.html#CampaignsVouchersImportResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"CampaignsVouchersImportResponse"},{"id":738,"kind":1024,"name":"async_action_id","url":"modules.html#CampaignsVouchersImportResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignsVouchersImportResponse.__type"},{"id":739,"kind":4194304,"name":"CampaignsCreateCampaignResponse","url":"modules.html#CampaignsCreateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":740,"kind":4194304,"name":"CampaignsUpdateCampaignResponse","url":"modules.html#CampaignsUpdateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":741,"kind":4194304,"name":"CampaignsGetCampaignResponse","url":"modules.html#CampaignsGetCampaignResponse","classes":"tsd-kind-type-alias"},{"id":742,"kind":256,"name":"SimplePromotionTier","url":"interfaces/SimplePromotionTier.html","classes":"tsd-kind-interface"},{"id":743,"kind":1024,"name":"tracking_id","url":"interfaces/SimplePromotionTier.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":744,"kind":1024,"name":"metadata","url":"interfaces/SimplePromotionTier.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":745,"kind":1024,"name":"valid","url":"interfaces/SimplePromotionTier.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":746,"kind":1024,"name":"id","url":"interfaces/SimplePromotionTier.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":747,"kind":1024,"name":"name","url":"interfaces/SimplePromotionTier.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":748,"kind":1024,"name":"banner","url":"interfaces/SimplePromotionTier.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":749,"kind":1024,"name":"discount","url":"interfaces/SimplePromotionTier.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":750,"kind":1024,"name":"hierarchy","url":"interfaces/SimplePromotionTier.html#hierarchy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":751,"kind":1024,"name":"object","url":"interfaces/SimplePromotionTier.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":752,"kind":256,"name":"PromotionTier","url":"interfaces/PromotionTier.html","classes":"tsd-kind-interface"},{"id":753,"kind":1024,"name":"id","url":"interfaces/PromotionTier.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":754,"kind":1024,"name":"object","url":"interfaces/PromotionTier.html#object-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":755,"kind":1024,"name":"name","url":"interfaces/PromotionTier.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":756,"kind":1024,"name":"banner","url":"interfaces/PromotionTier.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":757,"kind":1024,"name":"campaign","url":"interfaces/PromotionTier.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":758,"kind":65536,"name":"__type","url":"interfaces/PromotionTier.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTier"},{"id":759,"kind":1024,"name":"id","url":"interfaces/PromotionTier.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":760,"kind":1024,"name":"object","url":"interfaces/PromotionTier.html#__type-1.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":761,"kind":1024,"name":"start_date","url":"interfaces/PromotionTier.html#__type-1.start_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":762,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionTier.html#__type-1.expiration_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":763,"kind":1024,"name":"active","url":"interfaces/PromotionTier.html#__type-1.active-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":764,"kind":1024,"name":"validation_rule_assignments","url":"interfaces/PromotionTier.html#validation_rule_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":765,"kind":1024,"name":"action","url":"interfaces/PromotionTier.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":766,"kind":65536,"name":"__type","url":"interfaces/PromotionTier.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTier"},{"id":767,"kind":1024,"name":"discount","url":"interfaces/PromotionTier.html#__type.discount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":768,"kind":1024,"name":"hierarchy","url":"interfaces/PromotionTier.html#hierarchy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":769,"kind":1024,"name":"metadata","url":"interfaces/PromotionTier.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":770,"kind":1024,"name":"active","url":"interfaces/PromotionTier.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":771,"kind":256,"name":"PromotionTiersListAllParams","url":"interfaces/PromotionTiersListAllParams.html","classes":"tsd-kind-interface"},{"id":772,"kind":1024,"name":"is_available","url":"interfaces/PromotionTiersListAllParams.html#is_available","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":773,"kind":1024,"name":"limit","url":"interfaces/PromotionTiersListAllParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":774,"kind":1024,"name":"page","url":"interfaces/PromotionTiersListAllParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":775,"kind":256,"name":"PromotionTiersListAllResponse","url":"interfaces/PromotionTiersListAllResponse.html","classes":"tsd-kind-interface"},{"id":776,"kind":1024,"name":"object","url":"interfaces/PromotionTiersListAllResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":777,"kind":1024,"name":"data_ref","url":"interfaces/PromotionTiersListAllResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":778,"kind":1024,"name":"tiers","url":"interfaces/PromotionTiersListAllResponse.html#tiers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":779,"kind":1024,"name":"has_more","url":"interfaces/PromotionTiersListAllResponse.html#has_more","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":780,"kind":4194304,"name":"PromotionTiersListResponse","url":"modules.html#PromotionTiersListResponse","classes":"tsd-kind-type-alias"},{"id":781,"kind":4194304,"name":"PromotionTierGetResponse","url":"modules.html#PromotionTierGetResponse","classes":"tsd-kind-type-alias"},{"id":782,"kind":256,"name":"PromotionTiersCreateParams","url":"interfaces/PromotionTiersCreateParams.html","classes":"tsd-kind-interface"},{"id":783,"kind":1024,"name":"name","url":"interfaces/PromotionTiersCreateParams.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":784,"kind":1024,"name":"banner","url":"interfaces/PromotionTiersCreateParams.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":785,"kind":1024,"name":"action","url":"interfaces/PromotionTiersCreateParams.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":786,"kind":65536,"name":"__type","url":"interfaces/PromotionTiersCreateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":787,"kind":1024,"name":"discount","url":"interfaces/PromotionTiersCreateParams.html#__type.discount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersCreateParams.__type"},{"id":788,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersCreateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":789,"kind":4194304,"name":"PromotionTiersCreateResponse","url":"modules.html#PromotionTiersCreateResponse","classes":"tsd-kind-type-alias"},{"id":790,"kind":256,"name":"PromotionTiersRedeemParams","url":"interfaces/PromotionTiersRedeemParams.html","classes":"tsd-kind-interface"},{"id":791,"kind":1024,"name":"customer","url":"interfaces/PromotionTiersRedeemParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":792,"kind":1024,"name":"order","url":"interfaces/PromotionTiersRedeemParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":793,"kind":65536,"name":"__type","url":"interfaces/PromotionTiersRedeemParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":794,"kind":1024,"name":"id","url":"interfaces/PromotionTiersRedeemParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":795,"kind":1024,"name":"source_id","url":"interfaces/PromotionTiersRedeemParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":796,"kind":1024,"name":"amount","url":"interfaces/PromotionTiersRedeemParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":797,"kind":1024,"name":"items","url":"interfaces/PromotionTiersRedeemParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":798,"kind":1024,"name":"status","url":"interfaces/PromotionTiersRedeemParams.html#__type.status","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":799,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersRedeemParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":800,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersRedeemParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":801,"kind":1024,"name":"session","url":"interfaces/PromotionTiersRedeemParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":802,"kind":256,"name":"PromotionTiersRedeemResponse","url":"interfaces/PromotionTiersRedeemResponse.html","classes":"tsd-kind-interface"},{"id":803,"kind":1024,"name":"id","url":"interfaces/PromotionTiersRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":804,"kind":1024,"name":"object","url":"interfaces/PromotionTiersRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":805,"kind":1024,"name":"date","url":"interfaces/PromotionTiersRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":806,"kind":1024,"name":"customer_id","url":"interfaces/PromotionTiersRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":807,"kind":1024,"name":"tracking_id","url":"interfaces/PromotionTiersRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":808,"kind":1024,"name":"order","url":"interfaces/PromotionTiersRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":809,"kind":1024,"name":"result","url":"interfaces/PromotionTiersRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":810,"kind":1024,"name":"promotion_tier","url":"interfaces/PromotionTiersRedeemResponse.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":811,"kind":256,"name":"PromotionTierRedeemDetailsSimple","url":"interfaces/PromotionTierRedeemDetailsSimple.html","classes":"tsd-kind-interface"},{"id":812,"kind":1024,"name":"id","url":"interfaces/PromotionTierRedeemDetailsSimple.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":813,"kind":1024,"name":"name","url":"interfaces/PromotionTierRedeemDetailsSimple.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":814,"kind":1024,"name":"banner","url":"interfaces/PromotionTierRedeemDetailsSimple.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":815,"kind":1024,"name":"campaign","url":"interfaces/PromotionTierRedeemDetailsSimple.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":816,"kind":65536,"name":"__type","url":"interfaces/PromotionTierRedeemDetailsSimple.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":817,"kind":1024,"name":"id","url":"interfaces/PromotionTierRedeemDetailsSimple.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTierRedeemDetailsSimple.__type"},{"id":818,"kind":4194304,"name":"PromotionTierRedeemDetails","url":"modules.html#PromotionTierRedeemDetails","classes":"tsd-kind-type-alias"},{"id":819,"kind":4194304,"name":"PromotionTiersUpdateParams","url":"modules.html#PromotionTiersUpdateParams","classes":"tsd-kind-type-alias"},{"id":820,"kind":4194304,"name":"PromotionTiersUpdateResponse","url":"modules.html#PromotionTiersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":821,"kind":256,"name":"PromotionsCreateResponse","url":"interfaces/PromotionsCreateResponse.html","classes":"tsd-kind-interface"},{"id":822,"kind":1024,"name":"id","url":"interfaces/PromotionsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":823,"kind":1024,"name":"name","url":"interfaces/PromotionsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":824,"kind":1024,"name":"campaign_type","url":"interfaces/PromotionsCreateResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":825,"kind":1024,"name":"type","url":"interfaces/PromotionsCreateResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":826,"kind":1024,"name":"description","url":"interfaces/PromotionsCreateResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":827,"kind":1024,"name":"start_date","url":"interfaces/PromotionsCreateResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":828,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionsCreateResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":829,"kind":1024,"name":"promotion","url":"interfaces/PromotionsCreateResponse.html#promotion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":830,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":831,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":832,"kind":1024,"name":"data_ref","url":"interfaces/PromotionsCreateResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":833,"kind":1024,"name":"tiers","url":"interfaces/PromotionsCreateResponse.html#__type.tiers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":834,"kind":1024,"name":"has_more","url":"interfaces/PromotionsCreateResponse.html#__type.has_more","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":835,"kind":1024,"name":"category","url":"interfaces/PromotionsCreateResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":836,"kind":1024,"name":"auto_join","url":"interfaces/PromotionsCreateResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":837,"kind":1024,"name":"join_once","url":"interfaces/PromotionsCreateResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":838,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/PromotionsCreateResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":839,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":840,"kind":1024,"name":"data","url":"interfaces/PromotionsCreateResponse.html#__type-1.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":841,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#__type-1.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":842,"kind":1024,"name":"total","url":"interfaces/PromotionsCreateResponse.html#__type-1.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":843,"kind":1024,"name":"data_ref","url":"interfaces/PromotionsCreateResponse.html#__type-1.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":844,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/PromotionsCreateResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":845,"kind":1024,"name":"validity_timeframe","url":"interfaces/PromotionsCreateResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":846,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":847,"kind":1024,"name":"interval","url":"interfaces/PromotionsCreateResponse.html#__type-2.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":848,"kind":1024,"name":"duration","url":"interfaces/PromotionsCreateResponse.html#__type-2.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":849,"kind":1024,"name":"validity_day_of_week","url":"interfaces/PromotionsCreateResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":850,"kind":1024,"name":"metadata","url":"interfaces/PromotionsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":851,"kind":1024,"name":"created_at","url":"interfaces/PromotionsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":852,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/PromotionsCreateResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":853,"kind":1024,"name":"active","url":"interfaces/PromotionsCreateResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":854,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/PromotionsCreateResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":855,"kind":1024,"name":"protected","url":"interfaces/PromotionsCreateResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":856,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":857,"kind":256,"name":"PromotionsCreate","url":"interfaces/PromotionsCreate.html","classes":"tsd-kind-interface"},{"id":858,"kind":1024,"name":"name","url":"interfaces/PromotionsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":859,"kind":1024,"name":"campaign_type","url":"interfaces/PromotionsCreate.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":860,"kind":1024,"name":"start_date","url":"interfaces/PromotionsCreate.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":861,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionsCreate.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":862,"kind":1024,"name":"promotion","url":"interfaces/PromotionsCreate.html#promotion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":863,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":864,"kind":1024,"name":"tiers","url":"interfaces/PromotionsCreate.html#__type.tiers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreate.__type"},{"id":865,"kind":256,"name":"PromotionsValidateParams","url":"interfaces/PromotionsValidateParams.html","classes":"tsd-kind-interface"},{"id":866,"kind":1024,"name":"customer","url":"interfaces/PromotionsValidateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":867,"kind":1024,"name":"order","url":"interfaces/PromotionsValidateParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":868,"kind":65536,"name":"__type","url":"interfaces/PromotionsValidateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":869,"kind":1024,"name":"id","url":"interfaces/PromotionsValidateParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":870,"kind":1024,"name":"source_id","url":"interfaces/PromotionsValidateParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":871,"kind":1024,"name":"items","url":"interfaces/PromotionsValidateParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":872,"kind":1024,"name":"amount","url":"interfaces/PromotionsValidateParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":873,"kind":1024,"name":"metadata","url":"interfaces/PromotionsValidateParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":874,"kind":1024,"name":"metadata","url":"interfaces/PromotionsValidateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":875,"kind":256,"name":"PromotionsValidateQueryParams","url":"interfaces/PromotionsValidateQueryParams.html","classes":"tsd-kind-interface"},{"id":876,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/PromotionsValidateQueryParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateQueryParams"},{"id":877,"kind":1024,"name":"filters","url":"interfaces/PromotionsValidateQueryParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateQueryParams"},{"id":878,"kind":256,"name":"PromotionsValidateResponse","url":"interfaces/PromotionsValidateResponse.html","classes":"tsd-kind-interface"},{"id":879,"kind":1024,"name":"valid","url":"interfaces/PromotionsValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":880,"kind":1024,"name":"promotions","url":"interfaces/PromotionsValidateResponse.html#promotions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":881,"kind":1024,"name":"tracking_id","url":"interfaces/PromotionsValidateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":882,"kind":256,"name":"LoyaltiesListParams","url":"interfaces/LoyaltiesListParams.html","classes":"tsd-kind-interface"},{"id":883,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListParams"},{"id":884,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListParams"},{"id":885,"kind":256,"name":"LoyaltiesListResponse","url":"interfaces/LoyaltiesListResponse.html","classes":"tsd-kind-interface"},{"id":886,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":887,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":888,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":889,"kind":1024,"name":"campaigns","url":"interfaces/LoyaltiesListResponse.html#campaigns","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":890,"kind":256,"name":"LoyaltiesCreateCampaign","url":"interfaces/LoyaltiesCreateCampaign.html","classes":"tsd-kind-interface"},{"id":891,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateCampaign.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":892,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesCreateCampaign.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":893,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesCreateCampaign.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":894,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaign.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":895,"kind":1024,"name":"vouchers_count","url":"interfaces/LoyaltiesCreateCampaign.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":896,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateCampaign.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":897,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":898,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.type-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":899,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesCreateCampaign.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":900,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":901,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-3.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":902,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesCreateCampaign.html#__type.loyalty_card","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":903,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":904,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":905,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":906,"kind":1024,"name":"code_config","url":"interfaces/LoyaltiesCreateCampaign.html#__type.code_config","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":907,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":908,"kind":1024,"name":"length","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":909,"kind":1024,"name":"charset","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":910,"kind":1024,"name":"pattern","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":911,"kind":1024,"name":"prefix","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":912,"kind":1024,"name":"suffix","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":913,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateCampaign.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":914,"kind":256,"name":"LoyaltiesCreateCampaignResponse","url":"interfaces/LoyaltiesCreateCampaignResponse.html","classes":"tsd-kind-interface"},{"id":915,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateCampaignResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":916,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateCampaignResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":917,"kind":1024,"name":"campaign_type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":918,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":919,"kind":1024,"name":"category","url":"interfaces/LoyaltiesCreateCampaignResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":920,"kind":1024,"name":"auto_join","url":"interfaces/LoyaltiesCreateCampaignResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":921,"kind":1024,"name":"join_once","url":"interfaces/LoyaltiesCreateCampaignResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":922,"kind":1024,"name":"description","url":"interfaces/LoyaltiesCreateCampaignResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":923,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesCreateCampaignResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":924,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":925,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":926,"kind":1024,"name":"data","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":927,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":928,"kind":1024,"name":"total","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":929,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":930,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesCreateCampaignResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":931,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/LoyaltiesCreateCampaignResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":932,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":933,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":934,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":935,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":936,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":937,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateCampaignResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":938,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesCreateCampaignResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":939,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/LoyaltiesCreateCampaignResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":940,"kind":1024,"name":"active","url":"interfaces/LoyaltiesCreateCampaignResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":941,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateCampaignResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":942,"kind":1024,"name":"referral_program","url":"interfaces/LoyaltiesCreateCampaignResponse.html#referral_program","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":943,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/LoyaltiesCreateCampaignResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":944,"kind":1024,"name":"protected","url":"interfaces/LoyaltiesCreateCampaignResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":945,"kind":1024,"name":"vouchers_count","url":"interfaces/LoyaltiesCreateCampaignResponse.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":946,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateCampaignResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":947,"kind":4194304,"name":"LoyaltiesGetCampaignResponse","url":"modules.html#LoyaltiesGetCampaignResponse","classes":"tsd-kind-type-alias"},{"id":948,"kind":256,"name":"LoyaltiesUpdateCampaign","url":"interfaces/LoyaltiesUpdateCampaign.html","classes":"tsd-kind-interface"},{"id":949,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateCampaign.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":950,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesUpdateCampaign.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":951,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesUpdateCampaign.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":952,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesUpdateCampaign.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":953,"kind":1024,"name":"description","url":"interfaces/LoyaltiesUpdateCampaign.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":954,"kind":1024,"name":"type","url":"interfaces/LoyaltiesUpdateCampaign.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":955,"kind":4194304,"name":"LoyaltiesUpdateCampaignResponse","url":"modules.html#LoyaltiesUpdateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":956,"kind":256,"name":"LoyaltiesDeleteCampaignParams","url":"interfaces/LoyaltiesDeleteCampaignParams.html","classes":"tsd-kind-interface"},{"id":957,"kind":1024,"name":"force","url":"interfaces/LoyaltiesDeleteCampaignParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesDeleteCampaignParams"},{"id":958,"kind":256,"name":"LoyaltiesListRewardAssignmentsParams","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":959,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsParams"},{"id":960,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsParams"},{"id":961,"kind":256,"name":"LoyaltiesListRewardAssignmentsResponse","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":962,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":963,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":964,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":965,"kind":1024,"name":"data","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":966,"kind":256,"name":"LoyaltiesCreateRewardAssignments","url":"interfaces/LoyaltiesCreateRewardAssignments.html","classes":"tsd-kind-interface"},{"id":967,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesCreateRewardAssignments.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":968,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesCreateRewardAssignments.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":969,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":970,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type"},{"id":971,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type"},{"id":972,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type.__type"},{"id":973,"kind":256,"name":"LoyaltiesCreateRewardAssignmentResponse","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html","classes":"tsd-kind-interface"},{"id":974,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":975,"kind":1024,"name":"reward_id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#reward_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":976,"kind":1024,"name":"related_object_id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":977,"kind":1024,"name":"related_object_type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":978,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":979,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":980,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type"},{"id":981,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type"},{"id":982,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type.__type"},{"id":983,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":984,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":985,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":986,"kind":256,"name":"LoyaltiesUpdateRewardAssignment","url":"interfaces/LoyaltiesUpdateRewardAssignment.html","classes":"tsd-kind-interface"},{"id":987,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":988,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":989,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":990,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type"},{"id":991,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type"},{"id":992,"kind":1024,"name":"points","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type.__type"},{"id":993,"kind":4194304,"name":"LoyaltiesUpdateRewardAssignmentResponse","url":"modules.html#LoyaltiesUpdateRewardAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":994,"kind":256,"name":"LoyaltiesListEarningRulesParams","url":"interfaces/LoyaltiesListEarningRulesParams.html","classes":"tsd-kind-interface"},{"id":995,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListEarningRulesParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesParams"},{"id":996,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListEarningRulesParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesParams"},{"id":997,"kind":256,"name":"LoyaltyFixed","url":"interfaces/LoyaltyFixed.html","classes":"tsd-kind-interface"},{"id":998,"kind":1024,"name":"type","url":"interfaces/LoyaltyFixed.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyFixed"},{"id":999,"kind":1024,"name":"points","url":"interfaces/LoyaltyFixed.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyFixed"},{"id":1000,"kind":256,"name":"LoyaltyProportional","url":"interfaces/LoyaltyProportional.html","classes":"tsd-kind-interface"},{"id":1001,"kind":1024,"name":"type","url":"interfaces/LoyaltyProportional.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":1002,"kind":1024,"name":"order","url":"interfaces/LoyaltyProportional.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":1003,"kind":65536,"name":"__type","url":"interfaces/LoyaltyProportional.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":1004,"kind":1024,"name":"amount","url":"interfaces/LoyaltyProportional.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type"},{"id":1005,"kind":65536,"name":"__type","url":"interfaces/LoyaltyProportional.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type"},{"id":1006,"kind":1024,"name":"every","url":"interfaces/LoyaltyProportional.html#__type.__type-1.every","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type.__type"},{"id":1007,"kind":1024,"name":"points","url":"interfaces/LoyaltyProportional.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type.__type"},{"id":1008,"kind":256,"name":"LoyaltiesEarningRulesResponse","url":"interfaces/LoyaltiesEarningRulesResponse.html","classes":"tsd-kind-interface"},{"id":1009,"kind":1024,"name":"id","url":"interfaces/LoyaltiesEarningRulesResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1010,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesEarningRulesResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1011,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesEarningRulesResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1012,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1013,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesEarningRulesResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1014,"kind":1024,"name":"segment","url":"interfaces/LoyaltiesEarningRulesResponse.html#segment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1015,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1016,"kind":1024,"name":"id","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":1017,"kind":1024,"name":"event","url":"interfaces/LoyaltiesEarningRulesResponse.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1018,"kind":1024,"name":"source","url":"interfaces/LoyaltiesEarningRulesResponse.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1019,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1020,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":1021,"kind":1024,"name":"object_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.object_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":1022,"kind":1024,"name":"object_type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.object_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":1023,"kind":1024,"name":"object","url":"interfaces/LoyaltiesEarningRulesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1024,"kind":1024,"name":"automation_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#automation_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":1025,"kind":256,"name":"LoyaltiesListEarningRulesResponse","url":"interfaces/LoyaltiesListEarningRulesResponse.html","classes":"tsd-kind-interface"},{"id":1026,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListEarningRulesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":1027,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListEarningRulesResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":1028,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListEarningRulesResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":1029,"kind":1024,"name":"data","url":"interfaces/LoyaltiesListEarningRulesResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":1030,"kind":256,"name":"LoyaltiesCreateEarningRule","url":"interfaces/LoyaltiesCreateEarningRule.html","classes":"tsd-kind-interface"},{"id":1031,"kind":1024,"name":"event","url":"interfaces/LoyaltiesCreateEarningRule.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1032,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesCreateEarningRule.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1033,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateEarningRule.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1034,"kind":1024,"name":"source","url":"interfaces/LoyaltiesCreateEarningRule.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1035,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1036,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-2.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1037,"kind":1024,"name":"custom_event","url":"interfaces/LoyaltiesCreateEarningRule.html#custom_event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1038,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1039,"kind":1024,"name":"schema_id","url":"interfaces/LoyaltiesCreateEarningRule.html#__type.schema_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1040,"kind":1024,"name":"segment","url":"interfaces/LoyaltiesCreateEarningRule.html#segment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1041,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1042,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1043,"kind":4194304,"name":"LoyaltiesCreateEarningRuleResponse","url":"modules.html#LoyaltiesCreateEarningRuleResponse","classes":"tsd-kind-type-alias"},{"id":1044,"kind":256,"name":"LoyaltiesUpdateEarningRule","url":"interfaces/LoyaltiesUpdateEarningRule.html","classes":"tsd-kind-interface"},{"id":1045,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateEarningRule.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1046,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesUpdateEarningRule.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1047,"kind":1024,"name":"source","url":"interfaces/LoyaltiesUpdateEarningRule.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1048,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1049,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type-1.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateEarningRule.__type"},{"id":1050,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesUpdateEarningRule.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1051,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1052,"kind":1024,"name":"points","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateEarningRule.__type"},{"id":1053,"kind":4194304,"name":"LoyaltiesUpdateEarningRuleResponse","url":"modules.html#LoyaltiesUpdateEarningRuleResponse","classes":"tsd-kind-type-alias"},{"id":1054,"kind":256,"name":"LoyaltiesListMembersParams","url":"interfaces/LoyaltiesListMembersParams.html","classes":"tsd-kind-interface"},{"id":1055,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListMembersParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1056,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListMembersParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1057,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesListMembersParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1058,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesListMembersParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1059,"kind":1024,"name":"before","url":"interfaces/LoyaltiesListMembersParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1060,"kind":1024,"name":"after","url":"interfaces/LoyaltiesListMembersParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1061,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesListMembersParams.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1062,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesListMembersParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1063,"kind":1024,"name":"before","url":"interfaces/LoyaltiesListMembersParams.html#__type-1.before-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1064,"kind":1024,"name":"after","url":"interfaces/LoyaltiesListMembersParams.html#__type-1.after-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1065,"kind":256,"name":"LoyaltiesVoucherResponse","url":"interfaces/LoyaltiesVoucherResponse.html","classes":"tsd-kind-interface"},{"id":1066,"kind":1024,"name":"id","url":"interfaces/LoyaltiesVoucherResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1067,"kind":1024,"name":"code","url":"interfaces/LoyaltiesVoucherResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1068,"kind":1024,"name":"campaign","url":"interfaces/LoyaltiesVoucherResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1069,"kind":1024,"name":"campaign_id","url":"interfaces/LoyaltiesVoucherResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1070,"kind":1024,"name":"category","url":"interfaces/LoyaltiesVoucherResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1071,"kind":1024,"name":"type","url":"interfaces/LoyaltiesVoucherResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1072,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesVoucherResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1073,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1074,"kind":1024,"name":"points","url":"interfaces/LoyaltiesVoucherResponse.html#__type.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1075,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesVoucherResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1076,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesVoucherResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1077,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesVoucherResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1078,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesVoucherResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1079,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1080,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1081,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1082,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesVoucherResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1083,"kind":1024,"name":"publish","url":"interfaces/LoyaltiesVoucherResponse.html#publish","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1084,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1085,"kind":1024,"name":"count","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1086,"kind":1024,"name":"entries","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1.entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1087,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesVoucherResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1088,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1089,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1090,"kind":1024,"name":"redeemed_points","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1091,"kind":1024,"name":"redeemed_quantity","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1092,"kind":1024,"name":"redemption_entries","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redemption_entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1093,"kind":1024,"name":"active","url":"interfaces/LoyaltiesVoucherResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1094,"kind":1024,"name":"additional_info","url":"interfaces/LoyaltiesVoucherResponse.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1095,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesVoucherResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1096,"kind":1024,"name":"is_referral_code","url":"interfaces/LoyaltiesVoucherResponse.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1097,"kind":1024,"name":"holder_id","url":"interfaces/LoyaltiesVoucherResponse.html#holder_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1098,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesVoucherResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1099,"kind":256,"name":"LoyaltiesListMembersResponse","url":"interfaces/LoyaltiesListMembersResponse.html","classes":"tsd-kind-interface"},{"id":1100,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListMembersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1101,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListMembersResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1102,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListMembersResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1103,"kind":1024,"name":"vouchers","url":"interfaces/LoyaltiesListMembersResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1104,"kind":256,"name":"LoyaltiesCreateMember","url":"interfaces/LoyaltiesCreateMember.html","classes":"tsd-kind-interface"},{"id":1105,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateMember.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1106,"kind":1024,"name":"channel","url":"interfaces/LoyaltiesCreateMember.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1107,"kind":1024,"name":"customer","url":"interfaces/LoyaltiesCreateMember.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1108,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateMember.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1109,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateMember.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1110,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateMember.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1111,"kind":1024,"name":"email","url":"interfaces/LoyaltiesCreateMember.html#__type.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1112,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateMember.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1113,"kind":1024,"name":"description","url":"interfaces/LoyaltiesCreateMember.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1114,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesCreateMember.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1115,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateMember.html#metadata-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1116,"kind":4194304,"name":"LoyaltiesCreateMemberResponse","url":"modules.html#LoyaltiesCreateMemberResponse","classes":"tsd-kind-type-alias"},{"id":1117,"kind":4194304,"name":"LoyaltiesGetMemberResponse","url":"modules.html#LoyaltiesGetMemberResponse","classes":"tsd-kind-type-alias"},{"id":1118,"kind":256,"name":"LoyaltiesGetMemberActivitiesResponse","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html","classes":"tsd-kind-interface"},{"id":1119,"kind":1024,"name":"object","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1120,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1121,"kind":1024,"name":"total","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1122,"kind":1024,"name":"activities","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#activities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1123,"kind":256,"name":"LoyaltiesAddPoints","url":"interfaces/LoyaltiesAddPoints.html","classes":"tsd-kind-interface"},{"id":1124,"kind":1024,"name":"points","url":"interfaces/LoyaltiesAddPoints.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPoints"},{"id":1125,"kind":256,"name":"LoyaltiesAddPointsResponse","url":"interfaces/LoyaltiesAddPointsResponse.html","classes":"tsd-kind-interface"},{"id":1126,"kind":1024,"name":"points","url":"interfaces/LoyaltiesAddPointsResponse.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1127,"kind":1024,"name":"total","url":"interfaces/LoyaltiesAddPointsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1128,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesAddPointsResponse.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1129,"kind":1024,"name":"type","url":"interfaces/LoyaltiesAddPointsResponse.html#type-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1130,"kind":1024,"name":"object","url":"interfaces/LoyaltiesAddPointsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1131,"kind":1024,"name":"related_object","url":"interfaces/LoyaltiesAddPointsResponse.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1132,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesAddPointsResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1133,"kind":1024,"name":"type","url":"interfaces/LoyaltiesAddPointsResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesAddPointsResponse.__type"},{"id":1134,"kind":1024,"name":"id","url":"interfaces/LoyaltiesAddPointsResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesAddPointsResponse.__type"},{"id":1135,"kind":256,"name":"LoyaltiesRedeemRewardParams","url":"interfaces/LoyaltiesRedeemRewardParams.html","classes":"tsd-kind-interface"},{"id":1136,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesRedeemRewardParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1137,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1138,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type-1.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1139,"kind":1024,"name":"order","url":"interfaces/LoyaltiesRedeemRewardParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1140,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1141,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1142,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1143,"kind":1024,"name":"amount","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1144,"kind":1024,"name":"items","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1145,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1146,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1147,"kind":256,"name":"LoyaltiesRedeemRewardResponse","url":"interfaces/LoyaltiesRedeemRewardResponse.html","classes":"tsd-kind-interface"},{"id":1148,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1149,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1150,"kind":1024,"name":"date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1151,"kind":1024,"name":"customer_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1152,"kind":1024,"name":"amount","url":"interfaces/LoyaltiesRedeemRewardResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1153,"kind":1024,"name":"order","url":"interfaces/LoyaltiesRedeemRewardResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1154,"kind":1024,"name":"customer","url":"interfaces/LoyaltiesRedeemRewardResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1155,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesRedeemRewardResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1156,"kind":1024,"name":"result","url":"interfaces/LoyaltiesRedeemRewardResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1157,"kind":1024,"name":"tracking_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1158,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesRedeemRewardResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1159,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1160,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.id-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1161,"kind":1024,"name":"code","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1162,"kind":1024,"name":"campaign","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.campaign","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1163,"kind":1024,"name":"campaign_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.campaign_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1164,"kind":1024,"name":"category","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.category","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1165,"kind":1024,"name":"type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1166,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.loyalty_card","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1167,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1168,"kind":1024,"name":"points","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1169,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1170,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.start_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1171,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.expiration_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1172,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1173,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1174,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1175,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1176,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1177,"kind":1024,"name":"publish","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.publish","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1178,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1179,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.object-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1180,"kind":1024,"name":"count","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1181,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1182,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1183,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1184,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.object-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1185,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1186,"kind":1024,"name":"redeemed_quantity","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1187,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1188,"kind":1024,"name":"redeemed_points","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1189,"kind":1024,"name":"active","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.active","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1190,"kind":1024,"name":"additional_info","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.additional_info","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1191,"kind":1024,"name":"assets","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.assets","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1192,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1193,"kind":1024,"name":"qr","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.qr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1194,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1195,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3.id-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1196,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1197,"kind":1024,"name":"barcode","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.barcode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1198,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1199,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1200,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1201,"kind":1024,"name":"is_referral_code","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.is_referral_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1202,"kind":1024,"name":"referrer_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1203,"kind":1024,"name":"holder_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.holder_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1204,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.created_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1205,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.updated_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1206,"kind":1024,"name":"holder","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.holder","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1207,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1208,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.id-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1209,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1210,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1211,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1212,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1213,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1214,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1215,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.object-5","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1216,"kind":1024,"name":"total","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1217,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1218,"kind":1024,"name":"data","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1219,"kind":256,"name":"LoyaltyPointsTransfer","url":"interfaces/LoyaltyPointsTransfer.html","classes":"tsd-kind-interface"},{"id":1220,"kind":1024,"name":"code","url":"interfaces/LoyaltyPointsTransfer.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyPointsTransfer"},{"id":1221,"kind":1024,"name":"points","url":"interfaces/LoyaltyPointsTransfer.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyPointsTransfer"},{"id":1222,"kind":4194304,"name":"VoucherType","url":"modules.html#VoucherType","classes":"tsd-kind-type-alias"},{"id":1223,"kind":256,"name":"SimpleVoucher","url":"interfaces/SimpleVoucher.html","classes":"tsd-kind-interface"},{"id":1224,"kind":1024,"name":"code_config","url":"interfaces/SimpleVoucher.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1225,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1226,"kind":1024,"name":"length","url":"interfaces/SimpleVoucher.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1227,"kind":1024,"name":"charset","url":"interfaces/SimpleVoucher.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1228,"kind":1024,"name":"pattern","url":"interfaces/SimpleVoucher.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1229,"kind":1024,"name":"prefix","url":"interfaces/SimpleVoucher.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1230,"kind":1024,"name":"suffix","url":"interfaces/SimpleVoucher.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1231,"kind":1024,"name":"type","url":"interfaces/SimpleVoucher.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1232,"kind":1024,"name":"is_referral_code","url":"interfaces/SimpleVoucher.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1233,"kind":1024,"name":"discount","url":"interfaces/SimpleVoucher.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1234,"kind":1024,"name":"loyalty_card","url":"interfaces/SimpleVoucher.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1235,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1236,"kind":1024,"name":"points","url":"interfaces/SimpleVoucher.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1237,"kind":1024,"name":"balance","url":"interfaces/SimpleVoucher.html#__type-1.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1238,"kind":1024,"name":"redemption","url":"interfaces/SimpleVoucher.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1239,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1240,"kind":1024,"name":"quantity","url":"interfaces/SimpleVoucher.html#__type-2.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1241,"kind":256,"name":"VouchersResponse","url":"interfaces/VouchersResponse.html","classes":"tsd-kind-interface"},{"id":1242,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#id-2","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1243,"kind":1024,"name":"code","url":"interfaces/VouchersResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1244,"kind":1024,"name":"campaign","url":"interfaces/VouchersResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1245,"kind":1024,"name":"category","url":"interfaces/VouchersResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1246,"kind":1024,"name":"type","url":"interfaces/VouchersResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1247,"kind":1024,"name":"discount","url":"interfaces/VouchersResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1248,"kind":1024,"name":"gift","url":"interfaces/VouchersResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1249,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1250,"kind":1024,"name":"amount","url":"interfaces/VouchersResponse.html#__type-3.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1251,"kind":1024,"name":"balance","url":"interfaces/VouchersResponse.html#__type-3.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1252,"kind":1024,"name":"loyalty_card","url":"interfaces/VouchersResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1253,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1254,"kind":1024,"name":"points","url":"interfaces/VouchersResponse.html#__type-4.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1255,"kind":1024,"name":"start_date","url":"interfaces/VouchersResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1256,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1257,"kind":1024,"name":"validity_timeframe","url":"interfaces/VouchersResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1258,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1259,"kind":1024,"name":"interval","url":"interfaces/VouchersResponse.html#__type-8.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1260,"kind":1024,"name":"duration","url":"interfaces/VouchersResponse.html#__type-8.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1261,"kind":1024,"name":"validity_day_of_week","url":"interfaces/VouchersResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1262,"kind":1024,"name":"publish","url":"interfaces/VouchersResponse.html#publish","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1263,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1264,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-5.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1265,"kind":1024,"name":"count","url":"interfaces/VouchersResponse.html#__type-5.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1266,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-5.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1267,"kind":1024,"name":"entries","url":"interfaces/VouchersResponse.html#__type-5.entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1268,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-5.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1269,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type-5.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1270,"kind":1024,"name":"redemption","url":"interfaces/VouchersResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1271,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1272,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-6.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1273,"kind":1024,"name":"quantity","url":"interfaces/VouchersResponse.html#__type-6.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1274,"kind":1024,"name":"redeemed_quantity","url":"interfaces/VouchersResponse.html#__type-6.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1275,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-6.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1276,"kind":1024,"name":"redemption_entries","url":"interfaces/VouchersResponse.html#__type-6.redemption_entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1277,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-6.total-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1278,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type-6.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1279,"kind":1024,"name":"active","url":"interfaces/VouchersResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1280,"kind":1024,"name":"additional_info","url":"interfaces/VouchersResponse.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1281,"kind":1024,"name":"metadata","url":"interfaces/VouchersResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1282,"kind":1024,"name":"assets","url":"interfaces/VouchersResponse.html#assets","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1283,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1284,"kind":1024,"name":"qr","url":"interfaces/VouchersResponse.html#__type.qr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1285,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1286,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#__type.__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1287,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type.__type-2.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1288,"kind":1024,"name":"barcode","url":"interfaces/VouchersResponse.html#__type.barcode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1289,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1290,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#__type.__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1291,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type.__type-1.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1292,"kind":1024,"name":"is_referral_code","url":"interfaces/VouchersResponse.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1293,"kind":1024,"name":"referrer_id","url":"interfaces/VouchersResponse.html#referrer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1294,"kind":1024,"name":"holder_id","url":"interfaces/VouchersResponse.html#holder_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1295,"kind":1024,"name":"updated_at","url":"interfaces/VouchersResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1296,"kind":1024,"name":"created_at","url":"interfaces/VouchersResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1297,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1298,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/VouchersResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1299,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1300,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-7.object-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1301,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-7.total-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1302,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-7.data_ref-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1303,"kind":1024,"name":"data","url":"interfaces/VouchersResponse.html#__type-7.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1304,"kind":256,"name":"VouchersQualificationExamineBody","url":"interfaces/VouchersQualificationExamineBody.html","classes":"tsd-kind-interface"},{"id":1305,"kind":1024,"name":"customer","url":"interfaces/VouchersQualificationExamineBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1306,"kind":1024,"name":"order","url":"interfaces/VouchersQualificationExamineBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1307,"kind":1024,"name":"reward","url":"interfaces/VouchersQualificationExamineBody.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1308,"kind":65536,"name":"__type","url":"interfaces/VouchersQualificationExamineBody.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1309,"kind":1024,"name":"id","url":"interfaces/VouchersQualificationExamineBody.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersQualificationExamineBody.__type"},{"id":1310,"kind":1024,"name":"assignment_id","url":"interfaces/VouchersQualificationExamineBody.html#__type.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersQualificationExamineBody.__type"},{"id":1311,"kind":1024,"name":"metadata","url":"interfaces/VouchersQualificationExamineBody.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1312,"kind":256,"name":"VouchersQualificationExamineParams","url":"interfaces/VouchersQualificationExamineParams.html","classes":"tsd-kind-interface"},{"id":1313,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/VouchersQualificationExamineParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1314,"kind":1024,"name":"order","url":"interfaces/VouchersQualificationExamineParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1315,"kind":1024,"name":"limit","url":"interfaces/VouchersQualificationExamineParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1316,"kind":256,"name":"VouchersQualificationExamineResponse","url":"interfaces/VouchersQualificationExamineResponse.html","classes":"tsd-kind-interface"},{"id":1317,"kind":1024,"name":"object","url":"interfaces/VouchersQualificationExamineResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1318,"kind":1024,"name":"total","url":"interfaces/VouchersQualificationExamineResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1319,"kind":1024,"name":"data_ref","url":"interfaces/VouchersQualificationExamineResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1320,"kind":1024,"name":"data","url":"interfaces/VouchersQualificationExamineResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1321,"kind":256,"name":"VouchersCreateParameters","url":"interfaces/VouchersCreateParameters.html","classes":"tsd-kind-interface"},{"id":1322,"kind":1024,"name":"active","url":"interfaces/VouchersCreateParameters.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1323,"kind":1024,"name":"code","url":"interfaces/VouchersCreateParameters.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1324,"kind":1024,"name":"code_config","url":"interfaces/VouchersCreateParameters.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1325,"kind":65536,"name":"__type","url":"interfaces/VouchersCreateParameters.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1326,"kind":1024,"name":"length","url":"interfaces/VouchersCreateParameters.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1327,"kind":1024,"name":"charset","url":"interfaces/VouchersCreateParameters.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1328,"kind":1024,"name":"pattern","url":"interfaces/VouchersCreateParameters.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1329,"kind":1024,"name":"prefix","url":"interfaces/VouchersCreateParameters.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1330,"kind":1024,"name":"suffix","url":"interfaces/VouchersCreateParameters.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1331,"kind":1024,"name":"redemption","url":"interfaces/VouchersCreateParameters.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1332,"kind":65536,"name":"__type","url":"interfaces/VouchersCreateParameters.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1333,"kind":1024,"name":"quantity","url":"interfaces/VouchersCreateParameters.html#__type-1.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1334,"kind":4194304,"name":"VouchersCreate","url":"modules.html#VouchersCreate","classes":"tsd-kind-type-alias"},{"id":1335,"kind":4194304,"name":"VouchersCreateResponse","url":"modules.html#VouchersCreateResponse","classes":"tsd-kind-type-alias"},{"id":1336,"kind":4194304,"name":"VouchersGetResponse","url":"modules.html#VouchersGetResponse","classes":"tsd-kind-type-alias"},{"id":1337,"kind":256,"name":"VouchersUpdate","url":"interfaces/VouchersUpdate.html","classes":"tsd-kind-interface"},{"id":1338,"kind":1024,"name":"code","url":"interfaces/VouchersUpdate.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1339,"kind":1024,"name":"category","url":"interfaces/VouchersUpdate.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1340,"kind":1024,"name":"start_date","url":"interfaces/VouchersUpdate.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1341,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersUpdate.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1342,"kind":1024,"name":"active","url":"interfaces/VouchersUpdate.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1343,"kind":1024,"name":"additional_info","url":"interfaces/VouchersUpdate.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1344,"kind":1024,"name":"metadata","url":"interfaces/VouchersUpdate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1345,"kind":1024,"name":"gift","url":"interfaces/VouchersUpdate.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1346,"kind":65536,"name":"__type","url":"interfaces/VouchersUpdate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1347,"kind":1024,"name":"amount","url":"interfaces/VouchersUpdate.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersUpdate.__type"},{"id":1348,"kind":4194304,"name":"VouchersUpdateResponse","url":"modules.html#VouchersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1349,"kind":256,"name":"VouchersDeleteParams","url":"interfaces/VouchersDeleteParams.html","classes":"tsd-kind-interface"},{"id":1350,"kind":1024,"name":"force","url":"interfaces/VouchersDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersDeleteParams"},{"id":1351,"kind":256,"name":"VouchersListParams","url":"interfaces/VouchersListParams.html","classes":"tsd-kind-interface"},{"id":1352,"kind":1024,"name":"limit","url":"interfaces/VouchersListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1353,"kind":1024,"name":"page","url":"interfaces/VouchersListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1354,"kind":1024,"name":"category","url":"interfaces/VouchersListParams.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1355,"kind":1024,"name":"campaign","url":"interfaces/VouchersListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1356,"kind":1024,"name":"customer","url":"interfaces/VouchersListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1357,"kind":1024,"name":"created_at","url":"interfaces/VouchersListParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1358,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1359,"kind":1024,"name":"after","url":"interfaces/VouchersListParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1360,"kind":1024,"name":"before","url":"interfaces/VouchersListParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1361,"kind":1024,"name":"updated_at","url":"interfaces/VouchersListParams.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1362,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1363,"kind":1024,"name":"after","url":"interfaces/VouchersListParams.html#__type-2.after-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1364,"kind":1024,"name":"before","url":"interfaces/VouchersListParams.html#__type-2.before-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1365,"kind":1024,"name":"order","url":"interfaces/VouchersListParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1366,"kind":1024,"name":"filters","url":"interfaces/VouchersListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1367,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1368,"kind":1024,"name":"junction","url":"interfaces/VouchersListParams.html#__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1369,"kind":256,"name":"VouchersListResponse","url":"interfaces/VouchersListResponse.html","classes":"tsd-kind-interface"},{"id":1370,"kind":1024,"name":"object","url":"interfaces/VouchersListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1371,"kind":1024,"name":"total","url":"interfaces/VouchersListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1372,"kind":1024,"name":"data_ref","url":"interfaces/VouchersListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1373,"kind":1024,"name":"vouchers","url":"interfaces/VouchersListResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1374,"kind":4194304,"name":"VouchersEnableResponse","url":"modules.html#VouchersEnableResponse","classes":"tsd-kind-type-alias"},{"id":1375,"kind":4194304,"name":"VouchersDisableResponse","url":"modules.html#VouchersDisableResponse","classes":"tsd-kind-type-alias"},{"id":1376,"kind":256,"name":"VouchersImport","url":"interfaces/VouchersImport.html","classes":"tsd-kind-interface"},{"id":1377,"kind":1024,"name":"code","url":"interfaces/VouchersImport.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1378,"kind":1024,"name":"category","url":"interfaces/VouchersImport.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1379,"kind":1024,"name":"type","url":"interfaces/VouchersImport.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1380,"kind":1024,"name":"discount","url":"interfaces/VouchersImport.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1381,"kind":1024,"name":"additional_info","url":"interfaces/VouchersImport.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1382,"kind":1024,"name":"start_date","url":"interfaces/VouchersImport.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1383,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersImport.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1384,"kind":1024,"name":"active","url":"interfaces/VouchersImport.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1385,"kind":1024,"name":"metadata","url":"interfaces/VouchersImport.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1386,"kind":1024,"name":"redemption","url":"interfaces/VouchersImport.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1387,"kind":65536,"name":"__type","url":"interfaces/VouchersImport.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1388,"kind":1024,"name":"quantity","url":"interfaces/VouchersImport.html#__type-1.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1389,"kind":1024,"name":"code_config","url":"interfaces/VouchersImport.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1390,"kind":65536,"name":"__type","url":"interfaces/VouchersImport.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1391,"kind":1024,"name":"length","url":"interfaces/VouchersImport.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1392,"kind":1024,"name":"charset","url":"interfaces/VouchersImport.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1393,"kind":1024,"name":"pattern","url":"interfaces/VouchersImport.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1394,"kind":1024,"name":"prefix","url":"interfaces/VouchersImport.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1395,"kind":1024,"name":"suffix","url":"interfaces/VouchersImport.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1396,"kind":256,"name":"VouchersBulkUpdateObject","url":"interfaces/VouchersBulkUpdateObject.html","classes":"tsd-kind-interface"},{"id":1397,"kind":1024,"name":"code","url":"interfaces/VouchersBulkUpdateObject.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateObject"},{"id":1398,"kind":1024,"name":"metadata","url":"interfaces/VouchersBulkUpdateObject.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateObject"},{"id":1399,"kind":4194304,"name":"VouchersBulkUpdate","url":"modules.html#VouchersBulkUpdate","classes":"tsd-kind-type-alias"},{"id":1400,"kind":256,"name":"VouchersBulkUpdateMetadata","url":"interfaces/VouchersBulkUpdateMetadata.html","classes":"tsd-kind-interface"},{"id":1401,"kind":1024,"name":"codes","url":"interfaces/VouchersBulkUpdateMetadata.html#codes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateMetadata"},{"id":1402,"kind":1024,"name":"metadata","url":"interfaces/VouchersBulkUpdateMetadata.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateMetadata"},{"id":1403,"kind":4194304,"name":"VouchersImportResponse","url":"modules.html#VouchersImportResponse","classes":"tsd-kind-type-alias"},{"id":1404,"kind":65536,"name":"__type","url":"modules.html#VouchersImportResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersImportResponse"},{"id":1405,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersImportResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImportResponse.__type"},{"id":1406,"kind":4194304,"name":"VouchersBulkUpdateMetadataResponse","url":"modules.html#VouchersBulkUpdateMetadataResponse","classes":"tsd-kind-type-alias"},{"id":1407,"kind":65536,"name":"__type","url":"modules.html#VouchersBulkUpdateMetadataResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersBulkUpdateMetadataResponse"},{"id":1408,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersBulkUpdateMetadataResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersBulkUpdateMetadataResponse.__type"},{"id":1409,"kind":4194304,"name":"VouchersBulkUpdateResponse","url":"modules.html#VouchersBulkUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1410,"kind":65536,"name":"__type","url":"modules.html#VouchersBulkUpdateResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersBulkUpdateResponse"},{"id":1411,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersBulkUpdateResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersBulkUpdateResponse.__type"},{"id":1412,"kind":256,"name":"ValidationRulesCreate","url":"interfaces/ValidationRulesCreate.html","classes":"tsd-kind-interface"},{"id":1413,"kind":1024,"name":"name","url":"interfaces/ValidationRulesCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1414,"kind":1024,"name":"error","url":"interfaces/ValidationRulesCreate.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1415,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1416,"kind":1024,"name":"message","url":"interfaces/ValidationRulesCreate.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreate.__type"},{"id":1417,"kind":1024,"name":"rules","url":"interfaces/ValidationRulesCreate.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1418,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreate.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1419,"kind":1024,"name":"logic","url":"interfaces/ValidationRulesCreate.html#__type-1.logic","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreate.__type"},{"id":1420,"kind":256,"name":"ValidationRulesCreateResponse","url":"interfaces/ValidationRulesCreateResponse.html","classes":"tsd-kind-interface"},{"id":1421,"kind":1024,"name":"id","url":"interfaces/ValidationRulesCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1422,"kind":1024,"name":"name","url":"interfaces/ValidationRulesCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1423,"kind":1024,"name":"error","url":"interfaces/ValidationRulesCreateResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1424,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1425,"kind":1024,"name":"message","url":"interfaces/ValidationRulesCreateResponse.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreateResponse.__type"},{"id":1426,"kind":1024,"name":"rules","url":"interfaces/ValidationRulesCreateResponse.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1427,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1428,"kind":1024,"name":"logic","url":"interfaces/ValidationRulesCreateResponse.html#__type-1.logic","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreateResponse.__type"},{"id":1429,"kind":1024,"name":"created_at","url":"interfaces/ValidationRulesCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1430,"kind":1024,"name":"updated_at","url":"interfaces/ValidationRulesCreateResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1431,"kind":1024,"name":"object","url":"interfaces/ValidationRulesCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1432,"kind":256,"name":"ValidationRulesValidateResponse","url":"interfaces/ValidationRulesValidateResponse.html","classes":"tsd-kind-interface"},{"id":1433,"kind":1024,"name":"valid","url":"interfaces/ValidationRulesValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1434,"kind":1024,"name":"rule_id","url":"interfaces/ValidationRulesValidateResponse.html#rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1435,"kind":1024,"name":"applicable_to","url":"interfaces/ValidationRulesValidateResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1436,"kind":4194304,"name":"ValidationRulesGetResponse","url":"modules.html#ValidationRulesGetResponse","classes":"tsd-kind-type-alias"},{"id":1437,"kind":4194304,"name":"ValidationRulesUpdate","url":"modules.html#ValidationRulesUpdate","classes":"tsd-kind-type-alias"},{"id":1438,"kind":4194304,"name":"ValidationRulesUpdateResponse","url":"modules.html#ValidationRulesUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1439,"kind":256,"name":"ValidationRulesCreateAssignment","url":"interfaces/ValidationRulesCreateAssignment.html","classes":"tsd-kind-interface"},{"id":1440,"kind":1024,"name":"voucher","url":"interfaces/ValidationRulesCreateAssignment.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1441,"kind":1024,"name":"campaign","url":"interfaces/ValidationRulesCreateAssignment.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1442,"kind":1024,"name":"promotion_tier","url":"interfaces/ValidationRulesCreateAssignment.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1443,"kind":256,"name":"ValidationRulesCreateAssignmentResponse","url":"interfaces/ValidationRulesCreateAssignmentResponse.html","classes":"tsd-kind-interface"},{"id":1444,"kind":1024,"name":"id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1445,"kind":1024,"name":"rule_id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1446,"kind":1024,"name":"related_object_id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1447,"kind":1024,"name":"related_object_type","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1448,"kind":1024,"name":"created_at","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1449,"kind":1024,"name":"updated_at","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1450,"kind":1024,"name":"object","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1451,"kind":256,"name":"ValidationRulesListParams","url":"interfaces/ValidationRulesListParams.html","classes":"tsd-kind-interface"},{"id":1452,"kind":1024,"name":"limit","url":"interfaces/ValidationRulesListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListParams"},{"id":1453,"kind":1024,"name":"page","url":"interfaces/ValidationRulesListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListParams"},{"id":1454,"kind":256,"name":"ValidationRulesListResponse","url":"interfaces/ValidationRulesListResponse.html","classes":"tsd-kind-interface"},{"id":1455,"kind":1024,"name":"object","url":"interfaces/ValidationRulesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1456,"kind":1024,"name":"total","url":"interfaces/ValidationRulesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1457,"kind":1024,"name":"data_ref","url":"interfaces/ValidationRulesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1458,"kind":1024,"name":"data","url":"interfaces/ValidationRulesListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1459,"kind":256,"name":"ValidationRulesListAssignmentsParams","url":"interfaces/ValidationRulesListAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":1460,"kind":1024,"name":"limit","url":"interfaces/ValidationRulesListAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsParams"},{"id":1461,"kind":1024,"name":"page","url":"interfaces/ValidationRulesListAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsParams"},{"id":1462,"kind":256,"name":"ValidationRulesListAssignmentsResponse","url":"interfaces/ValidationRulesListAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":1463,"kind":1024,"name":"object","url":"interfaces/ValidationRulesListAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1464,"kind":1024,"name":"total","url":"interfaces/ValidationRulesListAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1465,"kind":1024,"name":"data_ref","url":"interfaces/ValidationRulesListAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1466,"kind":1024,"name":"data","url":"interfaces/ValidationRulesListAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1467,"kind":256,"name":"RewardsListParams","url":"interfaces/RewardsListParams.html","classes":"tsd-kind-interface"},{"id":1468,"kind":1024,"name":"page","url":"interfaces/RewardsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListParams"},{"id":1469,"kind":1024,"name":"limit","url":"interfaces/RewardsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListParams"},{"id":1470,"kind":256,"name":"RewardsResponse","url":"interfaces/RewardsResponse.html","classes":"tsd-kind-interface"},{"id":1471,"kind":1024,"name":"id","url":"interfaces/RewardsResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1472,"kind":1024,"name":"name","url":"interfaces/RewardsResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1473,"kind":1024,"name":"stock","url":"interfaces/RewardsResponse.html#stock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1474,"kind":1024,"name":"redeemed","url":"interfaces/RewardsResponse.html#redeemed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1475,"kind":1024,"name":"attributes","url":"interfaces/RewardsResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1476,"kind":65536,"name":"__type","url":"interfaces/RewardsResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1477,"kind":1024,"name":"image_url","url":"interfaces/RewardsResponse.html#__type.image_url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsResponse.__type"},{"id":1478,"kind":1024,"name":"description","url":"interfaces/RewardsResponse.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsResponse.__type"},{"id":1479,"kind":1024,"name":"created_at","url":"interfaces/RewardsResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1480,"kind":1024,"name":"updated_at","url":"interfaces/RewardsResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1481,"kind":1024,"name":"object","url":"interfaces/RewardsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1482,"kind":4194304,"name":"RewardsCreateResponse","url":"modules.html#RewardsCreateResponse","classes":"tsd-kind-type-alias"},{"id":1483,"kind":256,"name":"RewardsListResponse","url":"interfaces/RewardsListResponse.html","classes":"tsd-kind-interface"},{"id":1484,"kind":1024,"name":"object","url":"interfaces/RewardsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1485,"kind":1024,"name":"total","url":"interfaces/RewardsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1486,"kind":1024,"name":"data_ref","url":"interfaces/RewardsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1487,"kind":1024,"name":"data","url":"interfaces/RewardsListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1488,"kind":4194304,"name":"RewardsType","url":"modules.html#RewardsType","classes":"tsd-kind-type-alias"},{"id":1489,"kind":4194304,"name":"RewardsTypeResponse","url":"modules.html#RewardsTypeResponse","classes":"tsd-kind-type-alias"},{"id":1490,"kind":4194304,"name":"RewardsCreate","url":"modules.html#RewardsCreate","classes":"tsd-kind-type-alias"},{"id":1491,"kind":4194304,"name":"RewardsGetResponse","url":"modules.html#RewardsGetResponse","classes":"tsd-kind-type-alias"},{"id":1492,"kind":4194304,"name":"RewardsUpdate","url":"modules.html#RewardsUpdate","classes":"tsd-kind-type-alias"},{"id":1493,"kind":4194304,"name":"RewardsUpdateResponse","url":"modules.html#RewardsUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1494,"kind":256,"name":"RewardsAssignmentObject","url":"interfaces/RewardsAssignmentObject.html","classes":"tsd-kind-interface"},{"id":1495,"kind":1024,"name":"id","url":"interfaces/RewardsAssignmentObject.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1496,"kind":1024,"name":"reward_id","url":"interfaces/RewardsAssignmentObject.html#reward_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1497,"kind":1024,"name":"related_object_id","url":"interfaces/RewardsAssignmentObject.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1498,"kind":1024,"name":"related_object_type","url":"interfaces/RewardsAssignmentObject.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1499,"kind":1024,"name":"parameters","url":"interfaces/RewardsAssignmentObject.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1500,"kind":65536,"name":"__type","url":"interfaces/RewardsAssignmentObject.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1501,"kind":1024,"name":"loyalty","url":"interfaces/RewardsAssignmentObject.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type"},{"id":1502,"kind":65536,"name":"__type","url":"interfaces/RewardsAssignmentObject.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type"},{"id":1503,"kind":1024,"name":"points","url":"interfaces/RewardsAssignmentObject.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type.__type"},{"id":1504,"kind":1024,"name":"created_at","url":"interfaces/RewardsAssignmentObject.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1505,"kind":1024,"name":"updated_at","url":"interfaces/RewardsAssignmentObject.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1506,"kind":1024,"name":"object","url":"interfaces/RewardsAssignmentObject.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1507,"kind":256,"name":"RewardsListAssignmentsParams","url":"interfaces/RewardsListAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":1508,"kind":1024,"name":"limit","url":"interfaces/RewardsListAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsParams"},{"id":1509,"kind":1024,"name":"page","url":"interfaces/RewardsListAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsParams"},{"id":1510,"kind":256,"name":"RewardsListAssignmentsResponse","url":"interfaces/RewardsListAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":1511,"kind":1024,"name":"total","url":"interfaces/RewardsListAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1512,"kind":1024,"name":"data","url":"interfaces/RewardsListAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1513,"kind":1024,"name":"object","url":"interfaces/RewardsListAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1514,"kind":1024,"name":"data_ref","url":"interfaces/RewardsListAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1515,"kind":256,"name":"RewardsCreateAssignment","url":"interfaces/RewardsCreateAssignment.html","classes":"tsd-kind-interface"},{"id":1516,"kind":1024,"name":"campaign","url":"interfaces/RewardsCreateAssignment.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1517,"kind":1024,"name":"parameters","url":"interfaces/RewardsCreateAssignment.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1518,"kind":65536,"name":"__type","url":"interfaces/RewardsCreateAssignment.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1519,"kind":1024,"name":"loyalty","url":"interfaces/RewardsCreateAssignment.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type"},{"id":1520,"kind":65536,"name":"__type","url":"interfaces/RewardsCreateAssignment.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type"},{"id":1521,"kind":1024,"name":"points","url":"interfaces/RewardsCreateAssignment.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type.__type"},{"id":1522,"kind":4194304,"name":"RewardsCreateAssignmentResponse","url":"modules.html#RewardsCreateAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":1523,"kind":4194304,"name":"RewardsUpdateAssignment","url":"modules.html#RewardsUpdateAssignment","classes":"tsd-kind-type-alias"},{"id":1524,"kind":4194304,"name":"RewardsUpdateAssignmentResponse","url":"modules.html#RewardsUpdateAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":1525,"kind":256,"name":"RewardRedemptionParams","url":"interfaces/RewardRedemptionParams.html","classes":"tsd-kind-interface"},{"id":1526,"kind":1024,"name":"points","url":"interfaces/RewardRedemptionParams.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1527,"kind":1024,"name":"assignment_id","url":"interfaces/RewardRedemptionParams.html#assignment_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1528,"kind":1024,"name":"id","url":"interfaces/RewardRedemptionParams.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1529,"kind":256,"name":"ProductsCreate","url":"interfaces/ProductsCreate.html","classes":"tsd-kind-interface"},{"id":1530,"kind":1024,"name":"name","url":"interfaces/ProductsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1531,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1532,"kind":1024,"name":"price","url":"interfaces/ProductsCreate.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1533,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreate.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1534,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1535,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreate.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1536,"kind":256,"name":"ProductsGetResponseSkus","url":"interfaces/ProductsGetResponseSkus.html","classes":"tsd-kind-interface"},{"id":1537,"kind":1024,"name":"skus","url":"interfaces/ProductsGetResponseSkus.html#skus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsGetResponseSkus"},{"id":1538,"kind":65536,"name":"__type","url":"interfaces/ProductsGetResponseSkus.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ProductsGetResponseSkus"},{"id":1539,"kind":1024,"name":"object","url":"interfaces/ProductsGetResponseSkus.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1540,"kind":1024,"name":"total","url":"interfaces/ProductsGetResponseSkus.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1541,"kind":1024,"name":"data","url":"interfaces/ProductsGetResponseSkus.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1542,"kind":256,"name":"ProductsCreateResponse","url":"interfaces/ProductsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1543,"kind":1024,"name":"id","url":"interfaces/ProductsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1544,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1545,"kind":1024,"name":"object","url":"interfaces/ProductsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1546,"kind":1024,"name":"name","url":"interfaces/ProductsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1547,"kind":1024,"name":"price","url":"interfaces/ProductsCreateResponse.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1548,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1549,"kind":1024,"name":"created_at","url":"interfaces/ProductsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1550,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreateResponse.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1551,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1552,"kind":4194304,"name":"ProductsGetResponse","url":"modules.html#ProductsGetResponse","classes":"tsd-kind-type-alias"},{"id":1553,"kind":4194304,"name":"ProductsUpdate","url":"modules.html#ProductsUpdate","classes":"tsd-kind-type-alias"},{"id":1554,"kind":65536,"name":"__type","url":"modules.html#ProductsUpdate.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsUpdate"},{"id":1555,"kind":1024,"name":"name","url":"modules.html#ProductsUpdate.__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1556,"kind":1024,"name":"id","url":"modules.html#ProductsUpdate.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1557,"kind":1024,"name":"source_id","url":"modules.html#ProductsUpdate.__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1558,"kind":1024,"name":"attributes","url":"modules.html#ProductsUpdate.__type.attributes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1559,"kind":1024,"name":"price","url":"modules.html#ProductsUpdate.__type.price","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1560,"kind":1024,"name":"image_url","url":"modules.html#ProductsUpdate.__type.image_url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1561,"kind":1024,"name":"metadata","url":"modules.html#ProductsUpdate.__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1562,"kind":4194304,"name":"ProductsUpdateResponse","url":"modules.html#ProductsUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1563,"kind":256,"name":"ProductsBulkUpdateMetadata","url":"interfaces/ProductsBulkUpdateMetadata.html","classes":"tsd-kind-interface"},{"id":1564,"kind":1024,"name":"source_ids","url":"interfaces/ProductsBulkUpdateMetadata.html#source_ids","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsBulkUpdateMetadata"},{"id":1565,"kind":1024,"name":"metadata","url":"interfaces/ProductsBulkUpdateMetadata.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsBulkUpdateMetadata"},{"id":1566,"kind":4194304,"name":"ProductsBulkUpdate","url":"modules.html#ProductsBulkUpdate","classes":"tsd-kind-type-alias"},{"id":1567,"kind":4194304,"name":"ProductsBulkUpdateResponse","url":"modules.html#ProductsBulkUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1568,"kind":65536,"name":"__type","url":"modules.html#ProductsBulkUpdateResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsBulkUpdateResponse"},{"id":1569,"kind":1024,"name":"async_action_id","url":"modules.html#ProductsBulkUpdateResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsBulkUpdateResponse.__type"},{"id":1570,"kind":4194304,"name":"ProductsBulkUpdateMetadataResponse","url":"modules.html#ProductsBulkUpdateMetadataResponse","classes":"tsd-kind-type-alias"},{"id":1571,"kind":65536,"name":"__type","url":"modules.html#ProductsBulkUpdateMetadataResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsBulkUpdateMetadataResponse"},{"id":1572,"kind":1024,"name":"async_action_id","url":"modules.html#ProductsBulkUpdateMetadataResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsBulkUpdateMetadataResponse.__type"},{"id":1573,"kind":256,"name":"ProductsDeleteParams","url":"interfaces/ProductsDeleteParams.html","classes":"tsd-kind-interface"},{"id":1574,"kind":1024,"name":"force","url":"interfaces/ProductsDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsDeleteParams"},{"id":1575,"kind":256,"name":"ProductsListParams","url":"interfaces/ProductsListParams.html","classes":"tsd-kind-interface"},{"id":1576,"kind":1024,"name":"page","url":"interfaces/ProductsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListParams"},{"id":1577,"kind":1024,"name":"limit","url":"interfaces/ProductsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListParams"},{"id":1578,"kind":256,"name":"ProductsListResponse","url":"interfaces/ProductsListResponse.html","classes":"tsd-kind-interface"},{"id":1579,"kind":1024,"name":"object","url":"interfaces/ProductsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1580,"kind":1024,"name":"total","url":"interfaces/ProductsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1581,"kind":1024,"name":"data_ref","url":"interfaces/ProductsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1582,"kind":1024,"name":"products","url":"interfaces/ProductsListResponse.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1583,"kind":256,"name":"ProductsCreateSku","url":"interfaces/ProductsCreateSku.html","classes":"tsd-kind-interface"},{"id":1584,"kind":1024,"name":"sku","url":"interfaces/ProductsCreateSku.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1585,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateSku.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1586,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateSku.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1587,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateSku.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1588,"kind":1024,"name":"price","url":"interfaces/ProductsCreateSku.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1589,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreateSku.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1590,"kind":1024,"name":"currency","url":"interfaces/ProductsCreateSku.html#currency","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1591,"kind":256,"name":"ProductsCreateSkuResponse","url":"interfaces/ProductsCreateSkuResponse.html","classes":"tsd-kind-interface"},{"id":1592,"kind":1024,"name":"id","url":"interfaces/ProductsCreateSkuResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1593,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateSkuResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1594,"kind":1024,"name":"sku","url":"interfaces/ProductsCreateSkuResponse.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1595,"kind":1024,"name":"price","url":"interfaces/ProductsCreateSkuResponse.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1596,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateSkuResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1597,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateSkuResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1598,"kind":1024,"name":"updated_at","url":"interfaces/ProductsCreateSkuResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1599,"kind":1024,"name":"currency","url":"interfaces/ProductsCreateSkuResponse.html#currency","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1600,"kind":1024,"name":"created_at","url":"interfaces/ProductsCreateSkuResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1601,"kind":1024,"name":"object","url":"interfaces/ProductsCreateSkuResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1602,"kind":4194304,"name":"ProductsGetSkuResponse","url":"modules.html#ProductsGetSkuResponse","classes":"tsd-kind-type-alias"},{"id":1603,"kind":4194304,"name":"ProductsUpdateSku","url":"modules.html#ProductsUpdateSku","classes":"tsd-kind-type-alias"},{"id":1604,"kind":4194304,"name":"ProductsUpdateSkuResponse","url":"modules.html#ProductsUpdateSkuResponse","classes":"tsd-kind-type-alias"},{"id":1605,"kind":256,"name":"ProductsDeleteSkuParams","url":"interfaces/ProductsDeleteSkuParams.html","classes":"tsd-kind-interface"},{"id":1606,"kind":1024,"name":"force","url":"interfaces/ProductsDeleteSkuParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsDeleteSkuParams"},{"id":1607,"kind":256,"name":"ProductsListSkus","url":"interfaces/ProductsListSkus.html","classes":"tsd-kind-interface"},{"id":1608,"kind":1024,"name":"object","url":"interfaces/ProductsListSkus.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1609,"kind":1024,"name":"total","url":"interfaces/ProductsListSkus.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1610,"kind":1024,"name":"skus","url":"interfaces/ProductsListSkus.html#skus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1611,"kind":256,"name":"SimpleProduct","url":"interfaces/SimpleProduct.html","classes":"tsd-kind-interface"},{"id":1612,"kind":1024,"name":"id","url":"interfaces/SimpleProduct.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1613,"kind":1024,"name":"source_id","url":"interfaces/SimpleProduct.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1614,"kind":1024,"name":"name","url":"interfaces/SimpleProduct.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1615,"kind":256,"name":"SimpleSku","url":"interfaces/SimpleSku.html","classes":"tsd-kind-interface"},{"id":1616,"kind":1024,"name":"id","url":"interfaces/SimpleSku.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1617,"kind":1024,"name":"source_id","url":"interfaces/SimpleSku.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1618,"kind":1024,"name":"sku","url":"interfaces/SimpleSku.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1619,"kind":256,"name":"VoucherDiscount","url":"interfaces/VoucherDiscount.html","classes":"tsd-kind-interface"},{"id":1620,"kind":1024,"name":"type","url":"interfaces/VoucherDiscount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1621,"kind":1024,"name":"unit_off","url":"interfaces/VoucherDiscount.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1622,"kind":1024,"name":"unit_off_formula","url":"interfaces/VoucherDiscount.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1623,"kind":1024,"name":"effect","url":"interfaces/VoucherDiscount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1624,"kind":1024,"name":"amount_off","url":"interfaces/VoucherDiscount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1625,"kind":1024,"name":"amount_off_formula","url":"interfaces/VoucherDiscount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1626,"kind":1024,"name":"percent_off","url":"interfaces/VoucherDiscount.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1627,"kind":1024,"name":"percent_off_formula","url":"interfaces/VoucherDiscount.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1628,"kind":1024,"name":"amount_limit","url":"interfaces/VoucherDiscount.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1629,"kind":256,"name":"DistributionsPublicationsListParams","url":"interfaces/DistributionsPublicationsListParams.html","classes":"tsd-kind-interface"},{"id":1630,"kind":1024,"name":"limit","url":"interfaces/DistributionsPublicationsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1631,"kind":1024,"name":"page","url":"interfaces/DistributionsPublicationsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1632,"kind":1024,"name":"order","url":"interfaces/DistributionsPublicationsListParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1633,"kind":1024,"name":"campaign","url":"interfaces/DistributionsPublicationsListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1634,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1635,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsListParams.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1636,"kind":1024,"name":"result","url":"interfaces/DistributionsPublicationsListParams.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1637,"kind":1024,"name":"voucher_type","url":"interfaces/DistributionsPublicationsListParams.html#voucher_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1638,"kind":1024,"name":"is_referral_code","url":"interfaces/DistributionsPublicationsListParams.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1639,"kind":1024,"name":"filters","url":"interfaces/DistributionsPublicationsListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1640,"kind":65536,"name":"__type","url":"interfaces/DistributionsPublicationsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1641,"kind":1024,"name":"junction","url":"interfaces/DistributionsPublicationsListParams.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsListParams.__type"},{"id":1642,"kind":256,"name":"DistributionsPublicationsListResponse","url":"interfaces/DistributionsPublicationsListResponse.html","classes":"tsd-kind-interface"},{"id":1643,"kind":1024,"name":"object","url":"interfaces/DistributionsPublicationsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1644,"kind":1024,"name":"total","url":"interfaces/DistributionsPublicationsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1645,"kind":1024,"name":"data_ref","url":"interfaces/DistributionsPublicationsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1646,"kind":1024,"name":"publications","url":"interfaces/DistributionsPublicationsListResponse.html#publications","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1647,"kind":256,"name":"DistributionsPublicationsCreateParams","url":"interfaces/DistributionsPublicationsCreateParams.html","classes":"tsd-kind-interface"},{"id":1648,"kind":1024,"name":"join_once","url":"interfaces/DistributionsPublicationsCreateParams.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1649,"kind":1024,"name":"source_id","url":"interfaces/DistributionsPublicationsCreateParams.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1650,"kind":1024,"name":"campaign","url":"interfaces/DistributionsPublicationsCreateParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1651,"kind":65536,"name":"__type","url":"interfaces/DistributionsPublicationsCreateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1652,"kind":1024,"name":"name","url":"interfaces/DistributionsPublicationsCreateParams.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsCreateParams.__type"},{"id":1653,"kind":1024,"name":"count","url":"interfaces/DistributionsPublicationsCreateParams.html#__type.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsCreateParams.__type"},{"id":1654,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsCreateParams.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1655,"kind":1024,"name":"channel","url":"interfaces/DistributionsPublicationsCreateParams.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1656,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsCreateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1657,"kind":256,"name":"DistributionsPublicationsCreateResponse","url":"interfaces/DistributionsPublicationsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1658,"kind":1024,"name":"id","url":"interfaces/DistributionsPublicationsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1659,"kind":1024,"name":"object","url":"interfaces/DistributionsPublicationsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1660,"kind":1024,"name":"created_at","url":"interfaces/DistributionsPublicationsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1661,"kind":1024,"name":"customer_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1662,"kind":1024,"name":"tracking_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1663,"kind":1024,"name":"metadata","url":"interfaces/DistributionsPublicationsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1664,"kind":1024,"name":"channel","url":"interfaces/DistributionsPublicationsCreateResponse.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1665,"kind":1024,"name":"source_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1666,"kind":1024,"name":"result","url":"interfaces/DistributionsPublicationsCreateResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1667,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsCreateResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1668,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsCreateResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1669,"kind":256,"name":"SegmentsCreate","url":"interfaces/SegmentsCreate.html","classes":"tsd-kind-interface"},{"id":1670,"kind":1024,"name":"name","url":"interfaces/SegmentsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1671,"kind":1024,"name":"type","url":"interfaces/SegmentsCreate.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1672,"kind":1024,"name":"filter","url":"interfaces/SegmentsCreate.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1673,"kind":65536,"name":"__type","url":"interfaces/SegmentsCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1674,"kind":1024,"name":"junction","url":"interfaces/SegmentsCreate.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SegmentsCreate.__type"},{"id":1675,"kind":1024,"name":"customers","url":"interfaces/SegmentsCreate.html#customers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1676,"kind":256,"name":"SegmentsCreateResponse","url":"interfaces/SegmentsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1677,"kind":1024,"name":"id","url":"interfaces/SegmentsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1678,"kind":1024,"name":"name","url":"interfaces/SegmentsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1679,"kind":1024,"name":"created_at","url":"interfaces/SegmentsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1680,"kind":1024,"name":"metadata","url":"interfaces/SegmentsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1681,"kind":1024,"name":"filter","url":"interfaces/SegmentsCreateResponse.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1682,"kind":65536,"name":"__type","url":"interfaces/SegmentsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1683,"kind":1024,"name":"junction","url":"interfaces/SegmentsCreateResponse.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SegmentsCreateResponse.__type"},{"id":1684,"kind":1024,"name":"type","url":"interfaces/SegmentsCreateResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1685,"kind":1024,"name":"object","url":"interfaces/SegmentsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1686,"kind":4194304,"name":"SegmentsGetResponse","url":"modules.html#SegmentsGetResponse","classes":"tsd-kind-type-alias"},{"id":1687,"kind":256,"name":"SegmentsListResponse","url":"interfaces/SegmentsListResponse.html","classes":"tsd-kind-interface"},{"id":1688,"kind":1024,"name":"object","url":"interfaces/SegmentsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1689,"kind":1024,"name":"total","url":"interfaces/SegmentsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1690,"kind":1024,"name":"data_ref","url":"interfaces/SegmentsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1691,"kind":1024,"name":"data","url":"interfaces/SegmentsListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1692,"kind":256,"name":"ExportResource","url":"interfaces/ExportResource.html","classes":"tsd-kind-interface"},{"id":1693,"kind":1024,"name":"exported_object","url":"interfaces/ExportResource.html#exported_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportResource"},{"id":1694,"kind":1024,"name":"parameters","url":"interfaces/ExportResource.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportResource"},{"id":1695,"kind":65536,"name":"__type","url":"interfaces/ExportResource.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportResource"},{"id":1696,"kind":1024,"name":"order","url":"interfaces/ExportResource.html#__type.order","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1697,"kind":1024,"name":"fields","url":"interfaces/ExportResource.html#__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1698,"kind":1024,"name":"filters","url":"interfaces/ExportResource.html#__type.filters","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1699,"kind":65536,"name":"__type","url":"interfaces/ExportResource.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1700,"kind":1024,"name":"junction","url":"interfaces/ExportResource.html#__type.__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type.__type"},{"id":1701,"kind":256,"name":"ExportsCreateResponse","url":"interfaces/ExportsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1702,"kind":1024,"name":"id","url":"interfaces/ExportsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1703,"kind":1024,"name":"object","url":"interfaces/ExportsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1704,"kind":1024,"name":"created_at","url":"interfaces/ExportsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1705,"kind":1024,"name":"status","url":"interfaces/ExportsCreateResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1706,"kind":1024,"name":"channel","url":"interfaces/ExportsCreateResponse.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1707,"kind":1024,"name":"exported_object","url":"interfaces/ExportsCreateResponse.html#exported_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1708,"kind":1024,"name":"parameters","url":"interfaces/ExportsCreateResponse.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1709,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1710,"kind":1024,"name":"fields","url":"interfaces/ExportsCreateResponse.html#__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1711,"kind":1024,"name":"filters","url":"interfaces/ExportsCreateResponse.html#__type.filters","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1712,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1713,"kind":1024,"name":"junction","url":"interfaces/ExportsCreateResponse.html#__type.__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type.__type"},{"id":1714,"kind":1024,"name":"result","url":"interfaces/ExportsCreateResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1715,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1716,"kind":1024,"name":"url","url":"interfaces/ExportsCreateResponse.html#__type-2.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1717,"kind":4194304,"name":"ExportsGetResponse","url":"modules.html#ExportsGetResponse","classes":"tsd-kind-type-alias"},{"id":1718,"kind":256,"name":"OrdersItem","url":"interfaces/OrdersItem.html","classes":"tsd-kind-interface"},{"id":1719,"kind":1024,"name":"sku_id","url":"interfaces/OrdersItem.html#sku_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1720,"kind":1024,"name":"product_id","url":"interfaces/OrdersItem.html#product_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1721,"kind":1024,"name":"related_object","url":"interfaces/OrdersItem.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1722,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#source_id-2","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1723,"kind":1024,"name":"discount_quantity","url":"interfaces/OrdersItem.html#discount_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1724,"kind":1024,"name":"initial_quantity","url":"interfaces/OrdersItem.html#initial_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1725,"kind":1024,"name":"quantity","url":"interfaces/OrdersItem.html#quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1726,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1727,"kind":1024,"name":"amount","url":"interfaces/OrdersItem.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1728,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersItem.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1729,"kind":1024,"name":"initial_amount","url":"interfaces/OrdersItem.html#initial_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1730,"kind":1024,"name":"applied_discount_amount","url":"interfaces/OrdersItem.html#applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1731,"kind":1024,"name":"subtotal_amount","url":"interfaces/OrdersItem.html#subtotal_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1732,"kind":1024,"name":"product","url":"interfaces/OrdersItem.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1733,"kind":65536,"name":"__type","url":"interfaces/OrdersItem.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1734,"kind":1024,"name":"id","url":"interfaces/OrdersItem.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1735,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1736,"kind":1024,"name":"override","url":"interfaces/OrdersItem.html#__type.override","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1737,"kind":1024,"name":"name","url":"interfaces/OrdersItem.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1738,"kind":1024,"name":"metadata","url":"interfaces/OrdersItem.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1739,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#__type.price-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1740,"kind":1024,"name":"sku","url":"interfaces/OrdersItem.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1741,"kind":65536,"name":"__type","url":"interfaces/OrdersItem.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1742,"kind":1024,"name":"id","url":"interfaces/OrdersItem.html#__type-1.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1743,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#__type-1.source_id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1744,"kind":1024,"name":"override","url":"interfaces/OrdersItem.html#__type-1.override-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1745,"kind":1024,"name":"sku","url":"interfaces/OrdersItem.html#__type-1.sku-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1746,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#__type-1.price-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1747,"kind":1024,"name":"object","url":"interfaces/OrdersItem.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1748,"kind":1024,"name":"metadata","url":"interfaces/OrdersItem.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1749,"kind":256,"name":"OrdersCreate","url":"interfaces/OrdersCreate.html","classes":"tsd-kind-interface"},{"id":1750,"kind":1024,"name":"source_id","url":"interfaces/OrdersCreate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1751,"kind":1024,"name":"status","url":"interfaces/OrdersCreate.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1752,"kind":1024,"name":"customer","url":"interfaces/OrdersCreate.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1753,"kind":1024,"name":"amount","url":"interfaces/OrdersCreate.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1754,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersCreate.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1755,"kind":1024,"name":"items","url":"interfaces/OrdersCreate.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1756,"kind":1024,"name":"metadata","url":"interfaces/OrdersCreate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1757,"kind":256,"name":"OrdersCreateResponse","url":"interfaces/OrdersCreateResponse.html","classes":"tsd-kind-interface"},{"id":1758,"kind":1024,"name":"id","url":"interfaces/OrdersCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1759,"kind":1024,"name":"source_id","url":"interfaces/OrdersCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1760,"kind":1024,"name":"created_at","url":"interfaces/OrdersCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1761,"kind":1024,"name":"updated_at","url":"interfaces/OrdersCreateResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1762,"kind":1024,"name":"status","url":"interfaces/OrdersCreateResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1763,"kind":1024,"name":"amount","url":"interfaces/OrdersCreateResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1764,"kind":1024,"name":"initial_amount","url":"interfaces/OrdersCreateResponse.html#initial_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1765,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersCreateResponse.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1766,"kind":1024,"name":"items_discount_amount","url":"interfaces/OrdersCreateResponse.html#items_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1767,"kind":1024,"name":"total_discount_amount","url":"interfaces/OrdersCreateResponse.html#total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1768,"kind":1024,"name":"applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1769,"kind":1024,"name":"items_applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#items_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1770,"kind":1024,"name":"total_amount","url":"interfaces/OrdersCreateResponse.html#total_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1771,"kind":1024,"name":"total_applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#total_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1772,"kind":1024,"name":"items","url":"interfaces/OrdersCreateResponse.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1773,"kind":1024,"name":"metadata","url":"interfaces/OrdersCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1774,"kind":1024,"name":"customer","url":"interfaces/OrdersCreateResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1775,"kind":1024,"name":"object","url":"interfaces/OrdersCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1776,"kind":4194304,"name":"OrdersGetResponse","url":"modules.html#OrdersGetResponse","classes":"tsd-kind-type-alias"},{"id":1777,"kind":256,"name":"OrdersUpdate","url":"interfaces/OrdersUpdate.html","classes":"tsd-kind-interface"},{"id":1778,"kind":1024,"name":"id","url":"interfaces/OrdersUpdate.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1779,"kind":1024,"name":"source_id","url":"interfaces/OrdersUpdate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1780,"kind":1024,"name":"status","url":"interfaces/OrdersUpdate.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1781,"kind":1024,"name":"items","url":"interfaces/OrdersUpdate.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1782,"kind":1024,"name":"amount","url":"interfaces/OrdersUpdate.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1783,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersUpdate.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1784,"kind":1024,"name":"metadata","url":"interfaces/OrdersUpdate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1785,"kind":1024,"name":"customer","url":"interfaces/OrdersUpdate.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1786,"kind":65536,"name":"__type","url":"interfaces/OrdersUpdate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1787,"kind":1024,"name":"id","url":"interfaces/OrdersUpdate.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersUpdate.__type"},{"id":1788,"kind":4194304,"name":"OrdersUpdateResponse","url":"modules.html#OrdersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1789,"kind":256,"name":"OrdersListParams","url":"interfaces/OrdersListParams.html","classes":"tsd-kind-interface"},{"id":1790,"kind":1024,"name":"limit","url":"interfaces/OrdersListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListParams"},{"id":1791,"kind":1024,"name":"page","url":"interfaces/OrdersListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListParams"},{"id":1792,"kind":256,"name":"OrdersListResponse","url":"interfaces/OrdersListResponse.html","classes":"tsd-kind-interface"},{"id":1793,"kind":1024,"name":"object","url":"interfaces/OrdersListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1794,"kind":1024,"name":"total","url":"interfaces/OrdersListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1795,"kind":1024,"name":"data_ref","url":"interfaces/OrdersListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1796,"kind":1024,"name":"orders","url":"interfaces/OrdersListResponse.html#orders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1797,"kind":256,"name":"Consent","url":"interfaces/Consent.html","classes":"tsd-kind-interface"},{"id":1798,"kind":1024,"name":"id","url":"interfaces/Consent.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1799,"kind":1024,"name":"name","url":"interfaces/Consent.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1800,"kind":1024,"name":"description","url":"interfaces/Consent.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1801,"kind":1024,"name":"category","url":"interfaces/Consent.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1802,"kind":1024,"name":"created_at","url":"interfaces/Consent.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1803,"kind":1024,"name":"updated_at","url":"interfaces/Consent.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1804,"kind":1024,"name":"object","url":"interfaces/Consent.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1805,"kind":256,"name":"ConsentsListResponse","url":"interfaces/ConsentsListResponse.html","classes":"tsd-kind-interface"},{"id":1806,"kind":1024,"name":"groups","url":"interfaces/ConsentsListResponse.html#groups","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1807,"kind":65536,"name":"__type","url":"interfaces/ConsentsListResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1808,"kind":1024,"name":"object","url":"interfaces/ConsentsListResponse.html#__type-1.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1809,"kind":1024,"name":"total","url":"interfaces/ConsentsListResponse.html#__type-1.total-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1810,"kind":1024,"name":"data_ref","url":"interfaces/ConsentsListResponse.html#__type-1.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1811,"kind":1024,"name":"data","url":"interfaces/ConsentsListResponse.html#__type-1.data-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1812,"kind":1024,"name":"consents","url":"interfaces/ConsentsListResponse.html#consents","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1813,"kind":65536,"name":"__type","url":"interfaces/ConsentsListResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1814,"kind":1024,"name":"object","url":"interfaces/ConsentsListResponse.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1815,"kind":1024,"name":"total","url":"interfaces/ConsentsListResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1816,"kind":1024,"name":"data_ref","url":"interfaces/ConsentsListResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1817,"kind":1024,"name":"data","url":"interfaces/ConsentsListResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1818,"kind":256,"name":"EventsParams","url":"interfaces/EventsParams.html","classes":"tsd-kind-interface"},{"id":1819,"kind":1024,"name":"event","url":"interfaces/EventsParams.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1820,"kind":1024,"name":"customer","url":"interfaces/EventsParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1821,"kind":1024,"name":"metadata","url":"interfaces/EventsParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1822,"kind":1024,"name":"referral","url":"interfaces/EventsParams.html#referral","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1823,"kind":65536,"name":"__type","url":"interfaces/EventsParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"EventsParams"},{"id":1824,"kind":1024,"name":"code","url":"interfaces/EventsParams.html#__type-1.code-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1825,"kind":1024,"name":"referrer_id","url":"interfaces/EventsParams.html#__type-1.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1826,"kind":1024,"name":"loyalty","url":"interfaces/EventsParams.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1827,"kind":65536,"name":"__type","url":"interfaces/EventsParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"EventsParams"},{"id":1828,"kind":1024,"name":"code","url":"interfaces/EventsParams.html#__type.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1829,"kind":256,"name":"EventsResponse","url":"interfaces/EventsResponse.html","classes":"tsd-kind-interface"},{"id":1830,"kind":1024,"name":"object","url":"interfaces/EventsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsResponse"},{"id":1831,"kind":1024,"name":"type","url":"interfaces/EventsResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsResponse"},{"id":1832,"kind":256,"name":"StackableOptions","url":"interfaces/StackableOptions.html","classes":"tsd-kind-interface"},{"id":1833,"kind":1024,"name":"expand","url":"interfaces/StackableOptions.html#expand","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableOptions"},{"id":1834,"kind":4194304,"name":"StackableRedeemableObject","url":"modules.html#StackableRedeemableObject","classes":"tsd-kind-type-alias"},{"id":1835,"kind":256,"name":"StackableRedeemableParams","url":"interfaces/StackableRedeemableParams.html","classes":"tsd-kind-interface"},{"id":1836,"kind":1024,"name":"object","url":"interfaces/StackableRedeemableParams.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1837,"kind":1024,"name":"id","url":"interfaces/StackableRedeemableParams.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1838,"kind":1024,"name":"reward","url":"interfaces/StackableRedeemableParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1839,"kind":1024,"name":"gift","url":"interfaces/StackableRedeemableParams.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1840,"kind":4194304,"name":"StackableRedeemableResponseStatus","url":"modules.html#StackableRedeemableResponseStatus","classes":"tsd-kind-type-alias"},{"id":1841,"kind":256,"name":"StackableRedeemableResultDiscountUnit","url":"interfaces/StackableRedeemableResultDiscountUnit.html","classes":"tsd-kind-interface"},{"id":1842,"kind":1024,"name":"effect","url":"interfaces/StackableRedeemableResultDiscountUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1843,"kind":1024,"name":"unit_off","url":"interfaces/StackableRedeemableResultDiscountUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1844,"kind":1024,"name":"unit_type","url":"interfaces/StackableRedeemableResultDiscountUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1845,"kind":1024,"name":"sku","url":"interfaces/StackableRedeemableResultDiscountUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1846,"kind":1024,"name":"product","url":"interfaces/StackableRedeemableResultDiscountUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1847,"kind":256,"name":"StackableRedeemableResultDiscount","url":"interfaces/StackableRedeemableResultDiscount.html","classes":"tsd-kind-interface"},{"id":1848,"kind":1024,"name":"type","url":"interfaces/StackableRedeemableResultDiscount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1849,"kind":1024,"name":"effect","url":"interfaces/StackableRedeemableResultDiscount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1850,"kind":1024,"name":"amount_off","url":"interfaces/StackableRedeemableResultDiscount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1851,"kind":1024,"name":"amount_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1852,"kind":1024,"name":"percent_off","url":"interfaces/StackableRedeemableResultDiscount.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1853,"kind":1024,"name":"percent_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1854,"kind":1024,"name":"amount_limit","url":"interfaces/StackableRedeemableResultDiscount.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1855,"kind":1024,"name":"fixed_amount","url":"interfaces/StackableRedeemableResultDiscount.html#fixed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1856,"kind":1024,"name":"fixed_amount_formula","url":"interfaces/StackableRedeemableResultDiscount.html#fixed_amount_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1857,"kind":1024,"name":"unit_off","url":"interfaces/StackableRedeemableResultDiscount.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1858,"kind":1024,"name":"unit_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1859,"kind":1024,"name":"unit_type","url":"interfaces/StackableRedeemableResultDiscount.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1860,"kind":1024,"name":"sku","url":"interfaces/StackableRedeemableResultDiscount.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1861,"kind":1024,"name":"product","url":"interfaces/StackableRedeemableResultDiscount.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1862,"kind":1024,"name":"units","url":"interfaces/StackableRedeemableResultDiscount.html#units","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1863,"kind":256,"name":"StackableRedeemableResultGift","url":"interfaces/StackableRedeemableResultGift.html","classes":"tsd-kind-interface"},{"id":1864,"kind":1024,"name":"credits","url":"interfaces/StackableRedeemableResultGift.html#credits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultGift"},{"id":1865,"kind":256,"name":"StackableRedeemableResultLoyaltyCard","url":"interfaces/StackableRedeemableResultLoyaltyCard.html","classes":"tsd-kind-interface"},{"id":1866,"kind":1024,"name":"points","url":"interfaces/StackableRedeemableResultLoyaltyCard.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultLoyaltyCard"},{"id":1867,"kind":1024,"name":"transfers","url":"interfaces/StackableRedeemableResultLoyaltyCard.html#transfers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultLoyaltyCard"},{"id":1868,"kind":256,"name":"StackableRedeemableResultResponse","url":"interfaces/StackableRedeemableResultResponse.html","classes":"tsd-kind-interface"},{"id":1869,"kind":1024,"name":"discount","url":"interfaces/StackableRedeemableResultResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1870,"kind":1024,"name":"gift","url":"interfaces/StackableRedeemableResultResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1871,"kind":1024,"name":"loyalty_card","url":"interfaces/StackableRedeemableResultResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1872,"kind":1024,"name":"error","url":"interfaces/StackableRedeemableResultResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1873,"kind":256,"name":"StackableRedeemableResponse","url":"interfaces/StackableRedeemableResponse.html","classes":"tsd-kind-interface"},{"id":1874,"kind":1024,"name":"status","url":"interfaces/StackableRedeemableResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1875,"kind":1024,"name":"id","url":"interfaces/StackableRedeemableResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1876,"kind":1024,"name":"object","url":"interfaces/StackableRedeemableResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1877,"kind":1024,"name":"order","url":"interfaces/StackableRedeemableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1878,"kind":1024,"name":"applicable_to","url":"interfaces/StackableRedeemableResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1879,"kind":1024,"name":"inapplicable_to","url":"interfaces/StackableRedeemableResponse.html#inapplicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1880,"kind":1024,"name":"result","url":"interfaces/StackableRedeemableResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1881,"kind":1024,"name":"metadata","url":"interfaces/StackableRedeemableResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1882,"kind":256,"name":"GiftRedemptionParams","url":"interfaces/GiftRedemptionParams.html","classes":"tsd-kind-interface"},{"id":1883,"kind":1024,"name":"credits","url":"interfaces/GiftRedemptionParams.html#credits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GiftRedemptionParams"},{"id":1884,"kind":4194304,"name":"ValidationSessionType","url":"modules.html#ValidationSessionType","classes":"tsd-kind-type-alias"},{"id":1885,"kind":4194304,"name":"ValidationSessionTTLUnit","url":"modules.html#ValidationSessionTTLUnit","classes":"tsd-kind-type-alias"},{"id":1886,"kind":256,"name":"ValidationSessionParams","url":"interfaces/ValidationSessionParams.html","classes":"tsd-kind-interface"},{"id":1887,"kind":1024,"name":"key","url":"interfaces/ValidationSessionParams.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1888,"kind":1024,"name":"type","url":"interfaces/ValidationSessionParams.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1889,"kind":1024,"name":"ttl","url":"interfaces/ValidationSessionParams.html#ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1890,"kind":1024,"name":"ttl_unit","url":"interfaces/ValidationSessionParams.html#ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1891,"kind":256,"name":"ValidationSessionResponse","url":"interfaces/ValidationSessionResponse.html","classes":"tsd-kind-interface"},{"id":1892,"kind":1024,"name":"key","url":"interfaces/ValidationSessionResponse.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1893,"kind":1024,"name":"type","url":"interfaces/ValidationSessionResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1894,"kind":1024,"name":"ttl","url":"interfaces/ValidationSessionResponse.html#ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1895,"kind":1024,"name":"ttl_unit","url":"interfaces/ValidationSessionResponse.html#ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1896,"kind":256,"name":"ValidationSessionReleaseParams","url":"interfaces/ValidationSessionReleaseParams.html","classes":"tsd-kind-interface"},{"id":1897,"kind":1024,"name":"key","url":"interfaces/ValidationSessionReleaseParams.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionReleaseParams"},{"id":1898,"kind":4194304,"name":"ApplicableToEffect","url":"modules.html#ApplicableToEffect","classes":"tsd-kind-type-alias"},{"id":1899,"kind":256,"name":"ApplicableTo","url":"interfaces/ApplicableTo.html","classes":"tsd-kind-interface"},{"id":1900,"kind":1024,"name":"object","url":"interfaces/ApplicableTo.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1901,"kind":1024,"name":"id","url":"interfaces/ApplicableTo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1902,"kind":1024,"name":"source_id","url":"interfaces/ApplicableTo.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1903,"kind":1024,"name":"product_id","url":"interfaces/ApplicableTo.html#product_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1904,"kind":1024,"name":"product_source_id","url":"interfaces/ApplicableTo.html#product_source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1905,"kind":1024,"name":"strict","url":"interfaces/ApplicableTo.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1906,"kind":1024,"name":"price","url":"interfaces/ApplicableTo.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1907,"kind":1024,"name":"price_formula","url":"interfaces/ApplicableTo.html#price_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1908,"kind":1024,"name":"quantity_limit","url":"interfaces/ApplicableTo.html#quantity_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1909,"kind":1024,"name":"aggregated_quantity_limit","url":"interfaces/ApplicableTo.html#aggregated_quantity_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1910,"kind":1024,"name":"effect","url":"interfaces/ApplicableTo.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1911,"kind":256,"name":"ApplicableToResultList","url":"interfaces/ApplicableToResultList.html","classes":"tsd-kind-interface"},{"id":1912,"kind":1024,"name":"object","url":"interfaces/ApplicableToResultList.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1913,"kind":1024,"name":"total","url":"interfaces/ApplicableToResultList.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1914,"kind":1024,"name":"data","url":"interfaces/ApplicableToResultList.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1915,"kind":4194304,"name":"DiscountVouchersTypes","url":"modules.html#DiscountVouchersTypes","classes":"tsd-kind-type-alias"},{"id":1916,"kind":4,"name":"DiscountVouchersTypesEnum","url":"enums/DiscountVouchersTypesEnum.html","classes":"tsd-kind-enum"},{"id":1917,"kind":16,"name":"AMOUNT","url":"enums/DiscountVouchersTypesEnum.html#AMOUNT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1918,"kind":16,"name":"PERCENT","url":"enums/DiscountVouchersTypesEnum.html#PERCENT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1919,"kind":16,"name":"UNIT","url":"enums/DiscountVouchersTypesEnum.html#UNIT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1920,"kind":16,"name":"FIXED","url":"enums/DiscountVouchersTypesEnum.html#FIXED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1921,"kind":4194304,"name":"DiscountVouchersEffectTypes","url":"modules.html#DiscountVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1922,"kind":4194304,"name":"DiscountUnitVouchersEffectTypes","url":"modules.html#DiscountUnitVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1923,"kind":4194304,"name":"DiscountAmountVouchersEffectTypes","url":"modules.html#DiscountAmountVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1924,"kind":4194304,"name":"DiscountPercentVouchersEffectTypes","url":"modules.html#DiscountPercentVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1925,"kind":4194304,"name":"DiscountFixedVouchersEffectTypes","url":"modules.html#DiscountFixedVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1926,"kind":256,"name":"DiscountUnitMultiple","url":"interfaces/DiscountUnitMultiple.html","classes":"tsd-kind-interface"},{"id":1927,"kind":1024,"name":"type","url":"interfaces/DiscountUnitMultiple.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultiple"},{"id":1928,"kind":1024,"name":"effect","url":"interfaces/DiscountUnitMultiple.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultiple"},{"id":1929,"kind":1024,"name":"units","url":"interfaces/DiscountUnitMultiple.html#units","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultiple"},{"id":1930,"kind":256,"name":"DiscountUnitMultipleOneUnit","url":"interfaces/DiscountUnitMultipleOneUnit.html","classes":"tsd-kind-interface"},{"id":1931,"kind":1024,"name":"type","url":"interfaces/DiscountUnitMultipleOneUnit.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1932,"kind":1024,"name":"effect","url":"interfaces/DiscountUnitMultipleOneUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1933,"kind":1024,"name":"unit_off","url":"interfaces/DiscountUnitMultipleOneUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1934,"kind":1024,"name":"unit_type","url":"interfaces/DiscountUnitMultipleOneUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1935,"kind":1024,"name":"product","url":"interfaces/DiscountUnitMultipleOneUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1936,"kind":1024,"name":"sku","url":"interfaces/DiscountUnitMultipleOneUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnitMultipleOneUnit"},{"id":1937,"kind":256,"name":"DiscountUnit","url":"interfaces/DiscountUnit.html","classes":"tsd-kind-interface"},{"id":1938,"kind":1024,"name":"type","url":"interfaces/DiscountUnit.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1939,"kind":1024,"name":"unit_off","url":"interfaces/DiscountUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1940,"kind":1024,"name":"unit_off_formula","url":"interfaces/DiscountUnit.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1941,"kind":1024,"name":"effect","url":"interfaces/DiscountUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1942,"kind":1024,"name":"unit_type","url":"interfaces/DiscountUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1943,"kind":1024,"name":"product","url":"interfaces/DiscountUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1944,"kind":1024,"name":"sku","url":"interfaces/DiscountUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1945,"kind":256,"name":"DiscountAmount","url":"interfaces/DiscountAmount.html","classes":"tsd-kind-interface"},{"id":1946,"kind":1024,"name":"type","url":"interfaces/DiscountAmount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1947,"kind":1024,"name":"amount_off","url":"interfaces/DiscountAmount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1948,"kind":1024,"name":"amount_off_formula","url":"interfaces/DiscountAmount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1949,"kind":1024,"name":"effect","url":"interfaces/DiscountAmount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1950,"kind":256,"name":"DiscountPercent","url":"interfaces/DiscountPercent.html","classes":"tsd-kind-interface"},{"id":1951,"kind":1024,"name":"type","url":"interfaces/DiscountPercent.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1952,"kind":1024,"name":"percent_off","url":"interfaces/DiscountPercent.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1953,"kind":1024,"name":"percent_off_formula","url":"interfaces/DiscountPercent.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1954,"kind":1024,"name":"amount_limit","url":"interfaces/DiscountPercent.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1955,"kind":1024,"name":"effect","url":"interfaces/DiscountPercent.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1956,"kind":256,"name":"DiscountFixed","url":"interfaces/DiscountFixed.html","classes":"tsd-kind-interface"},{"id":1957,"kind":1024,"name":"type","url":"interfaces/DiscountFixed.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1958,"kind":1024,"name":"fixed_amount","url":"interfaces/DiscountFixed.html#fixed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1959,"kind":1024,"name":"fixed_amount_formula","url":"interfaces/DiscountFixed.html#fixed_amount_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1960,"kind":1024,"name":"effect","url":"interfaces/DiscountFixed.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1961,"kind":64,"name":"VoucherifyServerSide","url":"modules.html#VoucherifyServerSide","classes":"tsd-kind-function"},{"id":1962,"kind":256,"name":"VoucherifyServerSideOptions","url":"interfaces/VoucherifyServerSideOptions.html","classes":"tsd-kind-interface"},{"id":1963,"kind":1024,"name":"apiUrl","url":"interfaces/VoucherifyServerSideOptions.html#apiUrl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1964,"kind":1024,"name":"applicationId","url":"interfaces/VoucherifyServerSideOptions.html#applicationId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1965,"kind":1024,"name":"secretKey","url":"interfaces/VoucherifyServerSideOptions.html#secretKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1966,"kind":1024,"name":"apiVersion","url":"interfaces/VoucherifyServerSideOptions.html#apiVersion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1967,"kind":1024,"name":"channel","url":"interfaces/VoucherifyServerSideOptions.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1968,"kind":1024,"name":"dangerouslySetSecretKeyInBrowser","url":"interfaces/VoucherifyServerSideOptions.html#dangerouslySetSecretKeyInBrowser","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1969,"kind":1024,"name":"customHeaders","url":"interfaces/VoucherifyServerSideOptions.html#customHeaders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1970,"kind":1024,"name":"exposeErrorCause","url":"interfaces/VoucherifyServerSideOptions.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1971,"kind":64,"name":"VoucherifyClientSide","url":"modules.html#VoucherifyClientSide","classes":"tsd-kind-function"},{"id":1972,"kind":256,"name":"VoucherifyClientSideOptions","url":"interfaces/VoucherifyClientSideOptions.html","classes":"tsd-kind-interface"},{"id":1973,"kind":1024,"name":"apiUrl","url":"interfaces/VoucherifyClientSideOptions.html#apiUrl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1974,"kind":1024,"name":"clientApplicationId","url":"interfaces/VoucherifyClientSideOptions.html#clientApplicationId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1975,"kind":1024,"name":"clientSecretKey","url":"interfaces/VoucherifyClientSideOptions.html#clientSecretKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1976,"kind":1024,"name":"trackingId","url":"interfaces/VoucherifyClientSideOptions.html#trackingId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1977,"kind":1024,"name":"origin","url":"interfaces/VoucherifyClientSideOptions.html#origin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1978,"kind":1024,"name":"customHeaders","url":"interfaces/VoucherifyClientSideOptions.html#customHeaders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1979,"kind":1024,"name":"exposeErrorCause","url":"interfaces/VoucherifyClientSideOptions.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,49.887]],["parent/0",[]],["name/1",[1,45.233]],["parent/1",[0,4.645]],["name/2",[2,49.172]],["parent/2",[0,4.645]],["name/3",[3,49.172]],["parent/3",[]],["name/4",[1,45.233]],["parent/4",[3,4.579]],["name/5",[4,66.751]],["parent/5",[3,4.579]],["name/6",[2,49.172]],["parent/6",[3,4.579]],["name/7",[5,53.401]],["parent/7",[3,4.579]],["name/8",[6,49.887]],["parent/8",[3,4.579]],["name/9",[7,51.49]],["parent/9",[3,4.579]],["name/10",[8,71.859]],["parent/10",[3,4.579]],["name/11",[9,71.859]],["parent/11",[3,4.579]],["name/12",[10,71.859]],["parent/12",[3,4.579]],["name/13",[11,50.656]],["parent/13",[3,4.579]],["name/14",[12,49.887]],["parent/14",[]],["name/15",[1,45.233]],["parent/15",[12,4.645]],["name/16",[13,71.859]],["parent/16",[12,4.645]],["name/17",[14,60.873]],["parent/17",[12,4.645]],["name/18",[15,63.386]],["parent/18",[12,4.645]],["name/19",[16,60.873]],["parent/19",[12,4.645]],["name/20",[17,71.859]],["parent/20",[12,4.645]],["name/21",[18,71.859]],["parent/21",[12,4.645]],["name/22",[19,71.859]],["parent/22",[12,4.645]],["name/23",[20,71.859]],["parent/23",[12,4.645]],["name/24",[21,66.751]],["parent/24",[12,4.645]],["name/25",[22,66.751]],["parent/25",[12,4.645]],["name/26",[23,66.751]],["parent/26",[12,4.645]],["name/27",[24,60.873]],["parent/27",[]],["name/28",[1,45.233]],["parent/28",[24,5.668]],["name/29",[11,50.656]],["parent/29",[24,5.668]],["name/30",[25,50.656]],["parent/30",[]],["name/31",[1,45.233]],["parent/31",[25,4.717]],["name/32",[2,49.172]],["parent/32",[25,4.717]],["name/33",[6,49.887]],["parent/33",[25,4.717]],["name/34",[11,50.656]],["parent/34",[25,4.717]],["name/35",[26,71.859]],["parent/35",[25,4.717]],["name/36",[5,53.401]],["parent/36",[25,4.717]],["name/37",[7,51.49]],["parent/37",[25,4.717]],["name/38",[21,66.751]],["parent/38",[25,4.717]],["name/39",[27,71.859]],["parent/39",[25,4.717]],["name/40",[28,60.873]],["parent/40",[]],["name/41",[1,45.233]],["parent/41",[28,5.668]],["name/42",[29,66.751]],["parent/42",[28,5.668]],["name/43",[30,57.196]],["parent/43",[28,5.668]],["name/44",[31,63.386]],["parent/44",[]],["name/45",[1,45.233]],["parent/45",[31,5.902]],["name/46",[2,49.172]],["parent/46",[31,5.902]],["name/47",[30,57.196]],["parent/47",[]],["name/48",[1,45.233]],["parent/48",[30,5.326]],["name/49",[2,49.172]],["parent/49",[30,5.326]],["name/50",[6,49.887]],["parent/50",[30,5.326]],["name/51",[7,51.49]],["parent/51",[30,5.326]],["name/52",[32,45.233]],["parent/52",[]],["name/53",[1,45.233]],["parent/53",[32,4.212]],["name/54",[11,50.656]],["parent/54",[32,4.212]],["name/55",[2,49.172]],["parent/55",[32,4.212]],["name/56",[6,49.887]],["parent/56",[32,4.212]],["name/57",[5,53.401]],["parent/57",[32,4.212]],["name/58",[7,51.49]],["parent/58",[32,4.212]],["name/59",[33,71.859]],["parent/59",[32,4.212]],["name/60",[34,71.859]],["parent/60",[32,4.212]],["name/61",[35,71.859]],["parent/61",[32,4.212]],["name/62",[36,71.859]],["parent/62",[32,4.212]],["name/63",[37,71.859]],["parent/63",[32,4.212]],["name/64",[38,71.859]],["parent/64",[32,4.212]],["name/65",[39,71.859]],["parent/65",[32,4.212]],["name/66",[40,71.859]],["parent/66",[32,4.212]],["name/67",[41,71.859]],["parent/67",[32,4.212]],["name/68",[42,71.859]],["parent/68",[32,4.212]],["name/69",[43,71.859]],["parent/69",[32,4.212]],["name/70",[44,71.859]],["parent/70",[32,4.212]],["name/71",[45,71.859]],["parent/71",[32,4.212]],["name/72",[46,71.859]],["parent/72",[32,4.212]],["name/73",[47,53.401]],["parent/73",[]],["name/74",[1,45.233]],["parent/74",[47,4.973]],["name/75",[2,49.172]],["parent/75",[47,4.973]],["name/76",[6,49.887]],["parent/76",[47,4.973]],["name/77",[5,53.401]],["parent/77",[47,4.973]],["name/78",[11,50.656]],["parent/78",[47,4.973]],["name/79",[48,66.751]],["parent/79",[47,4.973]],["name/80",[49,48.505]],["parent/80",[]],["name/81",[1,45.233]],["parent/81",[49,4.517]],["name/82",[2,49.172]],["parent/82",[49,4.517]],["name/83",[6,49.887]],["parent/83",[49,4.517]],["name/84",[5,53.401]],["parent/84",[49,4.517]],["name/85",[50,66.751]],["parent/85",[49,4.517]],["name/86",[51,66.751]],["parent/86",[49,4.517]],["name/87",[7,51.49]],["parent/87",[49,4.517]],["name/88",[11,50.656]],["parent/88",[49,4.517]],["name/89",[52,71.859]],["parent/89",[49,4.517]],["name/90",[53,71.859]],["parent/90",[49,4.517]],["name/91",[54,71.859]],["parent/91",[49,4.517]],["name/92",[55,71.859]],["parent/92",[49,4.517]],["name/93",[56,71.859]],["parent/93",[49,4.517]],["name/94",[57,55.765]],["parent/94",[]],["name/95",[1,45.233]],["parent/95",[57,5.193]],["name/96",[58,60.873]],["parent/96",[57,5.193]],["name/97",[2,49.172]],["parent/97",[57,5.193]],["name/98",[14,60.873]],["parent/98",[57,5.193]],["name/99",[59,53.401]],["parent/99",[]],["name/100",[1,45.233]],["parent/100",[59,4.973]],["name/101",[60,71.859]],["parent/101",[59,4.973]],["name/102",[11,50.656]],["parent/102",[59,4.973]],["name/103",[6,49.887]],["parent/103",[59,4.973]],["name/104",[2,49.172]],["parent/104",[59,4.973]],["name/105",[15,63.386]],["parent/105",[59,4.973]],["name/106",[5,53.401]],["parent/106",[59,4.973]],["name/107",[7,51.49]],["parent/107",[59,4.973]],["name/108",[61,49.887]],["parent/108",[]],["name/109",[1,45.233]],["parent/109",[61,4.645]],["name/110",[15,63.386]],["parent/110",[61,4.645]],["name/111",[23,66.751]],["parent/111",[61,4.645]],["name/112",[6,49.887]],["parent/112",[61,4.645]],["name/113",[11,50.656]],["parent/113",[61,4.645]],["name/114",[62,71.859]],["parent/114",[61,4.645]],["name/115",[63,71.859]],["parent/115",[61,4.645]],["name/116",[64,71.859]],["parent/116",[61,4.645]],["name/117",[65,47.292]],["parent/117",[]],["name/118",[1,45.233]],["parent/118",[65,4.404]],["name/119",[66,71.859]],["parent/119",[65,4.404]],["name/120",[67,71.859]],["parent/120",[65,4.404]],["name/121",[68,71.859]],["parent/121",[65,4.404]],["name/122",[69,71.859]],["parent/122",[65,4.404]],["name/123",[70,71.859]],["parent/123",[65,4.404]],["name/124",[71,71.859]],["parent/124",[65,4.404]],["name/125",[72,63.386]],["parent/125",[65,4.404]],["name/126",[73,71.859]],["parent/126",[65,4.404]],["name/127",[74,71.859]],["parent/127",[65,4.404]],["name/128",[75,71.859]],["parent/128",[65,4.404]],["name/129",[76,71.859]],["parent/129",[65,4.404]],["name/130",[6,49.887]],["parent/130",[65,4.404]],["name/131",[77,71.859]],["parent/131",[65,4.404]],["name/132",[78,71.859]],["parent/132",[65,4.404]],["name/133",[7,51.49]],["parent/133",[65,4.404]],["name/134",[79,51.49]],["parent/134",[]],["name/135",[1,45.233]],["parent/135",[79,4.795]],["name/136",[11,50.656]],["parent/136",[79,4.795]],["name/137",[2,49.172]],["parent/137",[79,4.795]],["name/138",[6,49.887]],["parent/138",[79,4.795]],["name/139",[5,53.401]],["parent/139",[79,4.795]],["name/140",[7,51.49]],["parent/140",[79,4.795]],["name/141",[80,66.751]],["parent/141",[79,4.795]],["name/142",[81,66.751]],["parent/142",[79,4.795]],["name/143",[82,71.859]],["parent/143",[79,4.795]],["name/144",[83,66.751]],["parent/144",[79,4.795]],["name/145",[84,57.196]],["parent/145",[]],["name/146",[1,45.233]],["parent/146",[84,5.326]],["name/147",[2,49.172]],["parent/147",[84,5.326]],["name/148",[6,49.887]],["parent/148",[84,5.326]],["name/149",[7,51.49]],["parent/149",[84,5.326]],["name/150",[11,50.656]],["parent/150",[84,5.326]],["name/151",[85,51.49]],["parent/151",[]],["name/152",[1,45.233]],["parent/152",[85,4.795]],["name/153",[2,49.172]],["parent/153",[85,4.795]],["name/154",[6,49.887]],["parent/154",[85,4.795]],["name/155",[5,53.401]],["parent/155",[85,4.795]],["name/156",[7,51.49]],["parent/156",[85,4.795]],["name/157",[81,66.751]],["parent/157",[85,4.795]],["name/158",[83,66.751]],["parent/158",[85,4.795]],["name/159",[14,60.873]],["parent/159",[85,4.795]],["name/160",[11,50.656]],["parent/160",[85,4.795]],["name/161",[80,66.751]],["parent/161",[85,4.795]],["name/162",[86,58.866]],["parent/162",[]],["name/163",[1,45.233]],["parent/163",[86,5.481]],["name/164",[87,71.859]],["parent/164",[86,5.481]],["name/165",[14,60.873]],["parent/165",[86,5.481]],["name/166",[22,66.751]],["parent/166",[86,5.481]],["name/167",[88,50.656]],["parent/167",[]],["name/168",[1,45.233]],["parent/168",[88,4.717]],["name/169",[89,46.209]],["parent/169",[88,4.717]],["name/170",[90,58.866]],["parent/170",[88,4.717]],["name/171",[91,66.751]],["parent/171",[88,4.717]],["name/172",[92,66.751]],["parent/172",[88,4.717]],["name/173",[93,66.751]],["parent/173",[88,4.717]],["name/174",[94,66.751]],["parent/174",[88,4.717]],["name/175",[95,71.859]],["parent/175",[88,4.717]],["name/176",[96,55.765]],["parent/176",[88,4.717]],["name/177",[97,71.859]],["parent/177",[88,4.717]],["name/178",[98,71.859]],["parent/178",[88,4.717]],["name/179",[99,46.736]],["parent/179",[]],["name/180",[1,45.233]],["parent/180",[99,4.352]],["name/181",[4,66.751]],["parent/181",[99,4.352]],["name/182",[0,49.887]],["parent/182",[99,4.352]],["name/183",[2,49.172]],["parent/183",[99,4.352]],["name/184",[6,49.887]],["parent/184",[99,4.352]],["name/185",[5,53.401]],["parent/185",[99,4.352]],["name/186",[7,51.49]],["parent/186",[99,4.352]],["name/187",[11,50.656]],["parent/187",[99,4.352]],["name/188",[100,71.859]],["parent/188",[99,4.352]],["name/189",[101,71.859]],["parent/189",[99,4.352]],["name/190",[48,66.751]],["parent/190",[99,4.352]],["name/191",[50,66.751]],["parent/191",[99,4.352]],["name/192",[51,66.751]],["parent/192",[99,4.352]],["name/193",[102,71.859]],["parent/193",[99,4.352]],["name/194",[103,55.765]],["parent/194",[]],["name/195",[104,33.078]],["parent/195",[103,5.193]],["name/196",[105,42.772]],["parent/196",[103,5.193]],["name/197",[106,58.866]],["parent/197",[103,5.193]],["name/198",[107,42.772]],["parent/198",[103,5.193]],["name/199",[108,35.223]],["parent/199",[103,5.193]],["name/200",[109,32.031]],["parent/200",[103,5.193]],["name/201",[110,47.88]],["parent/201",[]],["name/202",[104,33.078]],["parent/202",[110,4.458]],["name/203",[107,42.772]],["parent/203",[110,4.458]],["name/204",[105,42.772]],["parent/204",[110,4.458]],["name/205",[106,58.866]],["parent/205",[110,4.458]],["name/206",[111,66.751]],["parent/206",[110,4.458]],["name/207",[112,53.401]],["parent/207",[110,4.458]],["name/208",[113,66.751]],["parent/208",[110,4.458]],["name/209",[114,26.461]],["parent/209",[110,4.458]],["name/210",[115,63.386]],["parent/210",[116,4.645]],["name/211",[117,66.751]],["parent/211",[116,4.645]],["name/212",[118,66.751]],["parent/212",[116,4.645]],["name/213",[119,66.751]],["parent/213",[116,4.645]],["name/214",[120,66.751]],["parent/214",[116,4.645]],["name/215",[121,66.751]],["parent/215",[116,4.645]],["name/216",[122,71.859]],["parent/216",[110,4.458]],["name/217",[114,26.461]],["parent/217",[110,4.458]],["name/218",[61,49.887]],["parent/218",[116,4.645]],["name/219",[114,26.461]],["parent/219",[116,4.645]],["name/220",[123,71.859]],["parent/220",[124,4.517]],["name/221",[125,71.859]],["parent/221",[124,4.517]],["name/222",[126,71.859]],["parent/222",[124,4.517]],["name/223",[127,71.859]],["parent/223",[124,4.517]],["name/224",[128,71.859]],["parent/224",[124,4.517]],["name/225",[129,71.859]],["parent/225",[124,4.517]],["name/226",[130,51.49]],["parent/226",[124,4.517]],["name/227",[114,26.461]],["parent/227",[124,4.517]],["name/228",[131,66.751]],["parent/228",[132,5.668]],["name/229",[133,71.859]],["parent/229",[132,5.668]],["name/230",[134,49.172]],["parent/230",[124,4.517]],["name/231",[114,26.461]],["parent/231",[124,4.517]],["name/232",[135,63.386]],["parent/232",[132,5.668]],["name/233",[136,71.859]],["parent/233",[132,5.668]],["name/234",[47,53.401]],["parent/234",[116,4.645]],["name/235",[114,26.461]],["parent/235",[116,4.645]],["name/236",[137,60.873]],["parent/236",[124,4.517]],["name/237",[138,71.859]],["parent/237",[124,4.517]],["name/238",[139,71.859]],["parent/238",[124,4.517]],["name/239",[140,71.859]],["parent/239",[124,4.517]],["name/240",[141,71.859]],["parent/240",[124,4.517]],["name/241",[134,49.172]],["parent/241",[110,4.458]],["name/242",[114,26.461]],["parent/242",[110,4.458]],["name/243",[142,44.344]],["parent/243",[116,4.645]],["name/244",[143,71.859]],["parent/244",[116,4.645]],["name/245",[3,49.172]],["parent/245",[116,4.645]],["name/246",[108,35.223]],["parent/246",[110,4.458]],["name/247",[144,43.927]],["parent/247",[110,4.458]],["name/248",[109,32.031]],["parent/248",[110,4.458]],["name/249",[145,71.859]],["parent/249",[]],["name/250",[146,51.49]],["parent/250",[]],["name/251",[104,33.078]],["parent/251",[146,4.795]],["name/252",[107,42.772]],["parent/252",[146,4.795]],["name/253",[105,42.772]],["parent/253",[146,4.795]],["name/254",[106,58.866]],["parent/254",[146,4.795]],["name/255",[108,35.223]],["parent/255",[146,4.795]],["name/256",[112,53.401]],["parent/256",[146,4.795]],["name/257",[113,66.751]],["parent/257",[146,4.795]],["name/258",[114,26.461]],["parent/258",[146,4.795]],["name/259",[115,63.386]],["parent/259",[147,5.326]],["name/260",[117,66.751]],["parent/260",[147,5.326]],["name/261",[118,66.751]],["parent/261",[147,5.326]],["name/262",[119,66.751]],["parent/262",[147,5.326]],["name/263",[120,66.751]],["parent/263",[147,5.326]],["name/264",[121,66.751]],["parent/264",[147,5.326]],["name/265",[111,66.751]],["parent/265",[146,4.795]],["name/266",[148,71.859]],["parent/266",[146,4.795]],["name/267",[149,54.513]],["parent/267",[]],["name/268",[150,46.209]],["parent/268",[149,5.076]],["name/269",[151,47.88]],["parent/269",[149,5.076]],["name/270",[106,58.866]],["parent/270",[149,5.076]],["name/271",[115,63.386]],["parent/271",[149,5.076]],["name/272",[105,42.772]],["parent/272",[149,5.076]],["name/273",[152,41.101]],["parent/273",[149,5.076]],["name/274",[153,66.751]],["parent/274",[149,5.076]],["name/275",[154,57.196]],["parent/275",[]],["name/276",[109,32.031]],["parent/276",[154,5.326]],["name/277",[155,39.94]],["parent/277",[154,5.326]],["name/278",[156,40.798]],["parent/278",[154,5.326]],["name/279",[25,50.656]],["parent/279",[154,5.326]],["name/280",[157,63.386]],["parent/280",[154,5.326]],["name/281",[158,55.765]],["parent/281",[]],["name/282",[150,46.209]],["parent/282",[158,5.193]],["name/283",[152,41.101]],["parent/283",[158,5.193]],["name/284",[153,66.751]],["parent/284",[158,5.193]],["name/285",[159,71.859]],["parent/285",[158,5.193]],["name/286",[160,57.196]],["parent/286",[158,5.193]],["name/287",[161,57.196]],["parent/287",[158,5.193]],["name/288",[162,58.866]],["parent/288",[]],["name/289",[109,32.031]],["parent/289",[162,5.481]],["name/290",[155,39.94]],["parent/290",[162,5.481]],["name/291",[156,40.798]],["parent/291",[162,5.481]],["name/292",[163,46.209]],["parent/292",[162,5.481]],["name/293",[164,71.859]],["parent/293",[]],["name/294",[165,71.859]],["parent/294",[]],["name/295",[166,71.859]],["parent/295",[]],["name/296",[167,71.859]],["parent/296",[]],["name/297",[168,71.859]],["parent/297",[]],["name/298",[169,71.859]],["parent/298",[]],["name/299",[170,71.859]],["parent/299",[]],["name/300",[171,71.859]],["parent/300",[]],["name/301",[172,71.859]],["parent/301",[]],["name/302",[173,71.859]],["parent/302",[]],["name/303",[174,71.859]],["parent/303",[]],["name/304",[175,66.751]],["parent/304",[]],["name/305",[176,43.927]],["parent/305",[175,6.216]],["name/306",[177,54.513]],["parent/306",[]],["name/307",[176,43.927]],["parent/307",[177,5.076]],["name/308",[155,39.94]],["parent/308",[177,5.076]],["name/309",[0,49.887]],["parent/309",[177,5.076]],["name/310",[178,41.414]],["parent/310",[177,5.076]],["name/311",[109,32.031]],["parent/311",[177,5.076]],["name/312",[179,63.386]],["parent/312",[177,5.076]],["name/313",[114,26.461]],["parent/313",[177,5.076]],["name/314",[178,41.414]],["parent/314",[180,6.216]],["name/315",[104,33.078]],["parent/315",[180,6.216]],["name/316",[181,71.859]],["parent/316",[]],["name/317",[182,71.859]],["parent/317",[]],["name/318",[183,71.859]],["parent/318",[]],["name/319",[184,49.172]],["parent/319",[]],["name/320",[89,46.209]],["parent/320",[184,4.579]],["name/321",[185,45.709]],["parent/321",[184,4.579]],["name/322",[176,43.927]],["parent/322",[184,4.579]],["name/323",[186,52.4]],["parent/323",[184,4.579]],["name/324",[187,71.859]],["parent/324",[184,4.579]],["name/325",[188,41.101]],["parent/325",[184,4.579]],["name/326",[189,50.656]],["parent/326",[184,4.579]],["name/327",[114,26.461]],["parent/327",[184,4.579]],["name/328",[104,33.078]],["parent/328",[190,6.691]],["name/329",[108,35.223]],["parent/329",[184,4.579]],["name/330",[191,71.859]],["parent/330",[184,4.579]],["name/331",[192,71.859]],["parent/331",[184,4.579]],["name/332",[193,71.859]],["parent/332",[184,4.579]],["name/333",[194,71.859]],["parent/333",[184,4.579]],["name/334",[195,71.859]],["parent/334",[]],["name/335",[196,71.859]],["parent/335",[]],["name/336",[197,58.866]],["parent/336",[]],["name/337",[109,32.031]],["parent/337",[197,5.481]],["name/338",[155,39.94]],["parent/338",[197,5.481]],["name/339",[156,40.798]],["parent/339",[197,5.481]],["name/340",[99,46.736]],["parent/340",[197,5.481]],["name/341",[198,49.172]],["parent/341",[]],["name/342",[89,46.209]],["parent/342",[198,4.579]],["name/343",[199,55.765]],["parent/343",[198,4.579]],["name/344",[200,53.401]],["parent/344",[198,4.579]],["name/345",[201,60.873]],["parent/345",[198,4.579]],["name/346",[152,41.101]],["parent/346",[198,4.579]],["name/347",[114,26.461]],["parent/347",[198,4.579]],["name/348",[176,43.927]],["parent/348",[202,5.076]],["name/349",[203,57.196]],["parent/349",[202,5.076]],["name/350",[204,63.386]],["parent/350",[202,5.076]],["name/351",[137,60.873]],["parent/351",[202,5.076]],["name/352",[186,52.4]],["parent/352",[202,5.076]],["name/353",[185,45.709]],["parent/353",[198,4.579]],["name/354",[161,57.196]],["parent/354",[198,4.579]],["name/355",[134,49.172]],["parent/355",[198,4.579]],["name/356",[114,26.461]],["parent/356",[198,4.579]],["name/357",[205,66.751]],["parent/357",[202,5.076]],["name/358",[130,51.49]],["parent/358",[198,4.579]],["name/359",[114,26.461]],["parent/359",[198,4.579]],["name/360",[176,43.927]],["parent/360",[202,5.076]],["name/361",[0,49.887]],["parent/361",[202,5.076]],["name/362",[57,55.765]],["parent/362",[198,4.579]],["name/363",[206,54.513]],["parent/363",[]],["name/364",[185,45.709]],["parent/364",[206,5.076]],["name/365",[188,41.101]],["parent/365",[206,5.076]],["name/366",[152,41.101]],["parent/366",[206,5.076]],["name/367",[108,35.223]],["parent/367",[206,5.076]],["name/368",[189,50.656]],["parent/368",[206,5.076]],["name/369",[114,26.461]],["parent/369",[206,5.076]],["name/370",[104,33.078]],["parent/370",[207,6.691]],["name/371",[208,54.513]],["parent/371",[206,5.076]],["name/372",[209,52.4]],["parent/372",[]],["name/373",[104,33.078]],["parent/373",[209,4.879]],["name/374",[109,32.031]],["parent/374",[209,4.879]],["name/375",[210,54.513]],["parent/375",[209,4.879]],["name/376",[211,51.49]],["parent/376",[209,4.879]],["name/377",[185,45.709]],["parent/377",[209,4.879]],["name/378",[152,41.101]],["parent/378",[209,4.879]],["name/379",[108,35.223]],["parent/379",[209,4.879]],["name/380",[212,49.887]],["parent/380",[209,4.879]],["name/381",[213,49.172]],["parent/381",[209,4.879]],["name/382",[214,57.196]],["parent/382",[]],["name/383",[107,42.772]],["parent/383",[214,5.326]],["name/384",[215,57.196]],["parent/384",[214,5.326]],["name/385",[188,41.101]],["parent/385",[214,5.326]],["name/386",[213,49.172]],["parent/386",[214,5.326]],["name/387",[108,35.223]],["parent/387",[214,5.326]],["name/388",[216,71.859]],["parent/388",[]],["name/389",[217,63.386]],["parent/389",[]],["name/390",[218,58.866]],["parent/390",[217,5.902]],["name/391",[219,49.172]],["parent/391",[217,5.902]],["name/392",[220,63.386]],["parent/392",[]],["name/393",[105,42.772]],["parent/393",[220,5.902]],["name/394",[221,58.866]],["parent/394",[220,5.902]],["name/395",[222,71.859]],["parent/395",[]],["name/396",[223,66.751]],["parent/396",[]],["name/397",[89,46.209]],["parent/397",[223,6.216]],["name/398",[224,66.751]],["parent/398",[]],["name/399",[89,46.209]],["parent/399",[224,6.216]],["name/400",[225,57.196]],["parent/400",[]],["name/401",[226,60.873]],["parent/401",[225,5.326]],["name/402",[108,35.223]],["parent/402",[225,5.326]],["name/403",[188,41.101]],["parent/403",[225,5.326]],["name/404",[134,49.172]],["parent/404",[225,5.326]],["name/405",[227,66.751]],["parent/405",[225,5.326]],["name/406",[228,63.386]],["parent/406",[]],["name/407",[109,32.031]],["parent/407",[228,5.902]],["name/408",[178,41.414]],["parent/408",[228,5.902]],["name/409",[229,71.859]],["parent/409",[]],["name/410",[230,63.386]],["parent/410",[]],["name/411",[152,41.101]],["parent/411",[230,5.902]],["name/412",[114,26.461]],["parent/412",[230,5.902]],["name/413",[176,43.927]],["parent/413",[231,6.691]],["name/414",[232,71.859]],["parent/414",[]],["name/415",[233,71.859]],["parent/415",[]],["name/416",[234,71.859]],["parent/416",[]],["name/417",[235,71.859]],["parent/417",[]],["name/418",[236,71.859]],["parent/418",[]],["name/419",[237,71.859]],["parent/419",[]],["name/420",[238,54.513]],["parent/420",[]],["name/421",[185,45.709]],["parent/421",[238,5.076]],["name/422",[188,41.101]],["parent/422",[238,5.076]],["name/423",[152,41.101]],["parent/423",[238,5.076]],["name/424",[108,35.223]],["parent/424",[238,5.076]],["name/425",[189,50.656]],["parent/425",[238,5.076]],["name/426",[130,51.49]],["parent/426",[238,5.076]],["name/427",[208,54.513]],["parent/427",[238,5.076]],["name/428",[239,45.709]],["parent/428",[]],["name/429",[104,33.078]],["parent/429",[239,4.256]],["name/430",[109,32.031]],["parent/430",[239,4.256]],["name/431",[210,54.513]],["parent/431",[239,4.256]],["name/432",[211,51.49]],["parent/432",[239,4.256]],["name/433",[185,45.709]],["parent/433",[239,4.256]],["name/434",[152,41.101]],["parent/434",[239,4.256]],["name/435",[108,35.223]],["parent/435",[239,4.256]],["name/436",[212,49.887]],["parent/436",[239,4.256]],["name/437",[213,49.172]],["parent/437",[239,4.256]],["name/438",[188,41.101]],["parent/438",[239,4.256]],["name/439",[189,50.656]],["parent/439",[239,4.256]],["name/440",[96,55.765]],["parent/440",[239,4.256]],["name/441",[130,51.49]],["parent/441",[239,4.256]],["name/442",[114,26.461]],["parent/442",[239,4.256]],["name/443",[176,43.927]],["parent/443",[240,6.216]],["name/444",[241,54.513]],["parent/444",[239,4.256]],["name/445",[114,26.461]],["parent/445",[239,4.256]],["name/446",[142,44.344]],["parent/446",[240,6.216]],["name/447",[242,63.386]],["parent/447",[239,4.256]],["name/448",[243,66.751]],["parent/448",[239,4.256]],["name/449",[244,66.751]],["parent/449",[239,4.256]],["name/450",[245,54.513]],["parent/450",[]],["name/451",[150,46.209]],["parent/451",[245,5.076]],["name/452",[151,47.88]],["parent/452",[245,5.076]],["name/453",[212,49.887]],["parent/453",[245,5.076]],["name/454",[219,49.172]],["parent/454",[245,5.076]],["name/455",[188,41.101]],["parent/455",[245,5.076]],["name/456",[144,43.927]],["parent/456",[245,5.076]],["name/457",[114,26.461]],["parent/457",[245,5.076]],["name/458",[246,58.866]],["parent/458",[247,6.216]],["name/459",[248,58.866]],["parent/459",[247,6.216]],["name/460",[249,42.415]],["parent/460",[]],["name/461",[104,33.078]],["parent/461",[249,3.95]],["name/462",[109,32.031]],["parent/462",[249,3.95]],["name/463",[210,54.513]],["parent/463",[249,3.95]],["name/464",[211,51.49]],["parent/464",[249,3.95]],["name/465",[185,45.709]],["parent/465",[249,3.95]],["name/466",[152,41.101]],["parent/466",[249,3.95]],["name/467",[108,35.223]],["parent/467",[249,3.95]],["name/468",[212,49.887]],["parent/468",[249,3.95]],["name/469",[243,66.751]],["parent/469",[249,3.95]],["name/470",[244,66.751]],["parent/470",[249,3.95]],["name/471",[188,41.101]],["parent/471",[249,3.95]],["name/472",[96,55.765]],["parent/472",[249,3.95]],["name/473",[213,49.172]],["parent/473",[249,3.95]],["name/474",[114,26.461]],["parent/474",[249,3.95]],["name/475",[89,46.209]],["parent/475",[250,5.193]],["name/476",[219,49.172]],["parent/476",[250,5.193]],["name/477",[104,33.078]],["parent/477",[250,5.193]],["name/478",[109,32.031]],["parent/478",[250,5.193]],["name/479",[161,57.196]],["parent/479",[250,5.193]],["name/480",[130,51.49]],["parent/480",[249,3.95]],["name/481",[114,26.461]],["parent/481",[249,3.95]],["name/482",[176,43.927]],["parent/482",[250,5.193]],["name/483",[241,54.513]],["parent/483",[249,3.95]],["name/484",[114,26.461]],["parent/484",[249,3.95]],["name/485",[142,44.344]],["parent/485",[250,5.193]],["name/486",[251,58.866]],["parent/486",[]],["name/487",[109,32.031]],["parent/487",[251,5.481]],["name/488",[155,39.94]],["parent/488",[251,5.481]],["name/489",[156,40.798]],["parent/489",[251,5.481]],["name/490",[61,49.887]],["parent/490",[251,5.481]],["name/491",[252,54.513]],["parent/491",[]],["name/492",[109,32.031]],["parent/492",[252,5.076]],["name/493",[155,39.94]],["parent/493",[252,5.076]],["name/494",[156,40.798]],["parent/494",[252,5.076]],["name/495",[253,53.401]],["parent/495",[252,5.076]],["name/496",[254,60.873]],["parent/496",[252,5.076]],["name/497",[131,66.751]],["parent/497",[252,5.076]],["name/498",[255,63.386]],["parent/498",[252,5.076]],["name/499",[256,60.873]],["parent/499",[]],["name/500",[257,60.873]],["parent/500",[256,5.668]],["name/501",[185,45.709]],["parent/501",[256,5.668]],["name/502",[188,41.101]],["parent/502",[256,5.668]],["name/503",[258,63.386]],["parent/503",[]],["name/504",[257,60.873]],["parent/504",[258,5.902]],["name/505",[185,45.709]],["parent/505",[258,5.902]],["name/506",[259,66.751]],["parent/506",[]],["name/507",[188,41.101]],["parent/507",[259,6.216]],["name/508",[260,49.172]],["parent/508",[]],["name/509",[104,33.078]],["parent/509",[260,4.579]],["name/510",[109,32.031]],["parent/510",[260,4.579]],["name/511",[210,54.513]],["parent/511",[260,4.579]],["name/512",[211,51.49]],["parent/512",[260,4.579]],["name/513",[185,45.709]],["parent/513",[260,4.579]],["name/514",[249,42.415]],["parent/514",[260,4.579]],["name/515",[176,43.927]],["parent/515",[260,4.579]],["name/516",[257,60.873]],["parent/516",[260,4.579]],["name/517",[212,49.887]],["parent/517",[260,4.579]],["name/518",[213,49.172]],["parent/518",[260,4.579]],["name/519",[188,41.101]],["parent/519",[260,4.579]],["name/520",[189,50.656]],["parent/520",[260,4.579]],["name/521",[114,26.461]],["parent/521",[260,4.579]],["name/522",[261,60.873]],["parent/522",[262,6.216]],["name/523",[109,32.031]],["parent/523",[262,6.216]],["name/524",[263,71.859]],["parent/524",[]],["name/525",[264,55.765]],["parent/525",[]],["name/526",[265,66.751]],["parent/526",[264,5.193]],["name/527",[266,63.386]],["parent/527",[264,5.193]],["name/528",[208,54.513]],["parent/528",[264,5.193]],["name/529",[152,41.101]],["parent/529",[264,5.193]],["name/530",[188,41.101]],["parent/530",[264,5.193]],["name/531",[108,35.223]],["parent/531",[264,5.193]],["name/532",[267,71.859]],["parent/532",[]],["name/533",[268,71.859]],["parent/533",[]],["name/534",[269,58.866]],["parent/534",[]],["name/535",[61,49.887]],["parent/535",[269,5.481]],["name/536",[270,71.859]],["parent/536",[269,5.481]],["name/537",[114,26.461]],["parent/537",[269,5.481]],["name/538",[104,33.078]],["parent/538",[271,4.795]],["name/539",[109,32.031]],["parent/539",[271,4.795]],["name/540",[210,54.513]],["parent/540",[271,4.795]],["name/541",[211,51.49]],["parent/541",[271,4.795]],["name/542",[185,45.709]],["parent/542",[271,4.795]],["name/543",[108,35.223]],["parent/543",[271,4.795]],["name/544",[212,49.887]],["parent/544",[271,4.795]],["name/545",[152,41.101]],["parent/545",[271,4.795]],["name/546",[188,41.101]],["parent/546",[271,4.795]],["name/547",[96,55.765]],["parent/547",[271,4.795]],["name/548",[272,60.873]],["parent/548",[271,4.795]],["name/549",[152,41.101]],["parent/549",[269,5.481]],["name/550",[273,58.866]],["parent/550",[]],["name/551",[274,71.859]],["parent/551",[273,5.481]],["name/552",[275,71.859]],["parent/552",[273,5.481]],["name/553",[114,26.461]],["parent/553",[273,5.481]],["name/554",[104,33.078]],["parent/554",[276,4.973]],["name/555",[210,54.513]],["parent/555",[276,4.973]],["name/556",[211,51.49]],["parent/556",[276,4.973]],["name/557",[185,45.709]],["parent/557",[276,4.973]],["name/558",[108,35.223]],["parent/558",[276,4.973]],["name/559",[212,49.887]],["parent/559",[276,4.973]],["name/560",[152,41.101]],["parent/560",[276,4.973]],["name/561",[188,41.101]],["parent/561",[276,4.973]],["name/562",[249,42.415]],["parent/562",[276,4.973]],["name/563",[152,41.101]],["parent/563",[273,5.481]],["name/564",[277,53.401]],["parent/564",[]],["name/565",[188,41.101]],["parent/565",[277,4.973]],["name/566",[152,41.101]],["parent/566",[277,4.973]],["name/567",[114,26.461]],["parent/567",[277,4.973]],["name/568",[104,33.078]],["parent/568",[278,4.795]],["name/569",[107,42.772]],["parent/569",[278,4.795]],["name/570",[279,54.513]],["parent/570",[278,4.795]],["name/571",[176,43.927]],["parent/571",[278,4.795]],["name/572",[186,52.4]],["parent/572",[278,4.795]],["name/573",[188,41.101]],["parent/573",[278,4.795]],["name/574",[280,71.859]],["parent/574",[278,4.795]],["name/575",[108,35.223]],["parent/575",[278,4.795]],["name/576",[130,51.49]],["parent/576",[277,4.973]],["name/577",[114,26.461]],["parent/577",[277,4.973]],["name/578",[281,63.386]],["parent/578",[278,4.795]],["name/579",[189,50.656]],["parent/579",[277,4.973]],["name/580",[114,26.461]],["parent/580",[277,4.973]],["name/581",[104,33.078]],["parent/581",[278,4.795]],["name/582",[142,44.344]],["parent/582",[278,4.795]],["name/583",[208,54.513]],["parent/583",[277,4.973]],["name/584",[282,71.859]],["parent/584",[]],["name/585",[283,45.233]],["parent/585",[]],["name/586",[199,55.765]],["parent/586",[283,4.212]],["name/587",[89,46.209]],["parent/587",[283,4.212]],["name/588",[201,60.873]],["parent/588",[283,4.212]],["name/589",[284,66.751]],["parent/589",[283,4.212]],["name/590",[219,49.172]],["parent/590",[283,4.212]],["name/591",[161,57.196]],["parent/591",[283,4.212]],["name/592",[108,35.223]],["parent/592",[283,4.212]],["name/593",[200,53.401]],["parent/593",[283,4.212]],["name/594",[130,51.49]],["parent/594",[283,4.212]],["name/595",[114,26.461]],["parent/595",[283,4.212]],["name/596",[176,43.927]],["parent/596",[285,3.95]],["name/597",[0,49.887]],["parent/597",[285,3.95]],["name/598",[286,51.49]],["parent/598",[285,3.95]],["name/599",[134,49.172]],["parent/599",[283,4.212]],["name/600",[114,26.461]],["parent/600",[283,4.212]],["name/601",[205,66.751]],["parent/601",[285,3.95]],["name/602",[189,50.656]],["parent/602",[283,4.212]],["name/603",[114,26.461]],["parent/603",[283,4.212]],["name/604",[104,33.078]],["parent/604",[285,3.95]],["name/605",[261,60.873]],["parent/605",[285,3.95]],["name/606",[142,44.344]],["parent/606",[285,3.95]],["name/607",[152,41.101]],["parent/607",[283,4.212]],["name/608",[114,26.461]],["parent/608",[283,4.212]],["name/609",[104,33.078]],["parent/609",[285,3.95]],["name/610",[107,42.772]],["parent/610",[285,3.95]],["name/611",[144,43.927]],["parent/611",[285,3.95]],["name/612",[287,48.505]],["parent/612",[285,3.95]],["name/613",[279,54.513]],["parent/613",[285,3.95]],["name/614",[176,43.927]],["parent/614",[285,3.95]],["name/615",[288,63.386]],["parent/615",[285,3.95]],["name/616",[203,57.196]],["parent/616",[285,3.95]],["name/617",[289,63.386]],["parent/617",[285,3.95]],["name/618",[290,66.751]],["parent/618",[285,3.95]],["name/619",[204,63.386]],["parent/619",[285,3.95]],["name/620",[137,60.873]],["parent/620",[285,3.95]],["name/621",[291,66.751]],["parent/621",[285,3.95]],["name/622",[292,66.751]],["parent/622",[285,3.95]],["name/623",[186,52.4]],["parent/623",[285,3.95]],["name/624",[108,35.223]],["parent/624",[285,3.95]],["name/625",[188,41.101]],["parent/625",[285,3.95]],["name/626",[211,51.49]],["parent/626",[285,3.95]],["name/627",[293,60.873]],["parent/627",[285,3.95]],["name/628",[109,32.031]],["parent/628",[285,3.95]],["name/629",[61,49.887]],["parent/629",[285,3.95]],["name/630",[208,54.513]],["parent/630",[283,4.212]],["name/631",[294,49.887]],["parent/631",[283,4.212]],["name/632",[295,49.887]],["parent/632",[283,4.212]],["name/633",[185,45.709]],["parent/633",[283,4.212]],["name/634",[296,53.401]],["parent/634",[]],["name/635",[199,55.765]],["parent/635",[296,4.973]],["name/636",[89,46.209]],["parent/636",[296,4.973]],["name/637",[297,60.873]],["parent/637",[296,4.973]],["name/638",[114,26.461]],["parent/638",[296,4.973]],["name/639",[89,46.209]],["parent/639",[298,5.193]],["name/640",[90,58.866]],["parent/640",[298,5.193]],["name/641",[299,63.386]],["parent/641",[298,5.193]],["name/642",[91,66.751]],["parent/642",[298,5.193]],["name/643",[92,66.751]],["parent/643",[298,5.193]],["name/644",[93,66.751]],["parent/644",[298,5.193]],["name/645",[94,66.751]],["parent/645",[298,5.193]],["name/646",[185,45.709]],["parent/646",[296,4.973]],["name/647",[211,51.49]],["parent/647",[296,4.973]],["name/648",[108,35.223]],["parent/648",[296,4.973]],["name/649",[257,60.873]],["parent/649",[296,4.973]],["name/650",[300,71.859]],["parent/650",[]],["name/651",[301,55.765]],["parent/651",[]],["name/652",[265,66.751]],["parent/652",[301,5.193]],["name/653",[266,63.386]],["parent/653",[301,5.193]],["name/654",[208,54.513]],["parent/654",[301,5.193]],["name/655",[152,41.101]],["parent/655",[301,5.193]],["name/656",[188,41.101]],["parent/656",[301,5.193]],["name/657",[108,35.223]],["parent/657",[301,5.193]],["name/658",[302,57.196]],["parent/658",[]],["name/659",[199,55.765]],["parent/659",[302,5.326]],["name/660",[185,45.709]],["parent/660",[302,5.326]],["name/661",[208,54.513]],["parent/661",[302,5.326]],["name/662",[152,41.101]],["parent/662",[302,5.326]],["name/663",[266,63.386]],["parent/663",[302,5.326]],["name/664",[303,71.859]],["parent/664",[]],["name/665",[304,71.859]],["parent/665",[]],["name/666",[305,42.772]],["parent/666",[]],["name/667",[104,33.078]],["parent/667",[305,3.983]],["name/668",[105,42.772]],["parent/668",[305,3.983]],["name/669",[160,57.196]],["parent/669",[305,3.983]],["name/670",[178,41.414]],["parent/670",[305,3.983]],["name/671",[306,52.4]],["parent/671",[305,3.983]],["name/672",[307,63.386]],["parent/672",[305,3.983]],["name/673",[218,58.866]],["parent/673",[305,3.983]],["name/674",[112,53.401]],["parent/674",[305,3.983]],["name/675",[294,49.887]],["parent/675",[305,3.983]],["name/676",[308,58.866]],["parent/676",[305,3.983]],["name/677",[114,26.461]],["parent/677",[305,3.983]],["name/678",[163,46.209]],["parent/678",[309,5.326]],["name/679",[109,32.031]],["parent/679",[309,5.326]],["name/680",[155,39.94]],["parent/680",[309,5.326]],["name/681",[156,40.798]],["parent/681",[309,5.326]],["name/682",[295,49.887]],["parent/682",[305,3.983]],["name/683",[310,63.386]],["parent/683",[305,3.983]],["name/684",[311,57.196]],["parent/684",[305,3.983]],["name/685",[114,26.461]],["parent/685",[305,3.983]],["name/686",[312,57.196]],["parent/686",[309,5.326]],["name/687",[313,57.196]],["parent/687",[309,5.326]],["name/688",[314,57.196]],["parent/688",[305,3.983]],["name/689",[108,35.223]],["parent/689",[305,3.983]],["name/690",[144,43.927]],["parent/690",[305,3.983]],["name/691",[315,63.386]],["parent/691",[305,3.983]],["name/692",[316,51.49]],["parent/692",[305,3.983]],["name/693",[213,49.172]],["parent/693",[305,3.983]],["name/694",[317,66.751]],["parent/694",[305,3.983]],["name/695",[318,63.386]],["parent/695",[305,3.983]],["name/696",[319,63.386]],["parent/696",[305,3.983]],["name/697",[320,60.873]],["parent/697",[305,3.983]],["name/698",[109,32.031]],["parent/698",[305,3.983]],["name/699",[321,63.386]],["parent/699",[]],["name/700",[188,41.101]],["parent/700",[321,5.902]],["name/701",[152,41.101]],["parent/701",[321,5.902]],["name/702",[322,60.873]],["parent/702",[]],["name/703",[323,63.386]],["parent/703",[322,5.668]],["name/704",[152,41.101]],["parent/704",[322,5.668]],["name/705",[150,46.209]],["parent/705",[322,5.668]],["name/706",[324,55.765]],["parent/706",[]],["name/707",[109,32.031]],["parent/707",[324,5.193]],["name/708",[155,39.94]],["parent/708",[324,5.193]],["name/709",[156,40.798]],["parent/709",[324,5.193]],["name/710",[163,46.209]],["parent/710",[324,5.193]],["name/711",[104,33.078]],["parent/711",[324,5.193]],["name/712",[144,43.927]],["parent/712",[324,5.193]],["name/713",[325,71.859]],["parent/713",[]],["name/714",[326,71.859]],["parent/714",[]],["name/715",[327,66.751]],["parent/715",[]],["name/716",[328,58.866]],["parent/716",[327,6.216]],["name/717",[329,71.859]],["parent/717",[]],["name/718",[330,66.751]],["parent/718",[]],["name/719",[320,60.873]],["parent/719",[330,6.216]],["name/720",[331,71.859]],["parent/720",[]],["name/721",[332,71.859]],["parent/721",[]],["name/722",[333,71.859]],["parent/722",[]],["name/723",[334,71.859]],["parent/723",[]],["name/724",[335,57.196]],["parent/724",[]],["name/725",[150,46.209]],["parent/725",[335,5.326]],["name/726",[151,47.88]],["parent/726",[335,5.326]],["name/727",[160,57.196]],["parent/727",[335,5.326]],["name/728",[336,57.196]],["parent/728",[335,5.326]],["name/729",[114,26.461]],["parent/729",[335,5.326]],["name/730",[337,55.765]],["parent/730",[338,6.691]],["name/731",[339,58.866]],["parent/731",[]],["name/732",[109,32.031]],["parent/732",[339,5.481]],["name/733",[155,39.94]],["parent/733",[339,5.481]],["name/734",[156,40.798]],["parent/734",[339,5.481]],["name/735",[3,49.172]],["parent/735",[339,5.481]],["name/736",[340,66.751]],["parent/736",[]],["name/737",[114,26.461]],["parent/737",[340,6.216]],["name/738",[341,57.196]],["parent/738",[342,6.691]],["name/739",[343,71.859]],["parent/739",[]],["name/740",[344,71.859]],["parent/740",[]],["name/741",[345,71.859]],["parent/741",[]],["name/742",[346,52.4]],["parent/742",[]],["name/743",[185,45.709]],["parent/743",[346,4.879]],["name/744",[108,35.223]],["parent/744",[346,4.879]],["name/745",[199,55.765]],["parent/745",[346,4.879]],["name/746",[104,33.078]],["parent/746",[346,4.879]],["name/747",[105,42.772]],["parent/747",[346,4.879]],["name/748",[347,55.765]],["parent/748",[346,4.879]],["name/749",[200,53.401]],["parent/749",[346,4.879]],["name/750",[348,66.751]],["parent/750",[346,4.879]],["name/751",[109,32.031]],["parent/751",[346,4.879]],["name/752",[349,49.887]],["parent/752",[]],["name/753",[104,33.078]],["parent/753",[349,4.645]],["name/754",[109,32.031]],["parent/754",[349,4.645]],["name/755",[105,42.772]],["parent/755",[349,4.645]],["name/756",[347,55.765]],["parent/756",[349,4.645]],["name/757",[219,49.172]],["parent/757",[349,4.645]],["name/758",[114,26.461]],["parent/758",[349,4.645]],["name/759",[104,33.078]],["parent/759",[350,5.326]],["name/760",[109,32.031]],["parent/760",[350,5.326]],["name/761",[294,49.887]],["parent/761",[350,5.326]],["name/762",[295,49.887]],["parent/762",[350,5.326]],["name/763",[316,51.49]],["parent/763",[350,5.326]],["name/764",[351,71.859]],["parent/764",[349,4.645]],["name/765",[352,66.751]],["parent/765",[349,4.645]],["name/766",[114,26.461]],["parent/766",[349,4.645]],["name/767",[200,53.401]],["parent/767",[350,5.326]],["name/768",[348,66.751]],["parent/768",[349,4.645]],["name/769",[108,35.223]],["parent/769",[349,4.645]],["name/770",[316,51.49]],["parent/770",[349,4.645]],["name/771",[353,60.873]],["parent/771",[]],["name/772",[354,71.859]],["parent/772",[353,5.668]],["name/773",[150,46.209]],["parent/773",[353,5.668]],["name/774",[151,47.88]],["parent/774",[353,5.668]],["name/775",[355,58.866]],["parent/775",[]],["name/776",[109,32.031]],["parent/776",[355,5.481]],["name/777",[156,40.798]],["parent/777",[355,5.481]],["name/778",[58,60.873]],["parent/778",[355,5.481]],["name/779",[157,63.386]],["parent/779",[355,5.481]],["name/780",[356,71.859]],["parent/780",[]],["name/781",[357,71.859]],["parent/781",[]],["name/782",[358,57.196]],["parent/782",[]],["name/783",[105,42.772]],["parent/783",[358,5.326]],["name/784",[347,55.765]],["parent/784",[358,5.326]],["name/785",[352,66.751]],["parent/785",[358,5.326]],["name/786",[114,26.461]],["parent/786",[358,5.326]],["name/787",[200,53.401]],["parent/787",[359,6.691]],["name/788",[108,35.223]],["parent/788",[358,5.326]],["name/789",[360,71.859]],["parent/789",[]],["name/790",[361,57.196]],["parent/790",[]],["name/791",[188,41.101]],["parent/791",[361,5.326]],["name/792",[152,41.101]],["parent/792",[361,5.326]],["name/793",[114,26.461]],["parent/793",[361,5.326]],["name/794",[104,33.078]],["parent/794",[362,5.326]],["name/795",[107,42.772]],["parent/795",[362,5.326]],["name/796",[176,43.927]],["parent/796",[362,5.326]],["name/797",[186,52.4]],["parent/797",[362,5.326]],["name/798",[279,54.513]],["parent/798",[362,5.326]],["name/799",[108,35.223]],["parent/799",[362,5.326]],["name/800",[108,35.223]],["parent/800",[361,5.326]],["name/801",[208,54.513]],["parent/801",[361,5.326]],["name/802",[363,53.401]],["parent/802",[]],["name/803",[104,33.078]],["parent/803",[363,4.973]],["name/804",[109,32.031]],["parent/804",[363,4.973]],["name/805",[210,54.513]],["parent/805",[363,4.973]],["name/806",[211,51.49]],["parent/806",[363,4.973]],["name/807",[185,45.709]],["parent/807",[363,4.973]],["name/808",[152,41.101]],["parent/808",[363,4.973]],["name/809",[212,49.887]],["parent/809",[363,4.973]],["name/810",[242,63.386]],["parent/810",[363,4.973]],["name/811",[364,57.196]],["parent/811",[]],["name/812",[104,33.078]],["parent/812",[364,5.326]],["name/813",[105,42.772]],["parent/813",[364,5.326]],["name/814",[347,55.765]],["parent/814",[364,5.326]],["name/815",[219,49.172]],["parent/815",[364,5.326]],["name/816",[114,26.461]],["parent/816",[364,5.326]],["name/817",[104,33.078]],["parent/817",[365,6.691]],["name/818",[366,71.859]],["parent/818",[]],["name/819",[367,71.859]],["parent/819",[]],["name/820",[368,71.859]],["parent/820",[]],["name/821",[369,43.142]],["parent/821",[]],["name/822",[104,33.078]],["parent/822",[369,4.017]],["name/823",[105,42.772]],["parent/823",[369,4.017]],["name/824",[160,57.196]],["parent/824",[369,4.017]],["name/825",[178,41.414]],["parent/825",[369,4.017]],["name/826",[112,53.401]],["parent/826",[369,4.017]],["name/827",[294,49.887]],["parent/827",[369,4.017]],["name/828",[295,49.887]],["parent/828",[369,4.017]],["name/829",[370,66.751]],["parent/829",[369,4.017]],["name/830",[114,26.461]],["parent/830",[369,4.017]],["name/831",[109,32.031]],["parent/831",[371,4.879]],["name/832",[156,40.798]],["parent/832",[371,4.879]],["name/833",[58,60.873]],["parent/833",[371,4.879]],["name/834",[157,63.386]],["parent/834",[371,4.879]],["name/835",[306,52.4]],["parent/835",[369,4.017]],["name/836",[307,63.386]],["parent/836",[369,4.017]],["name/837",[218,58.866]],["parent/837",[369,4.017]],["name/838",[308,58.866]],["parent/838",[369,4.017]],["name/839",[114,26.461]],["parent/839",[369,4.017]],["name/840",[163,46.209]],["parent/840",[371,4.879]],["name/841",[109,32.031]],["parent/841",[371,4.879]],["name/842",[155,39.94]],["parent/842",[371,4.879]],["name/843",[156,40.798]],["parent/843",[371,4.879]],["name/844",[310,63.386]],["parent/844",[369,4.017]],["name/845",[311,57.196]],["parent/845",[369,4.017]],["name/846",[114,26.461]],["parent/846",[369,4.017]],["name/847",[312,57.196]],["parent/847",[371,4.879]],["name/848",[313,57.196]],["parent/848",[371,4.879]],["name/849",[314,57.196]],["parent/849",[369,4.017]],["name/850",[108,35.223]],["parent/850",[369,4.017]],["name/851",[144,43.927]],["parent/851",[369,4.017]],["name/852",[315,63.386]],["parent/852",[369,4.017]],["name/853",[316,51.49]],["parent/853",[369,4.017]],["name/854",[318,63.386]],["parent/854",[369,4.017]],["name/855",[319,63.386]],["parent/855",[369,4.017]],["name/856",[109,32.031]],["parent/856",[369,4.017]],["name/857",[372,55.765]],["parent/857",[]],["name/858",[105,42.772]],["parent/858",[372,5.193]],["name/859",[160,57.196]],["parent/859",[372,5.193]],["name/860",[294,49.887]],["parent/860",[372,5.193]],["name/861",[295,49.887]],["parent/861",[372,5.193]],["name/862",[370,66.751]],["parent/862",[372,5.193]],["name/863",[114,26.461]],["parent/863",[372,5.193]],["name/864",[58,60.873]],["parent/864",[373,6.691]],["name/865",[374,58.866]],["parent/865",[]],["name/866",[188,41.101]],["parent/866",[374,5.481]],["name/867",[152,41.101]],["parent/867",[374,5.481]],["name/868",[114,26.461]],["parent/868",[374,5.481]],["name/869",[104,33.078]],["parent/869",[375,5.481]],["name/870",[107,42.772]],["parent/870",[375,5.481]],["name/871",[186,52.4]],["parent/871",[375,5.481]],["name/872",[176,43.927]],["parent/872",[375,5.481]],["name/873",[108,35.223]],["parent/873",[375,5.481]],["name/874",[108,35.223]],["parent/874",[374,5.481]],["name/875",[376,63.386]],["parent/875",[]],["name/876",[323,63.386]],["parent/876",[376,5.902]],["name/877",[336,57.196]],["parent/877",[376,5.902]],["name/878",[377,60.873]],["parent/878",[]],["name/879",[199,55.765]],["parent/879",[377,5.668]],["name/880",[57,55.765]],["parent/880",[377,5.668]],["name/881",[185,45.709]],["parent/881",[377,5.668]],["name/882",[378,63.386]],["parent/882",[]],["name/883",[150,46.209]],["parent/883",[378,5.902]],["name/884",[151,47.88]],["parent/884",[378,5.902]],["name/885",[379,58.866]],["parent/885",[]],["name/886",[109,32.031]],["parent/886",[379,5.481]],["name/887",[155,39.94]],["parent/887",[379,5.481]],["name/888",[156,40.798]],["parent/888",[379,5.481]],["name/889",[3,49.172]],["parent/889",[379,5.481]],["name/890",[380,53.401]],["parent/890",[]],["name/891",[105,42.772]],["parent/891",[380,4.973]],["name/892",[294,49.887]],["parent/892",[380,4.973]],["name/893",[295,49.887]],["parent/893",[380,4.973]],["name/894",[178,41.414]],["parent/894",[380,4.973]],["name/895",[320,60.873]],["parent/895",[380,4.973]],["name/896",[213,49.172]],["parent/896",[380,4.973]],["name/897",[114,26.461]],["parent/897",[380,4.973]],["name/898",[178,41.414]],["parent/898",[381,5.193]],["name/899",[249,42.415]],["parent/899",[381,5.193]],["name/900",[114,26.461]],["parent/900",[381,5.193]],["name/901",[253,53.401]],["parent/901",[382,5.076]],["name/902",[241,54.513]],["parent/902",[381,5.193]],["name/903",[114,26.461]],["parent/903",[381,5.193]],["name/904",[142,44.344]],["parent/904",[382,5.076]],["name/905",[0,49.887]],["parent/905",[382,5.076]],["name/906",[383,60.873]],["parent/906",[381,5.193]],["name/907",[114,26.461]],["parent/907",[381,5.193]],["name/908",[384,60.873]],["parent/908",[382,5.076]],["name/909",[385,60.873]],["parent/909",[382,5.076]],["name/910",[386,60.873]],["parent/910",[382,5.076]],["name/911",[387,60.873]],["parent/911",[382,5.076]],["name/912",[388,60.873]],["parent/912",[382,5.076]],["name/913",[108,35.223]],["parent/913",[380,4.973]],["name/914",[389,42.772]],["parent/914",[]],["name/915",[104,33.078]],["parent/915",[389,3.983]],["name/916",[105,42.772]],["parent/916",[389,3.983]],["name/917",[160,57.196]],["parent/917",[389,3.983]],["name/918",[178,41.414]],["parent/918",[389,3.983]],["name/919",[306,52.4]],["parent/919",[389,3.983]],["name/920",[307,63.386]],["parent/920",[389,3.983]],["name/921",[218,58.866]],["parent/921",[389,3.983]],["name/922",[112,53.401]],["parent/922",[389,3.983]],["name/923",[294,49.887]],["parent/923",[389,3.983]],["name/924",[308,58.866]],["parent/924",[389,3.983]],["name/925",[114,26.461]],["parent/925",[389,3.983]],["name/926",[163,46.209]],["parent/926",[390,5.326]],["name/927",[109,32.031]],["parent/927",[390,5.326]],["name/928",[155,39.94]],["parent/928",[390,5.326]],["name/929",[156,40.798]],["parent/929",[390,5.326]],["name/930",[295,49.887]],["parent/930",[389,3.983]],["name/931",[310,63.386]],["parent/931",[389,3.983]],["name/932",[311,57.196]],["parent/932",[389,3.983]],["name/933",[114,26.461]],["parent/933",[389,3.983]],["name/934",[312,57.196]],["parent/934",[390,5.326]],["name/935",[313,57.196]],["parent/935",[390,5.326]],["name/936",[314,57.196]],["parent/936",[389,3.983]],["name/937",[108,35.223]],["parent/937",[389,3.983]],["name/938",[144,43.927]],["parent/938",[389,3.983]],["name/939",[315,63.386]],["parent/939",[389,3.983]],["name/940",[316,51.49]],["parent/940",[389,3.983]],["name/941",[213,49.172]],["parent/941",[389,3.983]],["name/942",[317,66.751]],["parent/942",[389,3.983]],["name/943",[318,63.386]],["parent/943",[389,3.983]],["name/944",[319,63.386]],["parent/944",[389,3.983]],["name/945",[320,60.873]],["parent/945",[389,3.983]],["name/946",[109,32.031]],["parent/946",[389,3.983]],["name/947",[391,71.859]],["parent/947",[]],["name/948",[392,55.765]],["parent/948",[]],["name/949",[104,33.078]],["parent/949",[392,5.193]],["name/950",[294,49.887]],["parent/950",[392,5.193]],["name/951",[295,49.887]],["parent/951",[392,5.193]],["name/952",[108,35.223]],["parent/952",[392,5.193]],["name/953",[112,53.401]],["parent/953",[392,5.193]],["name/954",[178,41.414]],["parent/954",[392,5.193]],["name/955",[393,71.859]],["parent/955",[]],["name/956",[394,66.751]],["parent/956",[]],["name/957",[328,58.866]],["parent/957",[394,6.216]],["name/958",[395,63.386]],["parent/958",[]],["name/959",[150,46.209]],["parent/959",[395,5.902]],["name/960",[151,47.88]],["parent/960",[395,5.902]],["name/961",[396,58.866]],["parent/961",[]],["name/962",[109,32.031]],["parent/962",[396,5.481]],["name/963",[155,39.94]],["parent/963",[396,5.481]],["name/964",[156,40.798]],["parent/964",[396,5.481]],["name/965",[163,46.209]],["parent/965",[396,5.481]],["name/966",[397,60.873]],["parent/966",[]],["name/967",[189,50.656]],["parent/967",[397,5.668]],["name/968",[398,55.765]],["parent/968",[397,5.668]],["name/969",[114,26.461]],["parent/969",[397,5.668]],["name/970",[134,49.172]],["parent/970",[399,6.216]],["name/971",[114,26.461]],["parent/971",[399,6.216]],["name/972",[142,44.344]],["parent/972",[400,6.691]],["name/973",[401,52.4]],["parent/973",[]],["name/974",[104,33.078]],["parent/974",[401,4.879]],["name/975",[402,66.751]],["parent/975",[401,4.879]],["name/976",[272,60.873]],["parent/976",[401,4.879]],["name/977",[96,55.765]],["parent/977",[401,4.879]],["name/978",[398,55.765]],["parent/978",[401,4.879]],["name/979",[114,26.461]],["parent/979",[401,4.879]],["name/980",[134,49.172]],["parent/980",[403,6.216]],["name/981",[114,26.461]],["parent/981",[403,6.216]],["name/982",[142,44.344]],["parent/982",[404,6.691]],["name/983",[144,43.927]],["parent/983",[401,4.879]],["name/984",[287,48.505]],["parent/984",[401,4.879]],["name/985",[109,32.031]],["parent/985",[401,4.879]],["name/986",[405,60.873]],["parent/986",[]],["name/987",[104,33.078]],["parent/987",[405,5.668]],["name/988",[398,55.765]],["parent/988",[405,5.668]],["name/989",[114,26.461]],["parent/989",[405,5.668]],["name/990",[134,49.172]],["parent/990",[406,6.216]],["name/991",[114,26.461]],["parent/991",[406,6.216]],["name/992",[142,44.344]],["parent/992",[407,6.691]],["name/993",[408,71.859]],["parent/993",[]],["name/994",[409,63.386]],["parent/994",[]],["name/995",[150,46.209]],["parent/995",[409,5.902]],["name/996",[151,47.88]],["parent/996",[409,5.902]],["name/997",[410,63.386]],["parent/997",[]],["name/998",[178,41.414]],["parent/998",[410,5.902]],["name/999",[142,44.344]],["parent/999",[410,5.902]],["name/1000",[411,60.873]],["parent/1000",[]],["name/1001",[178,41.414]],["parent/1001",[411,5.668]],["name/1002",[152,41.101]],["parent/1002",[411,5.668]],["name/1003",[114,26.461]],["parent/1003",[411,5.668]],["name/1004",[176,43.927]],["parent/1004",[412,6.216]],["name/1005",[114,26.461]],["parent/1005",[412,6.216]],["name/1006",[413,71.859]],["parent/1006",[414,6.216]],["name/1007",[142,44.344]],["parent/1007",[414,6.216]],["name/1008",[415,49.887]],["parent/1008",[]],["name/1009",[104,33.078]],["parent/1009",[415,4.645]],["name/1010",[144,43.927]],["parent/1010",[415,4.645]],["name/1011",[287,48.505]],["parent/1011",[415,4.645]],["name/1012",[416,63.386]],["parent/1012",[415,4.645]],["name/1013",[134,49.172]],["parent/1013",[415,4.645]],["name/1014",[417,66.751]],["parent/1014",[415,4.645]],["name/1015",[114,26.461]],["parent/1015",[415,4.645]],["name/1016",[104,33.078]],["parent/1016",[418,5.668]],["name/1017",[226,60.873]],["parent/1017",[415,4.645]],["name/1018",[419,63.386]],["parent/1018",[415,4.645]],["name/1019",[114,26.461]],["parent/1019",[415,4.645]],["name/1020",[347,55.765]],["parent/1020",[418,5.668]],["name/1021",[420,71.859]],["parent/1021",[418,5.668]],["name/1022",[421,71.859]],["parent/1022",[418,5.668]],["name/1023",[109,32.031]],["parent/1023",[415,4.645]],["name/1024",[422,71.859]],["parent/1024",[415,4.645]],["name/1025",[423,58.866]],["parent/1025",[]],["name/1026",[109,32.031]],["parent/1026",[423,5.481]],["name/1027",[155,39.94]],["parent/1027",[423,5.481]],["name/1028",[156,40.798]],["parent/1028",[423,5.481]],["name/1029",[163,46.209]],["parent/1029",[423,5.481]],["name/1030",[424,52.4]],["parent/1030",[]],["name/1031",[226,60.873]],["parent/1031",[424,4.879]],["name/1032",[416,63.386]],["parent/1032",[424,4.879]],["name/1033",[134,49.172]],["parent/1033",[424,4.879]],["name/1034",[419,63.386]],["parent/1034",[424,4.879]],["name/1035",[114,26.461]],["parent/1035",[424,4.879]],["name/1036",[347,55.765]],["parent/1036",[425,5.902]],["name/1037",[426,71.859]],["parent/1037",[424,4.879]],["name/1038",[114,26.461]],["parent/1038",[424,4.879]],["name/1039",[427,71.859]],["parent/1039",[425,5.902]],["name/1040",[417,66.751]],["parent/1040",[424,4.879]],["name/1041",[114,26.461]],["parent/1041",[424,4.879]],["name/1042",[104,33.078]],["parent/1042",[425,5.902]],["name/1043",[428,71.859]],["parent/1043",[]],["name/1044",[429,55.765]],["parent/1044",[]],["name/1045",[104,33.078]],["parent/1045",[429,5.193]],["name/1046",[416,63.386]],["parent/1046",[429,5.193]],["name/1047",[419,63.386]],["parent/1047",[429,5.193]],["name/1048",[114,26.461]],["parent/1048",[429,5.193]],["name/1049",[347,55.765]],["parent/1049",[430,6.216]],["name/1050",[134,49.172]],["parent/1050",[429,5.193]],["name/1051",[114,26.461]],["parent/1051",[429,5.193]],["name/1052",[142,44.344]],["parent/1052",[430,6.216]],["name/1053",[431,71.859]],["parent/1053",[]],["name/1054",[432,55.765]],["parent/1054",[]],["name/1055",[150,46.209]],["parent/1055",[432,5.193]],["name/1056",[151,47.88]],["parent/1056",[432,5.193]],["name/1057",[144,43.927]],["parent/1057",[432,5.193]],["name/1058",[114,26.461]],["parent/1058",[432,5.193]],["name/1059",[246,58.866]],["parent/1059",[433,5.668]],["name/1060",[248,58.866]],["parent/1060",[433,5.668]],["name/1061",[287,48.505]],["parent/1061",[432,5.193]],["name/1062",[114,26.461]],["parent/1062",[432,5.193]],["name/1063",[246,58.866]],["parent/1063",[433,5.668]],["name/1064",[248,58.866]],["parent/1064",[433,5.668]],["name/1065",[434,43.927]],["parent/1065",[]],["name/1066",[104,33.078]],["parent/1066",[434,4.09]],["name/1067",[89,46.209]],["parent/1067",[434,4.09]],["name/1068",[219,49.172]],["parent/1068",[434,4.09]],["name/1069",[161,57.196]],["parent/1069",[434,4.09]],["name/1070",[306,52.4]],["parent/1070",[434,4.09]],["name/1071",[178,41.414]],["parent/1071",[434,4.09]],["name/1072",[241,54.513]],["parent/1072",[434,4.09]],["name/1073",[114,26.461]],["parent/1073",[434,4.09]],["name/1074",[142,44.344]],["parent/1074",[435,4.879]],["name/1075",[0,49.887]],["parent/1075",[435,4.879]],["name/1076",[294,49.887]],["parent/1076",[434,4.09]],["name/1077",[295,49.887]],["parent/1077",[434,4.09]],["name/1078",[311,57.196]],["parent/1078",[434,4.09]],["name/1079",[114,26.461]],["parent/1079",[434,4.09]],["name/1080",[312,57.196]],["parent/1080",[435,4.879]],["name/1081",[313,57.196]],["parent/1081",[435,4.879]],["name/1082",[314,57.196]],["parent/1082",[434,4.09]],["name/1083",[16,60.873]],["parent/1083",[434,4.09]],["name/1084",[114,26.461]],["parent/1084",[434,4.09]],["name/1085",[221,58.866]],["parent/1085",[435,4.879]],["name/1086",[436,66.751]],["parent/1086",[435,4.879]],["name/1087",[249,42.415]],["parent/1087",[434,4.09]],["name/1088",[114,26.461]],["parent/1088",[434,4.09]],["name/1089",[253,53.401]],["parent/1089",[435,4.879]],["name/1090",[135,63.386]],["parent/1090",[435,4.879]],["name/1091",[254,60.873]],["parent/1091",[435,4.879]],["name/1092",[255,63.386]],["parent/1092",[435,4.879]],["name/1093",[316,51.49]],["parent/1093",[434,4.09]],["name/1094",[437,58.866]],["parent/1094",[434,4.09]],["name/1095",[108,35.223]],["parent/1095",[434,4.09]],["name/1096",[438,58.866]],["parent/1096",[434,4.09]],["name/1097",[439,63.386]],["parent/1097",[434,4.09]],["name/1098",[287,48.505]],["parent/1098",[434,4.09]],["name/1099",[440,58.866]],["parent/1099",[]],["name/1100",[109,32.031]],["parent/1100",[440,5.481]],["name/1101",[155,39.94]],["parent/1101",[440,5.481]],["name/1102",[156,40.798]],["parent/1102",[440,5.481]],["name/1103",[99,46.736]],["parent/1103",[440,5.481]],["name/1104",[441,57.196]],["parent/1104",[]],["name/1105",[213,49.172]],["parent/1105",[441,5.326]],["name/1106",[215,57.196]],["parent/1106",[441,5.326]],["name/1107",[188,41.101]],["parent/1107",[441,5.326]],["name/1108",[114,26.461]],["parent/1108",[441,5.326]],["name/1109",[104,33.078]],["parent/1109",[442,5.326]],["name/1110",[105,42.772]],["parent/1110",[442,5.326]],["name/1111",[106,58.866]],["parent/1111",[442,5.326]],["name/1112",[108,35.223]],["parent/1112",[442,5.326]],["name/1113",[112,53.401]],["parent/1113",[442,5.326]],["name/1114",[107,42.772]],["parent/1114",[442,5.326]],["name/1115",[108,35.223]],["parent/1115",[441,5.326]],["name/1116",[443,71.859]],["parent/1116",[]],["name/1117",[444,71.859]],["parent/1117",[]],["name/1118",[445,58.866]],["parent/1118",[]],["name/1119",[109,32.031]],["parent/1119",[445,5.481]],["name/1120",[156,40.798]],["parent/1120",[445,5.481]],["name/1121",[155,39.94]],["parent/1121",[445,5.481]],["name/1122",[446,71.859]],["parent/1122",[445,5.481]],["name/1123",[447,66.751]],["parent/1123",[]],["name/1124",[142,44.344]],["parent/1124",[447,6.216]],["name/1125",[448,54.513]],["parent/1125",[]],["name/1126",[142,44.344]],["parent/1126",[448,5.076]],["name/1127",[155,39.94]],["parent/1127",[448,5.076]],["name/1128",[0,49.887]],["parent/1128",[448,5.076]],["name/1129",[178,41.414]],["parent/1129",[448,5.076]],["name/1130",[109,32.031]],["parent/1130",[448,5.076]],["name/1131",[179,63.386]],["parent/1131",[448,5.076]],["name/1132",[114,26.461]],["parent/1132",[448,5.076]],["name/1133",[178,41.414]],["parent/1133",[449,6.216]],["name/1134",[104,33.078]],["parent/1134",[449,6.216]],["name/1135",[450,57.196]],["parent/1135",[]],["name/1136",[189,50.656]],["parent/1136",[450,5.326]],["name/1137",[114,26.461]],["parent/1137",[450,5.326]],["name/1138",[104,33.078]],["parent/1138",[451,5.326]],["name/1139",[152,41.101]],["parent/1139",[450,5.326]],["name/1140",[114,26.461]],["parent/1140",[450,5.326]],["name/1141",[104,33.078]],["parent/1141",[451,5.326]],["name/1142",[107,42.772]],["parent/1142",[451,5.326]],["name/1143",[176,43.927]],["parent/1143",[451,5.326]],["name/1144",[186,52.4]],["parent/1144",[451,5.326]],["name/1145",[108,35.223]],["parent/1145",[451,5.326]],["name/1146",[108,35.223]],["parent/1146",[450,5.326]],["name/1147",[452,49.887]],["parent/1147",[]],["name/1148",[104,33.078]],["parent/1148",[452,4.645]],["name/1149",[109,32.031]],["parent/1149",[452,4.645]],["name/1150",[210,54.513]],["parent/1150",[452,4.645]],["name/1151",[211,51.49]],["parent/1151",[452,4.645]],["name/1152",[176,43.927]],["parent/1152",[452,4.645]],["name/1153",[152,41.101]],["parent/1153",[452,4.645]],["name/1154",[188,41.101]],["parent/1154",[452,4.645]],["name/1155",[189,50.656]],["parent/1155",[452,4.645]],["name/1156",[212,49.887]],["parent/1156",[452,4.645]],["name/1157",[185,45.709]],["parent/1157",[452,4.645]],["name/1158",[213,49.172]],["parent/1158",[452,4.645]],["name/1159",[114,26.461]],["parent/1159",[452,4.645]],["name/1160",[104,33.078]],["parent/1160",[453,3.856]],["name/1161",[89,46.209]],["parent/1161",[453,3.856]],["name/1162",[219,49.172]],["parent/1162",[453,3.856]],["name/1163",[161,57.196]],["parent/1163",[453,3.856]],["name/1164",[306,52.4]],["parent/1164",[453,3.856]],["name/1165",[178,41.414]],["parent/1165",[453,3.856]],["name/1166",[241,54.513]],["parent/1166",[453,3.856]],["name/1167",[114,26.461]],["parent/1167",[453,3.856]],["name/1168",[142,44.344]],["parent/1168",[454,4.09]],["name/1169",[0,49.887]],["parent/1169",[454,4.09]],["name/1170",[294,49.887]],["parent/1170",[453,3.856]],["name/1171",[295,49.887]],["parent/1171",[453,3.856]],["name/1172",[311,57.196]],["parent/1172",[453,3.856]],["name/1173",[114,26.461]],["parent/1173",[453,3.856]],["name/1174",[312,57.196]],["parent/1174",[454,4.09]],["name/1175",[313,57.196]],["parent/1175",[454,4.09]],["name/1176",[314,57.196]],["parent/1176",[453,3.856]],["name/1177",[16,60.873]],["parent/1177",[453,3.856]],["name/1178",[114,26.461]],["parent/1178",[453,3.856]],["name/1179",[109,32.031]],["parent/1179",[454,4.09]],["name/1180",[221,58.866]],["parent/1180",[454,4.09]],["name/1181",[455,53.401]],["parent/1181",[454,4.09]],["name/1182",[249,42.415]],["parent/1182",[453,3.856]],["name/1183",[114,26.461]],["parent/1183",[453,3.856]],["name/1184",[109,32.031]],["parent/1184",[454,4.09]],["name/1185",[253,53.401]],["parent/1185",[454,4.09]],["name/1186",[254,60.873]],["parent/1186",[454,4.09]],["name/1187",[455,53.401]],["parent/1187",[454,4.09]],["name/1188",[135,63.386]],["parent/1188",[454,4.09]],["name/1189",[316,51.49]],["parent/1189",[453,3.856]],["name/1190",[437,58.866]],["parent/1190",[453,3.856]],["name/1191",[456,66.751]],["parent/1191",[453,3.856]],["name/1192",[114,26.461]],["parent/1192",[453,3.856]],["name/1193",[457,66.751]],["parent/1193",[454,4.09]],["name/1194",[114,26.461]],["parent/1194",[454,4.09]],["name/1195",[104,33.078]],["parent/1195",[458,5.668]],["name/1196",[455,53.401]],["parent/1196",[458,5.668]],["name/1197",[459,66.751]],["parent/1197",[454,4.09]],["name/1198",[114,26.461]],["parent/1198",[454,4.09]],["name/1199",[104,33.078]],["parent/1199",[458,5.668]],["name/1200",[455,53.401]],["parent/1200",[458,5.668]],["name/1201",[438,58.866]],["parent/1201",[453,3.856]],["name/1202",[293,60.873]],["parent/1202",[453,3.856]],["name/1203",[439,63.386]],["parent/1203",[453,3.856]],["name/1204",[144,43.927]],["parent/1204",[453,3.856]],["name/1205",[287,48.505]],["parent/1205",[453,3.856]],["name/1206",[460,71.859]],["parent/1206",[453,3.856]],["name/1207",[114,26.461]],["parent/1207",[453,3.856]],["name/1208",[104,33.078]],["parent/1208",[454,4.09]],["name/1209",[107,42.772]],["parent/1209",[454,4.09]],["name/1210",[108,35.223]],["parent/1210",[454,4.09]],["name/1211",[109,32.031]],["parent/1211",[454,4.09]],["name/1212",[109,32.031]],["parent/1212",[453,3.856]],["name/1213",[308,58.866]],["parent/1213",[453,3.856]],["name/1214",[114,26.461]],["parent/1214",[453,3.856]],["name/1215",[109,32.031]],["parent/1215",[454,4.09]],["name/1216",[155,39.94]],["parent/1216",[454,4.09]],["name/1217",[156,40.798]],["parent/1217",[454,4.09]],["name/1218",[163,46.209]],["parent/1218",[454,4.09]],["name/1219",[461,63.386]],["parent/1219",[]],["name/1220",[89,46.209]],["parent/1220",[461,5.902]],["name/1221",[142,44.344]],["parent/1221",[461,5.902]],["name/1222",[462,71.859]],["parent/1222",[]],["name/1223",[463,52.4]],["parent/1223",[]],["name/1224",[383,60.873]],["parent/1224",[463,4.879]],["name/1225",[114,26.461]],["parent/1225",[463,4.879]],["name/1226",[384,60.873]],["parent/1226",[464,5.076]],["name/1227",[385,60.873]],["parent/1227",[464,5.076]],["name/1228",[386,60.873]],["parent/1228",[464,5.076]],["name/1229",[387,60.873]],["parent/1229",[464,5.076]],["name/1230",[388,60.873]],["parent/1230",[464,5.076]],["name/1231",[178,41.414]],["parent/1231",[463,4.879]],["name/1232",[438,58.866]],["parent/1232",[463,4.879]],["name/1233",[200,53.401]],["parent/1233",[463,4.879]],["name/1234",[241,54.513]],["parent/1234",[463,4.879]],["name/1235",[114,26.461]],["parent/1235",[463,4.879]],["name/1236",[142,44.344]],["parent/1236",[464,5.076]],["name/1237",[0,49.887]],["parent/1237",[464,5.076]],["name/1238",[249,42.415]],["parent/1238",[463,4.879]],["name/1239",[114,26.461]],["parent/1239",[463,4.879]],["name/1240",[253,53.401]],["parent/1240",[464,5.076]],["name/1241",[465,40.798]],["parent/1241",[]],["name/1242",[104,33.078]],["parent/1242",[465,3.799]],["name/1243",[89,46.209]],["parent/1243",[465,3.799]],["name/1244",[219,49.172]],["parent/1244",[465,3.799]],["name/1245",[306,52.4]],["parent/1245",[465,3.799]],["name/1246",[178,41.414]],["parent/1246",[465,3.799]],["name/1247",[200,53.401]],["parent/1247",[465,3.799]],["name/1248",[130,51.49]],["parent/1248",[465,3.799]],["name/1249",[114,26.461]],["parent/1249",[465,3.799]],["name/1250",[176,43.927]],["parent/1250",[466,4.017]],["name/1251",[0,49.887]],["parent/1251",[466,4.017]],["name/1252",[241,54.513]],["parent/1252",[465,3.799]],["name/1253",[114,26.461]],["parent/1253",[465,3.799]],["name/1254",[142,44.344]],["parent/1254",[466,4.017]],["name/1255",[294,49.887]],["parent/1255",[465,3.799]],["name/1256",[295,49.887]],["parent/1256",[465,3.799]],["name/1257",[311,57.196]],["parent/1257",[465,3.799]],["name/1258",[114,26.461]],["parent/1258",[465,3.799]],["name/1259",[312,57.196]],["parent/1259",[466,4.017]],["name/1260",[313,57.196]],["parent/1260",[466,4.017]],["name/1261",[314,57.196]],["parent/1261",[465,3.799]],["name/1262",[16,60.873]],["parent/1262",[465,3.799]],["name/1263",[114,26.461]],["parent/1263",[465,3.799]],["name/1264",[109,32.031]],["parent/1264",[466,4.017]],["name/1265",[221,58.866]],["parent/1265",[466,4.017]],["name/1266",[156,40.798]],["parent/1266",[466,4.017]],["name/1267",[436,66.751]],["parent/1267",[466,4.017]],["name/1268",[155,39.94]],["parent/1268",[466,4.017]],["name/1269",[455,53.401]],["parent/1269",[466,4.017]],["name/1270",[249,42.415]],["parent/1270",[465,3.799]],["name/1271",[114,26.461]],["parent/1271",[465,3.799]],["name/1272",[109,32.031]],["parent/1272",[466,4.017]],["name/1273",[253,53.401]],["parent/1273",[466,4.017]],["name/1274",[254,60.873]],["parent/1274",[466,4.017]],["name/1275",[156,40.798]],["parent/1275",[466,4.017]],["name/1276",[255,63.386]],["parent/1276",[466,4.017]],["name/1277",[155,39.94]],["parent/1277",[466,4.017]],["name/1278",[455,53.401]],["parent/1278",[466,4.017]],["name/1279",[316,51.49]],["parent/1279",[465,3.799]],["name/1280",[437,58.866]],["parent/1280",[465,3.799]],["name/1281",[108,35.223]],["parent/1281",[465,3.799]],["name/1282",[456,66.751]],["parent/1282",[465,3.799]],["name/1283",[114,26.461]],["parent/1283",[465,3.799]],["name/1284",[457,66.751]],["parent/1284",[466,4.017]],["name/1285",[114,26.461]],["parent/1285",[466,4.017]],["name/1286",[104,33.078]],["parent/1286",[467,5.668]],["name/1287",[455,53.401]],["parent/1287",[467,5.668]],["name/1288",[459,66.751]],["parent/1288",[466,4.017]],["name/1289",[114,26.461]],["parent/1289",[466,4.017]],["name/1290",[104,33.078]],["parent/1290",[467,5.668]],["name/1291",[455,53.401]],["parent/1291",[467,5.668]],["name/1292",[438,58.866]],["parent/1292",[465,3.799]],["name/1293",[293,60.873]],["parent/1293",[465,3.799]],["name/1294",[439,63.386]],["parent/1294",[465,3.799]],["name/1295",[287,48.505]],["parent/1295",[465,3.799]],["name/1296",[144,43.927]],["parent/1296",[465,3.799]],["name/1297",[109,32.031]],["parent/1297",[465,3.799]],["name/1298",[308,58.866]],["parent/1298",[465,3.799]],["name/1299",[114,26.461]],["parent/1299",[465,3.799]],["name/1300",[109,32.031]],["parent/1300",[466,4.017]],["name/1301",[155,39.94]],["parent/1301",[466,4.017]],["name/1302",[156,40.798]],["parent/1302",[466,4.017]],["name/1303",[163,46.209]],["parent/1303",[466,4.017]],["name/1304",[468,57.196]],["parent/1304",[]],["name/1305",[188,41.101]],["parent/1305",[468,5.326]],["name/1306",[152,41.101]],["parent/1306",[468,5.326]],["name/1307",[189,50.656]],["parent/1307",[468,5.326]],["name/1308",[114,26.461]],["parent/1308",[468,5.326]],["name/1309",[104,33.078]],["parent/1309",[469,6.216]],["name/1310",[261,60.873]],["parent/1310",[469,6.216]],["name/1311",[108,35.223]],["parent/1311",[468,5.326]],["name/1312",[470,60.873]],["parent/1312",[]],["name/1313",[323,63.386]],["parent/1313",[470,5.668]],["name/1314",[152,41.101]],["parent/1314",[470,5.668]],["name/1315",[150,46.209]],["parent/1315",[470,5.668]],["name/1316",[471,58.866]],["parent/1316",[]],["name/1317",[109,32.031]],["parent/1317",[471,5.481]],["name/1318",[155,39.94]],["parent/1318",[471,5.481]],["name/1319",[156,40.798]],["parent/1319",[471,5.481]],["name/1320",[163,46.209]],["parent/1320",[471,5.481]],["name/1321",[472,55.765]],["parent/1321",[]],["name/1322",[316,51.49]],["parent/1322",[472,5.193]],["name/1323",[89,46.209]],["parent/1323",[472,5.193]],["name/1324",[383,60.873]],["parent/1324",[472,5.193]],["name/1325",[114,26.461]],["parent/1325",[472,5.193]],["name/1326",[384,60.873]],["parent/1326",[473,5.326]],["name/1327",[385,60.873]],["parent/1327",[473,5.326]],["name/1328",[386,60.873]],["parent/1328",[473,5.326]],["name/1329",[387,60.873]],["parent/1329",[473,5.326]],["name/1330",[388,60.873]],["parent/1330",[473,5.326]],["name/1331",[249,42.415]],["parent/1331",[472,5.193]],["name/1332",[114,26.461]],["parent/1332",[472,5.193]],["name/1333",[253,53.401]],["parent/1333",[473,5.326]],["name/1334",[474,71.859]],["parent/1334",[]],["name/1335",[475,71.859]],["parent/1335",[]],["name/1336",[476,71.859]],["parent/1336",[]],["name/1337",[477,52.4]],["parent/1337",[]],["name/1338",[89,46.209]],["parent/1338",[477,4.879]],["name/1339",[306,52.4]],["parent/1339",[477,4.879]],["name/1340",[294,49.887]],["parent/1340",[477,4.879]],["name/1341",[295,49.887]],["parent/1341",[477,4.879]],["name/1342",[316,51.49]],["parent/1342",[477,4.879]],["name/1343",[437,58.866]],["parent/1343",[477,4.879]],["name/1344",[108,35.223]],["parent/1344",[477,4.879]],["name/1345",[130,51.49]],["parent/1345",[477,4.879]],["name/1346",[114,26.461]],["parent/1346",[477,4.879]],["name/1347",[176,43.927]],["parent/1347",[478,6.691]],["name/1348",[479,71.859]],["parent/1348",[]],["name/1349",[480,66.751]],["parent/1349",[]],["name/1350",[328,58.866]],["parent/1350",[480,6.216]],["name/1351",[481,49.887]],["parent/1351",[]],["name/1352",[150,46.209]],["parent/1352",[481,4.645]],["name/1353",[151,47.88]],["parent/1353",[481,4.645]],["name/1354",[306,52.4]],["parent/1354",[481,4.645]],["name/1355",[219,49.172]],["parent/1355",[481,4.645]],["name/1356",[188,41.101]],["parent/1356",[481,4.645]],["name/1357",[144,43.927]],["parent/1357",[481,4.645]],["name/1358",[114,26.461]],["parent/1358",[481,4.645]],["name/1359",[248,58.866]],["parent/1359",[482,5.481]],["name/1360",[246,58.866]],["parent/1360",[482,5.481]],["name/1361",[287,48.505]],["parent/1361",[481,4.645]],["name/1362",[114,26.461]],["parent/1362",[481,4.645]],["name/1363",[248,58.866]],["parent/1363",[482,5.481]],["name/1364",[246,58.866]],["parent/1364",[482,5.481]],["name/1365",[152,41.101]],["parent/1365",[481,4.645]],["name/1366",[336,57.196]],["parent/1366",[481,4.645]],["name/1367",[114,26.461]],["parent/1367",[481,4.645]],["name/1368",[337,55.765]],["parent/1368",[482,5.481]],["name/1369",[483,58.866]],["parent/1369",[]],["name/1370",[109,32.031]],["parent/1370",[483,5.481]],["name/1371",[155,39.94]],["parent/1371",[483,5.481]],["name/1372",[156,40.798]],["parent/1372",[483,5.481]],["name/1373",[99,46.736]],["parent/1373",[483,5.481]],["name/1374",[484,71.859]],["parent/1374",[]],["name/1375",[485,71.859]],["parent/1375",[]],["name/1376",[486,49.172]],["parent/1376",[]],["name/1377",[89,46.209]],["parent/1377",[486,4.579]],["name/1378",[306,52.4]],["parent/1378",[486,4.579]],["name/1379",[178,41.414]],["parent/1379",[486,4.579]],["name/1380",[200,53.401]],["parent/1380",[486,4.579]],["name/1381",[437,58.866]],["parent/1381",[486,4.579]],["name/1382",[294,49.887]],["parent/1382",[486,4.579]],["name/1383",[295,49.887]],["parent/1383",[486,4.579]],["name/1384",[316,51.49]],["parent/1384",[486,4.579]],["name/1385",[108,35.223]],["parent/1385",[486,4.579]],["name/1386",[249,42.415]],["parent/1386",[486,4.579]],["name/1387",[114,26.461]],["parent/1387",[486,4.579]],["name/1388",[253,53.401]],["parent/1388",[487,5.326]],["name/1389",[383,60.873]],["parent/1389",[486,4.579]],["name/1390",[114,26.461]],["parent/1390",[486,4.579]],["name/1391",[384,60.873]],["parent/1391",[487,5.326]],["name/1392",[385,60.873]],["parent/1392",[487,5.326]],["name/1393",[386,60.873]],["parent/1393",[487,5.326]],["name/1394",[387,60.873]],["parent/1394",[487,5.326]],["name/1395",[388,60.873]],["parent/1395",[487,5.326]],["name/1396",[488,63.386]],["parent/1396",[]],["name/1397",[89,46.209]],["parent/1397",[488,5.902]],["name/1398",[108,35.223]],["parent/1398",[488,5.902]],["name/1399",[489,71.859]],["parent/1399",[]],["name/1400",[490,63.386]],["parent/1400",[]],["name/1401",[491,71.859]],["parent/1401",[490,5.902]],["name/1402",[108,35.223]],["parent/1402",[490,5.902]],["name/1403",[492,66.751]],["parent/1403",[]],["name/1404",[114,26.461]],["parent/1404",[492,6.216]],["name/1405",[341,57.196]],["parent/1405",[493,6.691]],["name/1406",[494,66.751]],["parent/1406",[]],["name/1407",[114,26.461]],["parent/1407",[494,6.216]],["name/1408",[341,57.196]],["parent/1408",[495,6.691]],["name/1409",[496,66.751]],["parent/1409",[]],["name/1410",[114,26.461]],["parent/1410",[496,6.216]],["name/1411",[341,57.196]],["parent/1411",[497,6.691]],["name/1412",[498,57.196]],["parent/1412",[]],["name/1413",[105,42.772]],["parent/1413",[498,5.326]],["name/1414",[297,60.873]],["parent/1414",[498,5.326]],["name/1415",[114,26.461]],["parent/1415",[498,5.326]],["name/1416",[299,63.386]],["parent/1416",[499,6.216]],["name/1417",[500,66.751]],["parent/1417",[498,5.326]],["name/1418",[114,26.461]],["parent/1418",[498,5.326]],["name/1419",[501,66.751]],["parent/1419",[499,6.216]],["name/1420",[502,52.4]],["parent/1420",[]],["name/1421",[104,33.078]],["parent/1421",[502,4.879]],["name/1422",[105,42.772]],["parent/1422",[502,4.879]],["name/1423",[297,60.873]],["parent/1423",[502,4.879]],["name/1424",[114,26.461]],["parent/1424",[502,4.879]],["name/1425",[299,63.386]],["parent/1425",[503,6.216]],["name/1426",[500,66.751]],["parent/1426",[502,4.879]],["name/1427",[114,26.461]],["parent/1427",[502,4.879]],["name/1428",[501,66.751]],["parent/1428",[503,6.216]],["name/1429",[144,43.927]],["parent/1429",[502,4.879]],["name/1430",[287,48.505]],["parent/1430",[502,4.879]],["name/1431",[109,32.031]],["parent/1431",[502,4.879]],["name/1432",[504,60.873]],["parent/1432",[]],["name/1433",[199,55.765]],["parent/1433",[504,5.668]],["name/1434",[505,66.751]],["parent/1434",[504,5.668]],["name/1435",[201,60.873]],["parent/1435",[504,5.668]],["name/1436",[506,71.859]],["parent/1436",[]],["name/1437",[507,71.859]],["parent/1437",[]],["name/1438",[508,71.859]],["parent/1438",[]],["name/1439",[509,60.873]],["parent/1439",[]],["name/1440",[213,49.172]],["parent/1440",[509,5.668]],["name/1441",[219,49.172]],["parent/1441",[509,5.668]],["name/1442",[242,63.386]],["parent/1442",[509,5.668]],["name/1443",[510,54.513]],["parent/1443",[]],["name/1444",[104,33.078]],["parent/1444",[510,5.076]],["name/1445",[505,66.751]],["parent/1445",[510,5.076]],["name/1446",[272,60.873]],["parent/1446",[510,5.076]],["name/1447",[96,55.765]],["parent/1447",[510,5.076]],["name/1448",[144,43.927]],["parent/1448",[510,5.076]],["name/1449",[287,48.505]],["parent/1449",[510,5.076]],["name/1450",[109,32.031]],["parent/1450",[510,5.076]],["name/1451",[511,63.386]],["parent/1451",[]],["name/1452",[150,46.209]],["parent/1452",[511,5.902]],["name/1453",[151,47.88]],["parent/1453",[511,5.902]],["name/1454",[512,58.866]],["parent/1454",[]],["name/1455",[109,32.031]],["parent/1455",[512,5.481]],["name/1456",[155,39.94]],["parent/1456",[512,5.481]],["name/1457",[156,40.798]],["parent/1457",[512,5.481]],["name/1458",[163,46.209]],["parent/1458",[512,5.481]],["name/1459",[513,63.386]],["parent/1459",[]],["name/1460",[150,46.209]],["parent/1460",[513,5.902]],["name/1461",[151,47.88]],["parent/1461",[513,5.902]],["name/1462",[514,58.866]],["parent/1462",[]],["name/1463",[109,32.031]],["parent/1463",[514,5.481]],["name/1464",[155,39.94]],["parent/1464",[514,5.481]],["name/1465",[156,40.798]],["parent/1465",[514,5.481]],["name/1466",[163,46.209]],["parent/1466",[514,5.481]],["name/1467",[515,63.386]],["parent/1467",[]],["name/1468",[151,47.88]],["parent/1468",[515,5.902]],["name/1469",[150,46.209]],["parent/1469",[515,5.902]],["name/1470",[516,52.4]],["parent/1470",[]],["name/1471",[104,33.078]],["parent/1471",[516,4.879]],["name/1472",[105,42.772]],["parent/1472",[516,4.879]],["name/1473",[517,71.859]],["parent/1473",[516,4.879]],["name/1474",[518,71.859]],["parent/1474",[516,4.879]],["name/1475",[519,57.196]],["parent/1475",[516,4.879]],["name/1476",[114,26.461]],["parent/1476",[516,4.879]],["name/1477",[520,58.866]],["parent/1477",[521,6.216]],["name/1478",[112,53.401]],["parent/1478",[521,6.216]],["name/1479",[144,43.927]],["parent/1479",[516,4.879]],["name/1480",[287,48.505]],["parent/1480",[516,4.879]],["name/1481",[109,32.031]],["parent/1481",[516,4.879]],["name/1482",[522,71.859]],["parent/1482",[]],["name/1483",[523,58.866]],["parent/1483",[]],["name/1484",[109,32.031]],["parent/1484",[523,5.481]],["name/1485",[155,39.94]],["parent/1485",[523,5.481]],["name/1486",[156,40.798]],["parent/1486",[523,5.481]],["name/1487",[163,46.209]],["parent/1487",[523,5.481]],["name/1488",[524,71.859]],["parent/1488",[]],["name/1489",[525,71.859]],["parent/1489",[]],["name/1490",[526,71.859]],["parent/1490",[]],["name/1491",[527,71.859]],["parent/1491",[]],["name/1492",[528,71.859]],["parent/1492",[]],["name/1493",[529,71.859]],["parent/1493",[]],["name/1494",[530,52.4]],["parent/1494",[]],["name/1495",[104,33.078]],["parent/1495",[530,4.879]],["name/1496",[402,66.751]],["parent/1496",[530,4.879]],["name/1497",[272,60.873]],["parent/1497",[530,4.879]],["name/1498",[96,55.765]],["parent/1498",[530,4.879]],["name/1499",[398,55.765]],["parent/1499",[530,4.879]],["name/1500",[114,26.461]],["parent/1500",[530,4.879]],["name/1501",[134,49.172]],["parent/1501",[531,6.216]],["name/1502",[114,26.461]],["parent/1502",[531,6.216]],["name/1503",[142,44.344]],["parent/1503",[532,6.691]],["name/1504",[144,43.927]],["parent/1504",[530,4.879]],["name/1505",[287,48.505]],["parent/1505",[530,4.879]],["name/1506",[109,32.031]],["parent/1506",[530,4.879]],["name/1507",[533,63.386]],["parent/1507",[]],["name/1508",[150,46.209]],["parent/1508",[533,5.902]],["name/1509",[151,47.88]],["parent/1509",[533,5.902]],["name/1510",[534,58.866]],["parent/1510",[]],["name/1511",[155,39.94]],["parent/1511",[534,5.481]],["name/1512",[163,46.209]],["parent/1512",[534,5.481]],["name/1513",[109,32.031]],["parent/1513",[534,5.481]],["name/1514",[156,40.798]],["parent/1514",[534,5.481]],["name/1515",[535,60.873]],["parent/1515",[]],["name/1516",[219,49.172]],["parent/1516",[535,5.668]],["name/1517",[398,55.765]],["parent/1517",[535,5.668]],["name/1518",[114,26.461]],["parent/1518",[535,5.668]],["name/1519",[134,49.172]],["parent/1519",[536,6.216]],["name/1520",[114,26.461]],["parent/1520",[536,6.216]],["name/1521",[142,44.344]],["parent/1521",[537,6.691]],["name/1522",[538,71.859]],["parent/1522",[]],["name/1523",[539,71.859]],["parent/1523",[]],["name/1524",[540,71.859]],["parent/1524",[]],["name/1525",[541,60.873]],["parent/1525",[]],["name/1526",[142,44.344]],["parent/1526",[541,5.668]],["name/1527",[261,60.873]],["parent/1527",[541,5.668]],["name/1528",[104,33.078]],["parent/1528",[541,5.668]],["name/1529",[542,55.765]],["parent/1529",[]],["name/1530",[105,42.772]],["parent/1530",[542,5.193]],["name/1531",[107,42.772]],["parent/1531",[542,5.193]],["name/1532",[543,53.401]],["parent/1532",[542,5.193]],["name/1533",[519,57.196]],["parent/1533",[542,5.193]],["name/1534",[108,35.223]],["parent/1534",[542,5.193]],["name/1535",[520,58.866]],["parent/1535",[542,5.193]],["name/1536",[544,63.386]],["parent/1536",[]],["name/1537",[545,66.751]],["parent/1537",[544,5.902]],["name/1538",[114,26.461]],["parent/1538",[544,5.902]],["name/1539",[109,32.031]],["parent/1539",[546,5.902]],["name/1540",[155,39.94]],["parent/1540",[546,5.902]],["name/1541",[163,46.209]],["parent/1541",[546,5.902]],["name/1542",[547,52.4]],["parent/1542",[]],["name/1543",[104,33.078]],["parent/1543",[547,4.879]],["name/1544",[107,42.772]],["parent/1544",[547,4.879]],["name/1545",[109,32.031]],["parent/1545",[547,4.879]],["name/1546",[105,42.772]],["parent/1546",[547,4.879]],["name/1547",[543,53.401]],["parent/1547",[547,4.879]],["name/1548",[519,57.196]],["parent/1548",[547,4.879]],["name/1549",[144,43.927]],["parent/1549",[547,4.879]],["name/1550",[520,58.866]],["parent/1550",[547,4.879]],["name/1551",[108,35.223]],["parent/1551",[547,4.879]],["name/1552",[548,71.859]],["parent/1552",[]],["name/1553",[549,66.751]],["parent/1553",[]],["name/1554",[114,26.461]],["parent/1554",[549,6.216]],["name/1555",[105,42.772]],["parent/1555",[550,5.193]],["name/1556",[104,33.078]],["parent/1556",[550,5.193]],["name/1557",[107,42.772]],["parent/1557",[550,5.193]],["name/1558",[519,57.196]],["parent/1558",[550,5.193]],["name/1559",[543,53.401]],["parent/1559",[550,5.193]],["name/1560",[520,58.866]],["parent/1560",[550,5.193]],["name/1561",[108,35.223]],["parent/1561",[550,5.193]],["name/1562",[551,71.859]],["parent/1562",[]],["name/1563",[552,63.386]],["parent/1563",[]],["name/1564",[553,71.859]],["parent/1564",[552,5.902]],["name/1565",[108,35.223]],["parent/1565",[552,5.902]],["name/1566",[554,71.859]],["parent/1566",[]],["name/1567",[555,66.751]],["parent/1567",[]],["name/1568",[114,26.461]],["parent/1568",[555,6.216]],["name/1569",[341,57.196]],["parent/1569",[556,6.691]],["name/1570",[557,66.751]],["parent/1570",[]],["name/1571",[114,26.461]],["parent/1571",[557,6.216]],["name/1572",[341,57.196]],["parent/1572",[558,6.691]],["name/1573",[559,66.751]],["parent/1573",[]],["name/1574",[328,58.866]],["parent/1574",[559,6.216]],["name/1575",[560,63.386]],["parent/1575",[]],["name/1576",[151,47.88]],["parent/1576",[560,5.902]],["name/1577",[150,46.209]],["parent/1577",[560,5.902]],["name/1578",[561,58.866]],["parent/1578",[]],["name/1579",[109,32.031]],["parent/1579",[561,5.481]],["name/1580",[155,39.94]],["parent/1580",[561,5.481]],["name/1581",[156,40.798]],["parent/1581",[561,5.481]],["name/1582",[49,48.505]],["parent/1582",[561,5.481]],["name/1583",[562,54.513]],["parent/1583",[]],["name/1584",[563,53.401]],["parent/1584",[562,5.076]],["name/1585",[107,42.772]],["parent/1585",[562,5.076]],["name/1586",[519,57.196]],["parent/1586",[562,5.076]],["name/1587",[108,35.223]],["parent/1587",[562,5.076]],["name/1588",[543,53.401]],["parent/1588",[562,5.076]],["name/1589",[520,58.866]],["parent/1589",[562,5.076]],["name/1590",[564,66.751]],["parent/1590",[562,5.076]],["name/1591",[565,51.49]],["parent/1591",[]],["name/1592",[104,33.078]],["parent/1592",[565,4.795]],["name/1593",[107,42.772]],["parent/1593",[565,4.795]],["name/1594",[563,53.401]],["parent/1594",[565,4.795]],["name/1595",[543,53.401]],["parent/1595",[565,4.795]],["name/1596",[519,57.196]],["parent/1596",[565,4.795]],["name/1597",[108,35.223]],["parent/1597",[565,4.795]],["name/1598",[287,48.505]],["parent/1598",[565,4.795]],["name/1599",[564,66.751]],["parent/1599",[565,4.795]],["name/1600",[144,43.927]],["parent/1600",[565,4.795]],["name/1601",[109,32.031]],["parent/1601",[565,4.795]],["name/1602",[566,71.859]],["parent/1602",[]],["name/1603",[567,71.859]],["parent/1603",[]],["name/1604",[568,71.859]],["parent/1604",[]],["name/1605",[569,66.751]],["parent/1605",[]],["name/1606",[328,58.866]],["parent/1606",[569,6.216]],["name/1607",[570,60.873]],["parent/1607",[]],["name/1608",[109,32.031]],["parent/1608",[570,5.668]],["name/1609",[155,39.94]],["parent/1609",[570,5.668]],["name/1610",[545,66.751]],["parent/1610",[570,5.668]],["name/1611",[571,60.873]],["parent/1611",[]],["name/1612",[104,33.078]],["parent/1612",[571,5.668]],["name/1613",[107,42.772]],["parent/1613",[571,5.668]],["name/1614",[105,42.772]],["parent/1614",[571,5.668]],["name/1615",[572,60.873]],["parent/1615",[]],["name/1616",[104,33.078]],["parent/1616",[572,5.668]],["name/1617",[107,42.772]],["parent/1617",[572,5.668]],["name/1618",[563,53.401]],["parent/1618",[572,5.668]],["name/1619",[573,52.4]],["parent/1619",[]],["name/1620",[178,41.414]],["parent/1620",[573,4.879]],["name/1621",[574,58.866]],["parent/1621",[573,4.879]],["name/1622",[575,63.386]],["parent/1622",[573,4.879]],["name/1623",[286,51.49]],["parent/1623",[573,4.879]],["name/1624",[576,63.386]],["parent/1624",[573,4.879]],["name/1625",[577,63.386]],["parent/1625",[573,4.879]],["name/1626",[578,63.386]],["parent/1626",[573,4.879]],["name/1627",[579,63.386]],["parent/1627",[573,4.879]],["name/1628",[580,63.386]],["parent/1628",[573,4.879]],["name/1629",[581,50.656]],["parent/1629",[]],["name/1630",[150,46.209]],["parent/1630",[581,4.717]],["name/1631",[151,47.88]],["parent/1631",[581,4.717]],["name/1632",[152,41.101]],["parent/1632",[581,4.717]],["name/1633",[219,49.172]],["parent/1633",[581,4.717]],["name/1634",[188,41.101]],["parent/1634",[581,4.717]],["name/1635",[213,49.172]],["parent/1635",[581,4.717]],["name/1636",[212,49.887]],["parent/1636",[581,4.717]],["name/1637",[582,71.859]],["parent/1637",[581,4.717]],["name/1638",[438,58.866]],["parent/1638",[581,4.717]],["name/1639",[336,57.196]],["parent/1639",[581,4.717]],["name/1640",[114,26.461]],["parent/1640",[581,4.717]],["name/1641",[337,55.765]],["parent/1641",[583,6.691]],["name/1642",[584,58.866]],["parent/1642",[]],["name/1643",[109,32.031]],["parent/1643",[584,5.481]],["name/1644",[155,39.94]],["parent/1644",[584,5.481]],["name/1645",[156,40.798]],["parent/1645",[584,5.481]],["name/1646",[29,66.751]],["parent/1646",[584,5.481]],["name/1647",[585,54.513]],["parent/1647",[]],["name/1648",[218,58.866]],["parent/1648",[585,5.076]],["name/1649",[107,42.772]],["parent/1649",[585,5.076]],["name/1650",[219,49.172]],["parent/1650",[585,5.076]],["name/1651",[114,26.461]],["parent/1651",[585,5.076]],["name/1652",[105,42.772]],["parent/1652",[586,6.216]],["name/1653",[221,58.866]],["parent/1653",[586,6.216]],["name/1654",[213,49.172]],["parent/1654",[585,5.076]],["name/1655",[215,57.196]],["parent/1655",[585,5.076]],["name/1656",[188,41.101]],["parent/1656",[585,5.076]],["name/1657",[587,50.656]],["parent/1657",[]],["name/1658",[104,33.078]],["parent/1658",[587,4.717]],["name/1659",[109,32.031]],["parent/1659",[587,4.717]],["name/1660",[144,43.927]],["parent/1660",[587,4.717]],["name/1661",[211,51.49]],["parent/1661",[587,4.717]],["name/1662",[185,45.709]],["parent/1662",[587,4.717]],["name/1663",[108,35.223]],["parent/1663",[587,4.717]],["name/1664",[215,57.196]],["parent/1664",[587,4.717]],["name/1665",[107,42.772]],["parent/1665",[587,4.717]],["name/1666",[212,49.887]],["parent/1666",[587,4.717]],["name/1667",[188,41.101]],["parent/1667",[587,4.717]],["name/1668",[213,49.172]],["parent/1668",[587,4.717]],["name/1669",[588,57.196]],["parent/1669",[]],["name/1670",[105,42.772]],["parent/1670",[588,5.326]],["name/1671",[178,41.414]],["parent/1671",[588,5.326]],["name/1672",[589,66.751]],["parent/1672",[588,5.326]],["name/1673",[114,26.461]],["parent/1673",[588,5.326]],["name/1674",[337,55.765]],["parent/1674",[590,6.691]],["name/1675",[25,50.656]],["parent/1675",[588,5.326]],["name/1676",[591,53.401]],["parent/1676",[]],["name/1677",[104,33.078]],["parent/1677",[591,4.973]],["name/1678",[105,42.772]],["parent/1678",[591,4.973]],["name/1679",[144,43.927]],["parent/1679",[591,4.973]],["name/1680",[108,35.223]],["parent/1680",[591,4.973]],["name/1681",[589,66.751]],["parent/1681",[591,4.973]],["name/1682",[114,26.461]],["parent/1682",[591,4.973]],["name/1683",[337,55.765]],["parent/1683",[592,6.691]],["name/1684",[178,41.414]],["parent/1684",[591,4.973]],["name/1685",[109,32.031]],["parent/1685",[591,4.973]],["name/1686",[593,71.859]],["parent/1686",[]],["name/1687",[594,58.866]],["parent/1687",[]],["name/1688",[109,32.031]],["parent/1688",[594,5.481]],["name/1689",[155,39.94]],["parent/1689",[594,5.481]],["name/1690",[156,40.798]],["parent/1690",[594,5.481]],["name/1691",[163,46.209]],["parent/1691",[594,5.481]],["name/1692",[595,60.873]],["parent/1692",[]],["name/1693",[596,66.751]],["parent/1693",[595,5.668]],["name/1694",[398,55.765]],["parent/1694",[595,5.668]],["name/1695",[114,26.461]],["parent/1695",[595,5.668]],["name/1696",[152,41.101]],["parent/1696",[597,5.668]],["name/1697",[598,66.751]],["parent/1697",[597,5.668]],["name/1698",[336,57.196]],["parent/1698",[597,5.668]],["name/1699",[114,26.461]],["parent/1699",[597,5.668]],["name/1700",[337,55.765]],["parent/1700",[599,6.691]],["name/1701",[600,51.49]],["parent/1701",[]],["name/1702",[104,33.078]],["parent/1702",[600,4.795]],["name/1703",[109,32.031]],["parent/1703",[600,4.795]],["name/1704",[144,43.927]],["parent/1704",[600,4.795]],["name/1705",[279,54.513]],["parent/1705",[600,4.795]],["name/1706",[215,57.196]],["parent/1706",[600,4.795]],["name/1707",[596,66.751]],["parent/1707",[600,4.795]],["name/1708",[398,55.765]],["parent/1708",[600,4.795]],["name/1709",[114,26.461]],["parent/1709",[600,4.795]],["name/1710",[598,66.751]],["parent/1710",[601,5.668]],["name/1711",[336,57.196]],["parent/1711",[601,5.668]],["name/1712",[114,26.461]],["parent/1712",[601,5.668]],["name/1713",[337,55.765]],["parent/1713",[602,6.691]],["name/1714",[212,49.887]],["parent/1714",[600,4.795]],["name/1715",[114,26.461]],["parent/1715",[600,4.795]],["name/1716",[455,53.401]],["parent/1716",[601,5.668]],["name/1717",[603,71.859]],["parent/1717",[]],["name/1718",[604,45.709]],["parent/1718",[]],["name/1719",[605,71.859]],["parent/1719",[604,4.256]],["name/1720",[606,66.751]],["parent/1720",[604,4.256]],["name/1721",[179,63.386]],["parent/1721",[604,4.256]],["name/1722",[107,42.772]],["parent/1722",[604,4.256]],["name/1723",[607,71.859]],["parent/1723",[604,4.256]],["name/1724",[608,71.859]],["parent/1724",[604,4.256]],["name/1725",[253,53.401]],["parent/1725",[604,4.256]],["name/1726",[543,53.401]],["parent/1726",[604,4.256]],["name/1727",[176,43.927]],["parent/1727",[604,4.256]],["name/1728",[203,57.196]],["parent/1728",[604,4.256]],["name/1729",[288,63.386]],["parent/1729",[604,4.256]],["name/1730",[289,63.386]],["parent/1730",[604,4.256]],["name/1731",[609,71.859]],["parent/1731",[604,4.256]],["name/1732",[610,58.866]],["parent/1732",[604,4.256]],["name/1733",[114,26.461]],["parent/1733",[604,4.256]],["name/1734",[104,33.078]],["parent/1734",[611,4.795]],["name/1735",[107,42.772]],["parent/1735",[611,4.795]],["name/1736",[612,66.751]],["parent/1736",[611,4.795]],["name/1737",[105,42.772]],["parent/1737",[611,4.795]],["name/1738",[108,35.223]],["parent/1738",[611,4.795]],["name/1739",[543,53.401]],["parent/1739",[611,4.795]],["name/1740",[563,53.401]],["parent/1740",[604,4.256]],["name/1741",[114,26.461]],["parent/1741",[604,4.256]],["name/1742",[104,33.078]],["parent/1742",[611,4.795]],["name/1743",[107,42.772]],["parent/1743",[611,4.795]],["name/1744",[612,66.751]],["parent/1744",[611,4.795]],["name/1745",[563,53.401]],["parent/1745",[611,4.795]],["name/1746",[543,53.401]],["parent/1746",[611,4.795]],["name/1747",[109,32.031]],["parent/1747",[604,4.256]],["name/1748",[108,35.223]],["parent/1748",[604,4.256]],["name/1749",[613,54.513]],["parent/1749",[]],["name/1750",[107,42.772]],["parent/1750",[613,5.076]],["name/1751",[279,54.513]],["parent/1751",[613,5.076]],["name/1752",[188,41.101]],["parent/1752",[613,5.076]],["name/1753",[176,43.927]],["parent/1753",[613,5.076]],["name/1754",[203,57.196]],["parent/1754",[613,5.076]],["name/1755",[186,52.4]],["parent/1755",[613,5.076]],["name/1756",[108,35.223]],["parent/1756",[613,5.076]],["name/1757",[614,46.209]],["parent/1757",[]],["name/1758",[104,33.078]],["parent/1758",[614,4.303]],["name/1759",[107,42.772]],["parent/1759",[614,4.303]],["name/1760",[144,43.927]],["parent/1760",[614,4.303]],["name/1761",[287,48.505]],["parent/1761",[614,4.303]],["name/1762",[279,54.513]],["parent/1762",[614,4.303]],["name/1763",[176,43.927]],["parent/1763",[614,4.303]],["name/1764",[288,63.386]],["parent/1764",[614,4.303]],["name/1765",[203,57.196]],["parent/1765",[614,4.303]],["name/1766",[290,66.751]],["parent/1766",[614,4.303]],["name/1767",[204,63.386]],["parent/1767",[614,4.303]],["name/1768",[289,63.386]],["parent/1768",[614,4.303]],["name/1769",[291,66.751]],["parent/1769",[614,4.303]],["name/1770",[137,60.873]],["parent/1770",[614,4.303]],["name/1771",[292,66.751]],["parent/1771",[614,4.303]],["name/1772",[186,52.4]],["parent/1772",[614,4.303]],["name/1773",[108,35.223]],["parent/1773",[614,4.303]],["name/1774",[188,41.101]],["parent/1774",[614,4.303]],["name/1775",[109,32.031]],["parent/1775",[614,4.303]],["name/1776",[615,71.859]],["parent/1776",[]],["name/1777",[616,52.4]],["parent/1777",[]],["name/1778",[104,33.078]],["parent/1778",[616,4.879]],["name/1779",[107,42.772]],["parent/1779",[616,4.879]],["name/1780",[279,54.513]],["parent/1780",[616,4.879]],["name/1781",[186,52.4]],["parent/1781",[616,4.879]],["name/1782",[176,43.927]],["parent/1782",[616,4.879]],["name/1783",[203,57.196]],["parent/1783",[616,4.879]],["name/1784",[108,35.223]],["parent/1784",[616,4.879]],["name/1785",[188,41.101]],["parent/1785",[616,4.879]],["name/1786",[114,26.461]],["parent/1786",[616,4.879]],["name/1787",[104,33.078]],["parent/1787",[617,6.691]],["name/1788",[618,71.859]],["parent/1788",[]],["name/1789",[619,63.386]],["parent/1789",[]],["name/1790",[150,46.209]],["parent/1790",[619,5.902]],["name/1791",[151,47.88]],["parent/1791",[619,5.902]],["name/1792",[620,58.866]],["parent/1792",[]],["name/1793",[109,32.031]],["parent/1793",[620,5.481]],["name/1794",[155,39.94]],["parent/1794",[620,5.481]],["name/1795",[156,40.798]],["parent/1795",[620,5.481]],["name/1796",[47,53.401]],["parent/1796",[620,5.481]],["name/1797",[621,54.513]],["parent/1797",[]],["name/1798",[104,33.078]],["parent/1798",[621,5.076]],["name/1799",[105,42.772]],["parent/1799",[621,5.076]],["name/1800",[112,53.401]],["parent/1800",[621,5.076]],["name/1801",[306,52.4]],["parent/1801",[621,5.076]],["name/1802",[144,43.927]],["parent/1802",[621,5.076]],["name/1803",[287,48.505]],["parent/1803",[621,5.076]],["name/1804",[109,32.031]],["parent/1804",[621,5.076]],["name/1805",[622,58.866]],["parent/1805",[]],["name/1806",[623,71.859]],["parent/1806",[622,5.481]],["name/1807",[114,26.461]],["parent/1807",[622,5.481]],["name/1808",[109,32.031]],["parent/1808",[624,5.076]],["name/1809",[155,39.94]],["parent/1809",[624,5.076]],["name/1810",[156,40.798]],["parent/1810",[624,5.076]],["name/1811",[163,46.209]],["parent/1811",[624,5.076]],["name/1812",[24,60.873]],["parent/1812",[622,5.481]],["name/1813",[114,26.461]],["parent/1813",[622,5.481]],["name/1814",[109,32.031]],["parent/1814",[624,5.076]],["name/1815",[155,39.94]],["parent/1815",[624,5.076]],["name/1816",[156,40.798]],["parent/1816",[624,5.076]],["name/1817",[163,46.209]],["parent/1817",[624,5.076]],["name/1818",[625,54.513]],["parent/1818",[]],["name/1819",[226,60.873]],["parent/1819",[625,5.076]],["name/1820",[188,41.101]],["parent/1820",[625,5.076]],["name/1821",[108,35.223]],["parent/1821",[625,5.076]],["name/1822",[227,66.751]],["parent/1822",[625,5.076]],["name/1823",[114,26.461]],["parent/1823",[625,5.076]],["name/1824",[89,46.209]],["parent/1824",[626,5.902]],["name/1825",[293,60.873]],["parent/1825",[626,5.902]],["name/1826",[134,49.172]],["parent/1826",[625,5.076]],["name/1827",[114,26.461]],["parent/1827",[625,5.076]],["name/1828",[89,46.209]],["parent/1828",[626,5.902]],["name/1829",[627,63.386]],["parent/1829",[]],["name/1830",[109,32.031]],["parent/1830",[627,5.902]],["name/1831",[178,41.414]],["parent/1831",[627,5.902]],["name/1832",[628,66.751]],["parent/1832",[]],["name/1833",[629,71.859]],["parent/1833",[628,6.216]],["name/1834",[630,71.859]],["parent/1834",[]],["name/1835",[631,58.866]],["parent/1835",[]],["name/1836",[109,32.031]],["parent/1836",[631,5.481]],["name/1837",[104,33.078]],["parent/1837",[631,5.481]],["name/1838",[189,50.656]],["parent/1838",[631,5.481]],["name/1839",[130,51.49]],["parent/1839",[631,5.481]],["name/1840",[632,71.859]],["parent/1840",[]],["name/1841",[633,57.196]],["parent/1841",[]],["name/1842",[286,51.49]],["parent/1842",[633,5.326]],["name/1843",[574,58.866]],["parent/1843",[633,5.326]],["name/1844",[634,60.873]],["parent/1844",[633,5.326]],["name/1845",[563,53.401]],["parent/1845",[633,5.326]],["name/1846",[610,58.866]],["parent/1846",[633,5.326]],["name/1847",[635,47.88]],["parent/1847",[]],["name/1848",[178,41.414]],["parent/1848",[635,4.458]],["name/1849",[286,51.49]],["parent/1849",[635,4.458]],["name/1850",[576,63.386]],["parent/1850",[635,4.458]],["name/1851",[577,63.386]],["parent/1851",[635,4.458]],["name/1852",[578,63.386]],["parent/1852",[635,4.458]],["name/1853",[579,63.386]],["parent/1853",[635,4.458]],["name/1854",[580,63.386]],["parent/1854",[635,4.458]],["name/1855",[636,66.751]],["parent/1855",[635,4.458]],["name/1856",[637,66.751]],["parent/1856",[635,4.458]],["name/1857",[574,58.866]],["parent/1857",[635,4.458]],["name/1858",[575,63.386]],["parent/1858",[635,4.458]],["name/1859",[634,60.873]],["parent/1859",[635,4.458]],["name/1860",[563,53.401]],["parent/1860",[635,4.458]],["name/1861",[610,58.866]],["parent/1861",[635,4.458]],["name/1862",[638,66.751]],["parent/1862",[635,4.458]],["name/1863",[639,66.751]],["parent/1863",[]],["name/1864",[281,63.386]],["parent/1864",[639,6.216]],["name/1865",[640,63.386]],["parent/1865",[]],["name/1866",[142,44.344]],["parent/1866",[640,5.902]],["name/1867",[641,71.859]],["parent/1867",[640,5.902]],["name/1868",[642,58.866]],["parent/1868",[]],["name/1869",[200,53.401]],["parent/1869",[642,5.481]],["name/1870",[130,51.49]],["parent/1870",[642,5.481]],["name/1871",[241,54.513]],["parent/1871",[642,5.481]],["name/1872",[297,60.873]],["parent/1872",[642,5.481]],["name/1873",[643,53.401]],["parent/1873",[]],["name/1874",[279,54.513]],["parent/1874",[643,4.973]],["name/1875",[104,33.078]],["parent/1875",[643,4.973]],["name/1876",[109,32.031]],["parent/1876",[643,4.973]],["name/1877",[152,41.101]],["parent/1877",[643,4.973]],["name/1878",[201,60.873]],["parent/1878",[643,4.973]],["name/1879",[284,66.751]],["parent/1879",[643,4.973]],["name/1880",[212,49.887]],["parent/1880",[643,4.973]],["name/1881",[108,35.223]],["parent/1881",[643,4.973]],["name/1882",[644,66.751]],["parent/1882",[]],["name/1883",[281,63.386]],["parent/1883",[644,6.216]],["name/1884",[645,71.859]],["parent/1884",[]],["name/1885",[646,71.859]],["parent/1885",[]],["name/1886",[647,58.866]],["parent/1886",[]],["name/1887",[90,58.866]],["parent/1887",[647,5.481]],["name/1888",[178,41.414]],["parent/1888",[647,5.481]],["name/1889",[648,66.751]],["parent/1889",[647,5.481]],["name/1890",[649,66.751]],["parent/1890",[647,5.481]],["name/1891",[650,58.866]],["parent/1891",[]],["name/1892",[90,58.866]],["parent/1892",[650,5.481]],["name/1893",[178,41.414]],["parent/1893",[650,5.481]],["name/1894",[648,66.751]],["parent/1894",[650,5.481]],["name/1895",[649,66.751]],["parent/1895",[650,5.481]],["name/1896",[651,66.751]],["parent/1896",[]],["name/1897",[90,58.866]],["parent/1897",[651,6.216]],["name/1898",[652,71.859]],["parent/1898",[]],["name/1899",[653,50.656]],["parent/1899",[]],["name/1900",[109,32.031]],["parent/1900",[653,4.717]],["name/1901",[104,33.078]],["parent/1901",[653,4.717]],["name/1902",[107,42.772]],["parent/1902",[653,4.717]],["name/1903",[606,66.751]],["parent/1903",[653,4.717]],["name/1904",[654,71.859]],["parent/1904",[653,4.717]],["name/1905",[655,71.859]],["parent/1905",[653,4.717]],["name/1906",[543,53.401]],["parent/1906",[653,4.717]],["name/1907",[656,71.859]],["parent/1907",[653,4.717]],["name/1908",[657,71.859]],["parent/1908",[653,4.717]],["name/1909",[658,71.859]],["parent/1909",[653,4.717]],["name/1910",[286,51.49]],["parent/1910",[653,4.717]],["name/1911",[659,60.873]],["parent/1911",[]],["name/1912",[109,32.031]],["parent/1912",[659,5.668]],["name/1913",[155,39.94]],["parent/1913",[659,5.668]],["name/1914",[163,46.209]],["parent/1914",[659,5.668]],["name/1915",[660,71.859]],["parent/1915",[]],["name/1916",[661,58.866]],["parent/1916",[]],["name/1917",[176,43.927]],["parent/1917",[661,5.481]],["name/1918",[662,71.859]],["parent/1918",[661,5.481]],["name/1919",[663,71.859]],["parent/1919",[661,5.481]],["name/1920",[664,71.859]],["parent/1920",[661,5.481]],["name/1921",[665,71.859]],["parent/1921",[]],["name/1922",[666,71.859]],["parent/1922",[]],["name/1923",[667,71.859]],["parent/1923",[]],["name/1924",[668,71.859]],["parent/1924",[]],["name/1925",[669,71.859]],["parent/1925",[]],["name/1926",[670,60.873]],["parent/1926",[]],["name/1927",[178,41.414]],["parent/1927",[670,5.668]],["name/1928",[286,51.49]],["parent/1928",[670,5.668]],["name/1929",[638,66.751]],["parent/1929",[670,5.668]],["name/1930",[671,55.765]],["parent/1930",[]],["name/1931",[178,41.414]],["parent/1931",[671,5.193]],["name/1932",[286,51.49]],["parent/1932",[671,5.193]],["name/1933",[574,58.866]],["parent/1933",[671,5.193]],["name/1934",[634,60.873]],["parent/1934",[671,5.193]],["name/1935",[610,58.866]],["parent/1935",[671,5.193]],["name/1936",[563,53.401]],["parent/1936",[671,5.193]],["name/1937",[672,54.513]],["parent/1937",[]],["name/1938",[178,41.414]],["parent/1938",[672,5.076]],["name/1939",[574,58.866]],["parent/1939",[672,5.076]],["name/1940",[575,63.386]],["parent/1940",[672,5.076]],["name/1941",[286,51.49]],["parent/1941",[672,5.076]],["name/1942",[634,60.873]],["parent/1942",[672,5.076]],["name/1943",[610,58.866]],["parent/1943",[672,5.076]],["name/1944",[563,53.401]],["parent/1944",[672,5.076]],["name/1945",[673,58.866]],["parent/1945",[]],["name/1946",[178,41.414]],["parent/1946",[673,5.481]],["name/1947",[576,63.386]],["parent/1947",[673,5.481]],["name/1948",[577,63.386]],["parent/1948",[673,5.481]],["name/1949",[286,51.49]],["parent/1949",[673,5.481]],["name/1950",[674,57.196]],["parent/1950",[]],["name/1951",[178,41.414]],["parent/1951",[674,5.326]],["name/1952",[578,63.386]],["parent/1952",[674,5.326]],["name/1953",[579,63.386]],["parent/1953",[674,5.326]],["name/1954",[580,63.386]],["parent/1954",[674,5.326]],["name/1955",[286,51.49]],["parent/1955",[674,5.326]],["name/1956",[675,58.866]],["parent/1956",[]],["name/1957",[178,41.414]],["parent/1957",[675,5.481]],["name/1958",[636,66.751]],["parent/1958",[675,5.481]],["name/1959",[637,66.751]],["parent/1959",[675,5.481]],["name/1960",[286,51.49]],["parent/1960",[675,5.481]],["name/1961",[676,71.859]],["parent/1961",[]],["name/1962",[677,53.401]],["parent/1962",[]],["name/1963",[678,66.751]],["parent/1963",[677,4.973]],["name/1964",[679,71.859]],["parent/1964",[677,4.973]],["name/1965",[680,71.859]],["parent/1965",[677,4.973]],["name/1966",[681,71.859]],["parent/1966",[677,4.973]],["name/1967",[215,57.196]],["parent/1967",[677,4.973]],["name/1968",[682,71.859]],["parent/1968",[677,4.973]],["name/1969",[683,66.751]],["parent/1969",[677,4.973]],["name/1970",[72,63.386]],["parent/1970",[677,4.973]],["name/1971",[684,71.859]],["parent/1971",[]],["name/1972",[685,54.513]],["parent/1972",[]],["name/1973",[678,66.751]],["parent/1973",[685,5.076]],["name/1974",[686,71.859]],["parent/1974",[685,5.076]],["name/1975",[687,71.859]],["parent/1975",[685,5.076]],["name/1976",[688,71.859]],["parent/1976",[685,5.076]],["name/1977",[689,71.859]],["parent/1977",[685,5.076]],["name/1978",[683,66.751]],["parent/1978",[685,5.076]],["name/1979",[72,63.386]],["parent/1979",[685,5.076]]],"invertedIndex":[["__type",{"_index":114,"name":{"209":{},"217":{},"219":{},"227":{},"231":{},"235":{},"242":{},"258":{},"313":{},"327":{},"347":{},"356":{},"359":{},"369":{},"412":{},"442":{},"445":{},"457":{},"474":{},"481":{},"484":{},"521":{},"537":{},"553":{},"567":{},"577":{},"580":{},"595":{},"600":{},"603":{},"608":{},"638":{},"677":{},"685":{},"729":{},"737":{},"758":{},"766":{},"786":{},"793":{},"816":{},"830":{},"839":{},"846":{},"863":{},"868":{},"897":{},"900":{},"903":{},"907":{},"925":{},"933":{},"969":{},"971":{},"979":{},"981":{},"989":{},"991":{},"1003":{},"1005":{},"1015":{},"1019":{},"1035":{},"1038":{},"1041":{},"1048":{},"1051":{},"1058":{},"1062":{},"1073":{},"1079":{},"1084":{},"1088":{},"1108":{},"1132":{},"1137":{},"1140":{},"1159":{},"1167":{},"1173":{},"1178":{},"1183":{},"1192":{},"1194":{},"1198":{},"1207":{},"1214":{},"1225":{},"1235":{},"1239":{},"1249":{},"1253":{},"1258":{},"1263":{},"1271":{},"1283":{},"1285":{},"1289":{},"1299":{},"1308":{},"1325":{},"1332":{},"1346":{},"1358":{},"1362":{},"1367":{},"1387":{},"1390":{},"1404":{},"1407":{},"1410":{},"1415":{},"1418":{},"1424":{},"1427":{},"1476":{},"1500":{},"1502":{},"1518":{},"1520":{},"1538":{},"1554":{},"1568":{},"1571":{},"1640":{},"1651":{},"1673":{},"1682":{},"1695":{},"1699":{},"1709":{},"1712":{},"1715":{},"1733":{},"1741":{},"1786":{},"1807":{},"1813":{},"1823":{},"1827":{}},"parent":{}}],["action",{"_index":352,"name":{"765":{},"785":{}},"parent":{}}],["active",{"_index":316,"name":{"692":{},"763":{},"770":{},"853":{},"940":{},"1093":{},"1189":{},"1279":{},"1322":{},"1342":{},"1384":{}},"parent":{}}],["activities",{"_index":446,"name":{"1122":{}},"parent":{}}],["activity_duration_after_publishing",{"_index":310,"name":{"683":{},"844":{},"931":{}},"parent":{}}],["addcertainvoucher",{"_index":9,"name":{"11":{}},"parent":{}}],["additional_info",{"_index":437,"name":{"1094":{},"1190":{},"1280":{},"1343":{},"1381":{}},"parent":{}}],["addpoints",{"_index":45,"name":{"71":{}},"parent":{}}],["address",{"_index":113,"name":{"208":{},"257":{}},"parent":{}}],["addvoucher",{"_index":8,"name":{"10":{}},"parent":{}}],["after",{"_index":248,"name":{"459":{},"1060":{},"1064":{},"1359":{},"1363":{}},"parent":{}}],["aggregated_quantity_limit",{"_index":658,"name":{"1909":{}},"parent":{}}],["amount",{"_index":176,"name":{"305":{},"307":{},"322":{},"348":{},"360":{},"413":{},"443":{},"482":{},"515":{},"571":{},"596":{},"614":{},"796":{},"872":{},"1004":{},"1143":{},"1152":{},"1250":{},"1347":{},"1727":{},"1753":{},"1763":{},"1782":{},"1917":{}},"parent":{}}],["amount_limit",{"_index":580,"name":{"1628":{},"1854":{},"1954":{}},"parent":{}}],["amount_off",{"_index":576,"name":{"1624":{},"1850":{},"1947":{}},"parent":{}}],["amount_off_formula",{"_index":577,"name":{"1625":{},"1851":{},"1948":{}},"parent":{}}],["amount_to_go",{"_index":133,"name":{"229":{}},"parent":{}}],["apiurl",{"_index":678,"name":{"1963":{},"1973":{}},"parent":{}}],["apiversion",{"_index":681,"name":{"1966":{}},"parent":{}}],["applicable_to",{"_index":201,"name":{"345":{},"588":{},"1435":{},"1878":{}},"parent":{}}],["applicableto",{"_index":653,"name":{"1899":{}},"parent":{"1900":{},"1901":{},"1902":{},"1903":{},"1904":{},"1905":{},"1906":{},"1907":{},"1908":{},"1909":{},"1910":{}}}],["applicabletoeffect",{"_index":652,"name":{"1898":{}},"parent":{}}],["applicabletoresultlist",{"_index":659,"name":{"1911":{}},"parent":{"1912":{},"1913":{},"1914":{}}}],["applicationid",{"_index":679,"name":{"1964":{}},"parent":{}}],["applied_discount_amount",{"_index":289,"name":{"617":{},"1730":{},"1768":{}},"parent":{}}],["assets",{"_index":456,"name":{"1191":{},"1282":{}},"parent":{}}],["assignment_id",{"_index":261,"name":{"522":{},"605":{},"1310":{},"1527":{}},"parent":{}}],["async_action_id",{"_index":341,"name":{"738":{},"1405":{},"1408":{},"1411":{},"1569":{},"1572":{}},"parent":{}}],["attributes",{"_index":519,"name":{"1475":{},"1533":{},"1548":{},"1558":{},"1586":{},"1596":{}},"parent":{}}],["audiencerulesonly",{"_index":323,"name":{"703":{},"876":{},"1313":{}},"parent":{}}],["auto_join",{"_index":307,"name":{"672":{},"836":{},"920":{}},"parent":{}}],["automation_id",{"_index":422,"name":{"1024":{}},"parent":{}}],["average_amount",{"_index":139,"name":{"238":{}},"parent":{}}],["balance",{"_index":0,"name":{"0":{},"182":{},"309":{},"361":{},"597":{},"905":{},"1075":{},"1128":{},"1169":{},"1237":{},"1251":{}},"parent":{"1":{},"2":{}}}],["balancecreateparams",{"_index":175,"name":{"304":{}},"parent":{"305":{}}}],["balancecreateresponse",{"_index":177,"name":{"306":{}},"parent":{"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{}}}],["balancecreateresponse.__type",{"_index":180,"name":{},"parent":{"314":{},"315":{}}}],["banner",{"_index":347,"name":{"748":{},"756":{},"784":{},"814":{},"1020":{},"1036":{},"1049":{}},"parent":{}}],["barcode",{"_index":459,"name":{"1197":{},"1288":{}},"parent":{}}],["basepath",{"_index":67,"name":{"120":{}},"parent":{}}],["baseurl",{"_index":66,"name":{"119":{}},"parent":{}}],["before",{"_index":246,"name":{"458":{},"1059":{},"1063":{},"1360":{},"1364":{}},"parent":{}}],["birthdate",{"_index":148,"name":{"266":{}},"parent":{}}],["bulkupdate",{"_index":51,"name":{"86":{},"192":{}},"parent":{}}],["bulkupdatemetadata",{"_index":50,"name":{"85":{},"191":{}},"parent":{}}],["campaign",{"_index":219,"name":{"391":{},"454":{},"476":{},"590":{},"757":{},"815":{},"1068":{},"1162":{},"1244":{},"1355":{},"1441":{},"1516":{},"1633":{},"1650":{}},"parent":{}}],["campaign_id",{"_index":161,"name":{"287":{},"354":{},"479":{},"591":{},"1069":{},"1163":{}},"parent":{}}],["campaign_type",{"_index":160,"name":{"286":{},"669":{},"727":{},"824":{},"859":{},"917":{}},"parent":{}}],["campaignresponse",{"_index":305,"name":{"666":{}},"parent":{"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"682":{},"683":{},"684":{},"685":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{}}}],["campaignresponse.__type",{"_index":309,"name":{},"parent":{"678":{},"679":{},"680":{},"681":{},"686":{},"687":{}}}],["campaigns",{"_index":3,"name":{"3":{},"245":{},"735":{},"889":{}},"parent":{"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{}}}],["campaignsaddcertainvoucherparams",{"_index":331,"name":{"720":{}},"parent":{}}],["campaignsaddcertainvoucherresponse",{"_index":333,"name":{"722":{}},"parent":{}}],["campaignsaddvoucherbody",{"_index":329,"name":{"717":{}},"parent":{}}],["campaignsaddvoucherparams",{"_index":330,"name":{"718":{}},"parent":{"719":{}}}],["campaignsaddvoucherresponse",{"_index":332,"name":{"721":{}},"parent":{}}],["campaignscreatecampaign",{"_index":325,"name":{"713":{}},"parent":{}}],["campaignscreatecampaignresponse",{"_index":343,"name":{"739":{}},"parent":{}}],["campaignsdeleteparams",{"_index":327,"name":{"715":{}},"parent":{"716":{}}}],["campaignsgetcampaignresponse",{"_index":345,"name":{"741":{}},"parent":{}}],["campaignsimportvouchers",{"_index":334,"name":{"723":{}},"parent":{}}],["campaignslistparams",{"_index":335,"name":{"724":{}},"parent":{"725":{},"726":{},"727":{},"728":{},"729":{}}}],["campaignslistparams.__type",{"_index":338,"name":{},"parent":{"730":{}}}],["campaignslistresponse",{"_index":339,"name":{"731":{}},"parent":{"732":{},"733":{},"734":{},"735":{}}}],["campaignsqualificationsbody",{"_index":321,"name":{"699":{}},"parent":{"700":{},"701":{}}}],["campaignsqualificationsparams",{"_index":322,"name":{"702":{}},"parent":{"703":{},"704":{},"705":{}}}],["campaignsqualificationsresponse",{"_index":324,"name":{"706":{}},"parent":{"707":{},"708":{},"709":{},"710":{},"711":{},"712":{}}}],["campaignsupdatecampaign",{"_index":326,"name":{"714":{}},"parent":{}}],["campaignsupdatecampaignresponse",{"_index":344,"name":{"740":{}},"parent":{}}],["campaignsvouchersimportresponse",{"_index":340,"name":{"736":{}},"parent":{"737":{}}}],["campaignsvouchersimportresponse.__type",{"_index":342,"name":{},"parent":{"738":{}}}],["category",{"_index":306,"name":{"671":{},"835":{},"919":{},"1070":{},"1164":{},"1245":{},"1339":{},"1354":{},"1378":{},"1801":{}},"parent":{}}],["cause",{"_index":98,"name":{"178":{}},"parent":{}}],["channel",{"_index":215,"name":{"384":{},"1106":{},"1655":{},"1664":{},"1706":{},"1967":{}},"parent":{}}],["charset",{"_index":385,"name":{"909":{},"1227":{},"1327":{},"1392":{}},"parent":{}}],["city",{"_index":115,"name":{"210":{},"259":{},"271":{}},"parent":{}}],["clientapplicationid",{"_index":686,"name":{"1974":{}},"parent":{}}],["clientsecretkey",{"_index":687,"name":{"1975":{}},"parent":{}}],["clientside",{"_index":12,"name":{"14":{}},"parent":{"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{}}}],["clientsideconsentslistresponse",{"_index":233,"name":{"415":{}},"parent":{}}],["clientsidecustomerscreateparams",{"_index":182,"name":{"317":{}},"parent":{}}],["clientsidecustomerscreateresponse",{"_index":183,"name":{"318":{}},"parent":{}}],["clientsidecustomersupdateconsentsbody",{"_index":181,"name":{"316":{}},"parent":{}}],["clientsidelistvouchersparams",{"_index":195,"name":{"334":{}},"parent":{}}],["clientsidelistvouchersresponse",{"_index":197,"name":{"336":{}},"parent":{"337":{},"338":{},"339":{},"340":{}}}],["clientsidepublishcampaign",{"_index":220,"name":{"392":{}},"parent":{"393":{},"394":{}}}],["clientsidepublishpayload",{"_index":214,"name":{"382":{}},"parent":{"383":{},"384":{},"385":{},"386":{},"387":{}}}],["clientsidepublishpreparedpayload",{"_index":216,"name":{"388":{}},"parent":{}}],["clientsidepublishqueryparams",{"_index":217,"name":{"389":{}},"parent":{"390":{},"391":{}}}],["clientsidepublishresponse",{"_index":222,"name":{"395":{}},"parent":{}}],["clientsideredeemorder",{"_index":229,"name":{"409":{}},"parent":{}}],["clientsideredeempayload",{"_index":206,"name":{"363":{}},"parent":{"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"371":{}}}],["clientsideredeempayload.__type",{"_index":207,"name":{},"parent":{"370":{}}}],["clientsideredeemresponse",{"_index":209,"name":{"372":{}},"parent":{"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{},"381":{}}}],["clientsideredeemwidgetpayload",{"_index":230,"name":{"410":{}},"parent":{"411":{},"412":{}}}],["clientsideredeemwidgetpayload.__type",{"_index":231,"name":{},"parent":{"413":{}}}],["clientsideredemptionsredeemstackableparams",{"_index":236,"name":{"418":{}},"parent":{}}],["clientsideredemptionsredeemstackableresponse",{"_index":237,"name":{"419":{}},"parent":{}}],["clientsidetrackcustomer",{"_index":232,"name":{"414":{}},"parent":{}}],["clientsidetrackloyalty",{"_index":223,"name":{"396":{}},"parent":{"397":{}}}],["clientsidetrackpayload",{"_index":225,"name":{"400":{}},"parent":{"401":{},"402":{},"403":{},"404":{},"405":{}}}],["clientsidetrackreferral",{"_index":224,"name":{"398":{}},"parent":{"399":{}}}],["clientsidetrackresponse",{"_index":228,"name":{"406":{}},"parent":{"407":{},"408":{}}}],["clientsidevalidateparams",{"_index":184,"name":{"319":{}},"parent":{"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"329":{},"330":{},"331":{},"332":{},"333":{}}}],["clientsidevalidateparams.__type",{"_index":190,"name":{},"parent":{"328":{}}}],["clientsidevalidateresponse",{"_index":198,"name":{"341":{}},"parent":{"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"353":{},"354":{},"355":{},"356":{},"358":{},"359":{},"362":{}}}],["clientsidevalidateresponse.__type",{"_index":202,"name":{},"parent":{"348":{},"349":{},"350":{},"351":{},"352":{},"357":{},"360":{},"361":{}}}],["clientsidevalidationsvalidatestackableparams",{"_index":234,"name":{"416":{}},"parent":{}}],["clientsidevalidationvalidatestackableresponse",{"_index":235,"name":{"417":{}},"parent":{}}],["clientsidevoucherlisting",{"_index":196,"name":{"335":{}},"parent":{}}],["code",{"_index":89,"name":{"169":{},"320":{},"342":{},"397":{},"399":{},"475":{},"587":{},"636":{},"639":{},"1067":{},"1161":{},"1220":{},"1243":{},"1323":{},"1338":{},"1377":{},"1397":{},"1824":{},"1828":{}},"parent":{}}],["code_config",{"_index":383,"name":{"906":{},"1224":{},"1324":{},"1389":{}},"parent":{}}],["codes",{"_index":491,"name":{"1401":{}},"parent":{}}],["consent",{"_index":621,"name":{"1797":{}},"parent":{"1798":{},"1799":{},"1800":{},"1801":{},"1802":{},"1803":{},"1804":{}}}],["consents",{"_index":24,"name":{"27":{},"1812":{}},"parent":{"28":{},"29":{}}}],["consentslistresponse",{"_index":622,"name":{"1805":{}},"parent":{"1806":{},"1807":{},"1812":{},"1813":{}}}],["consentslistresponse.__type",{"_index":624,"name":{},"parent":{"1808":{},"1809":{},"1810":{},"1811":{},"1814":{},"1815":{},"1816":{},"1817":{}}}],["constructor",{"_index":1,"name":{"1":{},"4":{},"15":{},"28":{},"31":{},"41":{},"45":{},"48":{},"53":{},"74":{},"81":{},"95":{},"100":{},"109":{},"118":{},"135":{},"146":{},"152":{},"163":{},"168":{},"180":{}},"parent":{}}],["count",{"_index":221,"name":{"394":{},"1085":{},"1180":{},"1265":{},"1653":{}},"parent":{}}],["country",{"_index":120,"name":{"214":{},"263":{}},"parent":{}}],["create",{"_index":2,"name":{"2":{},"6":{},"32":{},"46":{},"49":{},"55":{},"75":{},"82":{},"97":{},"104":{},"137":{},"147":{},"153":{},"183":{}},"parent":{}}],["createassignment",{"_index":81,"name":{"142":{},"157":{}},"parent":{}}],["createcustomer",{"_index":19,"name":{"22":{}},"parent":{}}],["created_at",{"_index":144,"name":{"247":{},"456":{},"611":{},"690":{},"712":{},"851":{},"938":{},"983":{},"1010":{},"1057":{},"1204":{},"1296":{},"1357":{},"1429":{},"1448":{},"1479":{},"1504":{},"1549":{},"1600":{},"1660":{},"1679":{},"1704":{},"1760":{},"1802":{}},"parent":{}}],["createearningrule",{"_index":38,"name":{"64":{}},"parent":{}}],["createmember",{"_index":42,"name":{"68":{}},"parent":{}}],["createrewardassignments",{"_index":34,"name":{"60":{}},"parent":{}}],["createsku",{"_index":52,"name":{"89":{}},"parent":{}}],["credits",{"_index":281,"name":{"578":{},"1864":{},"1883":{}},"parent":{}}],["currency",{"_index":564,"name":{"1590":{},"1599":{}},"parent":{}}],["custom_event",{"_index":426,"name":{"1037":{}},"parent":{}}],["customer",{"_index":188,"name":{"325":{},"365":{},"385":{},"403":{},"422":{},"438":{},"455":{},"471":{},"502":{},"507":{},"519":{},"530":{},"546":{},"561":{},"565":{},"573":{},"625":{},"656":{},"700":{},"791":{},"866":{},"1107":{},"1154":{},"1305":{},"1356":{},"1634":{},"1656":{},"1667":{},"1752":{},"1774":{},"1785":{},"1820":{}},"parent":{}}],["customer_id",{"_index":211,"name":{"376":{},"432":{},"464":{},"512":{},"541":{},"556":{},"626":{},"647":{},"806":{},"1151":{},"1661":{}},"parent":{}}],["customeractivitieslistqueryparams",{"_index":158,"name":{"281":{}},"parent":{"282":{},"283":{},"284":{},"285":{},"286":{},"287":{}}}],["customeractivitieslistresponse",{"_index":162,"name":{"288":{}},"parent":{"289":{},"290":{},"291":{},"292":{}}}],["customerobject",{"_index":110,"name":{"201":{}},"parent":{"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"216":{},"217":{},"241":{},"242":{},"246":{},"247":{},"248":{}}}],["customerobject.__type",{"_index":116,"name":{},"parent":{"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"218":{},"219":{},"234":{},"235":{},"243":{},"244":{},"245":{}}}],["customerobject.__type.__type",{"_index":124,"name":{},"parent":{"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"230":{},"231":{},"236":{},"237":{},"238":{},"239":{},"240":{}}}],["customerobject.__type.__type.__type",{"_index":132,"name":{},"parent":{"228":{},"229":{},"232":{},"233":{}}}],["customerrequest",{"_index":146,"name":{"250":{}},"parent":{"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"265":{},"266":{}}}],["customerrequest.__type",{"_index":147,"name":{},"parent":{"259":{},"260":{},"261":{},"262":{},"263":{},"264":{}}}],["customers",{"_index":25,"name":{"30":{},"279":{},"1675":{}},"parent":{"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{}}}],["customerscommonlistrequest",{"_index":149,"name":{"267":{}},"parent":{"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{}}}],["customerscommonlistresponse",{"_index":154,"name":{"275":{}},"parent":{"276":{},"277":{},"278":{},"279":{},"280":{}}}],["customerscreatebody",{"_index":164,"name":{"293":{}},"parent":{}}],["customerscreateresponse",{"_index":165,"name":{"294":{}},"parent":{}}],["customersgetresponse",{"_index":166,"name":{"295":{}},"parent":{}}],["customerslistparams",{"_index":167,"name":{"296":{}},"parent":{}}],["customerslistresponse",{"_index":168,"name":{"297":{}},"parent":{}}],["customersscrollparams",{"_index":169,"name":{"298":{}},"parent":{}}],["customersscrollresponse",{"_index":170,"name":{"299":{}},"parent":{}}],["customersscrollyield",{"_index":171,"name":{"300":{}},"parent":{}}],["customersupdateconsentsbody",{"_index":174,"name":{"303":{}},"parent":{}}],["customersupdateparams",{"_index":172,"name":{"301":{}},"parent":{}}],["customersupdateresponse",{"_index":173,"name":{"302":{}},"parent":{}}],["customerunconfirmed",{"_index":145,"name":{"249":{}},"parent":{}}],["customheaders",{"_index":683,"name":{"1969":{},"1978":{}},"parent":{}}],["dangerouslysetsecretkeyinbrowser",{"_index":682,"name":{"1968":{}},"parent":{}}],["data",{"_index":163,"name":{"292":{},"678":{},"710":{},"840":{},"926":{},"965":{},"1029":{},"1218":{},"1303":{},"1320":{},"1458":{},"1466":{},"1487":{},"1512":{},"1541":{},"1691":{},"1811":{},"1817":{},"1914":{}},"parent":{}}],["data_ref",{"_index":156,"name":{"278":{},"291":{},"339":{},"489":{},"494":{},"681":{},"709":{},"734":{},"777":{},"832":{},"843":{},"888":{},"929":{},"964":{},"1028":{},"1102":{},"1120":{},"1217":{},"1266":{},"1275":{},"1302":{},"1319":{},"1372":{},"1457":{},"1465":{},"1486":{},"1514":{},"1581":{},"1645":{},"1690":{},"1795":{},"1810":{},"1816":{}},"parent":{}}],["date",{"_index":210,"name":{"375":{},"431":{},"463":{},"511":{},"540":{},"555":{},"805":{},"1150":{}},"parent":{}}],["delete",{"_index":7,"name":{"9":{},"37":{},"51":{},"58":{},"87":{},"107":{},"133":{},"140":{},"149":{},"156":{},"186":{}},"parent":{}}],["deleteassignment",{"_index":83,"name":{"144":{},"158":{}},"parent":{}}],["deleteearningrule",{"_index":40,"name":{"66":{}},"parent":{}}],["deleterewardassignment",{"_index":36,"name":{"62":{}},"parent":{}}],["deletesku",{"_index":55,"name":{"92":{}},"parent":{}}],["description",{"_index":112,"name":{"207":{},"256":{},"674":{},"826":{},"922":{},"953":{},"1113":{},"1478":{},"1800":{}},"parent":{}}],["details",{"_index":91,"name":{"171":{},"642":{}},"parent":{}}],["disable",{"_index":101,"name":{"189":{}},"parent":{}}],["discount",{"_index":200,"name":{"344":{},"593":{},"749":{},"767":{},"787":{},"1233":{},"1247":{},"1380":{},"1869":{}},"parent":{}}],["discount_amount",{"_index":203,"name":{"349":{},"616":{},"1728":{},"1754":{},"1765":{},"1783":{}},"parent":{}}],["discount_quantity",{"_index":607,"name":{"1723":{}},"parent":{}}],["discountamount",{"_index":673,"name":{"1945":{}},"parent":{"1946":{},"1947":{},"1948":{},"1949":{}}}],["discountamountvoucherseffecttypes",{"_index":667,"name":{"1923":{}},"parent":{}}],["discountfixed",{"_index":675,"name":{"1956":{}},"parent":{"1957":{},"1958":{},"1959":{},"1960":{}}}],["discountfixedvoucherseffecttypes",{"_index":669,"name":{"1925":{}},"parent":{}}],["discountpercent",{"_index":674,"name":{"1950":{}},"parent":{"1951":{},"1952":{},"1953":{},"1954":{},"1955":{}}}],["discountpercentvoucherseffecttypes",{"_index":668,"name":{"1924":{}},"parent":{}}],["discountunit",{"_index":672,"name":{"1937":{}},"parent":{"1938":{},"1939":{},"1940":{},"1941":{},"1942":{},"1943":{},"1944":{}}}],["discountunitmultiple",{"_index":670,"name":{"1926":{}},"parent":{"1927":{},"1928":{},"1929":{}}}],["discountunitmultipleoneunit",{"_index":671,"name":{"1930":{}},"parent":{"1931":{},"1932":{},"1933":{},"1934":{},"1935":{},"1936":{}}}],["discountunitvoucherseffecttypes",{"_index":666,"name":{"1922":{}},"parent":{}}],["discountvoucherseffecttypes",{"_index":665,"name":{"1921":{}},"parent":{}}],["discountvoucherstypes",{"_index":660,"name":{"1915":{}},"parent":{}}],["discountvoucherstypesenum",{"_index":661,"name":{"1916":{}},"parent":{"1917":{},"1918":{},"1919":{},"1920":{}}}],["distributions",{"_index":28,"name":{"40":{}},"parent":{"41":{},"42":{},"43":{}}}],["distributionspublicationscreateparams",{"_index":585,"name":{"1647":{}},"parent":{"1648":{},"1649":{},"1650":{},"1651":{},"1654":{},"1655":{},"1656":{}}}],["distributionspublicationscreateparams.__type",{"_index":586,"name":{},"parent":{"1652":{},"1653":{}}}],["distributionspublicationscreateresponse",{"_index":587,"name":{"1657":{}},"parent":{"1658":{},"1659":{},"1660":{},"1661":{},"1662":{},"1663":{},"1664":{},"1665":{},"1666":{},"1667":{},"1668":{}}}],["distributionspublicationslistparams",{"_index":581,"name":{"1629":{}},"parent":{"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{},"1638":{},"1639":{},"1640":{}}}],["distributionspublicationslistparams.__type",{"_index":583,"name":{},"parent":{"1641":{}}}],["distributionspublicationslistresponse",{"_index":584,"name":{"1642":{}},"parent":{"1643":{},"1644":{},"1645":{},"1646":{}}}],["duration",{"_index":313,"name":{"687":{},"848":{},"935":{},"1081":{},"1175":{},"1260":{}},"parent":{}}],["effect",{"_index":286,"name":{"598":{},"1623":{},"1842":{},"1849":{},"1910":{},"1928":{},"1932":{},"1941":{},"1949":{},"1955":{},"1960":{}},"parent":{}}],["email",{"_index":106,"name":{"197":{},"205":{},"254":{},"270":{},"1111":{}},"parent":{}}],["enable",{"_index":100,"name":{"188":{}},"parent":{}}],["entries",{"_index":436,"name":{"1086":{},"1267":{}},"parent":{}}],["error",{"_index":297,"name":{"637":{},"1414":{},"1423":{},"1872":{}},"parent":{}}],["event",{"_index":226,"name":{"401":{},"1017":{},"1031":{},"1819":{}},"parent":{}}],["events",{"_index":31,"name":{"44":{}},"parent":{"45":{},"46":{}}}],["eventsparams",{"_index":625,"name":{"1818":{}},"parent":{"1819":{},"1820":{},"1821":{},"1822":{},"1823":{},"1826":{},"1827":{}}}],["eventsparams.__type",{"_index":626,"name":{},"parent":{"1824":{},"1825":{},"1828":{}}}],["eventsresponse",{"_index":627,"name":{"1829":{}},"parent":{"1830":{},"1831":{}}}],["every",{"_index":413,"name":{"1006":{}},"parent":{}}],["expand",{"_index":629,"name":{"1833":{}},"parent":{}}],["expiration_date",{"_index":295,"name":{"632":{},"682":{},"762":{},"828":{},"861":{},"893":{},"930":{},"951":{},"1077":{},"1171":{},"1256":{},"1341":{},"1383":{}},"parent":{}}],["exported_object",{"_index":596,"name":{"1693":{},"1707":{}},"parent":{}}],["exportresource",{"_index":595,"name":{"1692":{}},"parent":{"1693":{},"1694":{},"1695":{}}}],["exportresource.__type",{"_index":597,"name":{},"parent":{"1696":{},"1697":{},"1698":{},"1699":{}}}],["exportresource.__type.__type",{"_index":599,"name":{},"parent":{"1700":{}}}],["exports",{"_index":30,"name":{"43":{},"47":{}},"parent":{"48":{},"49":{},"50":{},"51":{}}}],["exportscreateresponse",{"_index":600,"name":{"1701":{}},"parent":{"1702":{},"1703":{},"1704":{},"1705":{},"1706":{},"1707":{},"1708":{},"1709":{},"1714":{},"1715":{}}}],["exportscreateresponse.__type",{"_index":601,"name":{},"parent":{"1710":{},"1711":{},"1712":{},"1716":{}}}],["exportscreateresponse.__type.__type",{"_index":602,"name":{},"parent":{"1713":{}}}],["exportsgetresponse",{"_index":603,"name":{"1717":{}},"parent":{}}],["exposeerrorcause",{"_index":72,"name":{"125":{},"1970":{},"1979":{}},"parent":{}}],["failure_code",{"_index":243,"name":{"448":{},"469":{}},"parent":{}}],["failure_message",{"_index":244,"name":{"449":{},"470":{}},"parent":{}}],["fields",{"_index":598,"name":{"1697":{},"1710":{}},"parent":{}}],["filter",{"_index":589,"name":{"1672":{},"1681":{}},"parent":{}}],["filters",{"_index":336,"name":{"728":{},"877":{},"1366":{},"1639":{},"1698":{},"1711":{}},"parent":{}}],["fixed",{"_index":664,"name":{"1920":{}},"parent":{}}],["fixed_amount",{"_index":636,"name":{"1855":{},"1958":{}},"parent":{}}],["fixed_amount_formula",{"_index":637,"name":{"1856":{},"1959":{}},"parent":{}}],["force",{"_index":328,"name":{"716":{},"957":{},"1350":{},"1574":{},"1606":{}},"parent":{}}],["get",{"_index":6,"name":{"8":{},"33":{},"50":{},"56":{},"76":{},"83":{},"103":{},"112":{},"130":{},"138":{},"148":{},"154":{},"184":{}},"parent":{}}],["getforvoucher",{"_index":62,"name":{"114":{}},"parent":{}}],["getlastresponseheaders",{"_index":74,"name":{"127":{}},"parent":{}}],["getmember",{"_index":43,"name":{"69":{}},"parent":{}}],["getmemberactivities",{"_index":44,"name":{"70":{}},"parent":{}}],["getsku",{"_index":53,"name":{"90":{}},"parent":{}}],["gift",{"_index":130,"name":{"226":{},"358":{},"426":{},"441":{},"480":{},"576":{},"594":{},"1248":{},"1345":{},"1839":{},"1870":{}},"parent":{}}],["giftredemptionparams",{"_index":644,"name":{"1882":{}},"parent":{"1883":{}}}],["groups",{"_index":623,"name":{"1806":{}},"parent":{}}],["has_more",{"_index":157,"name":{"280":{},"779":{},"834":{}},"parent":{}}],["headers",{"_index":68,"name":{"121":{}},"parent":{}}],["hierarchy",{"_index":348,"name":{"750":{},"768":{}},"parent":{}}],["holder",{"_index":460,"name":{"1206":{}},"parent":{}}],["holder_id",{"_index":439,"name":{"1097":{},"1203":{},"1294":{}},"parent":{}}],["id",{"_index":104,"name":{"195":{},"202":{},"251":{},"315":{},"328":{},"370":{},"373":{},"429":{},"461":{},"477":{},"509":{},"538":{},"554":{},"568":{},"581":{},"604":{},"609":{},"667":{},"711":{},"746":{},"753":{},"759":{},"794":{},"803":{},"812":{},"817":{},"822":{},"869":{},"915":{},"949":{},"974":{},"987":{},"1009":{},"1016":{},"1042":{},"1045":{},"1066":{},"1109":{},"1134":{},"1138":{},"1141":{},"1148":{},"1160":{},"1195":{},"1199":{},"1208":{},"1242":{},"1286":{},"1290":{},"1309":{},"1421":{},"1444":{},"1471":{},"1495":{},"1528":{},"1543":{},"1556":{},"1592":{},"1612":{},"1616":{},"1658":{},"1677":{},"1702":{},"1734":{},"1742":{},"1758":{},"1778":{},"1787":{},"1798":{},"1837":{},"1875":{},"1901":{}},"parent":{}}],["image_url",{"_index":520,"name":{"1477":{},"1535":{},"1550":{},"1560":{},"1589":{}},"parent":{}}],["import",{"_index":48,"name":{"79":{},"190":{}},"parent":{}}],["importvouchers",{"_index":10,"name":{"12":{}},"parent":{}}],["inapplicable_to",{"_index":284,"name":{"589":{},"1879":{}},"parent":{}}],["initial_amount",{"_index":288,"name":{"615":{},"1729":{},"1764":{}},"parent":{}}],["initial_quantity",{"_index":608,"name":{"1724":{}},"parent":{}}],["interval",{"_index":312,"name":{"686":{},"847":{},"934":{},"1080":{},"1174":{},"1259":{}},"parent":{}}],["is_available",{"_index":354,"name":{"772":{}},"parent":{}}],["is_referral_code",{"_index":438,"name":{"1096":{},"1201":{},"1232":{},"1292":{},"1638":{}},"parent":{}}],["islastreponseheadersset",{"_index":73,"name":{"126":{}},"parent":{}}],["islastresponseheadersset",{"_index":71,"name":{"124":{}},"parent":{}}],["items",{"_index":186,"name":{"323":{},"352":{},"572":{},"623":{},"797":{},"871":{},"1144":{},"1755":{},"1772":{},"1781":{}},"parent":{}}],["items_applied_discount_amount",{"_index":291,"name":{"621":{},"1769":{}},"parent":{}}],["items_discount_amount",{"_index":290,"name":{"618":{},"1766":{}},"parent":{}}],["join_once",{"_index":218,"name":{"390":{},"673":{},"837":{},"921":{},"1648":{}},"parent":{}}],["junction",{"_index":337,"name":{"730":{},"1368":{},"1641":{},"1674":{},"1683":{},"1700":{},"1713":{}},"parent":{}}],["key",{"_index":90,"name":{"170":{},"640":{},"1887":{},"1892":{},"1897":{}},"parent":{}}],["last_order_amount",{"_index":140,"name":{"239":{}},"parent":{}}],["last_order_date",{"_index":141,"name":{"240":{}},"parent":{}}],["lastresponseheaders",{"_index":70,"name":{"123":{}},"parent":{}}],["length",{"_index":384,"name":{"908":{},"1226":{},"1326":{},"1391":{}},"parent":{}}],["limit",{"_index":150,"name":{"268":{},"282":{},"451":{},"705":{},"725":{},"773":{},"883":{},"959":{},"995":{},"1055":{},"1315":{},"1352":{},"1452":{},"1460":{},"1469":{},"1508":{},"1577":{},"1630":{},"1790":{}},"parent":{}}],["line_1",{"_index":118,"name":{"212":{},"261":{}},"parent":{}}],["line_2",{"_index":119,"name":{"213":{},"262":{}},"parent":{}}],["list",{"_index":11,"name":{"13":{},"29":{},"34":{},"54":{},"78":{},"88":{},"102":{},"113":{},"136":{},"150":{},"160":{},"187":{}},"parent":{}}],["listactivities",{"_index":27,"name":{"39":{}},"parent":{}}],["listall",{"_index":60,"name":{"101":{}},"parent":{}}],["listassignments",{"_index":80,"name":{"141":{},"161":{}},"parent":{}}],["listconsents",{"_index":20,"name":{"23":{}},"parent":{}}],["listearningrules",{"_index":37,"name":{"63":{}},"parent":{}}],["listmembers",{"_index":41,"name":{"67":{}},"parent":{}}],["listrewardassignments",{"_index":33,"name":{"59":{}},"parent":{}}],["listskus",{"_index":56,"name":{"93":{}},"parent":{}}],["listvouchers",{"_index":18,"name":{"21":{}},"parent":{}}],["logic",{"_index":501,"name":{"1419":{},"1428":{}},"parent":{}}],["loyalties",{"_index":32,"name":{"52":{}},"parent":{"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{}}}],["loyaltiesaddpoints",{"_index":447,"name":{"1123":{}},"parent":{"1124":{}}}],["loyaltiesaddpointsresponse",{"_index":448,"name":{"1125":{}},"parent":{"1126":{},"1127":{},"1128":{},"1129":{},"1130":{},"1131":{},"1132":{}}}],["loyaltiesaddpointsresponse.__type",{"_index":449,"name":{},"parent":{"1133":{},"1134":{}}}],["loyaltiescreatecampaign",{"_index":380,"name":{"890":{}},"parent":{"891":{},"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"913":{}}}],["loyaltiescreatecampaign.__type",{"_index":381,"name":{},"parent":{"898":{},"899":{},"900":{},"902":{},"903":{},"906":{},"907":{}}}],["loyaltiescreatecampaign.__type.__type",{"_index":382,"name":{},"parent":{"901":{},"904":{},"905":{},"908":{},"909":{},"910":{},"911":{},"912":{}}}],["loyaltiescreatecampaignresponse",{"_index":389,"name":{"914":{}},"parent":{"915":{},"916":{},"917":{},"918":{},"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{},"930":{},"931":{},"932":{},"933":{},"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{},"943":{},"944":{},"945":{},"946":{}}}],["loyaltiescreatecampaignresponse.__type",{"_index":390,"name":{},"parent":{"926":{},"927":{},"928":{},"929":{},"934":{},"935":{}}}],["loyaltiescreateearningrule",{"_index":424,"name":{"1030":{}},"parent":{"1031":{},"1032":{},"1033":{},"1034":{},"1035":{},"1037":{},"1038":{},"1040":{},"1041":{}}}],["loyaltiescreateearningrule.__type",{"_index":425,"name":{},"parent":{"1036":{},"1039":{},"1042":{}}}],["loyaltiescreateearningruleresponse",{"_index":428,"name":{"1043":{}},"parent":{}}],["loyaltiescreatemember",{"_index":441,"name":{"1104":{}},"parent":{"1105":{},"1106":{},"1107":{},"1108":{},"1115":{}}}],["loyaltiescreatemember.__type",{"_index":442,"name":{},"parent":{"1109":{},"1110":{},"1111":{},"1112":{},"1113":{},"1114":{}}}],["loyaltiescreatememberresponse",{"_index":443,"name":{"1116":{}},"parent":{}}],["loyaltiescreaterewardassignmentresponse",{"_index":401,"name":{"973":{}},"parent":{"974":{},"975":{},"976":{},"977":{},"978":{},"979":{},"983":{},"984":{},"985":{}}}],["loyaltiescreaterewardassignmentresponse.__type",{"_index":403,"name":{},"parent":{"980":{},"981":{}}}],["loyaltiescreaterewardassignmentresponse.__type.__type",{"_index":404,"name":{},"parent":{"982":{}}}],["loyaltiescreaterewardassignments",{"_index":397,"name":{"966":{}},"parent":{"967":{},"968":{},"969":{}}}],["loyaltiescreaterewardassignments.__type",{"_index":399,"name":{},"parent":{"970":{},"971":{}}}],["loyaltiescreaterewardassignments.__type.__type",{"_index":400,"name":{},"parent":{"972":{}}}],["loyaltiesdeletecampaignparams",{"_index":394,"name":{"956":{}},"parent":{"957":{}}}],["loyaltiesearningrulesresponse",{"_index":415,"name":{"1008":{}},"parent":{"1009":{},"1010":{},"1011":{},"1012":{},"1013":{},"1014":{},"1015":{},"1017":{},"1018":{},"1019":{},"1023":{},"1024":{}}}],["loyaltiesearningrulesresponse.__type",{"_index":418,"name":{},"parent":{"1016":{},"1020":{},"1021":{},"1022":{}}}],["loyaltiesgetcampaignresponse",{"_index":391,"name":{"947":{}},"parent":{}}],["loyaltiesgetmemberactivitiesresponse",{"_index":445,"name":{"1118":{}},"parent":{"1119":{},"1120":{},"1121":{},"1122":{}}}],["loyaltiesgetmemberresponse",{"_index":444,"name":{"1117":{}},"parent":{}}],["loyaltieslistearningrulesparams",{"_index":409,"name":{"994":{}},"parent":{"995":{},"996":{}}}],["loyaltieslistearningrulesresponse",{"_index":423,"name":{"1025":{}},"parent":{"1026":{},"1027":{},"1028":{},"1029":{}}}],["loyaltieslistmembersparams",{"_index":432,"name":{"1054":{}},"parent":{"1055":{},"1056":{},"1057":{},"1058":{},"1061":{},"1062":{}}}],["loyaltieslistmembersparams.__type",{"_index":433,"name":{},"parent":{"1059":{},"1060":{},"1063":{},"1064":{}}}],["loyaltieslistmembersresponse",{"_index":440,"name":{"1099":{}},"parent":{"1100":{},"1101":{},"1102":{},"1103":{}}}],["loyaltieslistparams",{"_index":378,"name":{"882":{}},"parent":{"883":{},"884":{}}}],["loyaltieslistresponse",{"_index":379,"name":{"885":{}},"parent":{"886":{},"887":{},"888":{},"889":{}}}],["loyaltieslistrewardassignmentsparams",{"_index":395,"name":{"958":{}},"parent":{"959":{},"960":{}}}],["loyaltieslistrewardassignmentsresponse",{"_index":396,"name":{"961":{}},"parent":{"962":{},"963":{},"964":{},"965":{}}}],["loyaltiesredeemrewardparams",{"_index":450,"name":{"1135":{}},"parent":{"1136":{},"1137":{},"1139":{},"1140":{},"1146":{}}}],["loyaltiesredeemrewardparams.__type",{"_index":451,"name":{},"parent":{"1138":{},"1141":{},"1142":{},"1143":{},"1144":{},"1145":{}}}],["loyaltiesredeemrewardresponse",{"_index":452,"name":{"1147":{}},"parent":{"1148":{},"1149":{},"1150":{},"1151":{},"1152":{},"1153":{},"1154":{},"1155":{},"1156":{},"1157":{},"1158":{},"1159":{}}}],["loyaltiesredeemrewardresponse.__type",{"_index":453,"name":{},"parent":{"1160":{},"1161":{},"1162":{},"1163":{},"1164":{},"1165":{},"1166":{},"1167":{},"1170":{},"1171":{},"1172":{},"1173":{},"1176":{},"1177":{},"1178":{},"1182":{},"1183":{},"1189":{},"1190":{},"1191":{},"1192":{},"1201":{},"1202":{},"1203":{},"1204":{},"1205":{},"1206":{},"1207":{},"1212":{},"1213":{},"1214":{}}}],["loyaltiesredeemrewardresponse.__type.__type",{"_index":454,"name":{},"parent":{"1168":{},"1169":{},"1174":{},"1175":{},"1179":{},"1180":{},"1181":{},"1184":{},"1185":{},"1186":{},"1187":{},"1188":{},"1193":{},"1194":{},"1197":{},"1198":{},"1208":{},"1209":{},"1210":{},"1211":{},"1215":{},"1216":{},"1217":{},"1218":{}}}],["loyaltiesredeemrewardresponse.__type.__type.__type",{"_index":458,"name":{},"parent":{"1195":{},"1196":{},"1199":{},"1200":{}}}],["loyaltiesupdatecampaign",{"_index":392,"name":{"948":{}},"parent":{"949":{},"950":{},"951":{},"952":{},"953":{},"954":{}}}],["loyaltiesupdatecampaignresponse",{"_index":393,"name":{"955":{}},"parent":{}}],["loyaltiesupdateearningrule",{"_index":429,"name":{"1044":{}},"parent":{"1045":{},"1046":{},"1047":{},"1048":{},"1050":{},"1051":{}}}],["loyaltiesupdateearningrule.__type",{"_index":430,"name":{},"parent":{"1049":{},"1052":{}}}],["loyaltiesupdateearningruleresponse",{"_index":431,"name":{"1053":{}},"parent":{}}],["loyaltiesupdaterewardassignment",{"_index":405,"name":{"986":{}},"parent":{"987":{},"988":{},"989":{}}}],["loyaltiesupdaterewardassignment.__type",{"_index":406,"name":{},"parent":{"990":{},"991":{}}}],["loyaltiesupdaterewardassignment.__type.__type",{"_index":407,"name":{},"parent":{"992":{}}}],["loyaltiesupdaterewardassignmentresponse",{"_index":408,"name":{"993":{}},"parent":{}}],["loyaltiesvoucherresponse",{"_index":434,"name":{"1065":{}},"parent":{"1066":{},"1067":{},"1068":{},"1069":{},"1070":{},"1071":{},"1072":{},"1073":{},"1076":{},"1077":{},"1078":{},"1079":{},"1082":{},"1083":{},"1084":{},"1087":{},"1088":{},"1093":{},"1094":{},"1095":{},"1096":{},"1097":{},"1098":{}}}],["loyaltiesvoucherresponse.__type",{"_index":435,"name":{},"parent":{"1074":{},"1075":{},"1080":{},"1081":{},"1085":{},"1086":{},"1089":{},"1090":{},"1091":{},"1092":{}}}],["loyalty",{"_index":134,"name":{"230":{},"241":{},"355":{},"404":{},"599":{},"970":{},"980":{},"990":{},"1013":{},"1033":{},"1050":{},"1501":{},"1519":{},"1826":{}},"parent":{}}],["loyalty_card",{"_index":241,"name":{"444":{},"483":{},"902":{},"1072":{},"1166":{},"1234":{},"1252":{},"1871":{}},"parent":{}}],["loyaltyfixed",{"_index":410,"name":{"997":{}},"parent":{"998":{},"999":{}}}],["loyaltypointstransfer",{"_index":461,"name":{"1219":{}},"parent":{"1220":{},"1221":{}}}],["loyaltyproportional",{"_index":411,"name":{"1000":{}},"parent":{"1001":{},"1002":{},"1003":{}}}],["loyaltyproportional.__type",{"_index":412,"name":{},"parent":{"1004":{},"1005":{}}}],["loyaltyproportional.__type.__type",{"_index":414,"name":{},"parent":{"1006":{},"1007":{}}}],["message",{"_index":299,"name":{"641":{},"1416":{},"1425":{}},"parent":{}}],["metadata",{"_index":108,"name":{"199":{},"246":{},"255":{},"329":{},"367":{},"379":{},"387":{},"402":{},"424":{},"435":{},"467":{},"531":{},"543":{},"558":{},"575":{},"592":{},"624":{},"648":{},"657":{},"689":{},"744":{},"769":{},"788":{},"799":{},"800":{},"850":{},"873":{},"874":{},"913":{},"937":{},"952":{},"1095":{},"1112":{},"1115":{},"1145":{},"1146":{},"1210":{},"1281":{},"1311":{},"1344":{},"1385":{},"1398":{},"1402":{},"1534":{},"1551":{},"1561":{},"1565":{},"1587":{},"1597":{},"1663":{},"1680":{},"1738":{},"1748":{},"1756":{},"1773":{},"1784":{},"1821":{},"1881":{}},"parent":{}}],["name",{"_index":105,"name":{"196":{},"204":{},"253":{},"272":{},"393":{},"668":{},"747":{},"755":{},"783":{},"813":{},"823":{},"858":{},"891":{},"916":{},"1110":{},"1413":{},"1422":{},"1472":{},"1530":{},"1546":{},"1555":{},"1614":{},"1652":{},"1670":{},"1678":{},"1737":{},"1799":{}},"parent":{}}],["object",{"_index":109,"name":{"200":{},"248":{},"276":{},"289":{},"311":{},"337":{},"374":{},"407":{},"430":{},"462":{},"478":{},"487":{},"492":{},"510":{},"523":{},"539":{},"628":{},"679":{},"698":{},"707":{},"732":{},"751":{},"754":{},"760":{},"776":{},"804":{},"831":{},"841":{},"856":{},"886":{},"927":{},"946":{},"962":{},"985":{},"1023":{},"1026":{},"1100":{},"1119":{},"1130":{},"1149":{},"1179":{},"1184":{},"1211":{},"1212":{},"1215":{},"1264":{},"1272":{},"1297":{},"1300":{},"1317":{},"1370":{},"1431":{},"1450":{},"1455":{},"1463":{},"1481":{},"1484":{},"1506":{},"1513":{},"1539":{},"1545":{},"1579":{},"1601":{},"1608":{},"1643":{},"1659":{},"1685":{},"1688":{},"1703":{},"1747":{},"1775":{},"1793":{},"1804":{},"1808":{},"1814":{},"1830":{},"1836":{},"1876":{},"1900":{},"1912":{}},"parent":{}}],["object_id",{"_index":420,"name":{"1021":{}},"parent":{}}],["object_type",{"_index":421,"name":{"1022":{}},"parent":{}}],["options",{"_index":265,"name":{"526":{},"652":{}},"parent":{}}],["order",{"_index":152,"name":{"273":{},"283":{},"346":{},"366":{},"378":{},"411":{},"423":{},"434":{},"466":{},"529":{},"545":{},"549":{},"560":{},"563":{},"566":{},"607":{},"655":{},"662":{},"701":{},"704":{},"792":{},"808":{},"867":{},"1002":{},"1139":{},"1153":{},"1306":{},"1314":{},"1365":{},"1632":{},"1696":{},"1877":{}},"parent":{}}],["ordermetadata",{"_index":187,"name":{"324":{}},"parent":{}}],["orderobjectredemptions",{"_index":300,"name":{"650":{}},"parent":{}}],["orders",{"_index":47,"name":{"73":{},"234":{},"1796":{}},"parent":{"74":{},"75":{},"76":{},"77":{},"78":{},"79":{}}}],["orderscreate",{"_index":613,"name":{"1749":{}},"parent":{"1750":{},"1751":{},"1752":{},"1753":{},"1754":{},"1755":{},"1756":{}}}],["orderscreateresponse",{"_index":614,"name":{"1757":{}},"parent":{"1758":{},"1759":{},"1760":{},"1761":{},"1762":{},"1763":{},"1764":{},"1765":{},"1766":{},"1767":{},"1768":{},"1769":{},"1770":{},"1771":{},"1772":{},"1773":{},"1774":{},"1775":{}}}],["ordersgetresponse",{"_index":615,"name":{"1776":{}},"parent":{}}],["ordersitem",{"_index":604,"name":{"1718":{}},"parent":{"1719":{},"1720":{},"1721":{},"1722":{},"1723":{},"1724":{},"1725":{},"1726":{},"1727":{},"1728":{},"1729":{},"1730":{},"1731":{},"1732":{},"1733":{},"1740":{},"1741":{},"1747":{},"1748":{}}}],["ordersitem.__type",{"_index":611,"name":{},"parent":{"1734":{},"1735":{},"1736":{},"1737":{},"1738":{},"1739":{},"1742":{},"1743":{},"1744":{},"1745":{},"1746":{}}}],["orderslistparams",{"_index":619,"name":{"1789":{}},"parent":{"1790":{},"1791":{}}}],["orderslistresponse",{"_index":620,"name":{"1792":{}},"parent":{"1793":{},"1794":{},"1795":{},"1796":{}}}],["ordersupdate",{"_index":616,"name":{"1777":{}},"parent":{"1778":{},"1779":{},"1780":{},"1781":{},"1782":{},"1783":{},"1784":{},"1785":{},"1786":{}}}],["ordersupdate.__type",{"_index":617,"name":{},"parent":{"1787":{}}}],["ordersupdateresponse",{"_index":618,"name":{"1788":{}},"parent":{}}],["origin",{"_index":689,"name":{"1977":{}},"parent":{}}],["override",{"_index":612,"name":{"1736":{},"1744":{}},"parent":{}}],["page",{"_index":151,"name":{"269":{},"452":{},"726":{},"774":{},"884":{},"960":{},"996":{},"1056":{},"1353":{},"1453":{},"1461":{},"1468":{},"1509":{},"1576":{},"1631":{},"1791":{}},"parent":{}}],["parameters",{"_index":398,"name":{"968":{},"978":{},"988":{},"1499":{},"1517":{},"1694":{},"1708":{}},"parent":{}}],["parent_redemption",{"_index":270,"name":{"536":{}},"parent":{}}],["parent_rollback",{"_index":275,"name":{"552":{}},"parent":{}}],["pattern",{"_index":386,"name":{"910":{},"1228":{},"1328":{},"1393":{}},"parent":{}}],["percent",{"_index":662,"name":{"1918":{}},"parent":{}}],["percent_off",{"_index":578,"name":{"1626":{},"1852":{},"1952":{}},"parent":{}}],["percent_off_formula",{"_index":579,"name":{"1627":{},"1853":{},"1953":{}},"parent":{}}],["phone",{"_index":111,"name":{"206":{},"265":{}},"parent":{}}],["points",{"_index":142,"name":{"243":{},"446":{},"485":{},"582":{},"606":{},"904":{},"972":{},"982":{},"992":{},"999":{},"1007":{},"1052":{},"1074":{},"1124":{},"1126":{},"1168":{},"1221":{},"1236":{},"1254":{},"1503":{},"1521":{},"1526":{},"1866":{}},"parent":{}}],["points_cost",{"_index":205,"name":{"357":{},"601":{}},"parent":{}}],["points_to_go",{"_index":136,"name":{"233":{}},"parent":{}}],["post",{"_index":77,"name":{"131":{}},"parent":{}}],["postal_code",{"_index":121,"name":{"215":{},"264":{}},"parent":{}}],["prefix",{"_index":387,"name":{"911":{},"1229":{},"1329":{},"1394":{}},"parent":{}}],["price",{"_index":543,"name":{"1532":{},"1547":{},"1559":{},"1588":{},"1595":{},"1726":{},"1739":{},"1746":{},"1906":{}},"parent":{}}],["price_formula",{"_index":656,"name":{"1907":{}},"parent":{}}],["product",{"_index":610,"name":{"1732":{},"1846":{},"1861":{},"1935":{},"1943":{}},"parent":{}}],["product_id",{"_index":606,"name":{"1720":{},"1903":{}},"parent":{}}],["product_source_id",{"_index":654,"name":{"1904":{}},"parent":{}}],["products",{"_index":49,"name":{"80":{},"1582":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{}}}],["productsbulkupdate",{"_index":554,"name":{"1566":{}},"parent":{}}],["productsbulkupdatemetadata",{"_index":552,"name":{"1563":{}},"parent":{"1564":{},"1565":{}}}],["productsbulkupdatemetadataresponse",{"_index":557,"name":{"1570":{}},"parent":{"1571":{}}}],["productsbulkupdatemetadataresponse.__type",{"_index":558,"name":{},"parent":{"1572":{}}}],["productsbulkupdateresponse",{"_index":555,"name":{"1567":{}},"parent":{"1568":{}}}],["productsbulkupdateresponse.__type",{"_index":556,"name":{},"parent":{"1569":{}}}],["productscreate",{"_index":542,"name":{"1529":{}},"parent":{"1530":{},"1531":{},"1532":{},"1533":{},"1534":{},"1535":{}}}],["productscreateresponse",{"_index":547,"name":{"1542":{}},"parent":{"1543":{},"1544":{},"1545":{},"1546":{},"1547":{},"1548":{},"1549":{},"1550":{},"1551":{}}}],["productscreatesku",{"_index":562,"name":{"1583":{}},"parent":{"1584":{},"1585":{},"1586":{},"1587":{},"1588":{},"1589":{},"1590":{}}}],["productscreateskuresponse",{"_index":565,"name":{"1591":{}},"parent":{"1592":{},"1593":{},"1594":{},"1595":{},"1596":{},"1597":{},"1598":{},"1599":{},"1600":{},"1601":{}}}],["productsdeleteparams",{"_index":559,"name":{"1573":{}},"parent":{"1574":{}}}],["productsdeleteskuparams",{"_index":569,"name":{"1605":{}},"parent":{"1606":{}}}],["productsgetresponse",{"_index":548,"name":{"1552":{}},"parent":{}}],["productsgetresponseskus",{"_index":544,"name":{"1536":{}},"parent":{"1537":{},"1538":{}}}],["productsgetresponseskus.__type",{"_index":546,"name":{},"parent":{"1539":{},"1540":{},"1541":{}}}],["productsgetskuresponse",{"_index":566,"name":{"1602":{}},"parent":{}}],["productslistparams",{"_index":560,"name":{"1575":{}},"parent":{"1576":{},"1577":{}}}],["productslistresponse",{"_index":561,"name":{"1578":{}},"parent":{"1579":{},"1580":{},"1581":{},"1582":{}}}],["productslistskus",{"_index":570,"name":{"1607":{}},"parent":{"1608":{},"1609":{},"1610":{}}}],["productsupdate",{"_index":549,"name":{"1553":{}},"parent":{"1554":{}}}],["productsupdate.__type",{"_index":550,"name":{},"parent":{"1555":{},"1556":{},"1557":{},"1558":{},"1559":{},"1560":{},"1561":{}}}],["productsupdateresponse",{"_index":551,"name":{"1562":{}},"parent":{}}],["productsupdatesku",{"_index":567,"name":{"1603":{}},"parent":{}}],["productsupdateskuresponse",{"_index":568,"name":{"1604":{}},"parent":{}}],["promotion",{"_index":370,"name":{"829":{},"862":{}},"parent":{}}],["promotion_tier",{"_index":242,"name":{"447":{},"810":{},"1442":{}},"parent":{}}],["promotions",{"_index":57,"name":{"94":{},"362":{},"880":{}},"parent":{"95":{},"96":{},"97":{},"98":{}}}],["promotionscreate",{"_index":372,"name":{"857":{}},"parent":{"858":{},"859":{},"860":{},"861":{},"862":{},"863":{}}}],["promotionscreate.__type",{"_index":373,"name":{},"parent":{"864":{}}}],["promotionscreateresponse",{"_index":369,"name":{"821":{}},"parent":{"822":{},"823":{},"824":{},"825":{},"826":{},"827":{},"828":{},"829":{},"830":{},"835":{},"836":{},"837":{},"838":{},"839":{},"844":{},"845":{},"846":{},"849":{},"850":{},"851":{},"852":{},"853":{},"854":{},"855":{},"856":{}}}],["promotionscreateresponse.__type",{"_index":371,"name":{},"parent":{"831":{},"832":{},"833":{},"834":{},"840":{},"841":{},"842":{},"843":{},"847":{},"848":{}}}],["promotionsvalidateparams",{"_index":374,"name":{"865":{}},"parent":{"866":{},"867":{},"868":{},"874":{}}}],["promotionsvalidateparams.__type",{"_index":375,"name":{},"parent":{"869":{},"870":{},"871":{},"872":{},"873":{}}}],["promotionsvalidatequeryparams",{"_index":376,"name":{"875":{}},"parent":{"876":{},"877":{}}}],["promotionsvalidateresponse",{"_index":377,"name":{"878":{}},"parent":{"879":{},"880":{},"881":{}}}],["promotiontier",{"_index":349,"name":{"752":{}},"parent":{"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"764":{},"765":{},"766":{},"768":{},"769":{},"770":{}}}],["promotiontier.__type",{"_index":350,"name":{},"parent":{"759":{},"760":{},"761":{},"762":{},"763":{},"767":{}}}],["promotiontiergetresponse",{"_index":357,"name":{"781":{}},"parent":{}}],["promotiontierredeemdetails",{"_index":366,"name":{"818":{}},"parent":{}}],["promotiontierredeemdetailssimple",{"_index":364,"name":{"811":{}},"parent":{"812":{},"813":{},"814":{},"815":{},"816":{}}}],["promotiontierredeemdetailssimple.__type",{"_index":365,"name":{},"parent":{"817":{}}}],["promotiontiers",{"_index":59,"name":{"99":{}},"parent":{"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{}}}],["promotiontierscreateparams",{"_index":358,"name":{"782":{}},"parent":{"783":{},"784":{},"785":{},"786":{},"788":{}}}],["promotiontierscreateparams.__type",{"_index":359,"name":{},"parent":{"787":{}}}],["promotiontierscreateresponse",{"_index":360,"name":{"789":{}},"parent":{}}],["promotiontierslistallparams",{"_index":353,"name":{"771":{}},"parent":{"772":{},"773":{},"774":{}}}],["promotiontierslistallresponse",{"_index":355,"name":{"775":{}},"parent":{"776":{},"777":{},"778":{},"779":{}}}],["promotiontierslistresponse",{"_index":356,"name":{"780":{}},"parent":{}}],["promotiontiersredeemparams",{"_index":361,"name":{"790":{}},"parent":{"791":{},"792":{},"793":{},"800":{},"801":{}}}],["promotiontiersredeemparams.__type",{"_index":362,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{}}}],["promotiontiersredeemresponse",{"_index":363,"name":{"802":{}},"parent":{"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{},"810":{}}}],["promotiontiersupdateparams",{"_index":367,"name":{"819":{}},"parent":{}}],["promotiontiersupdateresponse",{"_index":368,"name":{"820":{}},"parent":{}}],["protected",{"_index":319,"name":{"696":{},"855":{},"944":{}},"parent":{}}],["publications",{"_index":29,"name":{"42":{},"1646":{}},"parent":{}}],["publish",{"_index":16,"name":{"19":{},"1083":{},"1177":{},"1262":{}},"parent":{}}],["put",{"_index":78,"name":{"132":{}},"parent":{}}],["qr",{"_index":457,"name":{"1193":{},"1284":{}},"parent":{}}],["qualifications",{"_index":4,"name":{"5":{},"181":{}},"parent":{}}],["quantity",{"_index":253,"name":{"495":{},"901":{},"1089":{},"1185":{},"1240":{},"1273":{},"1333":{},"1388":{},"1725":{}},"parent":{}}],["quantity_limit",{"_index":657,"name":{"1908":{}},"parent":{}}],["reason",{"_index":257,"name":{"500":{},"504":{},"516":{},"649":{}},"parent":{}}],["redeem",{"_index":15,"name":{"18":{},"105":{},"110":{}},"parent":{}}],["redeemables",{"_index":266,"name":{"527":{},"653":{},"663":{}},"parent":{}}],["redeemed",{"_index":518,"name":{"1474":{}},"parent":{}}],["redeemed_amount",{"_index":131,"name":{"228":{},"497":{}},"parent":{}}],["redeemed_points",{"_index":135,"name":{"232":{},"1090":{},"1188":{}},"parent":{}}],["redeemed_quantity",{"_index":254,"name":{"496":{},"1091":{},"1186":{},"1274":{}},"parent":{}}],["redeemreward",{"_index":46,"name":{"72":{}},"parent":{}}],["redeemstackable",{"_index":23,"name":{"26":{},"111":{}},"parent":{}}],["redemption",{"_index":249,"name":{"460":{},"514":{},"562":{},"899":{},"1087":{},"1182":{},"1238":{},"1270":{},"1331":{},"1386":{}},"parent":{"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"480":{},"481":{},"483":{},"484":{}}}],["redemption.__type",{"_index":250,"name":{},"parent":{"475":{},"476":{},"477":{},"478":{},"479":{},"482":{},"485":{}}}],["redemption_entries",{"_index":255,"name":{"498":{},"1092":{},"1276":{}},"parent":{}}],["redemptions",{"_index":61,"name":{"108":{},"218":{},"490":{},"535":{},"629":{}},"parent":{"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{}}}],["redemptionsgetforvoucherresponse",{"_index":252,"name":{"491":{}},"parent":{"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{}}}],["redemptionslistparams",{"_index":245,"name":{"450":{}},"parent":{"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{}}}],["redemptionslistparams.__type",{"_index":247,"name":{},"parent":{"458":{},"459":{}}}],["redemptionslistresponse",{"_index":251,"name":{"486":{}},"parent":{"487":{},"488":{},"489":{},"490":{}}}],["redemptionsredeembody",{"_index":238,"name":{"420":{}},"parent":{"421":{},"422":{},"423":{},"424":{},"425":{},"426":{},"427":{}}}],["redemptionsredeemresponse",{"_index":239,"name":{"428":{}},"parent":{"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"444":{},"445":{},"447":{},"448":{},"449":{}}}],["redemptionsredeemresponse.__type",{"_index":240,"name":{},"parent":{"443":{},"446":{}}}],["redemptionsredeemstackableorderresponse",{"_index":268,"name":{"533":{}},"parent":{}}],["redemptionsredeemstackableparams",{"_index":264,"name":{"525":{}},"parent":{"526":{},"527":{},"528":{},"529":{},"530":{},"531":{}}}],["redemptionsredeemstackableredemptionresult",{"_index":267,"name":{"532":{}},"parent":{}}],["redemptionsredeemstackableresponse",{"_index":269,"name":{"534":{}},"parent":{"535":{},"536":{},"537":{},"549":{}}}],["redemptionsredeemstackableresponse.__type",{"_index":271,"name":{},"parent":{"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{}}}],["redemptionsrollbackparams",{"_index":256,"name":{"499":{}},"parent":{"500":{},"501":{},"502":{}}}],["redemptionsrollbackpayload",{"_index":259,"name":{"506":{}},"parent":{"507":{}}}],["redemptionsrollbackqueryparams",{"_index":258,"name":{"503":{}},"parent":{"504":{},"505":{}}}],["redemptionsrollbackresponse",{"_index":260,"name":{"508":{}},"parent":{"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{}}}],["redemptionsrollbackresponse.__type",{"_index":262,"name":{},"parent":{"522":{},"523":{}}}],["redemptionsrollbackstackableresponse",{"_index":273,"name":{"550":{}},"parent":{"551":{},"552":{},"553":{},"563":{}}}],["redemptionsrollbackstackableresponse.__type",{"_index":276,"name":{},"parent":{"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{}}}],["referral",{"_index":227,"name":{"405":{},"1822":{}},"parent":{}}],["referral_program",{"_index":317,"name":{"694":{},"942":{}},"parent":{}}],["referred_customers",{"_index":143,"name":{"244":{}},"parent":{}}],["referrer",{"_index":280,"name":{"574":{}},"parent":{}}],["referrer_id",{"_index":293,"name":{"627":{},"1202":{},"1293":{},"1825":{}},"parent":{}}],["related_object",{"_index":179,"name":{"312":{},"1131":{},"1721":{}},"parent":{}}],["related_object_id",{"_index":272,"name":{"548":{},"976":{},"1446":{},"1497":{}},"parent":{}}],["related_object_ids",{"_index":95,"name":{"175":{}},"parent":{}}],["related_object_total",{"_index":97,"name":{"177":{}},"parent":{}}],["related_object_type",{"_index":96,"name":{"176":{},"440":{},"472":{},"547":{},"977":{},"1447":{},"1498":{}},"parent":{}}],["releasevalidationsession",{"_index":102,"name":{"193":{}},"parent":{}}],["request",{"_index":69,"name":{"122":{}},"parent":{}}],["request_id",{"_index":92,"name":{"172":{},"643":{}},"parent":{}}],["requestcontroller",{"_index":65,"name":{"117":{}},"parent":{"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{},"133":{}}}],["resource_id",{"_index":93,"name":{"173":{},"644":{}},"parent":{}}],["resource_type",{"_index":94,"name":{"174":{},"645":{}},"parent":{}}],["responsevalidatevoucherfalse",{"_index":296,"name":{"634":{}},"parent":{"635":{},"636":{},"637":{},"638":{},"646":{},"647":{},"648":{},"649":{}}}],["responsevalidatevoucherfalse.__type",{"_index":298,"name":{},"parent":{"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{}}}],["responsevalidatevouchertrue",{"_index":283,"name":{"585":{}},"parent":{"586":{},"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"599":{},"600":{},"602":{},"603":{},"607":{},"608":{},"630":{},"631":{},"632":{},"633":{}}}],["responsevalidatevouchertrue.__type",{"_index":285,"name":{},"parent":{"596":{},"597":{},"598":{},"601":{},"604":{},"605":{},"606":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{},"628":{},"629":{}}}],["result",{"_index":212,"name":{"380":{},"436":{},"453":{},"468":{},"517":{},"544":{},"559":{},"809":{},"1156":{},"1636":{},"1666":{},"1714":{},"1880":{}},"parent":{}}],["reward",{"_index":189,"name":{"326":{},"368":{},"425":{},"439":{},"520":{},"579":{},"602":{},"967":{},"1136":{},"1155":{},"1307":{},"1838":{}},"parent":{}}],["reward_id",{"_index":402,"name":{"975":{},"1496":{}},"parent":{}}],["rewardredemptionparams",{"_index":541,"name":{"1525":{}},"parent":{"1526":{},"1527":{},"1528":{}}}],["rewards",{"_index":79,"name":{"134":{}},"parent":{"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{}}}],["rewardsassignmentobject",{"_index":530,"name":{"1494":{}},"parent":{"1495":{},"1496":{},"1497":{},"1498":{},"1499":{},"1500":{},"1504":{},"1505":{},"1506":{}}}],["rewardsassignmentobject.__type",{"_index":531,"name":{},"parent":{"1501":{},"1502":{}}}],["rewardsassignmentobject.__type.__type",{"_index":532,"name":{},"parent":{"1503":{}}}],["rewardscreate",{"_index":526,"name":{"1490":{}},"parent":{}}],["rewardscreateassignment",{"_index":535,"name":{"1515":{}},"parent":{"1516":{},"1517":{},"1518":{}}}],["rewardscreateassignment.__type",{"_index":536,"name":{},"parent":{"1519":{},"1520":{}}}],["rewardscreateassignment.__type.__type",{"_index":537,"name":{},"parent":{"1521":{}}}],["rewardscreateassignmentresponse",{"_index":538,"name":{"1522":{}},"parent":{}}],["rewardscreateresponse",{"_index":522,"name":{"1482":{}},"parent":{}}],["rewardsgetresponse",{"_index":527,"name":{"1491":{}},"parent":{}}],["rewardslistassignmentsparams",{"_index":533,"name":{"1507":{}},"parent":{"1508":{},"1509":{}}}],["rewardslistassignmentsresponse",{"_index":534,"name":{"1510":{}},"parent":{"1511":{},"1512":{},"1513":{},"1514":{}}}],["rewardslistparams",{"_index":515,"name":{"1467":{}},"parent":{"1468":{},"1469":{}}}],["rewardslistresponse",{"_index":523,"name":{"1483":{}},"parent":{"1484":{},"1485":{},"1486":{},"1487":{}}}],["rewardsresponse",{"_index":516,"name":{"1470":{}},"parent":{"1471":{},"1472":{},"1473":{},"1474":{},"1475":{},"1476":{},"1479":{},"1480":{},"1481":{}}}],["rewardsresponse.__type",{"_index":521,"name":{},"parent":{"1477":{},"1478":{}}}],["rewardstype",{"_index":524,"name":{"1488":{}},"parent":{}}],["rewardstyperesponse",{"_index":525,"name":{"1489":{}},"parent":{}}],["rewardsupdate",{"_index":528,"name":{"1492":{}},"parent":{}}],["rewardsupdateassignment",{"_index":539,"name":{"1523":{}},"parent":{}}],["rewardsupdateassignmentresponse",{"_index":540,"name":{"1524":{}},"parent":{}}],["rewardsupdateresponse",{"_index":529,"name":{"1493":{}},"parent":{}}],["rollback",{"_index":63,"name":{"115":{}},"parent":{}}],["rollbacks",{"_index":274,"name":{"551":{}},"parent":{}}],["rollbackstackable",{"_index":64,"name":{"116":{}},"parent":{}}],["rule_id",{"_index":505,"name":{"1434":{},"1445":{}},"parent":{}}],["rules",{"_index":500,"name":{"1417":{},"1426":{}},"parent":{}}],["schema_id",{"_index":427,"name":{"1039":{}},"parent":{}}],["scroll",{"_index":26,"name":{"35":{}},"parent":{}}],["secretkey",{"_index":680,"name":{"1965":{}},"parent":{}}],["segment",{"_index":417,"name":{"1014":{},"1040":{}},"parent":{}}],["segments",{"_index":84,"name":{"145":{}},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["segmentscreate",{"_index":588,"name":{"1669":{}},"parent":{"1670":{},"1671":{},"1672":{},"1673":{},"1675":{}}}],["segmentscreate.__type",{"_index":590,"name":{},"parent":{"1674":{}}}],["segmentscreateresponse",{"_index":591,"name":{"1676":{}},"parent":{"1677":{},"1678":{},"1679":{},"1680":{},"1681":{},"1682":{},"1684":{},"1685":{}}}],["segmentscreateresponse.__type",{"_index":592,"name":{},"parent":{"1683":{}}}],["segmentsgetresponse",{"_index":593,"name":{"1686":{}},"parent":{}}],["segmentslistresponse",{"_index":594,"name":{"1687":{}},"parent":{"1688":{},"1689":{},"1690":{},"1691":{}}}],["session",{"_index":208,"name":{"371":{},"427":{},"528":{},"583":{},"630":{},"654":{},"661":{},"801":{}},"parent":{}}],["session_key",{"_index":192,"name":{"331":{}},"parent":{}}],["session_ttl",{"_index":193,"name":{"332":{}},"parent":{}}],["session_ttl_unit",{"_index":194,"name":{"333":{}},"parent":{}}],["session_type",{"_index":191,"name":{"330":{}},"parent":{}}],["setbaseurl",{"_index":76,"name":{"129":{}},"parent":{}}],["setidentity",{"_index":13,"name":{"16":{}},"parent":{}}],["setlastresponseheaders",{"_index":75,"name":{"128":{}},"parent":{}}],["simplecustomer",{"_index":103,"name":{"194":{}},"parent":{"195":{},"196":{},"197":{},"198":{},"199":{},"200":{}}}],["simpleproduct",{"_index":571,"name":{"1611":{}},"parent":{"1612":{},"1613":{},"1614":{}}}],["simplepromotiontier",{"_index":346,"name":{"742":{}},"parent":{"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{}}}],["simplerollback",{"_index":263,"name":{"524":{}},"parent":{}}],["simplesku",{"_index":572,"name":{"1615":{}},"parent":{"1616":{},"1617":{},"1618":{}}}],["simplevoucher",{"_index":463,"name":{"1223":{}},"parent":{"1224":{},"1225":{},"1231":{},"1232":{},"1233":{},"1234":{},"1235":{},"1238":{},"1239":{}}}],["simplevoucher.__type",{"_index":464,"name":{},"parent":{"1226":{},"1227":{},"1228":{},"1229":{},"1230":{},"1236":{},"1237":{},"1240":{}}}],["sku",{"_index":563,"name":{"1584":{},"1594":{},"1618":{},"1740":{},"1745":{},"1845":{},"1860":{},"1936":{},"1944":{}},"parent":{}}],["sku_id",{"_index":605,"name":{"1719":{}},"parent":{}}],["skus",{"_index":545,"name":{"1537":{},"1610":{}},"parent":{}}],["source",{"_index":419,"name":{"1018":{},"1034":{},"1047":{}},"parent":{}}],["source_id",{"_index":107,"name":{"198":{},"203":{},"252":{},"383":{},"569":{},"610":{},"795":{},"870":{},"1114":{},"1142":{},"1209":{},"1531":{},"1544":{},"1557":{},"1585":{},"1593":{},"1613":{},"1617":{},"1649":{},"1665":{},"1722":{},"1735":{},"1743":{},"1750":{},"1759":{},"1779":{},"1902":{}},"parent":{}}],["source_ids",{"_index":553,"name":{"1564":{}},"parent":{}}],["stackableoptions",{"_index":628,"name":{"1832":{}},"parent":{"1833":{}}}],["stackableredeemableobject",{"_index":630,"name":{"1834":{}},"parent":{}}],["stackableredeemableparams",{"_index":631,"name":{"1835":{}},"parent":{"1836":{},"1837":{},"1838":{},"1839":{}}}],["stackableredeemableresponse",{"_index":643,"name":{"1873":{}},"parent":{"1874":{},"1875":{},"1876":{},"1877":{},"1878":{},"1879":{},"1880":{},"1881":{}}}],["stackableredeemableresponsestatus",{"_index":632,"name":{"1840":{}},"parent":{}}],["stackableredeemableresultdiscount",{"_index":635,"name":{"1847":{}},"parent":{"1848":{},"1849":{},"1850":{},"1851":{},"1852":{},"1853":{},"1854":{},"1855":{},"1856":{},"1857":{},"1858":{},"1859":{},"1860":{},"1861":{},"1862":{}}}],["stackableredeemableresultdiscountunit",{"_index":633,"name":{"1841":{}},"parent":{"1842":{},"1843":{},"1844":{},"1845":{},"1846":{}}}],["stackableredeemableresultgift",{"_index":639,"name":{"1863":{}},"parent":{"1864":{}}}],["stackableredeemableresultloyaltycard",{"_index":640,"name":{"1865":{}},"parent":{"1866":{},"1867":{}}}],["stackableredeemableresultresponse",{"_index":642,"name":{"1868":{}},"parent":{"1869":{},"1870":{},"1871":{},"1872":{}}}],["start_date",{"_index":294,"name":{"631":{},"675":{},"761":{},"827":{},"860":{},"892":{},"923":{},"950":{},"1076":{},"1170":{},"1255":{},"1340":{},"1382":{}},"parent":{}}],["starting_after",{"_index":153,"name":{"274":{},"284":{}},"parent":{}}],["starting_after_id",{"_index":159,"name":{"285":{}},"parent":{}}],["state",{"_index":117,"name":{"211":{},"260":{}},"parent":{}}],["status",{"_index":279,"name":{"570":{},"613":{},"798":{},"1705":{},"1751":{},"1762":{},"1780":{},"1874":{}},"parent":{}}],["stock",{"_index":517,"name":{"1473":{}},"parent":{}}],["strict",{"_index":655,"name":{"1905":{}},"parent":{}}],["subtotal_amount",{"_index":609,"name":{"1731":{}},"parent":{}}],["suffix",{"_index":388,"name":{"912":{},"1230":{},"1330":{},"1395":{}},"parent":{}}],["summary",{"_index":122,"name":{"216":{}},"parent":{}}],["tiers",{"_index":58,"name":{"96":{},"778":{},"833":{},"864":{}},"parent":{}}],["total",{"_index":155,"name":{"277":{},"290":{},"308":{},"338":{},"488":{},"493":{},"680":{},"708":{},"733":{},"842":{},"887":{},"928":{},"963":{},"1027":{},"1101":{},"1121":{},"1127":{},"1216":{},"1268":{},"1277":{},"1301":{},"1318":{},"1371":{},"1456":{},"1464":{},"1485":{},"1511":{},"1540":{},"1580":{},"1609":{},"1644":{},"1689":{},"1794":{},"1809":{},"1815":{},"1913":{}},"parent":{}}],["total_amount",{"_index":137,"name":{"236":{},"351":{},"620":{},"1770":{}},"parent":{}}],["total_applied_discount_amount",{"_index":292,"name":{"622":{},"1771":{}},"parent":{}}],["total_count",{"_index":138,"name":{"237":{}},"parent":{}}],["total_discount_amount",{"_index":204,"name":{"350":{},"619":{},"1767":{}},"parent":{}}],["total_failed",{"_index":125,"name":{"221":{}},"parent":{}}],["total_redeemed",{"_index":123,"name":{"220":{}},"parent":{}}],["total_rollback_failed",{"_index":128,"name":{"224":{}},"parent":{}}],["total_rollback_succeeded",{"_index":129,"name":{"225":{}},"parent":{}}],["total_rolled_back",{"_index":127,"name":{"223":{}},"parent":{}}],["total_succeeded",{"_index":126,"name":{"222":{}},"parent":{}}],["track",{"_index":17,"name":{"20":{}},"parent":{}}],["tracking_id",{"_index":185,"name":{"321":{},"353":{},"364":{},"377":{},"421":{},"433":{},"465":{},"501":{},"505":{},"513":{},"542":{},"557":{},"633":{},"646":{},"660":{},"743":{},"807":{},"881":{},"1157":{},"1662":{}},"parent":{}}],["trackingid",{"_index":688,"name":{"1976":{}},"parent":{}}],["transfers",{"_index":641,"name":{"1867":{}},"parent":{}}],["ttl",{"_index":648,"name":{"1889":{},"1894":{}},"parent":{}}],["ttl_unit",{"_index":649,"name":{"1890":{},"1895":{}},"parent":{}}],["type",{"_index":178,"name":{"310":{},"314":{},"408":{},"670":{},"825":{},"894":{},"898":{},"918":{},"954":{},"998":{},"1001":{},"1071":{},"1129":{},"1133":{},"1165":{},"1231":{},"1246":{},"1379":{},"1620":{},"1671":{},"1684":{},"1831":{},"1848":{},"1888":{},"1893":{},"1927":{},"1931":{},"1938":{},"1946":{},"1951":{},"1957":{}},"parent":{}}],["unit",{"_index":663,"name":{"1919":{}},"parent":{}}],["unit_off",{"_index":574,"name":{"1621":{},"1843":{},"1857":{},"1933":{},"1939":{}},"parent":{}}],["unit_off_formula",{"_index":575,"name":{"1622":{},"1858":{},"1940":{}},"parent":{}}],["unit_type",{"_index":634,"name":{"1844":{},"1859":{},"1934":{},"1942":{}},"parent":{}}],["units",{"_index":638,"name":{"1862":{},"1929":{}},"parent":{}}],["update",{"_index":5,"name":{"7":{},"36":{},"57":{},"77":{},"84":{},"106":{},"139":{},"155":{},"185":{}},"parent":{}}],["updateassignment",{"_index":82,"name":{"143":{}},"parent":{}}],["updateconsents",{"_index":21,"name":{"24":{},"38":{}},"parent":{}}],["updated_at",{"_index":287,"name":{"612":{},"984":{},"1011":{},"1061":{},"1098":{},"1205":{},"1295":{},"1361":{},"1430":{},"1449":{},"1480":{},"1505":{},"1598":{},"1761":{},"1803":{}},"parent":{}}],["updateearningrule",{"_index":39,"name":{"65":{}},"parent":{}}],["updaterewardassignment",{"_index":35,"name":{"61":{}},"parent":{}}],["updatesku",{"_index":54,"name":{"91":{}},"parent":{}}],["url",{"_index":455,"name":{"1181":{},"1187":{},"1196":{},"1200":{},"1269":{},"1278":{},"1287":{},"1291":{},"1716":{}},"parent":{}}],["use_voucher_metadata_schema",{"_index":318,"name":{"695":{},"854":{},"943":{}},"parent":{}}],["valid",{"_index":199,"name":{"343":{},"586":{},"635":{},"659":{},"745":{},"879":{},"1433":{}},"parent":{}}],["validate",{"_index":14,"name":{"17":{},"98":{},"159":{},"165":{}},"parent":{}}],["validatestackable",{"_index":22,"name":{"25":{},"166":{}},"parent":{}}],["validatevoucher",{"_index":87,"name":{"164":{}},"parent":{}}],["validation_rule_assignments",{"_index":351,"name":{"764":{}},"parent":{}}],["validation_rule_id",{"_index":416,"name":{"1012":{},"1032":{},"1046":{}},"parent":{}}],["validation_rules_assignments",{"_index":308,"name":{"676":{},"838":{},"924":{},"1213":{},"1298":{}},"parent":{}}],["validationrules",{"_index":85,"name":{"151":{}},"parent":{"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{}}}],["validationrulescreate",{"_index":498,"name":{"1412":{}},"parent":{"1413":{},"1414":{},"1415":{},"1417":{},"1418":{}}}],["validationrulescreate.__type",{"_index":499,"name":{},"parent":{"1416":{},"1419":{}}}],["validationrulescreateassignment",{"_index":509,"name":{"1439":{}},"parent":{"1440":{},"1441":{},"1442":{}}}],["validationrulescreateassignmentresponse",{"_index":510,"name":{"1443":{}},"parent":{"1444":{},"1445":{},"1446":{},"1447":{},"1448":{},"1449":{},"1450":{}}}],["validationrulescreateresponse",{"_index":502,"name":{"1420":{}},"parent":{"1421":{},"1422":{},"1423":{},"1424":{},"1426":{},"1427":{},"1429":{},"1430":{},"1431":{}}}],["validationrulescreateresponse.__type",{"_index":503,"name":{},"parent":{"1425":{},"1428":{}}}],["validationrulesgetresponse",{"_index":506,"name":{"1436":{}},"parent":{}}],["validationruleslistassignmentsparams",{"_index":513,"name":{"1459":{}},"parent":{"1460":{},"1461":{}}}],["validationruleslistassignmentsresponse",{"_index":514,"name":{"1462":{}},"parent":{"1463":{},"1464":{},"1465":{},"1466":{}}}],["validationruleslistparams",{"_index":511,"name":{"1451":{}},"parent":{"1452":{},"1453":{}}}],["validationruleslistresponse",{"_index":512,"name":{"1454":{}},"parent":{"1455":{},"1456":{},"1457":{},"1458":{}}}],["validationrulesupdate",{"_index":507,"name":{"1437":{}},"parent":{}}],["validationrulesupdateresponse",{"_index":508,"name":{"1438":{}},"parent":{}}],["validationrulesvalidateresponse",{"_index":504,"name":{"1432":{}},"parent":{"1433":{},"1434":{},"1435":{}}}],["validations",{"_index":86,"name":{"162":{}},"parent":{"163":{},"164":{},"165":{},"166":{}}}],["validationsessionparams",{"_index":647,"name":{"1886":{}},"parent":{"1887":{},"1888":{},"1889":{},"1890":{}}}],["validationsessionreleaseparams",{"_index":651,"name":{"1896":{}},"parent":{"1897":{}}}],["validationsessionresponse",{"_index":650,"name":{"1891":{}},"parent":{"1892":{},"1893":{},"1894":{},"1895":{}}}],["validationsessionttlunit",{"_index":646,"name":{"1885":{}},"parent":{}}],["validationsessiontype",{"_index":645,"name":{"1884":{}},"parent":{}}],["validationsvalidatecode",{"_index":303,"name":{"664":{}},"parent":{}}],["validationsvalidatecontext",{"_index":304,"name":{"665":{}},"parent":{}}],["validationsvalidatestackableparams",{"_index":301,"name":{"651":{}},"parent":{"652":{},"653":{},"654":{},"655":{},"656":{},"657":{}}}],["validationsvalidatevoucherparams",{"_index":277,"name":{"564":{}},"parent":{"565":{},"566":{},"567":{},"576":{},"577":{},"579":{},"580":{},"583":{}}}],["validationsvalidatevoucherparams.__type",{"_index":278,"name":{},"parent":{"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"578":{},"581":{},"582":{}}}],["validationsvalidatevoucherresponse",{"_index":282,"name":{"584":{}},"parent":{}}],["validationvalidatestackableresponse",{"_index":302,"name":{"658":{}},"parent":{"659":{},"660":{},"661":{},"662":{},"663":{}}}],["validity_day_of_week",{"_index":314,"name":{"688":{},"849":{},"936":{},"1082":{},"1176":{},"1261":{}},"parent":{}}],["validity_timeframe",{"_index":311,"name":{"684":{},"845":{},"932":{},"1078":{},"1172":{},"1257":{}},"parent":{}}],["voucher",{"_index":213,"name":{"381":{},"386":{},"437":{},"473":{},"518":{},"693":{},"896":{},"941":{},"1105":{},"1158":{},"1440":{},"1635":{},"1654":{},"1668":{}},"parent":{}}],["voucher_type",{"_index":582,"name":{"1637":{}},"parent":{}}],["voucherdiscount",{"_index":573,"name":{"1619":{}},"parent":{"1620":{},"1621":{},"1622":{},"1623":{},"1624":{},"1625":{},"1626":{},"1627":{},"1628":{}}}],["voucherifyclientside",{"_index":684,"name":{"1971":{}},"parent":{}}],["voucherifyclientsideoptions",{"_index":685,"name":{"1972":{}},"parent":{"1973":{},"1974":{},"1975":{},"1976":{},"1977":{},"1978":{},"1979":{}}}],["voucherifyerror",{"_index":88,"name":{"167":{}},"parent":{"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{}}}],["voucherifyserverside",{"_index":676,"name":{"1961":{}},"parent":{}}],["voucherifyserversideoptions",{"_index":677,"name":{"1962":{}},"parent":{"1963":{},"1964":{},"1965":{},"1966":{},"1967":{},"1968":{},"1969":{},"1970":{}}}],["vouchers",{"_index":99,"name":{"179":{},"340":{},"1103":{},"1373":{}},"parent":{"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{}}}],["vouchers_count",{"_index":320,"name":{"697":{},"719":{},"895":{},"945":{}},"parent":{}}],["vouchers_generation_status",{"_index":315,"name":{"691":{},"852":{},"939":{}},"parent":{}}],["vouchersbulkupdate",{"_index":489,"name":{"1399":{}},"parent":{}}],["vouchersbulkupdatemetadata",{"_index":490,"name":{"1400":{}},"parent":{"1401":{},"1402":{}}}],["vouchersbulkupdatemetadataresponse",{"_index":494,"name":{"1406":{}},"parent":{"1407":{}}}],["vouchersbulkupdatemetadataresponse.__type",{"_index":495,"name":{},"parent":{"1408":{}}}],["vouchersbulkupdateobject",{"_index":488,"name":{"1396":{}},"parent":{"1397":{},"1398":{}}}],["vouchersbulkupdateresponse",{"_index":496,"name":{"1409":{}},"parent":{"1410":{}}}],["vouchersbulkupdateresponse.__type",{"_index":497,"name":{},"parent":{"1411":{}}}],["voucherscreate",{"_index":474,"name":{"1334":{}},"parent":{}}],["voucherscreateparameters",{"_index":472,"name":{"1321":{}},"parent":{"1322":{},"1323":{},"1324":{},"1325":{},"1331":{},"1332":{}}}],["voucherscreateparameters.__type",{"_index":473,"name":{},"parent":{"1326":{},"1327":{},"1328":{},"1329":{},"1330":{},"1333":{}}}],["voucherscreateresponse",{"_index":475,"name":{"1335":{}},"parent":{}}],["vouchersdeleteparams",{"_index":480,"name":{"1349":{}},"parent":{"1350":{}}}],["vouchersdisableresponse",{"_index":485,"name":{"1375":{}},"parent":{}}],["vouchersenableresponse",{"_index":484,"name":{"1374":{}},"parent":{}}],["vouchersgetresponse",{"_index":476,"name":{"1336":{}},"parent":{}}],["vouchersimport",{"_index":486,"name":{"1376":{}},"parent":{"1377":{},"1378":{},"1379":{},"1380":{},"1381":{},"1382":{},"1383":{},"1384":{},"1385":{},"1386":{},"1387":{},"1389":{},"1390":{}}}],["vouchersimport.__type",{"_index":487,"name":{},"parent":{"1388":{},"1391":{},"1392":{},"1393":{},"1394":{},"1395":{}}}],["vouchersimportresponse",{"_index":492,"name":{"1403":{}},"parent":{"1404":{}}}],["vouchersimportresponse.__type",{"_index":493,"name":{},"parent":{"1405":{}}}],["voucherslistparams",{"_index":481,"name":{"1351":{}},"parent":{"1352":{},"1353":{},"1354":{},"1355":{},"1356":{},"1357":{},"1358":{},"1361":{},"1362":{},"1365":{},"1366":{},"1367":{}}}],["voucherslistparams.__type",{"_index":482,"name":{},"parent":{"1359":{},"1360":{},"1363":{},"1364":{},"1368":{}}}],["voucherslistresponse",{"_index":483,"name":{"1369":{}},"parent":{"1370":{},"1371":{},"1372":{},"1373":{}}}],["vouchersqualificationexaminebody",{"_index":468,"name":{"1304":{}},"parent":{"1305":{},"1306":{},"1307":{},"1308":{},"1311":{}}}],["vouchersqualificationexaminebody.__type",{"_index":469,"name":{},"parent":{"1309":{},"1310":{}}}],["vouchersqualificationexamineparams",{"_index":470,"name":{"1312":{}},"parent":{"1313":{},"1314":{},"1315":{}}}],["vouchersqualificationexamineresponse",{"_index":471,"name":{"1316":{}},"parent":{"1317":{},"1318":{},"1319":{},"1320":{}}}],["vouchersresponse",{"_index":465,"name":{"1241":{}},"parent":{"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1248":{},"1249":{},"1252":{},"1253":{},"1255":{},"1256":{},"1257":{},"1258":{},"1261":{},"1262":{},"1263":{},"1270":{},"1271":{},"1279":{},"1280":{},"1281":{},"1282":{},"1283":{},"1292":{},"1293":{},"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{}}}],["vouchersresponse.__type",{"_index":466,"name":{},"parent":{"1250":{},"1251":{},"1254":{},"1259":{},"1260":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{},"1278":{},"1284":{},"1285":{},"1288":{},"1289":{},"1300":{},"1301":{},"1302":{},"1303":{}}}],["vouchersresponse.__type.__type",{"_index":467,"name":{},"parent":{"1286":{},"1287":{},"1290":{},"1291":{}}}],["vouchersupdate",{"_index":477,"name":{"1337":{}},"parent":{"1338":{},"1339":{},"1340":{},"1341":{},"1342":{},"1343":{},"1344":{},"1345":{},"1346":{}}}],["vouchersupdate.__type",{"_index":478,"name":{},"parent":{"1347":{}}}],["vouchersupdateresponse",{"_index":479,"name":{"1348":{}},"parent":{}}],["vouchertype",{"_index":462,"name":{"1222":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = {"kinds":{"4":"Enumeration","16":"Enumeration member","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Balance","url":"classes/Balance.html","classes":"tsd-kind-class"},{"id":1,"kind":512,"name":"constructor","url":"classes/Balance.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Balance"},{"id":2,"kind":2048,"name":"create","url":"classes/Balance.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Balance"},{"id":3,"kind":128,"name":"Campaigns","url":"classes/Campaigns.html","classes":"tsd-kind-class"},{"id":4,"kind":512,"name":"constructor","url":"classes/Campaigns.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Campaigns"},{"id":5,"kind":1024,"name":"qualifications","url":"classes/Campaigns.html#qualifications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Campaigns"},{"id":6,"kind":2048,"name":"create","url":"classes/Campaigns.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":7,"kind":2048,"name":"update","url":"classes/Campaigns.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":8,"kind":2048,"name":"get","url":"classes/Campaigns.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":9,"kind":2048,"name":"delete","url":"classes/Campaigns.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":10,"kind":2048,"name":"addVoucher","url":"classes/Campaigns.html#addVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":11,"kind":2048,"name":"addCertainVoucher","url":"classes/Campaigns.html#addCertainVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":12,"kind":2048,"name":"importVouchers","url":"classes/Campaigns.html#importVouchers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":13,"kind":2048,"name":"list","url":"classes/Campaigns.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Campaigns"},{"id":14,"kind":128,"name":"ClientSide","url":"classes/ClientSide.html","classes":"tsd-kind-class"},{"id":15,"kind":512,"name":"constructor","url":"classes/ClientSide.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ClientSide"},{"id":16,"kind":2048,"name":"setIdentity","url":"classes/ClientSide.html#setIdentity","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":17,"kind":2048,"name":"validate","url":"classes/ClientSide.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":18,"kind":2048,"name":"redeem","url":"classes/ClientSide.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":19,"kind":2048,"name":"publish","url":"classes/ClientSide.html#publish","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":20,"kind":2048,"name":"track","url":"classes/ClientSide.html#track","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":21,"kind":2048,"name":"listVouchers","url":"classes/ClientSide.html#listVouchers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":22,"kind":2048,"name":"createCustomer","url":"classes/ClientSide.html#createCustomer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":23,"kind":2048,"name":"listConsents","url":"classes/ClientSide.html#listConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":24,"kind":2048,"name":"updateConsents","url":"classes/ClientSide.html#updateConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":25,"kind":2048,"name":"validateStackable","url":"classes/ClientSide.html#validateStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":26,"kind":2048,"name":"redeemStackable","url":"classes/ClientSide.html#redeemStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ClientSide"},{"id":27,"kind":128,"name":"Consents","url":"classes/Consents.html","classes":"tsd-kind-class"},{"id":28,"kind":512,"name":"constructor","url":"classes/Consents.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Consents"},{"id":29,"kind":2048,"name":"list","url":"classes/Consents.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Consents"},{"id":30,"kind":128,"name":"Customers","url":"classes/Customers.html","classes":"tsd-kind-class"},{"id":31,"kind":512,"name":"constructor","url":"classes/Customers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Customers"},{"id":32,"kind":2048,"name":"create","url":"classes/Customers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":33,"kind":2048,"name":"get","url":"classes/Customers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":34,"kind":2048,"name":"list","url":"classes/Customers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":35,"kind":2048,"name":"scroll","url":"classes/Customers.html#scroll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":36,"kind":2048,"name":"update","url":"classes/Customers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":37,"kind":2048,"name":"delete","url":"classes/Customers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":38,"kind":2048,"name":"updateConsents","url":"classes/Customers.html#updateConsents","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":39,"kind":2048,"name":"listActivities","url":"classes/Customers.html#listActivities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Customers"},{"id":40,"kind":128,"name":"Distributions","url":"classes/Distributions.html","classes":"tsd-kind-class"},{"id":41,"kind":512,"name":"constructor","url":"classes/Distributions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Distributions"},{"id":42,"kind":1024,"name":"publications","url":"classes/Distributions.html#publications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Distributions"},{"id":43,"kind":1024,"name":"exports","url":"classes/Distributions.html#exports","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Distributions"},{"id":44,"kind":128,"name":"Events","url":"classes/Events.html","classes":"tsd-kind-class"},{"id":45,"kind":512,"name":"constructor","url":"classes/Events.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Events"},{"id":46,"kind":2048,"name":"create","url":"classes/Events.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Events"},{"id":47,"kind":128,"name":"Exports","url":"classes/Exports.html","classes":"tsd-kind-class"},{"id":48,"kind":512,"name":"constructor","url":"classes/Exports.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Exports"},{"id":49,"kind":2048,"name":"create","url":"classes/Exports.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":50,"kind":2048,"name":"get","url":"classes/Exports.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":51,"kind":2048,"name":"delete","url":"classes/Exports.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Exports"},{"id":52,"kind":128,"name":"Loyalties","url":"classes/Loyalties.html","classes":"tsd-kind-class"},{"id":53,"kind":512,"name":"constructor","url":"classes/Loyalties.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Loyalties"},{"id":54,"kind":2048,"name":"list","url":"classes/Loyalties.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":55,"kind":2048,"name":"create","url":"classes/Loyalties.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":56,"kind":2048,"name":"get","url":"classes/Loyalties.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":57,"kind":2048,"name":"update","url":"classes/Loyalties.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":58,"kind":2048,"name":"delete","url":"classes/Loyalties.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":59,"kind":2048,"name":"listRewardAssignments","url":"classes/Loyalties.html#listRewardAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":60,"kind":2048,"name":"createRewardAssignments","url":"classes/Loyalties.html#createRewardAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":61,"kind":2048,"name":"updateRewardAssignment","url":"classes/Loyalties.html#updateRewardAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":62,"kind":2048,"name":"deleteRewardAssignment","url":"classes/Loyalties.html#deleteRewardAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":63,"kind":2048,"name":"listEarningRules","url":"classes/Loyalties.html#listEarningRules","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":64,"kind":2048,"name":"createEarningRule","url":"classes/Loyalties.html#createEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":65,"kind":2048,"name":"updateEarningRule","url":"classes/Loyalties.html#updateEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":66,"kind":2048,"name":"deleteEarningRule","url":"classes/Loyalties.html#deleteEarningRule","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":67,"kind":2048,"name":"listMembers","url":"classes/Loyalties.html#listMembers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":68,"kind":2048,"name":"createMember","url":"classes/Loyalties.html#createMember","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":69,"kind":2048,"name":"getMember","url":"classes/Loyalties.html#getMember","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":70,"kind":2048,"name":"getMemberActivities","url":"classes/Loyalties.html#getMemberActivities","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":71,"kind":2048,"name":"addPoints","url":"classes/Loyalties.html#addPoints","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":72,"kind":2048,"name":"redeemReward","url":"classes/Loyalties.html#redeemReward","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Loyalties"},{"id":73,"kind":128,"name":"Orders","url":"classes/Orders.html","classes":"tsd-kind-class"},{"id":74,"kind":512,"name":"constructor","url":"classes/Orders.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Orders"},{"id":75,"kind":2048,"name":"create","url":"classes/Orders.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":76,"kind":2048,"name":"get","url":"classes/Orders.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":77,"kind":2048,"name":"update","url":"classes/Orders.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":78,"kind":2048,"name":"list","url":"classes/Orders.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":79,"kind":2048,"name":"import","url":"classes/Orders.html#import","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Orders"},{"id":80,"kind":128,"name":"Products","url":"classes/Products.html","classes":"tsd-kind-class"},{"id":81,"kind":512,"name":"constructor","url":"classes/Products.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Products"},{"id":82,"kind":2048,"name":"create","url":"classes/Products.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":83,"kind":2048,"name":"get","url":"classes/Products.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":84,"kind":2048,"name":"update","url":"classes/Products.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":85,"kind":2048,"name":"bulkUpdateMetadata","url":"classes/Products.html#bulkUpdateMetadata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":86,"kind":2048,"name":"bulkUpdate","url":"classes/Products.html#bulkUpdate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":87,"kind":2048,"name":"delete","url":"classes/Products.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":88,"kind":2048,"name":"list","url":"classes/Products.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":89,"kind":2048,"name":"createSku","url":"classes/Products.html#createSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":90,"kind":2048,"name":"getSku","url":"classes/Products.html#getSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":91,"kind":2048,"name":"updateSku","url":"classes/Products.html#updateSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":92,"kind":2048,"name":"deleteSku","url":"classes/Products.html#deleteSku","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":93,"kind":2048,"name":"listSkus","url":"classes/Products.html#listSkus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Products"},{"id":94,"kind":128,"name":"Promotions","url":"classes/Promotions.html","classes":"tsd-kind-class"},{"id":95,"kind":512,"name":"constructor","url":"classes/Promotions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Promotions"},{"id":96,"kind":1024,"name":"tiers","url":"classes/Promotions.html#tiers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Promotions"},{"id":97,"kind":2048,"name":"create","url":"classes/Promotions.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Promotions"},{"id":98,"kind":2048,"name":"validate","url":"classes/Promotions.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Promotions"},{"id":99,"kind":128,"name":"PromotionTiers","url":"classes/PromotionTiers.html","classes":"tsd-kind-class"},{"id":100,"kind":512,"name":"constructor","url":"classes/PromotionTiers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PromotionTiers"},{"id":101,"kind":2048,"name":"listAll","url":"classes/PromotionTiers.html#listAll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":102,"kind":2048,"name":"list","url":"classes/PromotionTiers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":103,"kind":2048,"name":"get","url":"classes/PromotionTiers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":104,"kind":2048,"name":"create","url":"classes/PromotionTiers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":105,"kind":2048,"name":"redeem","url":"classes/PromotionTiers.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":106,"kind":2048,"name":"update","url":"classes/PromotionTiers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":107,"kind":2048,"name":"delete","url":"classes/PromotionTiers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PromotionTiers"},{"id":108,"kind":128,"name":"Redemptions","url":"classes/Redemptions.html","classes":"tsd-kind-class"},{"id":109,"kind":512,"name":"constructor","url":"classes/Redemptions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Redemptions"},{"id":110,"kind":2048,"name":"redeem","url":"classes/Redemptions.html#redeem","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":111,"kind":2048,"name":"redeemStackable","url":"classes/Redemptions.html#redeemStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":112,"kind":2048,"name":"get","url":"classes/Redemptions.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":113,"kind":2048,"name":"list","url":"classes/Redemptions.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":114,"kind":2048,"name":"getForVoucher","url":"classes/Redemptions.html#getForVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":115,"kind":2048,"name":"rollback","url":"classes/Redemptions.html#rollback","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":116,"kind":2048,"name":"rollbackStackable","url":"classes/Redemptions.html#rollbackStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Redemptions"},{"id":117,"kind":128,"name":"RequestController","url":"classes/RequestController.html","classes":"tsd-kind-class"},{"id":118,"kind":512,"name":"constructor","url":"classes/RequestController.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"RequestController"},{"id":119,"kind":1024,"name":"baseURL","url":"classes/RequestController.html#baseURL","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":120,"kind":1024,"name":"basePath","url":"classes/RequestController.html#basePath","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":121,"kind":1024,"name":"headers","url":"classes/RequestController.html#headers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":122,"kind":1024,"name":"request","url":"classes/RequestController.html#request","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":123,"kind":1024,"name":"lastResponseHeaders","url":"classes/RequestController.html#lastResponseHeaders","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":124,"kind":1024,"name":"isLastResponseHeadersSet","url":"classes/RequestController.html#isLastResponseHeadersSet","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":125,"kind":1024,"name":"exposeErrorCause","url":"classes/RequestController.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":126,"kind":2048,"name":"isLastReponseHeadersSet","url":"classes/RequestController.html#isLastReponseHeadersSet","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":127,"kind":2048,"name":"getLastResponseHeaders","url":"classes/RequestController.html#getLastResponseHeaders","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":128,"kind":2048,"name":"setLastResponseHeaders","url":"classes/RequestController.html#setLastResponseHeaders","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"RequestController"},{"id":129,"kind":2048,"name":"setBaseUrl","url":"classes/RequestController.html#setBaseUrl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"RequestController"},{"id":130,"kind":2048,"name":"get","url":"classes/RequestController.html#get","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":131,"kind":2048,"name":"post","url":"classes/RequestController.html#post","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":132,"kind":2048,"name":"put","url":"classes/RequestController.html#put","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":133,"kind":2048,"name":"delete","url":"classes/RequestController.html#delete","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"RequestController"},{"id":134,"kind":128,"name":"Rewards","url":"classes/Rewards.html","classes":"tsd-kind-class"},{"id":135,"kind":512,"name":"constructor","url":"classes/Rewards.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Rewards"},{"id":136,"kind":2048,"name":"list","url":"classes/Rewards.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":137,"kind":2048,"name":"create","url":"classes/Rewards.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":138,"kind":2048,"name":"get","url":"classes/Rewards.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":139,"kind":2048,"name":"update","url":"classes/Rewards.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":140,"kind":2048,"name":"delete","url":"classes/Rewards.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":141,"kind":2048,"name":"listAssignments","url":"classes/Rewards.html#listAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":142,"kind":2048,"name":"createAssignment","url":"classes/Rewards.html#createAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":143,"kind":2048,"name":"updateAssignment","url":"classes/Rewards.html#updateAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":144,"kind":2048,"name":"deleteAssignment","url":"classes/Rewards.html#deleteAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Rewards"},{"id":145,"kind":128,"name":"Segments","url":"classes/Segments.html","classes":"tsd-kind-class"},{"id":146,"kind":512,"name":"constructor","url":"classes/Segments.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Segments"},{"id":147,"kind":2048,"name":"create","url":"classes/Segments.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":148,"kind":2048,"name":"get","url":"classes/Segments.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":149,"kind":2048,"name":"delete","url":"classes/Segments.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":150,"kind":2048,"name":"list","url":"classes/Segments.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Segments"},{"id":151,"kind":128,"name":"ValidationRules","url":"classes/ValidationRules.html","classes":"tsd-kind-class"},{"id":152,"kind":512,"name":"constructor","url":"classes/ValidationRules.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ValidationRules"},{"id":153,"kind":2048,"name":"create","url":"classes/ValidationRules.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":154,"kind":2048,"name":"get","url":"classes/ValidationRules.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":155,"kind":2048,"name":"update","url":"classes/ValidationRules.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":156,"kind":2048,"name":"delete","url":"classes/ValidationRules.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":157,"kind":2048,"name":"createAssignment","url":"classes/ValidationRules.html#createAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":158,"kind":2048,"name":"deleteAssignment","url":"classes/ValidationRules.html#deleteAssignment","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":159,"kind":2048,"name":"validate","url":"classes/ValidationRules.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":160,"kind":2048,"name":"list","url":"classes/ValidationRules.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":161,"kind":2048,"name":"listAssignments","url":"classes/ValidationRules.html#listAssignments","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ValidationRules"},{"id":162,"kind":128,"name":"Validations","url":"classes/Validations.html","classes":"tsd-kind-class"},{"id":163,"kind":512,"name":"constructor","url":"classes/Validations.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Validations"},{"id":164,"kind":2048,"name":"validateVoucher","url":"classes/Validations.html#validateVoucher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":165,"kind":2048,"name":"validate","url":"classes/Validations.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":166,"kind":2048,"name":"validateStackable","url":"classes/Validations.html#validateStackable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Validations"},{"id":167,"kind":128,"name":"VoucherifyError","url":"classes/VoucherifyError.html","classes":"tsd-kind-class"},{"id":168,"kind":512,"name":"constructor","url":"classes/VoucherifyError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"VoucherifyError"},{"id":169,"kind":1024,"name":"code","url":"classes/VoucherifyError.html#code","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":170,"kind":1024,"name":"key","url":"classes/VoucherifyError.html#key","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":171,"kind":1024,"name":"details","url":"classes/VoucherifyError.html#details","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":172,"kind":1024,"name":"request_id","url":"classes/VoucherifyError.html#request_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":173,"kind":1024,"name":"resource_id","url":"classes/VoucherifyError.html#resource_id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":174,"kind":1024,"name":"resource_type","url":"classes/VoucherifyError.html#resource_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":175,"kind":1024,"name":"related_object_ids","url":"classes/VoucherifyError.html#related_object_ids","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":176,"kind":1024,"name":"related_object_type","url":"classes/VoucherifyError.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":177,"kind":1024,"name":"related_object_total","url":"classes/VoucherifyError.html#related_object_total","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":178,"kind":1024,"name":"cause","url":"classes/VoucherifyError.html#cause","classes":"tsd-kind-property tsd-parent-kind-class","parent":"VoucherifyError"},{"id":179,"kind":128,"name":"Vouchers","url":"classes/Vouchers.html","classes":"tsd-kind-class"},{"id":180,"kind":512,"name":"constructor","url":"classes/Vouchers.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Vouchers"},{"id":181,"kind":1024,"name":"qualifications","url":"classes/Vouchers.html#qualifications","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vouchers"},{"id":182,"kind":1024,"name":"balance","url":"classes/Vouchers.html#balance","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vouchers"},{"id":183,"kind":2048,"name":"create","url":"classes/Vouchers.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":184,"kind":2048,"name":"get","url":"classes/Vouchers.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":185,"kind":2048,"name":"update","url":"classes/Vouchers.html#update","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":186,"kind":2048,"name":"delete","url":"classes/Vouchers.html#delete","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":187,"kind":2048,"name":"list","url":"classes/Vouchers.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":188,"kind":2048,"name":"enable","url":"classes/Vouchers.html#enable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":189,"kind":2048,"name":"disable","url":"classes/Vouchers.html#disable","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":190,"kind":2048,"name":"import","url":"classes/Vouchers.html#import","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":191,"kind":2048,"name":"bulkUpdateMetadata","url":"classes/Vouchers.html#bulkUpdateMetadata","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":192,"kind":2048,"name":"bulkUpdate","url":"classes/Vouchers.html#bulkUpdate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":193,"kind":2048,"name":"releaseValidationSession","url":"classes/Vouchers.html#releaseValidationSession","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vouchers"},{"id":194,"kind":256,"name":"SimpleCustomer","url":"interfaces/SimpleCustomer.html","classes":"tsd-kind-interface"},{"id":195,"kind":1024,"name":"id","url":"interfaces/SimpleCustomer.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":196,"kind":1024,"name":"name","url":"interfaces/SimpleCustomer.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":197,"kind":1024,"name":"email","url":"interfaces/SimpleCustomer.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":198,"kind":1024,"name":"source_id","url":"interfaces/SimpleCustomer.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":199,"kind":1024,"name":"metadata","url":"interfaces/SimpleCustomer.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":200,"kind":1024,"name":"object","url":"interfaces/SimpleCustomer.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleCustomer"},{"id":201,"kind":256,"name":"CustomerObject","url":"interfaces/CustomerObject.html","classes":"tsd-kind-interface"},{"id":202,"kind":1024,"name":"id","url":"interfaces/CustomerObject.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":203,"kind":1024,"name":"source_id","url":"interfaces/CustomerObject.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":204,"kind":1024,"name":"name","url":"interfaces/CustomerObject.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":205,"kind":1024,"name":"email","url":"interfaces/CustomerObject.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":206,"kind":1024,"name":"phone","url":"interfaces/CustomerObject.html#phone","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":207,"kind":1024,"name":"description","url":"interfaces/CustomerObject.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":208,"kind":1024,"name":"address","url":"interfaces/CustomerObject.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":209,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":210,"kind":1024,"name":"city","url":"interfaces/CustomerObject.html#__type.city","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":211,"kind":1024,"name":"state","url":"interfaces/CustomerObject.html#__type.state","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":212,"kind":1024,"name":"line_1","url":"interfaces/CustomerObject.html#__type.line_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":213,"kind":1024,"name":"line_2","url":"interfaces/CustomerObject.html#__type.line_2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":214,"kind":1024,"name":"country","url":"interfaces/CustomerObject.html#__type.country","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":215,"kind":1024,"name":"postal_code","url":"interfaces/CustomerObject.html#__type.postal_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":216,"kind":1024,"name":"summary","url":"interfaces/CustomerObject.html#summary","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":217,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":218,"kind":1024,"name":"redemptions","url":"interfaces/CustomerObject.html#__type-2.redemptions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":219,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":220,"kind":1024,"name":"total_redeemed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_redeemed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":221,"kind":1024,"name":"total_failed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_failed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":222,"kind":1024,"name":"total_succeeded","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_succeeded","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":223,"kind":1024,"name":"total_rolled_back","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rolled_back","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":224,"kind":1024,"name":"total_rollback_failed","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rollback_failed","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":225,"kind":1024,"name":"total_rollback_succeeded","url":"interfaces/CustomerObject.html#__type-2.__type-4.total_rollback_succeeded","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":226,"kind":1024,"name":"gift","url":"interfaces/CustomerObject.html#__type-2.__type-4.gift","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":227,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":228,"kind":1024,"name":"redeemed_amount","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5.redeemed_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":229,"kind":1024,"name":"amount_to_go","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-5.amount_to_go","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":230,"kind":1024,"name":"loyalty","url":"interfaces/CustomerObject.html#__type-2.__type-4.loyalty-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":231,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":232,"kind":1024,"name":"redeemed_points","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":233,"kind":1024,"name":"points_to_go","url":"interfaces/CustomerObject.html#__type-2.__type-4.__type-6.points_to_go","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type.__type"},{"id":234,"kind":1024,"name":"orders","url":"interfaces/CustomerObject.html#__type-2.orders","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":235,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":236,"kind":1024,"name":"total_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":237,"kind":1024,"name":"total_count","url":"interfaces/CustomerObject.html#__type-2.__type-3.total_count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":238,"kind":1024,"name":"average_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.average_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":239,"kind":1024,"name":"last_order_amount","url":"interfaces/CustomerObject.html#__type-2.__type-3.last_order_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":240,"kind":1024,"name":"last_order_date","url":"interfaces/CustomerObject.html#__type-2.__type-3.last_order_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type.__type"},{"id":241,"kind":1024,"name":"loyalty","url":"interfaces/CustomerObject.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":242,"kind":65536,"name":"__type","url":"interfaces/CustomerObject.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerObject"},{"id":243,"kind":1024,"name":"points","url":"interfaces/CustomerObject.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":244,"kind":1024,"name":"referred_customers","url":"interfaces/CustomerObject.html#__type-1.referred_customers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":245,"kind":1024,"name":"campaigns","url":"interfaces/CustomerObject.html#__type-1.campaigns","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerObject.__type"},{"id":246,"kind":1024,"name":"metadata","url":"interfaces/CustomerObject.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":247,"kind":1024,"name":"created_at","url":"interfaces/CustomerObject.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":248,"kind":1024,"name":"object","url":"interfaces/CustomerObject.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerObject"},{"id":249,"kind":4194304,"name":"CustomerUnconfirmed","url":"modules.html#CustomerUnconfirmed","classes":"tsd-kind-type-alias"},{"id":250,"kind":256,"name":"CustomerRequest","url":"interfaces/CustomerRequest.html","classes":"tsd-kind-interface"},{"id":251,"kind":1024,"name":"id","url":"interfaces/CustomerRequest.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":252,"kind":1024,"name":"source_id","url":"interfaces/CustomerRequest.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":253,"kind":1024,"name":"name","url":"interfaces/CustomerRequest.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":254,"kind":1024,"name":"email","url":"interfaces/CustomerRequest.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":255,"kind":1024,"name":"metadata","url":"interfaces/CustomerRequest.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":256,"kind":1024,"name":"description","url":"interfaces/CustomerRequest.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":257,"kind":1024,"name":"address","url":"interfaces/CustomerRequest.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":258,"kind":65536,"name":"__type","url":"interfaces/CustomerRequest.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":259,"kind":1024,"name":"city","url":"interfaces/CustomerRequest.html#__type.city","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":260,"kind":1024,"name":"state","url":"interfaces/CustomerRequest.html#__type.state","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":261,"kind":1024,"name":"line_1","url":"interfaces/CustomerRequest.html#__type.line_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":262,"kind":1024,"name":"line_2","url":"interfaces/CustomerRequest.html#__type.line_2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":263,"kind":1024,"name":"country","url":"interfaces/CustomerRequest.html#__type.country","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":264,"kind":1024,"name":"postal_code","url":"interfaces/CustomerRequest.html#__type.postal_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CustomerRequest.__type"},{"id":265,"kind":1024,"name":"phone","url":"interfaces/CustomerRequest.html#phone","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerRequest"},{"id":266,"kind":256,"name":"CustomersCommonListRequest","url":"interfaces/CustomersCommonListRequest.html","classes":"tsd-kind-interface"},{"id":267,"kind":1024,"name":"limit","url":"interfaces/CustomersCommonListRequest.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":268,"kind":1024,"name":"page","url":"interfaces/CustomersCommonListRequest.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":269,"kind":1024,"name":"email","url":"interfaces/CustomersCommonListRequest.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":270,"kind":1024,"name":"city","url":"interfaces/CustomersCommonListRequest.html#city","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":271,"kind":1024,"name":"name","url":"interfaces/CustomersCommonListRequest.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":272,"kind":1024,"name":"order","url":"interfaces/CustomersCommonListRequest.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":273,"kind":1024,"name":"starting_after","url":"interfaces/CustomersCommonListRequest.html#starting_after","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListRequest"},{"id":274,"kind":256,"name":"CustomersCommonListResponse","url":"interfaces/CustomersCommonListResponse.html","classes":"tsd-kind-interface"},{"id":275,"kind":1024,"name":"object","url":"interfaces/CustomersCommonListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":276,"kind":1024,"name":"total","url":"interfaces/CustomersCommonListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":277,"kind":1024,"name":"data_ref","url":"interfaces/CustomersCommonListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":278,"kind":1024,"name":"customers","url":"interfaces/CustomersCommonListResponse.html#customers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":279,"kind":1024,"name":"has_more","url":"interfaces/CustomersCommonListResponse.html#has_more","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomersCommonListResponse"},{"id":280,"kind":256,"name":"CustomerActivitiesListQueryParams","url":"interfaces/CustomerActivitiesListQueryParams.html","classes":"tsd-kind-interface"},{"id":281,"kind":1024,"name":"limit","url":"interfaces/CustomerActivitiesListQueryParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":282,"kind":1024,"name":"order","url":"interfaces/CustomerActivitiesListQueryParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":283,"kind":1024,"name":"starting_after","url":"interfaces/CustomerActivitiesListQueryParams.html#starting_after","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":284,"kind":1024,"name":"starting_after_id","url":"interfaces/CustomerActivitiesListQueryParams.html#starting_after_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":285,"kind":1024,"name":"campaign_type","url":"interfaces/CustomerActivitiesListQueryParams.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":286,"kind":1024,"name":"campaign_id","url":"interfaces/CustomerActivitiesListQueryParams.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListQueryParams"},{"id":287,"kind":256,"name":"CustomerActivitiesListResponse","url":"interfaces/CustomerActivitiesListResponse.html","classes":"tsd-kind-interface"},{"id":288,"kind":1024,"name":"object","url":"interfaces/CustomerActivitiesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":289,"kind":1024,"name":"total","url":"interfaces/CustomerActivitiesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":290,"kind":1024,"name":"data_ref","url":"interfaces/CustomerActivitiesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":291,"kind":1024,"name":"data","url":"interfaces/CustomerActivitiesListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CustomerActivitiesListResponse"},{"id":292,"kind":4194304,"name":"CustomersCreateBody","url":"modules.html#CustomersCreateBody","classes":"tsd-kind-type-alias"},{"id":293,"kind":4194304,"name":"CustomersCreateResponse","url":"modules.html#CustomersCreateResponse","classes":"tsd-kind-type-alias"},{"id":294,"kind":4194304,"name":"CustomersGetResponse","url":"modules.html#CustomersGetResponse","classes":"tsd-kind-type-alias"},{"id":295,"kind":4194304,"name":"CustomersListParams","url":"modules.html#CustomersListParams","classes":"tsd-kind-type-alias"},{"id":296,"kind":4194304,"name":"CustomersListResponse","url":"modules.html#CustomersListResponse","classes":"tsd-kind-type-alias"},{"id":297,"kind":4194304,"name":"CustomersScrollParams","url":"modules.html#CustomersScrollParams","classes":"tsd-kind-type-alias"},{"id":298,"kind":4194304,"name":"CustomersScrollResponse","url":"modules.html#CustomersScrollResponse","classes":"tsd-kind-type-alias"},{"id":299,"kind":4194304,"name":"CustomersScrollYield","url":"modules.html#CustomersScrollYield","classes":"tsd-kind-type-alias"},{"id":300,"kind":4194304,"name":"CustomersUpdateParams","url":"modules.html#CustomersUpdateParams","classes":"tsd-kind-type-alias"},{"id":301,"kind":4194304,"name":"CustomersUpdateResponse","url":"modules.html#CustomersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":302,"kind":4194304,"name":"CustomersUpdateConsentsBody","url":"modules.html#CustomersUpdateConsentsBody","classes":"tsd-kind-type-alias"},{"id":303,"kind":256,"name":"BalanceCreateParams","url":"interfaces/BalanceCreateParams.html","classes":"tsd-kind-interface"},{"id":304,"kind":1024,"name":"amount","url":"interfaces/BalanceCreateParams.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateParams"},{"id":305,"kind":256,"name":"BalanceCreateResponse","url":"interfaces/BalanceCreateResponse.html","classes":"tsd-kind-interface"},{"id":306,"kind":1024,"name":"amount","url":"interfaces/BalanceCreateResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":307,"kind":1024,"name":"total","url":"interfaces/BalanceCreateResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":308,"kind":1024,"name":"balance","url":"interfaces/BalanceCreateResponse.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":309,"kind":1024,"name":"type","url":"interfaces/BalanceCreateResponse.html#type-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":310,"kind":1024,"name":"object","url":"interfaces/BalanceCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":311,"kind":1024,"name":"related_object","url":"interfaces/BalanceCreateResponse.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":312,"kind":65536,"name":"__type","url":"interfaces/BalanceCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"BalanceCreateResponse"},{"id":313,"kind":1024,"name":"type","url":"interfaces/BalanceCreateResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"BalanceCreateResponse.__type"},{"id":314,"kind":1024,"name":"id","url":"interfaces/BalanceCreateResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"BalanceCreateResponse.__type"},{"id":315,"kind":4194304,"name":"ClientSideCustomersUpdateConsentsBody","url":"modules.html#ClientSideCustomersUpdateConsentsBody","classes":"tsd-kind-type-alias"},{"id":316,"kind":4194304,"name":"ClientSideCustomersCreateParams","url":"modules.html#ClientSideCustomersCreateParams","classes":"tsd-kind-type-alias"},{"id":317,"kind":4194304,"name":"ClientSideCustomersCreateResponse","url":"modules.html#ClientSideCustomersCreateResponse","classes":"tsd-kind-type-alias"},{"id":318,"kind":256,"name":"ClientSideValidateParams","url":"interfaces/ClientSideValidateParams.html","classes":"tsd-kind-interface"},{"id":319,"kind":1024,"name":"code","url":"interfaces/ClientSideValidateParams.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":320,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideValidateParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":321,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateParams.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":322,"kind":1024,"name":"items","url":"interfaces/ClientSideValidateParams.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":323,"kind":1024,"name":"orderMetadata","url":"interfaces/ClientSideValidateParams.html#orderMetadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":324,"kind":1024,"name":"customer","url":"interfaces/ClientSideValidateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":325,"kind":1024,"name":"reward","url":"interfaces/ClientSideValidateParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":326,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":327,"kind":1024,"name":"id","url":"interfaces/ClientSideValidateParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateParams.__type"},{"id":328,"kind":1024,"name":"metadata","url":"interfaces/ClientSideValidateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":329,"kind":1024,"name":"session_type","url":"interfaces/ClientSideValidateParams.html#session_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":330,"kind":1024,"name":"session_key","url":"interfaces/ClientSideValidateParams.html#session_key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":331,"kind":1024,"name":"session_ttl","url":"interfaces/ClientSideValidateParams.html#session_ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":332,"kind":1024,"name":"session_ttl_unit","url":"interfaces/ClientSideValidateParams.html#session_ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateParams"},{"id":333,"kind":4194304,"name":"ClientSideListVouchersParams","url":"modules.html#ClientSideListVouchersParams","classes":"tsd-kind-type-alias"},{"id":334,"kind":4194304,"name":"ClientSideVoucherListing","url":"modules.html#ClientSideVoucherListing","classes":"tsd-kind-type-alias"},{"id":335,"kind":256,"name":"ClientSideListVouchersResponse","url":"interfaces/ClientSideListVouchersResponse.html","classes":"tsd-kind-interface"},{"id":336,"kind":1024,"name":"object","url":"interfaces/ClientSideListVouchersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":337,"kind":1024,"name":"total","url":"interfaces/ClientSideListVouchersResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":338,"kind":1024,"name":"data_ref","url":"interfaces/ClientSideListVouchersResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":339,"kind":1024,"name":"vouchers","url":"interfaces/ClientSideListVouchersResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideListVouchersResponse"},{"id":340,"kind":256,"name":"ClientSideValidateResponse","url":"interfaces/ClientSideValidateResponse.html","classes":"tsd-kind-interface"},{"id":341,"kind":1024,"name":"code","url":"interfaces/ClientSideValidateResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":342,"kind":1024,"name":"valid","url":"interfaces/ClientSideValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":343,"kind":1024,"name":"discount","url":"interfaces/ClientSideValidateResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":344,"kind":1024,"name":"applicable_to","url":"interfaces/ClientSideValidateResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":345,"kind":1024,"name":"order","url":"interfaces/ClientSideValidateResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":346,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":347,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.amount-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":348,"kind":1024,"name":"discount_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":349,"kind":1024,"name":"total_discount_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":350,"kind":1024,"name":"total_amount","url":"interfaces/ClientSideValidateResponse.html#__type-2.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":351,"kind":1024,"name":"items","url":"interfaces/ClientSideValidateResponse.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":352,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideValidateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":353,"kind":1024,"name":"campaign_id","url":"interfaces/ClientSideValidateResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":354,"kind":1024,"name":"loyalty","url":"interfaces/ClientSideValidateResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":355,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":356,"kind":1024,"name":"points_cost","url":"interfaces/ClientSideValidateResponse.html#__type-1.points_cost","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":357,"kind":1024,"name":"gift","url":"interfaces/ClientSideValidateResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":358,"kind":65536,"name":"__type","url":"interfaces/ClientSideValidateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":359,"kind":1024,"name":"amount","url":"interfaces/ClientSideValidateResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":360,"kind":1024,"name":"balance","url":"interfaces/ClientSideValidateResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideValidateResponse.__type"},{"id":361,"kind":1024,"name":"promotions","url":"interfaces/ClientSideValidateResponse.html#promotions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideValidateResponse"},{"id":362,"kind":256,"name":"ClientSideRedeemPayload","url":"interfaces/ClientSideRedeemPayload.html","classes":"tsd-kind-interface"},{"id":363,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideRedeemPayload.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":364,"kind":1024,"name":"customer","url":"interfaces/ClientSideRedeemPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":365,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemPayload.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":366,"kind":1024,"name":"metadata","url":"interfaces/ClientSideRedeemPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":367,"kind":1024,"name":"reward","url":"interfaces/ClientSideRedeemPayload.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":368,"kind":65536,"name":"__type","url":"interfaces/ClientSideRedeemPayload.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":369,"kind":1024,"name":"id","url":"interfaces/ClientSideRedeemPayload.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideRedeemPayload.__type"},{"id":370,"kind":1024,"name":"session","url":"interfaces/ClientSideRedeemPayload.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemPayload"},{"id":371,"kind":256,"name":"ClientSideRedeemResponse","url":"interfaces/ClientSideRedeemResponse.html","classes":"tsd-kind-interface"},{"id":372,"kind":1024,"name":"id","url":"interfaces/ClientSideRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":373,"kind":1024,"name":"object","url":"interfaces/ClientSideRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":374,"kind":1024,"name":"date","url":"interfaces/ClientSideRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":375,"kind":1024,"name":"customer_id","url":"interfaces/ClientSideRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":376,"kind":1024,"name":"tracking_id","url":"interfaces/ClientSideRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":377,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":378,"kind":1024,"name":"metadata","url":"interfaces/ClientSideRedeemResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":379,"kind":1024,"name":"result","url":"interfaces/ClientSideRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":380,"kind":1024,"name":"voucher","url":"interfaces/ClientSideRedeemResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemResponse"},{"id":381,"kind":256,"name":"ClientSidePublishPayload","url":"interfaces/ClientSidePublishPayload.html","classes":"tsd-kind-interface"},{"id":382,"kind":1024,"name":"source_id","url":"interfaces/ClientSidePublishPayload.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":383,"kind":1024,"name":"channel","url":"interfaces/ClientSidePublishPayload.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":384,"kind":1024,"name":"customer","url":"interfaces/ClientSidePublishPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":385,"kind":1024,"name":"voucher","url":"interfaces/ClientSidePublishPayload.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":386,"kind":1024,"name":"metadata","url":"interfaces/ClientSidePublishPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishPayload"},{"id":387,"kind":4194304,"name":"ClientSidePublishPreparedPayload","url":"modules.html#ClientSidePublishPreparedPayload","classes":"tsd-kind-type-alias"},{"id":388,"kind":256,"name":"ClientSidePublishQueryParams","url":"interfaces/ClientSidePublishQueryParams.html","classes":"tsd-kind-interface"},{"id":389,"kind":1024,"name":"join_once","url":"interfaces/ClientSidePublishQueryParams.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishQueryParams"},{"id":390,"kind":1024,"name":"campaign","url":"interfaces/ClientSidePublishQueryParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishQueryParams"},{"id":391,"kind":256,"name":"ClientSidePublishCampaign","url":"interfaces/ClientSidePublishCampaign.html","classes":"tsd-kind-interface"},{"id":392,"kind":1024,"name":"name","url":"interfaces/ClientSidePublishCampaign.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishCampaign"},{"id":393,"kind":1024,"name":"count","url":"interfaces/ClientSidePublishCampaign.html#count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSidePublishCampaign"},{"id":394,"kind":4194304,"name":"ClientSidePublishResponse","url":"modules.html#ClientSidePublishResponse","classes":"tsd-kind-type-alias"},{"id":395,"kind":256,"name":"ClientSideTrackLoyalty","url":"interfaces/ClientSideTrackLoyalty.html","classes":"tsd-kind-interface"},{"id":396,"kind":1024,"name":"code","url":"interfaces/ClientSideTrackLoyalty.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackLoyalty"},{"id":397,"kind":256,"name":"ClientSideTrackReferral","url":"interfaces/ClientSideTrackReferral.html","classes":"tsd-kind-interface"},{"id":398,"kind":1024,"name":"code","url":"interfaces/ClientSideTrackReferral.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackReferral"},{"id":399,"kind":256,"name":"ClientSideTrackPayload","url":"interfaces/ClientSideTrackPayload.html","classes":"tsd-kind-interface"},{"id":400,"kind":1024,"name":"event","url":"interfaces/ClientSideTrackPayload.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":401,"kind":1024,"name":"metadata","url":"interfaces/ClientSideTrackPayload.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":402,"kind":1024,"name":"customer","url":"interfaces/ClientSideTrackPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":403,"kind":1024,"name":"loyalty","url":"interfaces/ClientSideTrackPayload.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":404,"kind":1024,"name":"referral","url":"interfaces/ClientSideTrackPayload.html#referral","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackPayload"},{"id":405,"kind":256,"name":"ClientSideTrackResponse","url":"interfaces/ClientSideTrackResponse.html","classes":"tsd-kind-interface"},{"id":406,"kind":1024,"name":"object","url":"interfaces/ClientSideTrackResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackResponse"},{"id":407,"kind":1024,"name":"type","url":"interfaces/ClientSideTrackResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideTrackResponse"},{"id":408,"kind":4194304,"name":"ClientSideRedeemOrder","url":"modules.html#ClientSideRedeemOrder","classes":"tsd-kind-type-alias"},{"id":409,"kind":256,"name":"ClientSideRedeemWidgetPayload","url":"interfaces/ClientSideRedeemWidgetPayload.html","classes":"tsd-kind-interface"},{"id":410,"kind":1024,"name":"order","url":"interfaces/ClientSideRedeemWidgetPayload.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ClientSideRedeemWidgetPayload"},{"id":411,"kind":65536,"name":"__type","url":"interfaces/ClientSideRedeemWidgetPayload.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ClientSideRedeemWidgetPayload"},{"id":412,"kind":1024,"name":"amount","url":"interfaces/ClientSideRedeemWidgetPayload.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ClientSideRedeemWidgetPayload.__type"},{"id":413,"kind":4194304,"name":"ClientSideTrackCustomer","url":"modules.html#ClientSideTrackCustomer","classes":"tsd-kind-type-alias"},{"id":414,"kind":4194304,"name":"ClientSideConsentsListResponse","url":"modules.html#ClientSideConsentsListResponse","classes":"tsd-kind-type-alias"},{"id":415,"kind":4194304,"name":"ClientSideValidationsValidateStackableParams","url":"modules.html#ClientSideValidationsValidateStackableParams","classes":"tsd-kind-type-alias"},{"id":416,"kind":4194304,"name":"ClientSideValidationValidateStackableResponse","url":"modules.html#ClientSideValidationValidateStackableResponse","classes":"tsd-kind-type-alias"},{"id":417,"kind":4194304,"name":"ClientSideRedemptionsRedeemStackableParams","url":"modules.html#ClientSideRedemptionsRedeemStackableParams","classes":"tsd-kind-type-alias"},{"id":418,"kind":4194304,"name":"ClientSideRedemptionsRedeemStackableResponse","url":"modules.html#ClientSideRedemptionsRedeemStackableResponse","classes":"tsd-kind-type-alias"},{"id":419,"kind":256,"name":"RedemptionsRedeemBody","url":"interfaces/RedemptionsRedeemBody.html","classes":"tsd-kind-interface"},{"id":420,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemBody.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":421,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":422,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":423,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemBody.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":424,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRedeemBody.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":425,"kind":1024,"name":"gift","url":"interfaces/RedemptionsRedeemBody.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":426,"kind":1024,"name":"session","url":"interfaces/RedemptionsRedeemBody.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemBody"},{"id":427,"kind":256,"name":"RedemptionsRedeemResponse","url":"interfaces/RedemptionsRedeemResponse.html","classes":"tsd-kind-interface"},{"id":428,"kind":1024,"name":"id","url":"interfaces/RedemptionsRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":429,"kind":1024,"name":"object","url":"interfaces/RedemptionsRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":430,"kind":1024,"name":"date","url":"interfaces/RedemptionsRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":431,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":432,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":433,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":434,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":435,"kind":1024,"name":"result","url":"interfaces/RedemptionsRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":436,"kind":1024,"name":"voucher","url":"interfaces/RedemptionsRedeemResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":437,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":438,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRedeemResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":439,"kind":1024,"name":"related_object_type","url":"interfaces/RedemptionsRedeemResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":440,"kind":1024,"name":"gift","url":"interfaces/RedemptionsRedeemResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":441,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":442,"kind":1024,"name":"amount","url":"interfaces/RedemptionsRedeemResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemResponse.__type"},{"id":443,"kind":1024,"name":"loyalty_card","url":"interfaces/RedemptionsRedeemResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":444,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":445,"kind":1024,"name":"points","url":"interfaces/RedemptionsRedeemResponse.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemResponse.__type"},{"id":446,"kind":1024,"name":"promotion_tier","url":"interfaces/RedemptionsRedeemResponse.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":447,"kind":1024,"name":"failure_code","url":"interfaces/RedemptionsRedeemResponse.html#failure_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":448,"kind":1024,"name":"failure_message","url":"interfaces/RedemptionsRedeemResponse.html#failure_message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemResponse"},{"id":449,"kind":256,"name":"RedemptionsListParams","url":"interfaces/RedemptionsListParams.html","classes":"tsd-kind-interface"},{"id":450,"kind":1024,"name":"limit","url":"interfaces/RedemptionsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":451,"kind":1024,"name":"page","url":"interfaces/RedemptionsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":452,"kind":1024,"name":"result","url":"interfaces/RedemptionsListParams.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":453,"kind":1024,"name":"campaign","url":"interfaces/RedemptionsListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":454,"kind":1024,"name":"customer","url":"interfaces/RedemptionsListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":455,"kind":1024,"name":"created_at","url":"interfaces/RedemptionsListParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":456,"kind":65536,"name":"__type","url":"interfaces/RedemptionsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsListParams"},{"id":457,"kind":1024,"name":"before","url":"interfaces/RedemptionsListParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsListParams.__type"},{"id":458,"kind":1024,"name":"after","url":"interfaces/RedemptionsListParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsListParams.__type"},{"id":459,"kind":256,"name":"Redemption","url":"interfaces/Redemption.html","classes":"tsd-kind-interface"},{"id":460,"kind":1024,"name":"id","url":"interfaces/Redemption.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":461,"kind":1024,"name":"object","url":"interfaces/Redemption.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":462,"kind":1024,"name":"date","url":"interfaces/Redemption.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":463,"kind":1024,"name":"customer_id","url":"interfaces/Redemption.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":464,"kind":1024,"name":"tracking_id","url":"interfaces/Redemption.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":465,"kind":1024,"name":"order","url":"interfaces/Redemption.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":466,"kind":1024,"name":"metadata","url":"interfaces/Redemption.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":467,"kind":1024,"name":"result","url":"interfaces/Redemption.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":468,"kind":1024,"name":"failure_code","url":"interfaces/Redemption.html#failure_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":469,"kind":1024,"name":"failure_message","url":"interfaces/Redemption.html#failure_message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":470,"kind":1024,"name":"customer","url":"interfaces/Redemption.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":471,"kind":1024,"name":"related_object_type","url":"interfaces/Redemption.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":472,"kind":1024,"name":"voucher","url":"interfaces/Redemption.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":473,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":474,"kind":1024,"name":"code","url":"interfaces/Redemption.html#__type-2.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":475,"kind":1024,"name":"campaign","url":"interfaces/Redemption.html#__type-2.campaign","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":476,"kind":1024,"name":"id","url":"interfaces/Redemption.html#__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":477,"kind":1024,"name":"object","url":"interfaces/Redemption.html#__type-2.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":478,"kind":1024,"name":"campaign_id","url":"interfaces/Redemption.html#__type-2.campaign_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":479,"kind":1024,"name":"gift","url":"interfaces/Redemption.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":480,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":481,"kind":1024,"name":"amount","url":"interfaces/Redemption.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":482,"kind":1024,"name":"loyalty_card","url":"interfaces/Redemption.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Redemption"},{"id":483,"kind":65536,"name":"__type","url":"interfaces/Redemption.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"Redemption"},{"id":484,"kind":1024,"name":"points","url":"interfaces/Redemption.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Redemption.__type"},{"id":485,"kind":256,"name":"RedemptionsListResponse","url":"interfaces/RedemptionsListResponse.html","classes":"tsd-kind-interface"},{"id":486,"kind":1024,"name":"object","url":"interfaces/RedemptionsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":487,"kind":1024,"name":"total","url":"interfaces/RedemptionsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":488,"kind":1024,"name":"data_ref","url":"interfaces/RedemptionsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":489,"kind":1024,"name":"redemptions","url":"interfaces/RedemptionsListResponse.html#redemptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsListResponse"},{"id":490,"kind":256,"name":"RedemptionsGetForVoucherResponse","url":"interfaces/RedemptionsGetForVoucherResponse.html","classes":"tsd-kind-interface"},{"id":491,"kind":1024,"name":"object","url":"interfaces/RedemptionsGetForVoucherResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":492,"kind":1024,"name":"total","url":"interfaces/RedemptionsGetForVoucherResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":493,"kind":1024,"name":"data_ref","url":"interfaces/RedemptionsGetForVoucherResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":494,"kind":1024,"name":"quantity","url":"interfaces/RedemptionsGetForVoucherResponse.html#quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":495,"kind":1024,"name":"redeemed_quantity","url":"interfaces/RedemptionsGetForVoucherResponse.html#redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":496,"kind":1024,"name":"redeemed_amount","url":"interfaces/RedemptionsGetForVoucherResponse.html#redeemed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":497,"kind":1024,"name":"redemption_entries","url":"interfaces/RedemptionsGetForVoucherResponse.html#redemption_entries","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsGetForVoucherResponse"},{"id":498,"kind":256,"name":"RedemptionsRollbackParams","url":"interfaces/RedemptionsRollbackParams.html","classes":"tsd-kind-interface"},{"id":499,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackParams.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":500,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":501,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackParams"},{"id":502,"kind":256,"name":"RedemptionsRollbackQueryParams","url":"interfaces/RedemptionsRollbackQueryParams.html","classes":"tsd-kind-interface"},{"id":503,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackQueryParams.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackQueryParams"},{"id":504,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackQueryParams.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackQueryParams"},{"id":505,"kind":256,"name":"RedemptionsRollbackPayload","url":"interfaces/RedemptionsRollbackPayload.html","classes":"tsd-kind-interface"},{"id":506,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackPayload.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackPayload"},{"id":507,"kind":256,"name":"RedemptionsRollbackResponse","url":"interfaces/RedemptionsRollbackResponse.html","classes":"tsd-kind-interface"},{"id":508,"kind":1024,"name":"id","url":"interfaces/RedemptionsRollbackResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":509,"kind":1024,"name":"object","url":"interfaces/RedemptionsRollbackResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":510,"kind":1024,"name":"date","url":"interfaces/RedemptionsRollbackResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":511,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRollbackResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":512,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":513,"kind":1024,"name":"redemption","url":"interfaces/RedemptionsRollbackResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":514,"kind":1024,"name":"amount","url":"interfaces/RedemptionsRollbackResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":515,"kind":1024,"name":"reason","url":"interfaces/RedemptionsRollbackResponse.html#reason","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":516,"kind":1024,"name":"result","url":"interfaces/RedemptionsRollbackResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":517,"kind":1024,"name":"voucher","url":"interfaces/RedemptionsRollbackResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":518,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":519,"kind":1024,"name":"reward","url":"interfaces/RedemptionsRollbackResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":520,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRollbackResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRollbackResponse"},{"id":521,"kind":1024,"name":"assignment_id","url":"interfaces/RedemptionsRollbackResponse.html#__type.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackResponse.__type"},{"id":522,"kind":1024,"name":"object","url":"interfaces/RedemptionsRollbackResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackResponse.__type"},{"id":523,"kind":4194304,"name":"SimpleRollback","url":"modules.html#SimpleRollback","classes":"tsd-kind-type-alias"},{"id":524,"kind":256,"name":"RedemptionsRedeemStackableParams","url":"interfaces/RedemptionsRedeemStackableParams.html","classes":"tsd-kind-interface"},{"id":525,"kind":1024,"name":"options","url":"interfaces/RedemptionsRedeemStackableParams.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":526,"kind":1024,"name":"redeemables","url":"interfaces/RedemptionsRedeemStackableParams.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":527,"kind":1024,"name":"session","url":"interfaces/RedemptionsRedeemStackableParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":528,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":529,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemStackableParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":530,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemStackableParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableParams"},{"id":531,"kind":4194304,"name":"RedemptionsRedeemStackableRedemptionResult","url":"modules.html#RedemptionsRedeemStackableRedemptionResult","classes":"tsd-kind-type-alias"},{"id":532,"kind":4194304,"name":"RedemptionsRedeemStackableOrderResponse","url":"modules.html#RedemptionsRedeemStackableOrderResponse","classes":"tsd-kind-type-alias"},{"id":533,"kind":256,"name":"RedemptionsRedeemStackableResponse","url":"interfaces/RedemptionsRedeemStackableResponse.html","classes":"tsd-kind-interface"},{"id":534,"kind":1024,"name":"redemptions","url":"interfaces/RedemptionsRedeemStackableResponse.html#redemptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":535,"kind":1024,"name":"parent_redemption","url":"interfaces/RedemptionsRedeemStackableResponse.html#parent_redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":536,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":537,"kind":1024,"name":"id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":538,"kind":1024,"name":"object","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":539,"kind":1024,"name":"date","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":540,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":541,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.tracking_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":542,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":543,"kind":1024,"name":"result","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.result","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":544,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.order-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":545,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":546,"kind":1024,"name":"related_object_type","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.related_object_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":547,"kind":1024,"name":"related_object_id","url":"interfaces/RedemptionsRedeemStackableResponse.html#__type.related_object_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRedeemStackableResponse.__type"},{"id":548,"kind":1024,"name":"order","url":"interfaces/RedemptionsRedeemStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRedeemStackableResponse"},{"id":549,"kind":256,"name":"RedemptionsRollbackStackableResponse","url":"interfaces/RedemptionsRollbackStackableResponse.html","classes":"tsd-kind-interface"},{"id":550,"kind":1024,"name":"rollbacks","url":"interfaces/RedemptionsRollbackStackableResponse.html#rollbacks","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":551,"kind":1024,"name":"parent_rollback","url":"interfaces/RedemptionsRollbackStackableResponse.html#parent_rollback","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":552,"kind":65536,"name":"__type","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":553,"kind":1024,"name":"id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":554,"kind":1024,"name":"date","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":555,"kind":1024,"name":"customer_id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.customer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":556,"kind":1024,"name":"tracking_id","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.tracking_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":557,"kind":1024,"name":"metadata","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":558,"kind":1024,"name":"result","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.result","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":559,"kind":1024,"name":"order","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.order-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":560,"kind":1024,"name":"customer","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.customer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":561,"kind":1024,"name":"redemption","url":"interfaces/RedemptionsRollbackStackableResponse.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RedemptionsRollbackStackableResponse.__type"},{"id":562,"kind":1024,"name":"order","url":"interfaces/RedemptionsRollbackStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RedemptionsRollbackStackableResponse"},{"id":563,"kind":256,"name":"ValidationsValidateVoucherParams","url":"interfaces/ValidationsValidateVoucherParams.html","classes":"tsd-kind-interface"},{"id":564,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateVoucherParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":565,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":566,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":567,"kind":1024,"name":"source_id","url":"interfaces/ValidationsValidateVoucherParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":568,"kind":1024,"name":"name","url":"interfaces/ValidationsValidateVoucherParams.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":569,"kind":1024,"name":"email","url":"interfaces/ValidationsValidateVoucherParams.html#__type.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":570,"kind":1024,"name":"description","url":"interfaces/ValidationsValidateVoucherParams.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":571,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherParams.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":572,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateVoucherParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":573,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":574,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":575,"kind":1024,"name":"source_id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.source_id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":576,"kind":1024,"name":"amount","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":577,"kind":1024,"name":"items","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":578,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherParams.html#__type-2.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":579,"kind":1024,"name":"gift","url":"interfaces/ValidationsValidateVoucherParams.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":580,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":581,"kind":1024,"name":"credits","url":"interfaces/ValidationsValidateVoucherParams.html#__type-1.credits","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":582,"kind":1024,"name":"reward","url":"interfaces/ValidationsValidateVoucherParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":583,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherParams.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":584,"kind":1024,"name":"id","url":"interfaces/ValidationsValidateVoucherParams.html#__type-3.id-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherParams.__type"},{"id":585,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateVoucherParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherParams"},{"id":586,"kind":256,"name":"ValidationsValidateVoucherResponse","url":"interfaces/ValidationsValidateVoucherResponse.html","classes":"tsd-kind-interface"},{"id":587,"kind":1024,"name":"applicable_to","url":"interfaces/ValidationsValidateVoucherResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":588,"kind":1024,"name":"inapplicable_to","url":"interfaces/ValidationsValidateVoucherResponse.html#inapplicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":589,"kind":1024,"name":"campaign","url":"interfaces/ValidationsValidateVoucherResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":590,"kind":1024,"name":"campaign_id","url":"interfaces/ValidationsValidateVoucherResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":591,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":592,"kind":1024,"name":"code","url":"interfaces/ValidationsValidateVoucherResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":593,"kind":1024,"name":"valid","url":"interfaces/ValidationsValidateVoucherResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":594,"kind":1024,"name":"discount","url":"interfaces/ValidationsValidateVoucherResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":595,"kind":1024,"name":"gift","url":"interfaces/ValidationsValidateVoucherResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":596,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":597,"kind":1024,"name":"amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":598,"kind":1024,"name":"balance","url":"interfaces/ValidationsValidateVoucherResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":599,"kind":1024,"name":"loyalty","url":"interfaces/ValidationsValidateVoucherResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":600,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":601,"kind":1024,"name":"points_cost","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-1.points_cost","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":602,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateVoucherResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":603,"kind":65536,"name":"__type","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":604,"kind":1024,"name":"amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.amount-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":605,"kind":1024,"name":"discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":606,"kind":1024,"name":"total_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":607,"kind":1024,"name":"total_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.total_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":608,"kind":1024,"name":"applied_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":609,"kind":1024,"name":"total_applied_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.total_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":610,"kind":1024,"name":"items","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":611,"kind":1024,"name":"initial_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.initial_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":612,"kind":1024,"name":"items_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.items_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":613,"kind":1024,"name":"items_applied_discount_amount","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.items_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":614,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateVoucherResponse.html#__type-2.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationsValidateVoucherResponse.__type"},{"id":615,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateVoucherResponse.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":616,"kind":1024,"name":"start_date","url":"interfaces/ValidationsValidateVoucherResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":617,"kind":1024,"name":"expiration_date","url":"interfaces/ValidationsValidateVoucherResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":618,"kind":1024,"name":"tracking_id","url":"interfaces/ValidationsValidateVoucherResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":619,"kind":1024,"name":"error","url":"interfaces/ValidationsValidateVoucherResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateVoucherResponse"},{"id":620,"kind":256,"name":"ValidationsValidateStackableParams","url":"interfaces/ValidationsValidateStackableParams.html","classes":"tsd-kind-interface"},{"id":621,"kind":1024,"name":"options","url":"interfaces/ValidationsValidateStackableParams.html#options","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":622,"kind":1024,"name":"redeemables","url":"interfaces/ValidationsValidateStackableParams.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":623,"kind":1024,"name":"session","url":"interfaces/ValidationsValidateStackableParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":624,"kind":1024,"name":"order","url":"interfaces/ValidationsValidateStackableParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":625,"kind":1024,"name":"customer","url":"interfaces/ValidationsValidateStackableParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":626,"kind":1024,"name":"metadata","url":"interfaces/ValidationsValidateStackableParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationsValidateStackableParams"},{"id":627,"kind":256,"name":"ValidationValidateStackableResponse","url":"interfaces/ValidationValidateStackableResponse.html","classes":"tsd-kind-interface"},{"id":628,"kind":1024,"name":"valid","url":"interfaces/ValidationValidateStackableResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":629,"kind":1024,"name":"tracking_id","url":"interfaces/ValidationValidateStackableResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":630,"kind":1024,"name":"session","url":"interfaces/ValidationValidateStackableResponse.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":631,"kind":1024,"name":"order","url":"interfaces/ValidationValidateStackableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":632,"kind":1024,"name":"redeemables","url":"interfaces/ValidationValidateStackableResponse.html#redeemables","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationValidateStackableResponse"},{"id":633,"kind":4194304,"name":"ValidationsValidateCode","url":"modules.html#ValidationsValidateCode","classes":"tsd-kind-type-alias"},{"id":634,"kind":4194304,"name":"ValidationsValidateContext","url":"modules.html#ValidationsValidateContext","classes":"tsd-kind-type-alias"},{"id":635,"kind":256,"name":"CampaignResponse","url":"interfaces/CampaignResponse.html","classes":"tsd-kind-interface"},{"id":636,"kind":1024,"name":"id","url":"interfaces/CampaignResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":637,"kind":1024,"name":"name","url":"interfaces/CampaignResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":638,"kind":1024,"name":"campaign_type","url":"interfaces/CampaignResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":639,"kind":1024,"name":"type","url":"interfaces/CampaignResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":640,"kind":1024,"name":"category","url":"interfaces/CampaignResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":641,"kind":1024,"name":"auto_join","url":"interfaces/CampaignResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":642,"kind":1024,"name":"join_once","url":"interfaces/CampaignResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":643,"kind":1024,"name":"description","url":"interfaces/CampaignResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":644,"kind":1024,"name":"start_date","url":"interfaces/CampaignResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":645,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/CampaignResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":646,"kind":65536,"name":"__type","url":"interfaces/CampaignResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":647,"kind":1024,"name":"data","url":"interfaces/CampaignResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":648,"kind":1024,"name":"object","url":"interfaces/CampaignResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":649,"kind":1024,"name":"total","url":"interfaces/CampaignResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":650,"kind":1024,"name":"data_ref","url":"interfaces/CampaignResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":651,"kind":1024,"name":"expiration_date","url":"interfaces/CampaignResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":652,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/CampaignResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":653,"kind":1024,"name":"validity_timeframe","url":"interfaces/CampaignResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":654,"kind":65536,"name":"__type","url":"interfaces/CampaignResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":655,"kind":1024,"name":"interval","url":"interfaces/CampaignResponse.html#__type-1.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":656,"kind":1024,"name":"duration","url":"interfaces/CampaignResponse.html#__type-1.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignResponse.__type"},{"id":657,"kind":1024,"name":"validity_day_of_week","url":"interfaces/CampaignResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":658,"kind":1024,"name":"metadata","url":"interfaces/CampaignResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":659,"kind":1024,"name":"created_at","url":"interfaces/CampaignResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":660,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/CampaignResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":661,"kind":1024,"name":"active","url":"interfaces/CampaignResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":662,"kind":1024,"name":"voucher","url":"interfaces/CampaignResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":663,"kind":1024,"name":"referral_program","url":"interfaces/CampaignResponse.html#referral_program","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":664,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/CampaignResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":665,"kind":1024,"name":"protected","url":"interfaces/CampaignResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":666,"kind":1024,"name":"vouchers_count","url":"interfaces/CampaignResponse.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":667,"kind":1024,"name":"object","url":"interfaces/CampaignResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignResponse"},{"id":668,"kind":256,"name":"CampaignsQualificationsBody","url":"interfaces/CampaignsQualificationsBody.html","classes":"tsd-kind-interface"},{"id":669,"kind":1024,"name":"customer","url":"interfaces/CampaignsQualificationsBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsBody"},{"id":670,"kind":1024,"name":"order","url":"interfaces/CampaignsQualificationsBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsBody"},{"id":671,"kind":256,"name":"CampaignsQualificationsParams","url":"interfaces/CampaignsQualificationsParams.html","classes":"tsd-kind-interface"},{"id":672,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/CampaignsQualificationsParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":673,"kind":1024,"name":"order","url":"interfaces/CampaignsQualificationsParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":674,"kind":1024,"name":"limit","url":"interfaces/CampaignsQualificationsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsParams"},{"id":675,"kind":256,"name":"CampaignsQualificationsResponse","url":"interfaces/CampaignsQualificationsResponse.html","classes":"tsd-kind-interface"},{"id":676,"kind":1024,"name":"object","url":"interfaces/CampaignsQualificationsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":677,"kind":1024,"name":"total","url":"interfaces/CampaignsQualificationsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":678,"kind":1024,"name":"data_ref","url":"interfaces/CampaignsQualificationsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":679,"kind":1024,"name":"data","url":"interfaces/CampaignsQualificationsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":680,"kind":1024,"name":"id","url":"interfaces/CampaignsQualificationsResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":681,"kind":1024,"name":"created_at","url":"interfaces/CampaignsQualificationsResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsQualificationsResponse"},{"id":682,"kind":4194304,"name":"CampaignsCreateCampaign","url":"modules.html#CampaignsCreateCampaign","classes":"tsd-kind-type-alias"},{"id":683,"kind":4194304,"name":"CampaignsUpdateCampaign","url":"modules.html#CampaignsUpdateCampaign","classes":"tsd-kind-type-alias"},{"id":684,"kind":256,"name":"CampaignsDeleteParams","url":"interfaces/CampaignsDeleteParams.html","classes":"tsd-kind-interface"},{"id":685,"kind":1024,"name":"force","url":"interfaces/CampaignsDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsDeleteParams"},{"id":686,"kind":4194304,"name":"CampaignsAddVoucherBody","url":"modules.html#CampaignsAddVoucherBody","classes":"tsd-kind-type-alias"},{"id":687,"kind":256,"name":"CampaignsAddVoucherParams","url":"interfaces/CampaignsAddVoucherParams.html","classes":"tsd-kind-interface"},{"id":688,"kind":1024,"name":"vouchers_count","url":"interfaces/CampaignsAddVoucherParams.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsAddVoucherParams"},{"id":689,"kind":4194304,"name":"CampaignsAddCertainVoucherParams","url":"modules.html#CampaignsAddCertainVoucherParams","classes":"tsd-kind-type-alias"},{"id":690,"kind":4194304,"name":"CampaignsAddVoucherResponse","url":"modules.html#CampaignsAddVoucherResponse","classes":"tsd-kind-type-alias"},{"id":691,"kind":4194304,"name":"CampaignsAddCertainVoucherResponse","url":"modules.html#CampaignsAddCertainVoucherResponse","classes":"tsd-kind-type-alias"},{"id":692,"kind":4194304,"name":"CampaignsImportVouchers","url":"modules.html#CampaignsImportVouchers","classes":"tsd-kind-type-alias"},{"id":693,"kind":256,"name":"CampaignsListParams","url":"interfaces/CampaignsListParams.html","classes":"tsd-kind-interface"},{"id":694,"kind":1024,"name":"limit","url":"interfaces/CampaignsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":695,"kind":1024,"name":"page","url":"interfaces/CampaignsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":696,"kind":1024,"name":"campaign_type","url":"interfaces/CampaignsListParams.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":697,"kind":1024,"name":"filters","url":"interfaces/CampaignsListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":698,"kind":65536,"name":"__type","url":"interfaces/CampaignsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"CampaignsListParams"},{"id":699,"kind":1024,"name":"junction","url":"interfaces/CampaignsListParams.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignsListParams.__type"},{"id":700,"kind":256,"name":"CampaignsListResponse","url":"interfaces/CampaignsListResponse.html","classes":"tsd-kind-interface"},{"id":701,"kind":1024,"name":"object","url":"interfaces/CampaignsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":702,"kind":1024,"name":"total","url":"interfaces/CampaignsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":703,"kind":1024,"name":"data_ref","url":"interfaces/CampaignsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":704,"kind":1024,"name":"campaigns","url":"interfaces/CampaignsListResponse.html#campaigns","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CampaignsListResponse"},{"id":705,"kind":4194304,"name":"CampaignsVouchersImportResponse","url":"modules.html#CampaignsVouchersImportResponse","classes":"tsd-kind-type-alias"},{"id":706,"kind":65536,"name":"__type","url":"modules.html#CampaignsVouchersImportResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"CampaignsVouchersImportResponse"},{"id":707,"kind":1024,"name":"async_action_id","url":"modules.html#CampaignsVouchersImportResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CampaignsVouchersImportResponse.__type"},{"id":708,"kind":4194304,"name":"CampaignsCreateCampaignResponse","url":"modules.html#CampaignsCreateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":709,"kind":4194304,"name":"CampaignsUpdateCampaignResponse","url":"modules.html#CampaignsUpdateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":710,"kind":4194304,"name":"CampaignsGetCampaignResponse","url":"modules.html#CampaignsGetCampaignResponse","classes":"tsd-kind-type-alias"},{"id":711,"kind":256,"name":"SimplePromotionTier","url":"interfaces/SimplePromotionTier.html","classes":"tsd-kind-interface"},{"id":712,"kind":1024,"name":"tracking_id","url":"interfaces/SimplePromotionTier.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":713,"kind":1024,"name":"metadata","url":"interfaces/SimplePromotionTier.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":714,"kind":1024,"name":"valid","url":"interfaces/SimplePromotionTier.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":715,"kind":1024,"name":"id","url":"interfaces/SimplePromotionTier.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":716,"kind":1024,"name":"name","url":"interfaces/SimplePromotionTier.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":717,"kind":1024,"name":"banner","url":"interfaces/SimplePromotionTier.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":718,"kind":1024,"name":"discount","url":"interfaces/SimplePromotionTier.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":719,"kind":1024,"name":"hierarchy","url":"interfaces/SimplePromotionTier.html#hierarchy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":720,"kind":1024,"name":"object","url":"interfaces/SimplePromotionTier.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimplePromotionTier"},{"id":721,"kind":256,"name":"PromotionTier","url":"interfaces/PromotionTier.html","classes":"tsd-kind-interface"},{"id":722,"kind":1024,"name":"id","url":"interfaces/PromotionTier.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":723,"kind":1024,"name":"object","url":"interfaces/PromotionTier.html#object-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":724,"kind":1024,"name":"name","url":"interfaces/PromotionTier.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":725,"kind":1024,"name":"banner","url":"interfaces/PromotionTier.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":726,"kind":1024,"name":"campaign","url":"interfaces/PromotionTier.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":727,"kind":65536,"name":"__type","url":"interfaces/PromotionTier.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTier"},{"id":728,"kind":1024,"name":"id","url":"interfaces/PromotionTier.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":729,"kind":1024,"name":"object","url":"interfaces/PromotionTier.html#__type-1.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":730,"kind":1024,"name":"start_date","url":"interfaces/PromotionTier.html#__type-1.start_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":731,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionTier.html#__type-1.expiration_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":732,"kind":1024,"name":"active","url":"interfaces/PromotionTier.html#__type-1.active-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":733,"kind":1024,"name":"validation_rule_assignments","url":"interfaces/PromotionTier.html#validation_rule_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":734,"kind":1024,"name":"action","url":"interfaces/PromotionTier.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":735,"kind":65536,"name":"__type","url":"interfaces/PromotionTier.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTier"},{"id":736,"kind":1024,"name":"discount","url":"interfaces/PromotionTier.html#__type.discount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTier.__type"},{"id":737,"kind":1024,"name":"hierarchy","url":"interfaces/PromotionTier.html#hierarchy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":738,"kind":1024,"name":"metadata","url":"interfaces/PromotionTier.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":739,"kind":1024,"name":"active","url":"interfaces/PromotionTier.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTier"},{"id":740,"kind":256,"name":"PromotionTiersListAllParams","url":"interfaces/PromotionTiersListAllParams.html","classes":"tsd-kind-interface"},{"id":741,"kind":1024,"name":"is_available","url":"interfaces/PromotionTiersListAllParams.html#is_available","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":742,"kind":1024,"name":"limit","url":"interfaces/PromotionTiersListAllParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":743,"kind":1024,"name":"page","url":"interfaces/PromotionTiersListAllParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllParams"},{"id":744,"kind":256,"name":"PromotionTiersListAllResponse","url":"interfaces/PromotionTiersListAllResponse.html","classes":"tsd-kind-interface"},{"id":745,"kind":1024,"name":"object","url":"interfaces/PromotionTiersListAllResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":746,"kind":1024,"name":"data_ref","url":"interfaces/PromotionTiersListAllResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":747,"kind":1024,"name":"tiers","url":"interfaces/PromotionTiersListAllResponse.html#tiers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":748,"kind":1024,"name":"has_more","url":"interfaces/PromotionTiersListAllResponse.html#has_more","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersListAllResponse"},{"id":749,"kind":4194304,"name":"PromotionTiersListResponse","url":"modules.html#PromotionTiersListResponse","classes":"tsd-kind-type-alias"},{"id":750,"kind":4194304,"name":"PromotionTierGetResponse","url":"modules.html#PromotionTierGetResponse","classes":"tsd-kind-type-alias"},{"id":751,"kind":256,"name":"PromotionTiersCreateParams","url":"interfaces/PromotionTiersCreateParams.html","classes":"tsd-kind-interface"},{"id":752,"kind":1024,"name":"name","url":"interfaces/PromotionTiersCreateParams.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":753,"kind":1024,"name":"banner","url":"interfaces/PromotionTiersCreateParams.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":754,"kind":1024,"name":"action","url":"interfaces/PromotionTiersCreateParams.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":755,"kind":65536,"name":"__type","url":"interfaces/PromotionTiersCreateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":756,"kind":1024,"name":"discount","url":"interfaces/PromotionTiersCreateParams.html#__type.discount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersCreateParams.__type"},{"id":757,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersCreateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersCreateParams"},{"id":758,"kind":4194304,"name":"PromotionTiersCreateResponse","url":"modules.html#PromotionTiersCreateResponse","classes":"tsd-kind-type-alias"},{"id":759,"kind":256,"name":"PromotionTiersRedeemParams","url":"interfaces/PromotionTiersRedeemParams.html","classes":"tsd-kind-interface"},{"id":760,"kind":1024,"name":"customer","url":"interfaces/PromotionTiersRedeemParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":761,"kind":1024,"name":"order","url":"interfaces/PromotionTiersRedeemParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":762,"kind":65536,"name":"__type","url":"interfaces/PromotionTiersRedeemParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":763,"kind":1024,"name":"id","url":"interfaces/PromotionTiersRedeemParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":764,"kind":1024,"name":"source_id","url":"interfaces/PromotionTiersRedeemParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":765,"kind":1024,"name":"amount","url":"interfaces/PromotionTiersRedeemParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":766,"kind":1024,"name":"items","url":"interfaces/PromotionTiersRedeemParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":767,"kind":1024,"name":"status","url":"interfaces/PromotionTiersRedeemParams.html#__type.status","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":768,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersRedeemParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTiersRedeemParams.__type"},{"id":769,"kind":1024,"name":"metadata","url":"interfaces/PromotionTiersRedeemParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":770,"kind":1024,"name":"session","url":"interfaces/PromotionTiersRedeemParams.html#session","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemParams"},{"id":771,"kind":256,"name":"PromotionTiersRedeemResponse","url":"interfaces/PromotionTiersRedeemResponse.html","classes":"tsd-kind-interface"},{"id":772,"kind":1024,"name":"id","url":"interfaces/PromotionTiersRedeemResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":773,"kind":1024,"name":"object","url":"interfaces/PromotionTiersRedeemResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":774,"kind":1024,"name":"date","url":"interfaces/PromotionTiersRedeemResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":775,"kind":1024,"name":"customer_id","url":"interfaces/PromotionTiersRedeemResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":776,"kind":1024,"name":"tracking_id","url":"interfaces/PromotionTiersRedeemResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":777,"kind":1024,"name":"order","url":"interfaces/PromotionTiersRedeemResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":778,"kind":1024,"name":"result","url":"interfaces/PromotionTiersRedeemResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":779,"kind":1024,"name":"promotion_tier","url":"interfaces/PromotionTiersRedeemResponse.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTiersRedeemResponse"},{"id":780,"kind":256,"name":"PromotionTierRedeemDetailsSimple","url":"interfaces/PromotionTierRedeemDetailsSimple.html","classes":"tsd-kind-interface"},{"id":781,"kind":1024,"name":"id","url":"interfaces/PromotionTierRedeemDetailsSimple.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":782,"kind":1024,"name":"name","url":"interfaces/PromotionTierRedeemDetailsSimple.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":783,"kind":1024,"name":"banner","url":"interfaces/PromotionTierRedeemDetailsSimple.html#banner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":784,"kind":1024,"name":"campaign","url":"interfaces/PromotionTierRedeemDetailsSimple.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":785,"kind":65536,"name":"__type","url":"interfaces/PromotionTierRedeemDetailsSimple.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionTierRedeemDetailsSimple"},{"id":786,"kind":1024,"name":"id","url":"interfaces/PromotionTierRedeemDetailsSimple.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionTierRedeemDetailsSimple.__type"},{"id":787,"kind":4194304,"name":"PromotionTierRedeemDetails","url":"modules.html#PromotionTierRedeemDetails","classes":"tsd-kind-type-alias"},{"id":788,"kind":4194304,"name":"PromotionTiersUpdateParams","url":"modules.html#PromotionTiersUpdateParams","classes":"tsd-kind-type-alias"},{"id":789,"kind":4194304,"name":"PromotionTiersUpdateResponse","url":"modules.html#PromotionTiersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":790,"kind":256,"name":"PromotionsCreateResponse","url":"interfaces/PromotionsCreateResponse.html","classes":"tsd-kind-interface"},{"id":791,"kind":1024,"name":"id","url":"interfaces/PromotionsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":792,"kind":1024,"name":"name","url":"interfaces/PromotionsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":793,"kind":1024,"name":"campaign_type","url":"interfaces/PromotionsCreateResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":794,"kind":1024,"name":"type","url":"interfaces/PromotionsCreateResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":795,"kind":1024,"name":"description","url":"interfaces/PromotionsCreateResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":796,"kind":1024,"name":"start_date","url":"interfaces/PromotionsCreateResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":797,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionsCreateResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":798,"kind":1024,"name":"promotion","url":"interfaces/PromotionsCreateResponse.html#promotion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":799,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":800,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":801,"kind":1024,"name":"data_ref","url":"interfaces/PromotionsCreateResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":802,"kind":1024,"name":"tiers","url":"interfaces/PromotionsCreateResponse.html#__type.tiers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":803,"kind":1024,"name":"has_more","url":"interfaces/PromotionsCreateResponse.html#__type.has_more","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":804,"kind":1024,"name":"category","url":"interfaces/PromotionsCreateResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":805,"kind":1024,"name":"auto_join","url":"interfaces/PromotionsCreateResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":806,"kind":1024,"name":"join_once","url":"interfaces/PromotionsCreateResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":807,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/PromotionsCreateResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":808,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":809,"kind":1024,"name":"data","url":"interfaces/PromotionsCreateResponse.html#__type-1.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":810,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#__type-1.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":811,"kind":1024,"name":"total","url":"interfaces/PromotionsCreateResponse.html#__type-1.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":812,"kind":1024,"name":"data_ref","url":"interfaces/PromotionsCreateResponse.html#__type-1.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":813,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/PromotionsCreateResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":814,"kind":1024,"name":"validity_timeframe","url":"interfaces/PromotionsCreateResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":815,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":816,"kind":1024,"name":"interval","url":"interfaces/PromotionsCreateResponse.html#__type-2.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":817,"kind":1024,"name":"duration","url":"interfaces/PromotionsCreateResponse.html#__type-2.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreateResponse.__type"},{"id":818,"kind":1024,"name":"validity_day_of_week","url":"interfaces/PromotionsCreateResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":819,"kind":1024,"name":"metadata","url":"interfaces/PromotionsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":820,"kind":1024,"name":"created_at","url":"interfaces/PromotionsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":821,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/PromotionsCreateResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":822,"kind":1024,"name":"active","url":"interfaces/PromotionsCreateResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":823,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/PromotionsCreateResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":824,"kind":1024,"name":"protected","url":"interfaces/PromotionsCreateResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":825,"kind":1024,"name":"object","url":"interfaces/PromotionsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreateResponse"},{"id":826,"kind":256,"name":"PromotionsCreate","url":"interfaces/PromotionsCreate.html","classes":"tsd-kind-interface"},{"id":827,"kind":1024,"name":"name","url":"interfaces/PromotionsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":828,"kind":1024,"name":"campaign_type","url":"interfaces/PromotionsCreate.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":829,"kind":1024,"name":"start_date","url":"interfaces/PromotionsCreate.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":830,"kind":1024,"name":"expiration_date","url":"interfaces/PromotionsCreate.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":831,"kind":1024,"name":"promotion","url":"interfaces/PromotionsCreate.html#promotion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":832,"kind":65536,"name":"__type","url":"interfaces/PromotionsCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsCreate"},{"id":833,"kind":1024,"name":"tiers","url":"interfaces/PromotionsCreate.html#__type.tiers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsCreate.__type"},{"id":834,"kind":256,"name":"PromotionsValidateParams","url":"interfaces/PromotionsValidateParams.html","classes":"tsd-kind-interface"},{"id":835,"kind":1024,"name":"customer","url":"interfaces/PromotionsValidateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":836,"kind":1024,"name":"order","url":"interfaces/PromotionsValidateParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":837,"kind":65536,"name":"__type","url":"interfaces/PromotionsValidateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":838,"kind":1024,"name":"id","url":"interfaces/PromotionsValidateParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":839,"kind":1024,"name":"source_id","url":"interfaces/PromotionsValidateParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":840,"kind":1024,"name":"items","url":"interfaces/PromotionsValidateParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":841,"kind":1024,"name":"amount","url":"interfaces/PromotionsValidateParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":842,"kind":1024,"name":"metadata","url":"interfaces/PromotionsValidateParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"PromotionsValidateParams.__type"},{"id":843,"kind":1024,"name":"metadata","url":"interfaces/PromotionsValidateParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateParams"},{"id":844,"kind":256,"name":"PromotionsValidateQueryParams","url":"interfaces/PromotionsValidateQueryParams.html","classes":"tsd-kind-interface"},{"id":845,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/PromotionsValidateQueryParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateQueryParams"},{"id":846,"kind":1024,"name":"filters","url":"interfaces/PromotionsValidateQueryParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateQueryParams"},{"id":847,"kind":256,"name":"PromotionsValidateResponse","url":"interfaces/PromotionsValidateResponse.html","classes":"tsd-kind-interface"},{"id":848,"kind":1024,"name":"valid","url":"interfaces/PromotionsValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":849,"kind":1024,"name":"promotions","url":"interfaces/PromotionsValidateResponse.html#promotions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":850,"kind":1024,"name":"tracking_id","url":"interfaces/PromotionsValidateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PromotionsValidateResponse"},{"id":851,"kind":256,"name":"LoyaltiesListParams","url":"interfaces/LoyaltiesListParams.html","classes":"tsd-kind-interface"},{"id":852,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListParams"},{"id":853,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListParams"},{"id":854,"kind":256,"name":"LoyaltiesListResponse","url":"interfaces/LoyaltiesListResponse.html","classes":"tsd-kind-interface"},{"id":855,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":856,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":857,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":858,"kind":1024,"name":"campaigns","url":"interfaces/LoyaltiesListResponse.html#campaigns","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListResponse"},{"id":859,"kind":256,"name":"LoyaltiesCreateCampaign","url":"interfaces/LoyaltiesCreateCampaign.html","classes":"tsd-kind-interface"},{"id":860,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateCampaign.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":861,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesCreateCampaign.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":862,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesCreateCampaign.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":863,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaign.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":864,"kind":1024,"name":"vouchers_count","url":"interfaces/LoyaltiesCreateCampaign.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":865,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateCampaign.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":866,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":867,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.type-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":868,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesCreateCampaign.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":869,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":870,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-3.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":871,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesCreateCampaign.html#__type.loyalty_card","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":872,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":873,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":874,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-2.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":875,"kind":1024,"name":"code_config","url":"interfaces/LoyaltiesCreateCampaign.html#__type.code_config","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":876,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type"},{"id":877,"kind":1024,"name":"length","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":878,"kind":1024,"name":"charset","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":879,"kind":1024,"name":"pattern","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":880,"kind":1024,"name":"prefix","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":881,"kind":1024,"name":"suffix","url":"interfaces/LoyaltiesCreateCampaign.html#__type.__type-1.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaign.__type.__type"},{"id":882,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateCampaign.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaign"},{"id":883,"kind":256,"name":"LoyaltiesCreateCampaignResponse","url":"interfaces/LoyaltiesCreateCampaignResponse.html","classes":"tsd-kind-interface"},{"id":884,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateCampaignResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":885,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateCampaignResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":886,"kind":1024,"name":"campaign_type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#campaign_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":887,"kind":1024,"name":"type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":888,"kind":1024,"name":"category","url":"interfaces/LoyaltiesCreateCampaignResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":889,"kind":1024,"name":"auto_join","url":"interfaces/LoyaltiesCreateCampaignResponse.html#auto_join","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":890,"kind":1024,"name":"join_once","url":"interfaces/LoyaltiesCreateCampaignResponse.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":891,"kind":1024,"name":"description","url":"interfaces/LoyaltiesCreateCampaignResponse.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":892,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesCreateCampaignResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":893,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":894,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":895,"kind":1024,"name":"data","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":896,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":897,"kind":1024,"name":"total","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":898,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":899,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesCreateCampaignResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":900,"kind":1024,"name":"activity_duration_after_publishing","url":"interfaces/LoyaltiesCreateCampaignResponse.html#activity_duration_after_publishing","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":901,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":902,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":903,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":904,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesCreateCampaignResponse.html#__type-1.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateCampaignResponse.__type"},{"id":905,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesCreateCampaignResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":906,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateCampaignResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":907,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesCreateCampaignResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":908,"kind":1024,"name":"vouchers_generation_status","url":"interfaces/LoyaltiesCreateCampaignResponse.html#vouchers_generation_status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":909,"kind":1024,"name":"active","url":"interfaces/LoyaltiesCreateCampaignResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":910,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateCampaignResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":911,"kind":1024,"name":"referral_program","url":"interfaces/LoyaltiesCreateCampaignResponse.html#referral_program","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":912,"kind":1024,"name":"use_voucher_metadata_schema","url":"interfaces/LoyaltiesCreateCampaignResponse.html#use_voucher_metadata_schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":913,"kind":1024,"name":"protected","url":"interfaces/LoyaltiesCreateCampaignResponse.html#protected","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":914,"kind":1024,"name":"vouchers_count","url":"interfaces/LoyaltiesCreateCampaignResponse.html#vouchers_count","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":915,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateCampaignResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateCampaignResponse"},{"id":916,"kind":4194304,"name":"LoyaltiesGetCampaignResponse","url":"modules.html#LoyaltiesGetCampaignResponse","classes":"tsd-kind-type-alias"},{"id":917,"kind":256,"name":"LoyaltiesUpdateCampaign","url":"interfaces/LoyaltiesUpdateCampaign.html","classes":"tsd-kind-interface"},{"id":918,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateCampaign.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":919,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesUpdateCampaign.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":920,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesUpdateCampaign.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":921,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesUpdateCampaign.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":922,"kind":1024,"name":"description","url":"interfaces/LoyaltiesUpdateCampaign.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":923,"kind":1024,"name":"type","url":"interfaces/LoyaltiesUpdateCampaign.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateCampaign"},{"id":924,"kind":4194304,"name":"LoyaltiesUpdateCampaignResponse","url":"modules.html#LoyaltiesUpdateCampaignResponse","classes":"tsd-kind-type-alias"},{"id":925,"kind":256,"name":"LoyaltiesDeleteCampaignParams","url":"interfaces/LoyaltiesDeleteCampaignParams.html","classes":"tsd-kind-interface"},{"id":926,"kind":1024,"name":"force","url":"interfaces/LoyaltiesDeleteCampaignParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesDeleteCampaignParams"},{"id":927,"kind":256,"name":"LoyaltiesListRewardAssignmentsParams","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":928,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsParams"},{"id":929,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListRewardAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsParams"},{"id":930,"kind":256,"name":"LoyaltiesListRewardAssignmentsResponse","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":931,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":932,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":933,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":934,"kind":1024,"name":"data","url":"interfaces/LoyaltiesListRewardAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListRewardAssignmentsResponse"},{"id":935,"kind":256,"name":"LoyaltiesCreateRewardAssignments","url":"interfaces/LoyaltiesCreateRewardAssignments.html","classes":"tsd-kind-interface"},{"id":936,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesCreateRewardAssignments.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":937,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesCreateRewardAssignments.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":938,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignments"},{"id":939,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type"},{"id":940,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type"},{"id":941,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateRewardAssignments.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignments.__type.__type"},{"id":942,"kind":256,"name":"LoyaltiesCreateRewardAssignmentResponse","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html","classes":"tsd-kind-interface"},{"id":943,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":944,"kind":1024,"name":"reward_id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#reward_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":945,"kind":1024,"name":"related_object_id","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":946,"kind":1024,"name":"related_object_type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":947,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":948,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":949,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type"},{"id":950,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type"},{"id":951,"kind":1024,"name":"points","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateRewardAssignmentResponse.__type.__type"},{"id":952,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":953,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":954,"kind":1024,"name":"object","url":"interfaces/LoyaltiesCreateRewardAssignmentResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateRewardAssignmentResponse"},{"id":955,"kind":256,"name":"LoyaltiesUpdateRewardAssignment","url":"interfaces/LoyaltiesUpdateRewardAssignment.html","classes":"tsd-kind-interface"},{"id":956,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":957,"kind":1024,"name":"parameters","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":958,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateRewardAssignment"},{"id":959,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type"},{"id":960,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type"},{"id":961,"kind":1024,"name":"points","url":"interfaces/LoyaltiesUpdateRewardAssignment.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateRewardAssignment.__type.__type"},{"id":962,"kind":4194304,"name":"LoyaltiesUpdateRewardAssignmentResponse","url":"modules.html#LoyaltiesUpdateRewardAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":963,"kind":256,"name":"LoyaltiesListEarningRulesParams","url":"interfaces/LoyaltiesListEarningRulesParams.html","classes":"tsd-kind-interface"},{"id":964,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListEarningRulesParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesParams"},{"id":965,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListEarningRulesParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesParams"},{"id":966,"kind":256,"name":"LoyaltyFixed","url":"interfaces/LoyaltyFixed.html","classes":"tsd-kind-interface"},{"id":967,"kind":1024,"name":"type","url":"interfaces/LoyaltyFixed.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyFixed"},{"id":968,"kind":1024,"name":"points","url":"interfaces/LoyaltyFixed.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyFixed"},{"id":969,"kind":256,"name":"LoyaltyProportional","url":"interfaces/LoyaltyProportional.html","classes":"tsd-kind-interface"},{"id":970,"kind":1024,"name":"type","url":"interfaces/LoyaltyProportional.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":971,"kind":1024,"name":"order","url":"interfaces/LoyaltyProportional.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":972,"kind":65536,"name":"__type","url":"interfaces/LoyaltyProportional.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltyProportional"},{"id":973,"kind":1024,"name":"amount","url":"interfaces/LoyaltyProportional.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type"},{"id":974,"kind":65536,"name":"__type","url":"interfaces/LoyaltyProportional.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type"},{"id":975,"kind":1024,"name":"every","url":"interfaces/LoyaltyProportional.html#__type.__type-1.every","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type.__type"},{"id":976,"kind":1024,"name":"points","url":"interfaces/LoyaltyProportional.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltyProportional.__type.__type"},{"id":977,"kind":256,"name":"LoyaltiesEarningRulesResponse","url":"interfaces/LoyaltiesEarningRulesResponse.html","classes":"tsd-kind-interface"},{"id":978,"kind":1024,"name":"id","url":"interfaces/LoyaltiesEarningRulesResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":979,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesEarningRulesResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":980,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesEarningRulesResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":981,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":982,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesEarningRulesResponse.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":983,"kind":1024,"name":"segment","url":"interfaces/LoyaltiesEarningRulesResponse.html#segment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":984,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":985,"kind":1024,"name":"id","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":986,"kind":1024,"name":"event","url":"interfaces/LoyaltiesEarningRulesResponse.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":987,"kind":1024,"name":"source","url":"interfaces/LoyaltiesEarningRulesResponse.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":988,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":989,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":990,"kind":1024,"name":"object_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.object_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":991,"kind":1024,"name":"object_type","url":"interfaces/LoyaltiesEarningRulesResponse.html#__type-1.object_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesEarningRulesResponse.__type"},{"id":992,"kind":1024,"name":"object","url":"interfaces/LoyaltiesEarningRulesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":993,"kind":1024,"name":"automation_id","url":"interfaces/LoyaltiesEarningRulesResponse.html#automation_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesEarningRulesResponse"},{"id":994,"kind":256,"name":"LoyaltiesListEarningRulesResponse","url":"interfaces/LoyaltiesListEarningRulesResponse.html","classes":"tsd-kind-interface"},{"id":995,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListEarningRulesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":996,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListEarningRulesResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":997,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListEarningRulesResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":998,"kind":1024,"name":"data","url":"interfaces/LoyaltiesListEarningRulesResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListEarningRulesResponse"},{"id":999,"kind":256,"name":"LoyaltiesCreateEarningRule","url":"interfaces/LoyaltiesCreateEarningRule.html","classes":"tsd-kind-interface"},{"id":1000,"kind":1024,"name":"event","url":"interfaces/LoyaltiesCreateEarningRule.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1001,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesCreateEarningRule.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1002,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesCreateEarningRule.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1003,"kind":1024,"name":"source","url":"interfaces/LoyaltiesCreateEarningRule.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1004,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1005,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-2.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1006,"kind":1024,"name":"custom_event","url":"interfaces/LoyaltiesCreateEarningRule.html#custom_event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1007,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1008,"kind":1024,"name":"schema_id","url":"interfaces/LoyaltiesCreateEarningRule.html#__type.schema_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1009,"kind":1024,"name":"segment","url":"interfaces/LoyaltiesCreateEarningRule.html#segment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1010,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateEarningRule"},{"id":1011,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateEarningRule.html#__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateEarningRule.__type"},{"id":1012,"kind":4194304,"name":"LoyaltiesCreateEarningRuleResponse","url":"modules.html#LoyaltiesCreateEarningRuleResponse","classes":"tsd-kind-type-alias"},{"id":1013,"kind":256,"name":"LoyaltiesUpdateEarningRule","url":"interfaces/LoyaltiesUpdateEarningRule.html","classes":"tsd-kind-interface"},{"id":1014,"kind":1024,"name":"id","url":"interfaces/LoyaltiesUpdateEarningRule.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1015,"kind":1024,"name":"validation_rule_id","url":"interfaces/LoyaltiesUpdateEarningRule.html#validation_rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1016,"kind":1024,"name":"source","url":"interfaces/LoyaltiesUpdateEarningRule.html#source","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1017,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1018,"kind":1024,"name":"banner","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type-1.banner","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateEarningRule.__type"},{"id":1019,"kind":1024,"name":"loyalty","url":"interfaces/LoyaltiesUpdateEarningRule.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1020,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesUpdateEarningRule"},{"id":1021,"kind":1024,"name":"points","url":"interfaces/LoyaltiesUpdateEarningRule.html#__type.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesUpdateEarningRule.__type"},{"id":1022,"kind":4194304,"name":"LoyaltiesUpdateEarningRuleResponse","url":"modules.html#LoyaltiesUpdateEarningRuleResponse","classes":"tsd-kind-type-alias"},{"id":1023,"kind":256,"name":"LoyaltiesListMembersParams","url":"interfaces/LoyaltiesListMembersParams.html","classes":"tsd-kind-interface"},{"id":1024,"kind":1024,"name":"limit","url":"interfaces/LoyaltiesListMembersParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1025,"kind":1024,"name":"page","url":"interfaces/LoyaltiesListMembersParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1026,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesListMembersParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1027,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesListMembersParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1028,"kind":1024,"name":"before","url":"interfaces/LoyaltiesListMembersParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1029,"kind":1024,"name":"after","url":"interfaces/LoyaltiesListMembersParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1030,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesListMembersParams.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1031,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesListMembersParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesListMembersParams"},{"id":1032,"kind":1024,"name":"before","url":"interfaces/LoyaltiesListMembersParams.html#__type-1.before-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1033,"kind":1024,"name":"after","url":"interfaces/LoyaltiesListMembersParams.html#__type-1.after-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesListMembersParams.__type"},{"id":1034,"kind":256,"name":"LoyaltiesVoucherResponse","url":"interfaces/LoyaltiesVoucherResponse.html","classes":"tsd-kind-interface"},{"id":1035,"kind":1024,"name":"id","url":"interfaces/LoyaltiesVoucherResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1036,"kind":1024,"name":"code","url":"interfaces/LoyaltiesVoucherResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1037,"kind":1024,"name":"campaign","url":"interfaces/LoyaltiesVoucherResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1038,"kind":1024,"name":"campaign_id","url":"interfaces/LoyaltiesVoucherResponse.html#campaign_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1039,"kind":1024,"name":"category","url":"interfaces/LoyaltiesVoucherResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1040,"kind":1024,"name":"type","url":"interfaces/LoyaltiesVoucherResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1041,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesVoucherResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1042,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1043,"kind":1024,"name":"points","url":"interfaces/LoyaltiesVoucherResponse.html#__type.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1044,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesVoucherResponse.html#__type.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1045,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesVoucherResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1046,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesVoucherResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1047,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesVoucherResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1048,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1049,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1050,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesVoucherResponse.html#__type-3.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1051,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesVoucherResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1052,"kind":1024,"name":"publish","url":"interfaces/LoyaltiesVoucherResponse.html#publish","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1053,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1054,"kind":1024,"name":"count","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1055,"kind":1024,"name":"entries","url":"interfaces/LoyaltiesVoucherResponse.html#__type-1.entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1056,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesVoucherResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1057,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1058,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1059,"kind":1024,"name":"redeemed_points","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1060,"kind":1024,"name":"redeemed_quantity","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1061,"kind":1024,"name":"redemption_entries","url":"interfaces/LoyaltiesVoucherResponse.html#__type-2.redemption_entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesVoucherResponse.__type"},{"id":1062,"kind":1024,"name":"active","url":"interfaces/LoyaltiesVoucherResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1063,"kind":1024,"name":"additional_info","url":"interfaces/LoyaltiesVoucherResponse.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1064,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesVoucherResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1065,"kind":1024,"name":"is_referral_code","url":"interfaces/LoyaltiesVoucherResponse.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1066,"kind":1024,"name":"holder_id","url":"interfaces/LoyaltiesVoucherResponse.html#holder_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1067,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesVoucherResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesVoucherResponse"},{"id":1068,"kind":256,"name":"LoyaltiesListMembersResponse","url":"interfaces/LoyaltiesListMembersResponse.html","classes":"tsd-kind-interface"},{"id":1069,"kind":1024,"name":"object","url":"interfaces/LoyaltiesListMembersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1070,"kind":1024,"name":"total","url":"interfaces/LoyaltiesListMembersResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1071,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesListMembersResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1072,"kind":1024,"name":"vouchers","url":"interfaces/LoyaltiesListMembersResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesListMembersResponse"},{"id":1073,"kind":256,"name":"LoyaltiesCreateMember","url":"interfaces/LoyaltiesCreateMember.html","classes":"tsd-kind-interface"},{"id":1074,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesCreateMember.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1075,"kind":1024,"name":"channel","url":"interfaces/LoyaltiesCreateMember.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1076,"kind":1024,"name":"customer","url":"interfaces/LoyaltiesCreateMember.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1077,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesCreateMember.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1078,"kind":1024,"name":"id","url":"interfaces/LoyaltiesCreateMember.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1079,"kind":1024,"name":"name","url":"interfaces/LoyaltiesCreateMember.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1080,"kind":1024,"name":"email","url":"interfaces/LoyaltiesCreateMember.html#__type.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1081,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateMember.html#__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1082,"kind":1024,"name":"description","url":"interfaces/LoyaltiesCreateMember.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1083,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesCreateMember.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesCreateMember.__type"},{"id":1084,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesCreateMember.html#metadata-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesCreateMember"},{"id":1085,"kind":4194304,"name":"LoyaltiesCreateMemberResponse","url":"modules.html#LoyaltiesCreateMemberResponse","classes":"tsd-kind-type-alias"},{"id":1086,"kind":4194304,"name":"LoyaltiesGetMemberResponse","url":"modules.html#LoyaltiesGetMemberResponse","classes":"tsd-kind-type-alias"},{"id":1087,"kind":256,"name":"LoyaltiesGetMemberActivitiesResponse","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html","classes":"tsd-kind-interface"},{"id":1088,"kind":1024,"name":"object","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1089,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1090,"kind":1024,"name":"total","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1091,"kind":1024,"name":"activities","url":"interfaces/LoyaltiesGetMemberActivitiesResponse.html#activities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesGetMemberActivitiesResponse"},{"id":1092,"kind":256,"name":"LoyaltiesAddPoints","url":"interfaces/LoyaltiesAddPoints.html","classes":"tsd-kind-interface"},{"id":1093,"kind":1024,"name":"points","url":"interfaces/LoyaltiesAddPoints.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPoints"},{"id":1094,"kind":256,"name":"LoyaltiesAddPointsResponse","url":"interfaces/LoyaltiesAddPointsResponse.html","classes":"tsd-kind-interface"},{"id":1095,"kind":1024,"name":"points","url":"interfaces/LoyaltiesAddPointsResponse.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1096,"kind":1024,"name":"total","url":"interfaces/LoyaltiesAddPointsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1097,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesAddPointsResponse.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1098,"kind":1024,"name":"type","url":"interfaces/LoyaltiesAddPointsResponse.html#type-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1099,"kind":1024,"name":"object","url":"interfaces/LoyaltiesAddPointsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1100,"kind":1024,"name":"related_object","url":"interfaces/LoyaltiesAddPointsResponse.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1101,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesAddPointsResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesAddPointsResponse"},{"id":1102,"kind":1024,"name":"type","url":"interfaces/LoyaltiesAddPointsResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesAddPointsResponse.__type"},{"id":1103,"kind":1024,"name":"id","url":"interfaces/LoyaltiesAddPointsResponse.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesAddPointsResponse.__type"},{"id":1104,"kind":256,"name":"LoyaltiesRedeemRewardParams","url":"interfaces/LoyaltiesRedeemRewardParams.html","classes":"tsd-kind-interface"},{"id":1105,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesRedeemRewardParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1106,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1107,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type-1.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1108,"kind":1024,"name":"order","url":"interfaces/LoyaltiesRedeemRewardParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1109,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1110,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1111,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1112,"kind":1024,"name":"amount","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1113,"kind":1024,"name":"items","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.items","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1114,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardParams.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardParams.__type"},{"id":1115,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardParams"},{"id":1116,"kind":256,"name":"LoyaltiesRedeemRewardResponse","url":"interfaces/LoyaltiesRedeemRewardResponse.html","classes":"tsd-kind-interface"},{"id":1117,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1118,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1119,"kind":1024,"name":"date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1120,"kind":1024,"name":"customer_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1121,"kind":1024,"name":"amount","url":"interfaces/LoyaltiesRedeemRewardResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1122,"kind":1024,"name":"order","url":"interfaces/LoyaltiesRedeemRewardResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1123,"kind":1024,"name":"customer","url":"interfaces/LoyaltiesRedeemRewardResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1124,"kind":1024,"name":"reward","url":"interfaces/LoyaltiesRedeemRewardResponse.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1125,"kind":1024,"name":"result","url":"interfaces/LoyaltiesRedeemRewardResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1126,"kind":1024,"name":"tracking_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1127,"kind":1024,"name":"voucher","url":"interfaces/LoyaltiesRedeemRewardResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1128,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"LoyaltiesRedeemRewardResponse"},{"id":1129,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.id-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1130,"kind":1024,"name":"code","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1131,"kind":1024,"name":"campaign","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.campaign","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1132,"kind":1024,"name":"campaign_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.campaign_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1133,"kind":1024,"name":"category","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.category","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1134,"kind":1024,"name":"type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1135,"kind":1024,"name":"loyalty_card","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.loyalty_card","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1136,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1137,"kind":1024,"name":"points","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1138,"kind":1024,"name":"balance","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-5.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1139,"kind":1024,"name":"start_date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.start_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1140,"kind":1024,"name":"expiration_date","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.expiration_date","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1141,"kind":1024,"name":"validity_timeframe","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1142,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1143,"kind":1024,"name":"interval","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1144,"kind":1024,"name":"duration","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-9.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1145,"kind":1024,"name":"validity_day_of_week","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1146,"kind":1024,"name":"publish","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.publish","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1147,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1148,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.object-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1149,"kind":1024,"name":"count","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1150,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-6.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1151,"kind":1024,"name":"redemption","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.redemption","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1152,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1153,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.object-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1154,"kind":1024,"name":"quantity","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1155,"kind":1024,"name":"redeemed_quantity","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1156,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1157,"kind":1024,"name":"redeemed_points","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-7.redeemed_points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1158,"kind":1024,"name":"active","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.active","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1159,"kind":1024,"name":"additional_info","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.additional_info","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1160,"kind":1024,"name":"assets","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.assets","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1161,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1162,"kind":1024,"name":"qr","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.qr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1163,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1164,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3.id-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1165,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-3.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1166,"kind":1024,"name":"barcode","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.barcode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1167,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1168,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1169,"kind":1024,"name":"url","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-1.__type-2.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type.__type"},{"id":1170,"kind":1024,"name":"is_referral_code","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.is_referral_code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1171,"kind":1024,"name":"referrer_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1172,"kind":1024,"name":"holder_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.holder_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1173,"kind":1024,"name":"created_at","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.created_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1174,"kind":1024,"name":"updated_at","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.updated_at","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1175,"kind":1024,"name":"holder","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.holder","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1176,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1177,"kind":1024,"name":"id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.id-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1178,"kind":1024,"name":"source_id","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1179,"kind":1024,"name":"metadata","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1180,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-4.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1181,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1182,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1183,"kind":65536,"name":"__type","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type"},{"id":1184,"kind":1024,"name":"object","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.object-5","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1185,"kind":1024,"name":"total","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1186,"kind":1024,"name":"data_ref","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1187,"kind":1024,"name":"data","url":"interfaces/LoyaltiesRedeemRewardResponse.html#__type.__type-8.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LoyaltiesRedeemRewardResponse.__type.__type"},{"id":1188,"kind":256,"name":"LoyaltyPointsTransfer","url":"interfaces/LoyaltyPointsTransfer.html","classes":"tsd-kind-interface"},{"id":1189,"kind":1024,"name":"code","url":"interfaces/LoyaltyPointsTransfer.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyPointsTransfer"},{"id":1190,"kind":1024,"name":"points","url":"interfaces/LoyaltyPointsTransfer.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LoyaltyPointsTransfer"},{"id":1191,"kind":4194304,"name":"VoucherType","url":"modules.html#VoucherType","classes":"tsd-kind-type-alias"},{"id":1192,"kind":256,"name":"SimpleVoucher","url":"interfaces/SimpleVoucher.html","classes":"tsd-kind-interface"},{"id":1193,"kind":1024,"name":"code_config","url":"interfaces/SimpleVoucher.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1194,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1195,"kind":1024,"name":"length","url":"interfaces/SimpleVoucher.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1196,"kind":1024,"name":"charset","url":"interfaces/SimpleVoucher.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1197,"kind":1024,"name":"pattern","url":"interfaces/SimpleVoucher.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1198,"kind":1024,"name":"prefix","url":"interfaces/SimpleVoucher.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1199,"kind":1024,"name":"suffix","url":"interfaces/SimpleVoucher.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1200,"kind":1024,"name":"type","url":"interfaces/SimpleVoucher.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1201,"kind":1024,"name":"is_referral_code","url":"interfaces/SimpleVoucher.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1202,"kind":1024,"name":"discount","url":"interfaces/SimpleVoucher.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1203,"kind":1024,"name":"loyalty_card","url":"interfaces/SimpleVoucher.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1204,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1205,"kind":1024,"name":"points","url":"interfaces/SimpleVoucher.html#__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1206,"kind":1024,"name":"balance","url":"interfaces/SimpleVoucher.html#__type-1.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1207,"kind":1024,"name":"redemption","url":"interfaces/SimpleVoucher.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1208,"kind":65536,"name":"__type","url":"interfaces/SimpleVoucher.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SimpleVoucher"},{"id":1209,"kind":1024,"name":"quantity","url":"interfaces/SimpleVoucher.html#__type-2.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SimpleVoucher.__type"},{"id":1210,"kind":256,"name":"VouchersResponse","url":"interfaces/VouchersResponse.html","classes":"tsd-kind-interface"},{"id":1211,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#id-2","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1212,"kind":1024,"name":"code","url":"interfaces/VouchersResponse.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1213,"kind":1024,"name":"campaign","url":"interfaces/VouchersResponse.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1214,"kind":1024,"name":"category","url":"interfaces/VouchersResponse.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1215,"kind":1024,"name":"type","url":"interfaces/VouchersResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1216,"kind":1024,"name":"discount","url":"interfaces/VouchersResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1217,"kind":1024,"name":"gift","url":"interfaces/VouchersResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1218,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1219,"kind":1024,"name":"amount","url":"interfaces/VouchersResponse.html#__type-3.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1220,"kind":1024,"name":"balance","url":"interfaces/VouchersResponse.html#__type-3.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1221,"kind":1024,"name":"loyalty_card","url":"interfaces/VouchersResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1222,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1223,"kind":1024,"name":"points","url":"interfaces/VouchersResponse.html#__type-4.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1224,"kind":1024,"name":"start_date","url":"interfaces/VouchersResponse.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1225,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersResponse.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1226,"kind":1024,"name":"validity_timeframe","url":"interfaces/VouchersResponse.html#validity_timeframe","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1227,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1228,"kind":1024,"name":"interval","url":"interfaces/VouchersResponse.html#__type-8.interval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1229,"kind":1024,"name":"duration","url":"interfaces/VouchersResponse.html#__type-8.duration","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1230,"kind":1024,"name":"validity_day_of_week","url":"interfaces/VouchersResponse.html#validity_day_of_week","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1231,"kind":1024,"name":"publish","url":"interfaces/VouchersResponse.html#publish","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1232,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1233,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-5.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1234,"kind":1024,"name":"count","url":"interfaces/VouchersResponse.html#__type-5.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1235,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-5.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1236,"kind":1024,"name":"entries","url":"interfaces/VouchersResponse.html#__type-5.entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1237,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-5.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1238,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type-5.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1239,"kind":1024,"name":"redemption","url":"interfaces/VouchersResponse.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1240,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1241,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-6.object-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1242,"kind":1024,"name":"quantity","url":"interfaces/VouchersResponse.html#__type-6.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1243,"kind":1024,"name":"redeemed_quantity","url":"interfaces/VouchersResponse.html#__type-6.redeemed_quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1244,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-6.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1245,"kind":1024,"name":"redemption_entries","url":"interfaces/VouchersResponse.html#__type-6.redemption_entries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1246,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-6.total-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1247,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type-6.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1248,"kind":1024,"name":"active","url":"interfaces/VouchersResponse.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1249,"kind":1024,"name":"additional_info","url":"interfaces/VouchersResponse.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1250,"kind":1024,"name":"metadata","url":"interfaces/VouchersResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1251,"kind":1024,"name":"assets","url":"interfaces/VouchersResponse.html#assets","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1252,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1253,"kind":1024,"name":"qr","url":"interfaces/VouchersResponse.html#__type.qr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1254,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1255,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#__type.__type-2.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1256,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type.__type-2.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1257,"kind":1024,"name":"barcode","url":"interfaces/VouchersResponse.html#__type.barcode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1258,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1259,"kind":1024,"name":"id","url":"interfaces/VouchersResponse.html#__type.__type-1.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1260,"kind":1024,"name":"url","url":"interfaces/VouchersResponse.html#__type.__type-1.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type.__type"},{"id":1261,"kind":1024,"name":"is_referral_code","url":"interfaces/VouchersResponse.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1262,"kind":1024,"name":"referrer_id","url":"interfaces/VouchersResponse.html#referrer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1263,"kind":1024,"name":"holder_id","url":"interfaces/VouchersResponse.html#holder_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1264,"kind":1024,"name":"updated_at","url":"interfaces/VouchersResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1265,"kind":1024,"name":"created_at","url":"interfaces/VouchersResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1266,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1267,"kind":1024,"name":"validation_rules_assignments","url":"interfaces/VouchersResponse.html#validation_rules_assignments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1268,"kind":65536,"name":"__type","url":"interfaces/VouchersResponse.html#__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersResponse"},{"id":1269,"kind":1024,"name":"object","url":"interfaces/VouchersResponse.html#__type-7.object-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1270,"kind":1024,"name":"total","url":"interfaces/VouchersResponse.html#__type-7.total-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1271,"kind":1024,"name":"data_ref","url":"interfaces/VouchersResponse.html#__type-7.data_ref-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1272,"kind":1024,"name":"data","url":"interfaces/VouchersResponse.html#__type-7.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersResponse.__type"},{"id":1273,"kind":256,"name":"VouchersQualificationExamineBody","url":"interfaces/VouchersQualificationExamineBody.html","classes":"tsd-kind-interface"},{"id":1274,"kind":1024,"name":"customer","url":"interfaces/VouchersQualificationExamineBody.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1275,"kind":1024,"name":"order","url":"interfaces/VouchersQualificationExamineBody.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1276,"kind":1024,"name":"reward","url":"interfaces/VouchersQualificationExamineBody.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1277,"kind":65536,"name":"__type","url":"interfaces/VouchersQualificationExamineBody.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1278,"kind":1024,"name":"id","url":"interfaces/VouchersQualificationExamineBody.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersQualificationExamineBody.__type"},{"id":1279,"kind":1024,"name":"assignment_id","url":"interfaces/VouchersQualificationExamineBody.html#__type.assignment_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersQualificationExamineBody.__type"},{"id":1280,"kind":1024,"name":"metadata","url":"interfaces/VouchersQualificationExamineBody.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineBody"},{"id":1281,"kind":256,"name":"VouchersQualificationExamineParams","url":"interfaces/VouchersQualificationExamineParams.html","classes":"tsd-kind-interface"},{"id":1282,"kind":1024,"name":"audienceRulesOnly","url":"interfaces/VouchersQualificationExamineParams.html#audienceRulesOnly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1283,"kind":1024,"name":"order","url":"interfaces/VouchersQualificationExamineParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1284,"kind":1024,"name":"limit","url":"interfaces/VouchersQualificationExamineParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineParams"},{"id":1285,"kind":256,"name":"VouchersQualificationExamineResponse","url":"interfaces/VouchersQualificationExamineResponse.html","classes":"tsd-kind-interface"},{"id":1286,"kind":1024,"name":"object","url":"interfaces/VouchersQualificationExamineResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1287,"kind":1024,"name":"total","url":"interfaces/VouchersQualificationExamineResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1288,"kind":1024,"name":"data_ref","url":"interfaces/VouchersQualificationExamineResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1289,"kind":1024,"name":"data","url":"interfaces/VouchersQualificationExamineResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersQualificationExamineResponse"},{"id":1290,"kind":256,"name":"VouchersCreateParameters","url":"interfaces/VouchersCreateParameters.html","classes":"tsd-kind-interface"},{"id":1291,"kind":1024,"name":"active","url":"interfaces/VouchersCreateParameters.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1292,"kind":1024,"name":"code","url":"interfaces/VouchersCreateParameters.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1293,"kind":1024,"name":"code_config","url":"interfaces/VouchersCreateParameters.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1294,"kind":65536,"name":"__type","url":"interfaces/VouchersCreateParameters.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1295,"kind":1024,"name":"length","url":"interfaces/VouchersCreateParameters.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1296,"kind":1024,"name":"charset","url":"interfaces/VouchersCreateParameters.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1297,"kind":1024,"name":"pattern","url":"interfaces/VouchersCreateParameters.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1298,"kind":1024,"name":"prefix","url":"interfaces/VouchersCreateParameters.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1299,"kind":1024,"name":"suffix","url":"interfaces/VouchersCreateParameters.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1300,"kind":1024,"name":"redemption","url":"interfaces/VouchersCreateParameters.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1301,"kind":65536,"name":"__type","url":"interfaces/VouchersCreateParameters.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersCreateParameters"},{"id":1302,"kind":1024,"name":"quantity","url":"interfaces/VouchersCreateParameters.html#__type-1.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersCreateParameters.__type"},{"id":1303,"kind":4194304,"name":"VouchersCreate","url":"modules.html#VouchersCreate","classes":"tsd-kind-type-alias"},{"id":1304,"kind":4194304,"name":"VouchersCreateResponse","url":"modules.html#VouchersCreateResponse","classes":"tsd-kind-type-alias"},{"id":1305,"kind":4194304,"name":"VouchersGetResponse","url":"modules.html#VouchersGetResponse","classes":"tsd-kind-type-alias"},{"id":1306,"kind":256,"name":"VouchersUpdate","url":"interfaces/VouchersUpdate.html","classes":"tsd-kind-interface"},{"id":1307,"kind":1024,"name":"code","url":"interfaces/VouchersUpdate.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1308,"kind":1024,"name":"category","url":"interfaces/VouchersUpdate.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1309,"kind":1024,"name":"start_date","url":"interfaces/VouchersUpdate.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1310,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersUpdate.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1311,"kind":1024,"name":"active","url":"interfaces/VouchersUpdate.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1312,"kind":1024,"name":"additional_info","url":"interfaces/VouchersUpdate.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1313,"kind":1024,"name":"metadata","url":"interfaces/VouchersUpdate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1314,"kind":1024,"name":"gift","url":"interfaces/VouchersUpdate.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1315,"kind":65536,"name":"__type","url":"interfaces/VouchersUpdate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersUpdate"},{"id":1316,"kind":1024,"name":"amount","url":"interfaces/VouchersUpdate.html#__type.amount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersUpdate.__type"},{"id":1317,"kind":4194304,"name":"VouchersUpdateResponse","url":"modules.html#VouchersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1318,"kind":256,"name":"VouchersDeleteParams","url":"interfaces/VouchersDeleteParams.html","classes":"tsd-kind-interface"},{"id":1319,"kind":1024,"name":"force","url":"interfaces/VouchersDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersDeleteParams"},{"id":1320,"kind":256,"name":"VouchersListParams","url":"interfaces/VouchersListParams.html","classes":"tsd-kind-interface"},{"id":1321,"kind":1024,"name":"limit","url":"interfaces/VouchersListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1322,"kind":1024,"name":"page","url":"interfaces/VouchersListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1323,"kind":1024,"name":"category","url":"interfaces/VouchersListParams.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1324,"kind":1024,"name":"campaign","url":"interfaces/VouchersListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1325,"kind":1024,"name":"customer","url":"interfaces/VouchersListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1326,"kind":1024,"name":"created_at","url":"interfaces/VouchersListParams.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1327,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1328,"kind":1024,"name":"after","url":"interfaces/VouchersListParams.html#__type.after","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1329,"kind":1024,"name":"before","url":"interfaces/VouchersListParams.html#__type.before","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1330,"kind":1024,"name":"updated_at","url":"interfaces/VouchersListParams.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1331,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1332,"kind":1024,"name":"after","url":"interfaces/VouchersListParams.html#__type-2.after-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1333,"kind":1024,"name":"before","url":"interfaces/VouchersListParams.html#__type-2.before-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1334,"kind":1024,"name":"order","url":"interfaces/VouchersListParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1335,"kind":1024,"name":"filters","url":"interfaces/VouchersListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1336,"kind":65536,"name":"__type","url":"interfaces/VouchersListParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersListParams"},{"id":1337,"kind":1024,"name":"junction","url":"interfaces/VouchersListParams.html#__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersListParams.__type"},{"id":1338,"kind":256,"name":"VouchersListResponse","url":"interfaces/VouchersListResponse.html","classes":"tsd-kind-interface"},{"id":1339,"kind":1024,"name":"object","url":"interfaces/VouchersListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1340,"kind":1024,"name":"total","url":"interfaces/VouchersListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1341,"kind":1024,"name":"data_ref","url":"interfaces/VouchersListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1342,"kind":1024,"name":"vouchers","url":"interfaces/VouchersListResponse.html#vouchers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersListResponse"},{"id":1343,"kind":4194304,"name":"VouchersEnableResponse","url":"modules.html#VouchersEnableResponse","classes":"tsd-kind-type-alias"},{"id":1344,"kind":4194304,"name":"VouchersDisableResponse","url":"modules.html#VouchersDisableResponse","classes":"tsd-kind-type-alias"},{"id":1345,"kind":256,"name":"VouchersImport","url":"interfaces/VouchersImport.html","classes":"tsd-kind-interface"},{"id":1346,"kind":1024,"name":"code","url":"interfaces/VouchersImport.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1347,"kind":1024,"name":"category","url":"interfaces/VouchersImport.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1348,"kind":1024,"name":"type","url":"interfaces/VouchersImport.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1349,"kind":1024,"name":"discount","url":"interfaces/VouchersImport.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1350,"kind":1024,"name":"additional_info","url":"interfaces/VouchersImport.html#additional_info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1351,"kind":1024,"name":"start_date","url":"interfaces/VouchersImport.html#start_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1352,"kind":1024,"name":"expiration_date","url":"interfaces/VouchersImport.html#expiration_date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1353,"kind":1024,"name":"active","url":"interfaces/VouchersImport.html#active","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1354,"kind":1024,"name":"metadata","url":"interfaces/VouchersImport.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1355,"kind":1024,"name":"redemption","url":"interfaces/VouchersImport.html#redemption","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1356,"kind":65536,"name":"__type","url":"interfaces/VouchersImport.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1357,"kind":1024,"name":"quantity","url":"interfaces/VouchersImport.html#__type-1.quantity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1358,"kind":1024,"name":"code_config","url":"interfaces/VouchersImport.html#code_config","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1359,"kind":65536,"name":"__type","url":"interfaces/VouchersImport.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"VouchersImport"},{"id":1360,"kind":1024,"name":"length","url":"interfaces/VouchersImport.html#__type.length","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1361,"kind":1024,"name":"charset","url":"interfaces/VouchersImport.html#__type.charset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1362,"kind":1024,"name":"pattern","url":"interfaces/VouchersImport.html#__type.pattern","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1363,"kind":1024,"name":"prefix","url":"interfaces/VouchersImport.html#__type.prefix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1364,"kind":1024,"name":"suffix","url":"interfaces/VouchersImport.html#__type.suffix","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImport.__type"},{"id":1365,"kind":256,"name":"VouchersBulkUpdateObject","url":"interfaces/VouchersBulkUpdateObject.html","classes":"tsd-kind-interface"},{"id":1366,"kind":1024,"name":"code","url":"interfaces/VouchersBulkUpdateObject.html#code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateObject"},{"id":1367,"kind":1024,"name":"metadata","url":"interfaces/VouchersBulkUpdateObject.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateObject"},{"id":1368,"kind":4194304,"name":"VouchersBulkUpdate","url":"modules.html#VouchersBulkUpdate","classes":"tsd-kind-type-alias"},{"id":1369,"kind":256,"name":"VouchersBulkUpdateMetadata","url":"interfaces/VouchersBulkUpdateMetadata.html","classes":"tsd-kind-interface"},{"id":1370,"kind":1024,"name":"codes","url":"interfaces/VouchersBulkUpdateMetadata.html#codes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateMetadata"},{"id":1371,"kind":1024,"name":"metadata","url":"interfaces/VouchersBulkUpdateMetadata.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VouchersBulkUpdateMetadata"},{"id":1372,"kind":4194304,"name":"VouchersImportResponse","url":"modules.html#VouchersImportResponse","classes":"tsd-kind-type-alias"},{"id":1373,"kind":65536,"name":"__type","url":"modules.html#VouchersImportResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersImportResponse"},{"id":1374,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersImportResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersImportResponse.__type"},{"id":1375,"kind":4194304,"name":"VouchersBulkUpdateMetadataResponse","url":"modules.html#VouchersBulkUpdateMetadataResponse","classes":"tsd-kind-type-alias"},{"id":1376,"kind":65536,"name":"__type","url":"modules.html#VouchersBulkUpdateMetadataResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersBulkUpdateMetadataResponse"},{"id":1377,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersBulkUpdateMetadataResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersBulkUpdateMetadataResponse.__type"},{"id":1378,"kind":4194304,"name":"VouchersBulkUpdateResponse","url":"modules.html#VouchersBulkUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1379,"kind":65536,"name":"__type","url":"modules.html#VouchersBulkUpdateResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"VouchersBulkUpdateResponse"},{"id":1380,"kind":1024,"name":"async_action_id","url":"modules.html#VouchersBulkUpdateResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"VouchersBulkUpdateResponse.__type"},{"id":1381,"kind":256,"name":"ValidationRulesCreate","url":"interfaces/ValidationRulesCreate.html","classes":"tsd-kind-interface"},{"id":1382,"kind":1024,"name":"name","url":"interfaces/ValidationRulesCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1383,"kind":1024,"name":"error","url":"interfaces/ValidationRulesCreate.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1384,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1385,"kind":1024,"name":"message","url":"interfaces/ValidationRulesCreate.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreate.__type"},{"id":1386,"kind":1024,"name":"rules","url":"interfaces/ValidationRulesCreate.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1387,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreate.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreate"},{"id":1388,"kind":1024,"name":"logic","url":"interfaces/ValidationRulesCreate.html#__type-1.logic","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreate.__type"},{"id":1389,"kind":256,"name":"ValidationRulesCreateResponse","url":"interfaces/ValidationRulesCreateResponse.html","classes":"tsd-kind-interface"},{"id":1390,"kind":1024,"name":"id","url":"interfaces/ValidationRulesCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1391,"kind":1024,"name":"name","url":"interfaces/ValidationRulesCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1392,"kind":1024,"name":"error","url":"interfaces/ValidationRulesCreateResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1393,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1394,"kind":1024,"name":"message","url":"interfaces/ValidationRulesCreateResponse.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreateResponse.__type"},{"id":1395,"kind":1024,"name":"rules","url":"interfaces/ValidationRulesCreateResponse.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1396,"kind":65536,"name":"__type","url":"interfaces/ValidationRulesCreateResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1397,"kind":1024,"name":"logic","url":"interfaces/ValidationRulesCreateResponse.html#__type-1.logic","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ValidationRulesCreateResponse.__type"},{"id":1398,"kind":1024,"name":"created_at","url":"interfaces/ValidationRulesCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1399,"kind":1024,"name":"updated_at","url":"interfaces/ValidationRulesCreateResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1400,"kind":1024,"name":"object","url":"interfaces/ValidationRulesCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateResponse"},{"id":1401,"kind":256,"name":"ValidationRulesValidateResponse","url":"interfaces/ValidationRulesValidateResponse.html","classes":"tsd-kind-interface"},{"id":1402,"kind":1024,"name":"valid","url":"interfaces/ValidationRulesValidateResponse.html#valid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1403,"kind":1024,"name":"rule_id","url":"interfaces/ValidationRulesValidateResponse.html#rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1404,"kind":1024,"name":"applicable_to","url":"interfaces/ValidationRulesValidateResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesValidateResponse"},{"id":1405,"kind":4194304,"name":"ValidationRulesGetResponse","url":"modules.html#ValidationRulesGetResponse","classes":"tsd-kind-type-alias"},{"id":1406,"kind":4194304,"name":"ValidationRulesUpdate","url":"modules.html#ValidationRulesUpdate","classes":"tsd-kind-type-alias"},{"id":1407,"kind":4194304,"name":"ValidationRulesUpdateResponse","url":"modules.html#ValidationRulesUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1408,"kind":256,"name":"ValidationRulesCreateAssignment","url":"interfaces/ValidationRulesCreateAssignment.html","classes":"tsd-kind-interface"},{"id":1409,"kind":1024,"name":"voucher","url":"interfaces/ValidationRulesCreateAssignment.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1410,"kind":1024,"name":"campaign","url":"interfaces/ValidationRulesCreateAssignment.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1411,"kind":1024,"name":"promotion_tier","url":"interfaces/ValidationRulesCreateAssignment.html#promotion_tier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignment"},{"id":1412,"kind":256,"name":"ValidationRulesCreateAssignmentResponse","url":"interfaces/ValidationRulesCreateAssignmentResponse.html","classes":"tsd-kind-interface"},{"id":1413,"kind":1024,"name":"id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1414,"kind":1024,"name":"rule_id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#rule_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1415,"kind":1024,"name":"related_object_id","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1416,"kind":1024,"name":"related_object_type","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1417,"kind":1024,"name":"created_at","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1418,"kind":1024,"name":"updated_at","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1419,"kind":1024,"name":"object","url":"interfaces/ValidationRulesCreateAssignmentResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesCreateAssignmentResponse"},{"id":1420,"kind":256,"name":"ValidationRulesListParams","url":"interfaces/ValidationRulesListParams.html","classes":"tsd-kind-interface"},{"id":1421,"kind":1024,"name":"limit","url":"interfaces/ValidationRulesListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListParams"},{"id":1422,"kind":1024,"name":"page","url":"interfaces/ValidationRulesListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListParams"},{"id":1423,"kind":256,"name":"ValidationRulesListResponse","url":"interfaces/ValidationRulesListResponse.html","classes":"tsd-kind-interface"},{"id":1424,"kind":1024,"name":"object","url":"interfaces/ValidationRulesListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1425,"kind":1024,"name":"total","url":"interfaces/ValidationRulesListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1426,"kind":1024,"name":"data_ref","url":"interfaces/ValidationRulesListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1427,"kind":1024,"name":"data","url":"interfaces/ValidationRulesListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListResponse"},{"id":1428,"kind":256,"name":"ValidationRulesListAssignmentsParams","url":"interfaces/ValidationRulesListAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":1429,"kind":1024,"name":"limit","url":"interfaces/ValidationRulesListAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsParams"},{"id":1430,"kind":1024,"name":"page","url":"interfaces/ValidationRulesListAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsParams"},{"id":1431,"kind":256,"name":"ValidationRulesListAssignmentsResponse","url":"interfaces/ValidationRulesListAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":1432,"kind":1024,"name":"object","url":"interfaces/ValidationRulesListAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1433,"kind":1024,"name":"total","url":"interfaces/ValidationRulesListAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1434,"kind":1024,"name":"data_ref","url":"interfaces/ValidationRulesListAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1435,"kind":1024,"name":"data","url":"interfaces/ValidationRulesListAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationRulesListAssignmentsResponse"},{"id":1436,"kind":256,"name":"RewardsListParams","url":"interfaces/RewardsListParams.html","classes":"tsd-kind-interface"},{"id":1437,"kind":1024,"name":"page","url":"interfaces/RewardsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListParams"},{"id":1438,"kind":1024,"name":"limit","url":"interfaces/RewardsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListParams"},{"id":1439,"kind":256,"name":"RewardsResponse","url":"interfaces/RewardsResponse.html","classes":"tsd-kind-interface"},{"id":1440,"kind":1024,"name":"id","url":"interfaces/RewardsResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1441,"kind":1024,"name":"name","url":"interfaces/RewardsResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1442,"kind":1024,"name":"stock","url":"interfaces/RewardsResponse.html#stock","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1443,"kind":1024,"name":"redeemed","url":"interfaces/RewardsResponse.html#redeemed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1444,"kind":1024,"name":"attributes","url":"interfaces/RewardsResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1445,"kind":65536,"name":"__type","url":"interfaces/RewardsResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1446,"kind":1024,"name":"image_url","url":"interfaces/RewardsResponse.html#__type.image_url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsResponse.__type"},{"id":1447,"kind":1024,"name":"description","url":"interfaces/RewardsResponse.html#__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsResponse.__type"},{"id":1448,"kind":1024,"name":"created_at","url":"interfaces/RewardsResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1449,"kind":1024,"name":"updated_at","url":"interfaces/RewardsResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1450,"kind":1024,"name":"object","url":"interfaces/RewardsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsResponse"},{"id":1451,"kind":4194304,"name":"RewardsCreateResponse","url":"modules.html#RewardsCreateResponse","classes":"tsd-kind-type-alias"},{"id":1452,"kind":256,"name":"RewardsListResponse","url":"interfaces/RewardsListResponse.html","classes":"tsd-kind-interface"},{"id":1453,"kind":1024,"name":"object","url":"interfaces/RewardsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1454,"kind":1024,"name":"total","url":"interfaces/RewardsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1455,"kind":1024,"name":"data_ref","url":"interfaces/RewardsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1456,"kind":1024,"name":"data","url":"interfaces/RewardsListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListResponse"},{"id":1457,"kind":4194304,"name":"RewardsType","url":"modules.html#RewardsType","classes":"tsd-kind-type-alias"},{"id":1458,"kind":4194304,"name":"RewardsTypeResponse","url":"modules.html#RewardsTypeResponse","classes":"tsd-kind-type-alias"},{"id":1459,"kind":4194304,"name":"RewardsCreate","url":"modules.html#RewardsCreate","classes":"tsd-kind-type-alias"},{"id":1460,"kind":4194304,"name":"RewardsGetResponse","url":"modules.html#RewardsGetResponse","classes":"tsd-kind-type-alias"},{"id":1461,"kind":4194304,"name":"RewardsUpdate","url":"modules.html#RewardsUpdate","classes":"tsd-kind-type-alias"},{"id":1462,"kind":4194304,"name":"RewardsUpdateResponse","url":"modules.html#RewardsUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1463,"kind":256,"name":"RewardsAssignmentObject","url":"interfaces/RewardsAssignmentObject.html","classes":"tsd-kind-interface"},{"id":1464,"kind":1024,"name":"id","url":"interfaces/RewardsAssignmentObject.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1465,"kind":1024,"name":"reward_id","url":"interfaces/RewardsAssignmentObject.html#reward_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1466,"kind":1024,"name":"related_object_id","url":"interfaces/RewardsAssignmentObject.html#related_object_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1467,"kind":1024,"name":"related_object_type","url":"interfaces/RewardsAssignmentObject.html#related_object_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1468,"kind":1024,"name":"parameters","url":"interfaces/RewardsAssignmentObject.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1469,"kind":65536,"name":"__type","url":"interfaces/RewardsAssignmentObject.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1470,"kind":1024,"name":"loyalty","url":"interfaces/RewardsAssignmentObject.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type"},{"id":1471,"kind":65536,"name":"__type","url":"interfaces/RewardsAssignmentObject.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type"},{"id":1472,"kind":1024,"name":"points","url":"interfaces/RewardsAssignmentObject.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsAssignmentObject.__type.__type"},{"id":1473,"kind":1024,"name":"created_at","url":"interfaces/RewardsAssignmentObject.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1474,"kind":1024,"name":"updated_at","url":"interfaces/RewardsAssignmentObject.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1475,"kind":1024,"name":"object","url":"interfaces/RewardsAssignmentObject.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsAssignmentObject"},{"id":1476,"kind":256,"name":"RewardsListAssignmentsParams","url":"interfaces/RewardsListAssignmentsParams.html","classes":"tsd-kind-interface"},{"id":1477,"kind":1024,"name":"limit","url":"interfaces/RewardsListAssignmentsParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsParams"},{"id":1478,"kind":1024,"name":"page","url":"interfaces/RewardsListAssignmentsParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsParams"},{"id":1479,"kind":256,"name":"RewardsListAssignmentsResponse","url":"interfaces/RewardsListAssignmentsResponse.html","classes":"tsd-kind-interface"},{"id":1480,"kind":1024,"name":"total","url":"interfaces/RewardsListAssignmentsResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1481,"kind":1024,"name":"data","url":"interfaces/RewardsListAssignmentsResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1482,"kind":1024,"name":"object","url":"interfaces/RewardsListAssignmentsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1483,"kind":1024,"name":"data_ref","url":"interfaces/RewardsListAssignmentsResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsListAssignmentsResponse"},{"id":1484,"kind":256,"name":"RewardsCreateAssignment","url":"interfaces/RewardsCreateAssignment.html","classes":"tsd-kind-interface"},{"id":1485,"kind":1024,"name":"campaign","url":"interfaces/RewardsCreateAssignment.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1486,"kind":1024,"name":"parameters","url":"interfaces/RewardsCreateAssignment.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1487,"kind":65536,"name":"__type","url":"interfaces/RewardsCreateAssignment.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"RewardsCreateAssignment"},{"id":1488,"kind":1024,"name":"loyalty","url":"interfaces/RewardsCreateAssignment.html#__type.loyalty","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type"},{"id":1489,"kind":65536,"name":"__type","url":"interfaces/RewardsCreateAssignment.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type"},{"id":1490,"kind":1024,"name":"points","url":"interfaces/RewardsCreateAssignment.html#__type.__type-1.points","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"RewardsCreateAssignment.__type.__type"},{"id":1491,"kind":4194304,"name":"RewardsCreateAssignmentResponse","url":"modules.html#RewardsCreateAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":1492,"kind":4194304,"name":"RewardsUpdateAssignment","url":"modules.html#RewardsUpdateAssignment","classes":"tsd-kind-type-alias"},{"id":1493,"kind":4194304,"name":"RewardsUpdateAssignmentResponse","url":"modules.html#RewardsUpdateAssignmentResponse","classes":"tsd-kind-type-alias"},{"id":1494,"kind":256,"name":"RewardRedemptionParams","url":"interfaces/RewardRedemptionParams.html","classes":"tsd-kind-interface"},{"id":1495,"kind":1024,"name":"points","url":"interfaces/RewardRedemptionParams.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1496,"kind":1024,"name":"assignment_id","url":"interfaces/RewardRedemptionParams.html#assignment_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1497,"kind":1024,"name":"id","url":"interfaces/RewardRedemptionParams.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"RewardRedemptionParams"},{"id":1498,"kind":256,"name":"ProductsCreate","url":"interfaces/ProductsCreate.html","classes":"tsd-kind-interface"},{"id":1499,"kind":1024,"name":"name","url":"interfaces/ProductsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1500,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1501,"kind":1024,"name":"price","url":"interfaces/ProductsCreate.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1502,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreate.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1503,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1504,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreate.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreate"},{"id":1505,"kind":256,"name":"ProductsGetResponseSkus","url":"interfaces/ProductsGetResponseSkus.html","classes":"tsd-kind-interface"},{"id":1506,"kind":1024,"name":"skus","url":"interfaces/ProductsGetResponseSkus.html#skus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsGetResponseSkus"},{"id":1507,"kind":65536,"name":"__type","url":"interfaces/ProductsGetResponseSkus.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ProductsGetResponseSkus"},{"id":1508,"kind":1024,"name":"object","url":"interfaces/ProductsGetResponseSkus.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1509,"kind":1024,"name":"total","url":"interfaces/ProductsGetResponseSkus.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1510,"kind":1024,"name":"data","url":"interfaces/ProductsGetResponseSkus.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsGetResponseSkus.__type"},{"id":1511,"kind":256,"name":"ProductsCreateResponse","url":"interfaces/ProductsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1512,"kind":1024,"name":"id","url":"interfaces/ProductsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1513,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1514,"kind":1024,"name":"object","url":"interfaces/ProductsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1515,"kind":1024,"name":"name","url":"interfaces/ProductsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1516,"kind":1024,"name":"price","url":"interfaces/ProductsCreateResponse.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1517,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1518,"kind":1024,"name":"created_at","url":"interfaces/ProductsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1519,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreateResponse.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1520,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateResponse"},{"id":1521,"kind":4194304,"name":"ProductsGetResponse","url":"modules.html#ProductsGetResponse","classes":"tsd-kind-type-alias"},{"id":1522,"kind":4194304,"name":"ProductsUpdate","url":"modules.html#ProductsUpdate","classes":"tsd-kind-type-alias"},{"id":1523,"kind":65536,"name":"__type","url":"modules.html#ProductsUpdate.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsUpdate"},{"id":1524,"kind":1024,"name":"name","url":"modules.html#ProductsUpdate.__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1525,"kind":1024,"name":"id","url":"modules.html#ProductsUpdate.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1526,"kind":1024,"name":"source_id","url":"modules.html#ProductsUpdate.__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1527,"kind":1024,"name":"attributes","url":"modules.html#ProductsUpdate.__type.attributes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1528,"kind":1024,"name":"price","url":"modules.html#ProductsUpdate.__type.price","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1529,"kind":1024,"name":"image_url","url":"modules.html#ProductsUpdate.__type.image_url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1530,"kind":1024,"name":"metadata","url":"modules.html#ProductsUpdate.__type.metadata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsUpdate.__type"},{"id":1531,"kind":4194304,"name":"ProductsUpdateResponse","url":"modules.html#ProductsUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1532,"kind":256,"name":"ProductsBulkUpdateMetadata","url":"interfaces/ProductsBulkUpdateMetadata.html","classes":"tsd-kind-interface"},{"id":1533,"kind":1024,"name":"source_ids","url":"interfaces/ProductsBulkUpdateMetadata.html#source_ids","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsBulkUpdateMetadata"},{"id":1534,"kind":1024,"name":"metadata","url":"interfaces/ProductsBulkUpdateMetadata.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsBulkUpdateMetadata"},{"id":1535,"kind":4194304,"name":"ProductsBulkUpdate","url":"modules.html#ProductsBulkUpdate","classes":"tsd-kind-type-alias"},{"id":1536,"kind":4194304,"name":"ProductsBulkUpdateResponse","url":"modules.html#ProductsBulkUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1537,"kind":65536,"name":"__type","url":"modules.html#ProductsBulkUpdateResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsBulkUpdateResponse"},{"id":1538,"kind":1024,"name":"async_action_id","url":"modules.html#ProductsBulkUpdateResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsBulkUpdateResponse.__type"},{"id":1539,"kind":4194304,"name":"ProductsBulkUpdateMetadataResponse","url":"modules.html#ProductsBulkUpdateMetadataResponse","classes":"tsd-kind-type-alias"},{"id":1540,"kind":65536,"name":"__type","url":"modules.html#ProductsBulkUpdateMetadataResponse.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ProductsBulkUpdateMetadataResponse"},{"id":1541,"kind":1024,"name":"async_action_id","url":"modules.html#ProductsBulkUpdateMetadataResponse.__type.async_action_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ProductsBulkUpdateMetadataResponse.__type"},{"id":1542,"kind":256,"name":"ProductsDeleteParams","url":"interfaces/ProductsDeleteParams.html","classes":"tsd-kind-interface"},{"id":1543,"kind":1024,"name":"force","url":"interfaces/ProductsDeleteParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsDeleteParams"},{"id":1544,"kind":256,"name":"ProductsListParams","url":"interfaces/ProductsListParams.html","classes":"tsd-kind-interface"},{"id":1545,"kind":1024,"name":"page","url":"interfaces/ProductsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListParams"},{"id":1546,"kind":1024,"name":"limit","url":"interfaces/ProductsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListParams"},{"id":1547,"kind":256,"name":"ProductsListResponse","url":"interfaces/ProductsListResponse.html","classes":"tsd-kind-interface"},{"id":1548,"kind":1024,"name":"object","url":"interfaces/ProductsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1549,"kind":1024,"name":"total","url":"interfaces/ProductsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1550,"kind":1024,"name":"data_ref","url":"interfaces/ProductsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1551,"kind":1024,"name":"products","url":"interfaces/ProductsListResponse.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListResponse"},{"id":1552,"kind":256,"name":"ProductsCreateSku","url":"interfaces/ProductsCreateSku.html","classes":"tsd-kind-interface"},{"id":1553,"kind":1024,"name":"sku","url":"interfaces/ProductsCreateSku.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1554,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateSku.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1555,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateSku.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1556,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateSku.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1557,"kind":1024,"name":"price","url":"interfaces/ProductsCreateSku.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1558,"kind":1024,"name":"image_url","url":"interfaces/ProductsCreateSku.html#image_url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1559,"kind":1024,"name":"currency","url":"interfaces/ProductsCreateSku.html#currency","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSku"},{"id":1560,"kind":256,"name":"ProductsCreateSkuResponse","url":"interfaces/ProductsCreateSkuResponse.html","classes":"tsd-kind-interface"},{"id":1561,"kind":1024,"name":"id","url":"interfaces/ProductsCreateSkuResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1562,"kind":1024,"name":"source_id","url":"interfaces/ProductsCreateSkuResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1563,"kind":1024,"name":"sku","url":"interfaces/ProductsCreateSkuResponse.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1564,"kind":1024,"name":"price","url":"interfaces/ProductsCreateSkuResponse.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1565,"kind":1024,"name":"attributes","url":"interfaces/ProductsCreateSkuResponse.html#attributes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1566,"kind":1024,"name":"metadata","url":"interfaces/ProductsCreateSkuResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1567,"kind":1024,"name":"updated_at","url":"interfaces/ProductsCreateSkuResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1568,"kind":1024,"name":"currency","url":"interfaces/ProductsCreateSkuResponse.html#currency","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1569,"kind":1024,"name":"created_at","url":"interfaces/ProductsCreateSkuResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1570,"kind":1024,"name":"object","url":"interfaces/ProductsCreateSkuResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsCreateSkuResponse"},{"id":1571,"kind":4194304,"name":"ProductsGetSkuResponse","url":"modules.html#ProductsGetSkuResponse","classes":"tsd-kind-type-alias"},{"id":1572,"kind":4194304,"name":"ProductsUpdateSku","url":"modules.html#ProductsUpdateSku","classes":"tsd-kind-type-alias"},{"id":1573,"kind":4194304,"name":"ProductsUpdateSkuResponse","url":"modules.html#ProductsUpdateSkuResponse","classes":"tsd-kind-type-alias"},{"id":1574,"kind":256,"name":"ProductsDeleteSkuParams","url":"interfaces/ProductsDeleteSkuParams.html","classes":"tsd-kind-interface"},{"id":1575,"kind":1024,"name":"force","url":"interfaces/ProductsDeleteSkuParams.html#force","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsDeleteSkuParams"},{"id":1576,"kind":256,"name":"ProductsListSkus","url":"interfaces/ProductsListSkus.html","classes":"tsd-kind-interface"},{"id":1577,"kind":1024,"name":"object","url":"interfaces/ProductsListSkus.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1578,"kind":1024,"name":"total","url":"interfaces/ProductsListSkus.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1579,"kind":1024,"name":"skus","url":"interfaces/ProductsListSkus.html#skus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ProductsListSkus"},{"id":1580,"kind":256,"name":"SimpleProduct","url":"interfaces/SimpleProduct.html","classes":"tsd-kind-interface"},{"id":1581,"kind":1024,"name":"id","url":"interfaces/SimpleProduct.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1582,"kind":1024,"name":"source_id","url":"interfaces/SimpleProduct.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1583,"kind":1024,"name":"name","url":"interfaces/SimpleProduct.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleProduct"},{"id":1584,"kind":256,"name":"SimpleSku","url":"interfaces/SimpleSku.html","classes":"tsd-kind-interface"},{"id":1585,"kind":1024,"name":"id","url":"interfaces/SimpleSku.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1586,"kind":1024,"name":"source_id","url":"interfaces/SimpleSku.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1587,"kind":1024,"name":"sku","url":"interfaces/SimpleSku.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SimpleSku"},{"id":1588,"kind":256,"name":"VoucherDiscount","url":"interfaces/VoucherDiscount.html","classes":"tsd-kind-interface"},{"id":1589,"kind":1024,"name":"type","url":"interfaces/VoucherDiscount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1590,"kind":1024,"name":"unit_off","url":"interfaces/VoucherDiscount.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1591,"kind":1024,"name":"unit_off_formula","url":"interfaces/VoucherDiscount.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1592,"kind":1024,"name":"effect","url":"interfaces/VoucherDiscount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1593,"kind":1024,"name":"amount_off","url":"interfaces/VoucherDiscount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1594,"kind":1024,"name":"amount_off_formula","url":"interfaces/VoucherDiscount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1595,"kind":1024,"name":"percent_off","url":"interfaces/VoucherDiscount.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1596,"kind":1024,"name":"percent_off_formula","url":"interfaces/VoucherDiscount.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1597,"kind":1024,"name":"amount_limit","url":"interfaces/VoucherDiscount.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherDiscount"},{"id":1598,"kind":256,"name":"DistributionsPublicationsListParams","url":"interfaces/DistributionsPublicationsListParams.html","classes":"tsd-kind-interface"},{"id":1599,"kind":1024,"name":"limit","url":"interfaces/DistributionsPublicationsListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1600,"kind":1024,"name":"page","url":"interfaces/DistributionsPublicationsListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1601,"kind":1024,"name":"order","url":"interfaces/DistributionsPublicationsListParams.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1602,"kind":1024,"name":"campaign","url":"interfaces/DistributionsPublicationsListParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1603,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsListParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1604,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsListParams.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1605,"kind":1024,"name":"result","url":"interfaces/DistributionsPublicationsListParams.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1606,"kind":1024,"name":"voucher_type","url":"interfaces/DistributionsPublicationsListParams.html#voucher_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1607,"kind":1024,"name":"is_referral_code","url":"interfaces/DistributionsPublicationsListParams.html#is_referral_code","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1608,"kind":1024,"name":"filters","url":"interfaces/DistributionsPublicationsListParams.html#filters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1609,"kind":65536,"name":"__type","url":"interfaces/DistributionsPublicationsListParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"DistributionsPublicationsListParams"},{"id":1610,"kind":1024,"name":"junction","url":"interfaces/DistributionsPublicationsListParams.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsListParams.__type"},{"id":1611,"kind":256,"name":"DistributionsPublicationsListResponse","url":"interfaces/DistributionsPublicationsListResponse.html","classes":"tsd-kind-interface"},{"id":1612,"kind":1024,"name":"object","url":"interfaces/DistributionsPublicationsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1613,"kind":1024,"name":"total","url":"interfaces/DistributionsPublicationsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1614,"kind":1024,"name":"data_ref","url":"interfaces/DistributionsPublicationsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1615,"kind":1024,"name":"publications","url":"interfaces/DistributionsPublicationsListResponse.html#publications","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsListResponse"},{"id":1616,"kind":256,"name":"DistributionsPublicationsCreateParams","url":"interfaces/DistributionsPublicationsCreateParams.html","classes":"tsd-kind-interface"},{"id":1617,"kind":1024,"name":"join_once","url":"interfaces/DistributionsPublicationsCreateParams.html#join_once","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1618,"kind":1024,"name":"source_id","url":"interfaces/DistributionsPublicationsCreateParams.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1619,"kind":1024,"name":"campaign","url":"interfaces/DistributionsPublicationsCreateParams.html#campaign","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1620,"kind":65536,"name":"__type","url":"interfaces/DistributionsPublicationsCreateParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1621,"kind":1024,"name":"name","url":"interfaces/DistributionsPublicationsCreateParams.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsCreateParams.__type"},{"id":1622,"kind":1024,"name":"count","url":"interfaces/DistributionsPublicationsCreateParams.html#__type.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"DistributionsPublicationsCreateParams.__type"},{"id":1623,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsCreateParams.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1624,"kind":1024,"name":"channel","url":"interfaces/DistributionsPublicationsCreateParams.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1625,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsCreateParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateParams"},{"id":1626,"kind":256,"name":"DistributionsPublicationsCreateResponse","url":"interfaces/DistributionsPublicationsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1627,"kind":1024,"name":"id","url":"interfaces/DistributionsPublicationsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1628,"kind":1024,"name":"object","url":"interfaces/DistributionsPublicationsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1629,"kind":1024,"name":"created_at","url":"interfaces/DistributionsPublicationsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1630,"kind":1024,"name":"customer_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#customer_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1631,"kind":1024,"name":"tracking_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#tracking_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1632,"kind":1024,"name":"metadata","url":"interfaces/DistributionsPublicationsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1633,"kind":1024,"name":"channel","url":"interfaces/DistributionsPublicationsCreateResponse.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1634,"kind":1024,"name":"source_id","url":"interfaces/DistributionsPublicationsCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1635,"kind":1024,"name":"result","url":"interfaces/DistributionsPublicationsCreateResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1636,"kind":1024,"name":"customer","url":"interfaces/DistributionsPublicationsCreateResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1637,"kind":1024,"name":"voucher","url":"interfaces/DistributionsPublicationsCreateResponse.html#voucher","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DistributionsPublicationsCreateResponse"},{"id":1638,"kind":256,"name":"SegmentsCreate","url":"interfaces/SegmentsCreate.html","classes":"tsd-kind-interface"},{"id":1639,"kind":1024,"name":"name","url":"interfaces/SegmentsCreate.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1640,"kind":1024,"name":"type","url":"interfaces/SegmentsCreate.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1641,"kind":1024,"name":"filter","url":"interfaces/SegmentsCreate.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1642,"kind":65536,"name":"__type","url":"interfaces/SegmentsCreate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1643,"kind":1024,"name":"junction","url":"interfaces/SegmentsCreate.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SegmentsCreate.__type"},{"id":1644,"kind":1024,"name":"customers","url":"interfaces/SegmentsCreate.html#customers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreate"},{"id":1645,"kind":256,"name":"SegmentsCreateResponse","url":"interfaces/SegmentsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1646,"kind":1024,"name":"id","url":"interfaces/SegmentsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1647,"kind":1024,"name":"name","url":"interfaces/SegmentsCreateResponse.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1648,"kind":1024,"name":"created_at","url":"interfaces/SegmentsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1649,"kind":1024,"name":"metadata","url":"interfaces/SegmentsCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1650,"kind":1024,"name":"filter","url":"interfaces/SegmentsCreateResponse.html#filter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1651,"kind":65536,"name":"__type","url":"interfaces/SegmentsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1652,"kind":1024,"name":"junction","url":"interfaces/SegmentsCreateResponse.html#__type.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"SegmentsCreateResponse.__type"},{"id":1653,"kind":1024,"name":"type","url":"interfaces/SegmentsCreateResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1654,"kind":1024,"name":"object","url":"interfaces/SegmentsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsCreateResponse"},{"id":1655,"kind":4194304,"name":"SegmentsGetResponse","url":"modules.html#SegmentsGetResponse","classes":"tsd-kind-type-alias"},{"id":1656,"kind":256,"name":"SegmentsListResponse","url":"interfaces/SegmentsListResponse.html","classes":"tsd-kind-interface"},{"id":1657,"kind":1024,"name":"object","url":"interfaces/SegmentsListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1658,"kind":1024,"name":"total","url":"interfaces/SegmentsListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1659,"kind":1024,"name":"data_ref","url":"interfaces/SegmentsListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1660,"kind":1024,"name":"data","url":"interfaces/SegmentsListResponse.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"SegmentsListResponse"},{"id":1661,"kind":256,"name":"ExportResource","url":"interfaces/ExportResource.html","classes":"tsd-kind-interface"},{"id":1662,"kind":1024,"name":"exported_object","url":"interfaces/ExportResource.html#exported_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportResource"},{"id":1663,"kind":1024,"name":"parameters","url":"interfaces/ExportResource.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportResource"},{"id":1664,"kind":65536,"name":"__type","url":"interfaces/ExportResource.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportResource"},{"id":1665,"kind":1024,"name":"order","url":"interfaces/ExportResource.html#__type.order","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1666,"kind":1024,"name":"fields","url":"interfaces/ExportResource.html#__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1667,"kind":1024,"name":"filters","url":"interfaces/ExportResource.html#__type.filters","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1668,"kind":65536,"name":"__type","url":"interfaces/ExportResource.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ExportResource.__type"},{"id":1669,"kind":1024,"name":"junction","url":"interfaces/ExportResource.html#__type.__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportResource.__type.__type"},{"id":1670,"kind":256,"name":"ExportsCreateResponse","url":"interfaces/ExportsCreateResponse.html","classes":"tsd-kind-interface"},{"id":1671,"kind":1024,"name":"id","url":"interfaces/ExportsCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1672,"kind":1024,"name":"object","url":"interfaces/ExportsCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1673,"kind":1024,"name":"created_at","url":"interfaces/ExportsCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1674,"kind":1024,"name":"status","url":"interfaces/ExportsCreateResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1675,"kind":1024,"name":"channel","url":"interfaces/ExportsCreateResponse.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1676,"kind":1024,"name":"exported_object","url":"interfaces/ExportsCreateResponse.html#exported_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1677,"kind":1024,"name":"parameters","url":"interfaces/ExportsCreateResponse.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1678,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1679,"kind":1024,"name":"fields","url":"interfaces/ExportsCreateResponse.html#__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1680,"kind":1024,"name":"filters","url":"interfaces/ExportsCreateResponse.html#__type.filters","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1681,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1682,"kind":1024,"name":"junction","url":"interfaces/ExportsCreateResponse.html#__type.__type-1.junction","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type.__type"},{"id":1683,"kind":1024,"name":"result","url":"interfaces/ExportsCreateResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1684,"kind":65536,"name":"__type","url":"interfaces/ExportsCreateResponse.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ExportsCreateResponse"},{"id":1685,"kind":1024,"name":"url","url":"interfaces/ExportsCreateResponse.html#__type-2.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ExportsCreateResponse.__type"},{"id":1686,"kind":4194304,"name":"ExportsGetResponse","url":"modules.html#ExportsGetResponse","classes":"tsd-kind-type-alias"},{"id":1687,"kind":256,"name":"OrdersItem","url":"interfaces/OrdersItem.html","classes":"tsd-kind-interface"},{"id":1688,"kind":1024,"name":"sku_id","url":"interfaces/OrdersItem.html#sku_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1689,"kind":1024,"name":"product_id","url":"interfaces/OrdersItem.html#product_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1690,"kind":1024,"name":"related_object","url":"interfaces/OrdersItem.html#related_object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1691,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#source_id-2","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1692,"kind":1024,"name":"discount_quantity","url":"interfaces/OrdersItem.html#discount_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1693,"kind":1024,"name":"initial_quantity","url":"interfaces/OrdersItem.html#initial_quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1694,"kind":1024,"name":"quantity","url":"interfaces/OrdersItem.html#quantity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1695,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1696,"kind":1024,"name":"amount","url":"interfaces/OrdersItem.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1697,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersItem.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1698,"kind":1024,"name":"initial_amount","url":"interfaces/OrdersItem.html#initial_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1699,"kind":1024,"name":"applied_discount_amount","url":"interfaces/OrdersItem.html#applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1700,"kind":1024,"name":"subtotal_amount","url":"interfaces/OrdersItem.html#subtotal_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1701,"kind":1024,"name":"product","url":"interfaces/OrdersItem.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1702,"kind":65536,"name":"__type","url":"interfaces/OrdersItem.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1703,"kind":1024,"name":"id","url":"interfaces/OrdersItem.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1704,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#__type.source_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1705,"kind":1024,"name":"override","url":"interfaces/OrdersItem.html#__type.override","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1706,"kind":1024,"name":"name","url":"interfaces/OrdersItem.html#__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1707,"kind":1024,"name":"metadata","url":"interfaces/OrdersItem.html#__type.metadata-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1708,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#__type.price-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1709,"kind":1024,"name":"sku","url":"interfaces/OrdersItem.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1710,"kind":65536,"name":"__type","url":"interfaces/OrdersItem.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1711,"kind":1024,"name":"id","url":"interfaces/OrdersItem.html#__type-1.id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1712,"kind":1024,"name":"source_id","url":"interfaces/OrdersItem.html#__type-1.source_id-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1713,"kind":1024,"name":"override","url":"interfaces/OrdersItem.html#__type-1.override-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1714,"kind":1024,"name":"sku","url":"interfaces/OrdersItem.html#__type-1.sku-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1715,"kind":1024,"name":"price","url":"interfaces/OrdersItem.html#__type-1.price-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersItem.__type"},{"id":1716,"kind":1024,"name":"object","url":"interfaces/OrdersItem.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1717,"kind":1024,"name":"metadata","url":"interfaces/OrdersItem.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersItem"},{"id":1718,"kind":256,"name":"OrdersCreate","url":"interfaces/OrdersCreate.html","classes":"tsd-kind-interface"},{"id":1719,"kind":1024,"name":"source_id","url":"interfaces/OrdersCreate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1720,"kind":1024,"name":"status","url":"interfaces/OrdersCreate.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1721,"kind":1024,"name":"customer","url":"interfaces/OrdersCreate.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1722,"kind":1024,"name":"amount","url":"interfaces/OrdersCreate.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1723,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersCreate.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1724,"kind":1024,"name":"items","url":"interfaces/OrdersCreate.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1725,"kind":1024,"name":"metadata","url":"interfaces/OrdersCreate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreate"},{"id":1726,"kind":256,"name":"OrdersCreateResponse","url":"interfaces/OrdersCreateResponse.html","classes":"tsd-kind-interface"},{"id":1727,"kind":1024,"name":"id","url":"interfaces/OrdersCreateResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1728,"kind":1024,"name":"source_id","url":"interfaces/OrdersCreateResponse.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1729,"kind":1024,"name":"created_at","url":"interfaces/OrdersCreateResponse.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1730,"kind":1024,"name":"updated_at","url":"interfaces/OrdersCreateResponse.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1731,"kind":1024,"name":"status","url":"interfaces/OrdersCreateResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1732,"kind":1024,"name":"amount","url":"interfaces/OrdersCreateResponse.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1733,"kind":1024,"name":"initial_amount","url":"interfaces/OrdersCreateResponse.html#initial_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1734,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersCreateResponse.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1735,"kind":1024,"name":"items_discount_amount","url":"interfaces/OrdersCreateResponse.html#items_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1736,"kind":1024,"name":"total_discount_amount","url":"interfaces/OrdersCreateResponse.html#total_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1737,"kind":1024,"name":"applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1738,"kind":1024,"name":"items_applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#items_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1739,"kind":1024,"name":"total_amount","url":"interfaces/OrdersCreateResponse.html#total_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1740,"kind":1024,"name":"total_applied_discount_amount","url":"interfaces/OrdersCreateResponse.html#total_applied_discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1741,"kind":1024,"name":"items","url":"interfaces/OrdersCreateResponse.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1742,"kind":1024,"name":"metadata","url":"interfaces/OrdersCreateResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1743,"kind":1024,"name":"customer","url":"interfaces/OrdersCreateResponse.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1744,"kind":1024,"name":"object","url":"interfaces/OrdersCreateResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersCreateResponse"},{"id":1745,"kind":4194304,"name":"OrdersGetResponse","url":"modules.html#OrdersGetResponse","classes":"tsd-kind-type-alias"},{"id":1746,"kind":256,"name":"OrdersUpdate","url":"interfaces/OrdersUpdate.html","classes":"tsd-kind-interface"},{"id":1747,"kind":1024,"name":"id","url":"interfaces/OrdersUpdate.html#id-1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1748,"kind":1024,"name":"source_id","url":"interfaces/OrdersUpdate.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1749,"kind":1024,"name":"status","url":"interfaces/OrdersUpdate.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1750,"kind":1024,"name":"items","url":"interfaces/OrdersUpdate.html#items","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1751,"kind":1024,"name":"amount","url":"interfaces/OrdersUpdate.html#amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1752,"kind":1024,"name":"discount_amount","url":"interfaces/OrdersUpdate.html#discount_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1753,"kind":1024,"name":"metadata","url":"interfaces/OrdersUpdate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1754,"kind":1024,"name":"customer","url":"interfaces/OrdersUpdate.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1755,"kind":65536,"name":"__type","url":"interfaces/OrdersUpdate.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"OrdersUpdate"},{"id":1756,"kind":1024,"name":"id","url":"interfaces/OrdersUpdate.html#__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"OrdersUpdate.__type"},{"id":1757,"kind":4194304,"name":"OrdersUpdateResponse","url":"modules.html#OrdersUpdateResponse","classes":"tsd-kind-type-alias"},{"id":1758,"kind":256,"name":"OrdersListParams","url":"interfaces/OrdersListParams.html","classes":"tsd-kind-interface"},{"id":1759,"kind":1024,"name":"limit","url":"interfaces/OrdersListParams.html#limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListParams"},{"id":1760,"kind":1024,"name":"page","url":"interfaces/OrdersListParams.html#page","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListParams"},{"id":1761,"kind":256,"name":"OrdersListResponse","url":"interfaces/OrdersListResponse.html","classes":"tsd-kind-interface"},{"id":1762,"kind":1024,"name":"object","url":"interfaces/OrdersListResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1763,"kind":1024,"name":"total","url":"interfaces/OrdersListResponse.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1764,"kind":1024,"name":"data_ref","url":"interfaces/OrdersListResponse.html#data_ref","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1765,"kind":1024,"name":"orders","url":"interfaces/OrdersListResponse.html#orders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"OrdersListResponse"},{"id":1766,"kind":256,"name":"Consent","url":"interfaces/Consent.html","classes":"tsd-kind-interface"},{"id":1767,"kind":1024,"name":"id","url":"interfaces/Consent.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1768,"kind":1024,"name":"name","url":"interfaces/Consent.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1769,"kind":1024,"name":"description","url":"interfaces/Consent.html#description","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1770,"kind":1024,"name":"category","url":"interfaces/Consent.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1771,"kind":1024,"name":"created_at","url":"interfaces/Consent.html#created_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1772,"kind":1024,"name":"updated_at","url":"interfaces/Consent.html#updated_at","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1773,"kind":1024,"name":"object","url":"interfaces/Consent.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Consent"},{"id":1774,"kind":256,"name":"ConsentsListResponse","url":"interfaces/ConsentsListResponse.html","classes":"tsd-kind-interface"},{"id":1775,"kind":1024,"name":"groups","url":"interfaces/ConsentsListResponse.html#groups","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1776,"kind":65536,"name":"__type","url":"interfaces/ConsentsListResponse.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1777,"kind":1024,"name":"object","url":"interfaces/ConsentsListResponse.html#__type-1.object-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1778,"kind":1024,"name":"total","url":"interfaces/ConsentsListResponse.html#__type-1.total-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1779,"kind":1024,"name":"data_ref","url":"interfaces/ConsentsListResponse.html#__type-1.data_ref-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1780,"kind":1024,"name":"data","url":"interfaces/ConsentsListResponse.html#__type-1.data-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1781,"kind":1024,"name":"consents","url":"interfaces/ConsentsListResponse.html#consents","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1782,"kind":65536,"name":"__type","url":"interfaces/ConsentsListResponse.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"ConsentsListResponse"},{"id":1783,"kind":1024,"name":"object","url":"interfaces/ConsentsListResponse.html#__type.object","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1784,"kind":1024,"name":"total","url":"interfaces/ConsentsListResponse.html#__type.total","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1785,"kind":1024,"name":"data_ref","url":"interfaces/ConsentsListResponse.html#__type.data_ref","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1786,"kind":1024,"name":"data","url":"interfaces/ConsentsListResponse.html#__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ConsentsListResponse.__type"},{"id":1787,"kind":256,"name":"EventsParams","url":"interfaces/EventsParams.html","classes":"tsd-kind-interface"},{"id":1788,"kind":1024,"name":"event","url":"interfaces/EventsParams.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1789,"kind":1024,"name":"customer","url":"interfaces/EventsParams.html#customer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1790,"kind":1024,"name":"metadata","url":"interfaces/EventsParams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1791,"kind":1024,"name":"referral","url":"interfaces/EventsParams.html#referral","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1792,"kind":65536,"name":"__type","url":"interfaces/EventsParams.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"EventsParams"},{"id":1793,"kind":1024,"name":"code","url":"interfaces/EventsParams.html#__type-1.code-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1794,"kind":1024,"name":"referrer_id","url":"interfaces/EventsParams.html#__type-1.referrer_id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1795,"kind":1024,"name":"loyalty","url":"interfaces/EventsParams.html#loyalty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsParams"},{"id":1796,"kind":65536,"name":"__type","url":"interfaces/EventsParams.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"EventsParams"},{"id":1797,"kind":1024,"name":"code","url":"interfaces/EventsParams.html#__type.code","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EventsParams.__type"},{"id":1798,"kind":256,"name":"EventsResponse","url":"interfaces/EventsResponse.html","classes":"tsd-kind-interface"},{"id":1799,"kind":1024,"name":"object","url":"interfaces/EventsResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsResponse"},{"id":1800,"kind":1024,"name":"type","url":"interfaces/EventsResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EventsResponse"},{"id":1801,"kind":256,"name":"StackableOptions","url":"interfaces/StackableOptions.html","classes":"tsd-kind-interface"},{"id":1802,"kind":1024,"name":"expand","url":"interfaces/StackableOptions.html#expand","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableOptions"},{"id":1803,"kind":4194304,"name":"StackableRedeemableObject","url":"modules.html#StackableRedeemableObject","classes":"tsd-kind-type-alias"},{"id":1804,"kind":256,"name":"StackableRedeemableParams","url":"interfaces/StackableRedeemableParams.html","classes":"tsd-kind-interface"},{"id":1805,"kind":1024,"name":"object","url":"interfaces/StackableRedeemableParams.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1806,"kind":1024,"name":"id","url":"interfaces/StackableRedeemableParams.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1807,"kind":1024,"name":"reward","url":"interfaces/StackableRedeemableParams.html#reward","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1808,"kind":1024,"name":"gift","url":"interfaces/StackableRedeemableParams.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableParams"},{"id":1809,"kind":4194304,"name":"StackableRedeemableResponseStatus","url":"modules.html#StackableRedeemableResponseStatus","classes":"tsd-kind-type-alias"},{"id":1810,"kind":256,"name":"StackableRedeemableResultDiscountUnit","url":"interfaces/StackableRedeemableResultDiscountUnit.html","classes":"tsd-kind-interface"},{"id":1811,"kind":1024,"name":"effect","url":"interfaces/StackableRedeemableResultDiscountUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1812,"kind":1024,"name":"unit_off","url":"interfaces/StackableRedeemableResultDiscountUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1813,"kind":1024,"name":"unit_type","url":"interfaces/StackableRedeemableResultDiscountUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1814,"kind":1024,"name":"sku","url":"interfaces/StackableRedeemableResultDiscountUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1815,"kind":1024,"name":"product","url":"interfaces/StackableRedeemableResultDiscountUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscountUnit"},{"id":1816,"kind":256,"name":"StackableRedeemableResultDiscount","url":"interfaces/StackableRedeemableResultDiscount.html","classes":"tsd-kind-interface"},{"id":1817,"kind":1024,"name":"type","url":"interfaces/StackableRedeemableResultDiscount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1818,"kind":1024,"name":"effect","url":"interfaces/StackableRedeemableResultDiscount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1819,"kind":1024,"name":"amount_off","url":"interfaces/StackableRedeemableResultDiscount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1820,"kind":1024,"name":"amount_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1821,"kind":1024,"name":"percent_off","url":"interfaces/StackableRedeemableResultDiscount.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1822,"kind":1024,"name":"percent_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1823,"kind":1024,"name":"amount_limit","url":"interfaces/StackableRedeemableResultDiscount.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1824,"kind":1024,"name":"fixed_amount","url":"interfaces/StackableRedeemableResultDiscount.html#fixed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1825,"kind":1024,"name":"fixed_amount_formula","url":"interfaces/StackableRedeemableResultDiscount.html#fixed_amount_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1826,"kind":1024,"name":"unit_off","url":"interfaces/StackableRedeemableResultDiscount.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1827,"kind":1024,"name":"unit_off_formula","url":"interfaces/StackableRedeemableResultDiscount.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1828,"kind":1024,"name":"unit_type","url":"interfaces/StackableRedeemableResultDiscount.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1829,"kind":1024,"name":"sku","url":"interfaces/StackableRedeemableResultDiscount.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1830,"kind":1024,"name":"product","url":"interfaces/StackableRedeemableResultDiscount.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1831,"kind":1024,"name":"units","url":"interfaces/StackableRedeemableResultDiscount.html#units","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultDiscount"},{"id":1832,"kind":256,"name":"StackableRedeemableResultGift","url":"interfaces/StackableRedeemableResultGift.html","classes":"tsd-kind-interface"},{"id":1833,"kind":1024,"name":"credits","url":"interfaces/StackableRedeemableResultGift.html#credits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultGift"},{"id":1834,"kind":256,"name":"StackableRedeemableResultLoyaltyCard","url":"interfaces/StackableRedeemableResultLoyaltyCard.html","classes":"tsd-kind-interface"},{"id":1835,"kind":1024,"name":"points","url":"interfaces/StackableRedeemableResultLoyaltyCard.html#points","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultLoyaltyCard"},{"id":1836,"kind":1024,"name":"transfers","url":"interfaces/StackableRedeemableResultLoyaltyCard.html#transfers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultLoyaltyCard"},{"id":1837,"kind":256,"name":"StackableRedeemableResultResponse","url":"interfaces/StackableRedeemableResultResponse.html","classes":"tsd-kind-interface"},{"id":1838,"kind":1024,"name":"discount","url":"interfaces/StackableRedeemableResultResponse.html#discount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1839,"kind":1024,"name":"gift","url":"interfaces/StackableRedeemableResultResponse.html#gift","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1840,"kind":1024,"name":"loyalty_card","url":"interfaces/StackableRedeemableResultResponse.html#loyalty_card","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1841,"kind":1024,"name":"error","url":"interfaces/StackableRedeemableResultResponse.html#error","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResultResponse"},{"id":1842,"kind":256,"name":"StackableRedeemableResponse","url":"interfaces/StackableRedeemableResponse.html","classes":"tsd-kind-interface"},{"id":1843,"kind":1024,"name":"status","url":"interfaces/StackableRedeemableResponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1844,"kind":1024,"name":"id","url":"interfaces/StackableRedeemableResponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1845,"kind":1024,"name":"object","url":"interfaces/StackableRedeemableResponse.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1846,"kind":1024,"name":"order","url":"interfaces/StackableRedeemableResponse.html#order","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1847,"kind":1024,"name":"applicable_to","url":"interfaces/StackableRedeemableResponse.html#applicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1848,"kind":1024,"name":"inapplicable_to","url":"interfaces/StackableRedeemableResponse.html#inapplicable_to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1849,"kind":1024,"name":"result","url":"interfaces/StackableRedeemableResponse.html#result","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1850,"kind":1024,"name":"metadata","url":"interfaces/StackableRedeemableResponse.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"StackableRedeemableResponse"},{"id":1851,"kind":256,"name":"GiftRedemptionParams","url":"interfaces/GiftRedemptionParams.html","classes":"tsd-kind-interface"},{"id":1852,"kind":1024,"name":"credits","url":"interfaces/GiftRedemptionParams.html#credits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"GiftRedemptionParams"},{"id":1853,"kind":4194304,"name":"ValidationSessionType","url":"modules.html#ValidationSessionType","classes":"tsd-kind-type-alias"},{"id":1854,"kind":4194304,"name":"ValidationSessionTTLUnit","url":"modules.html#ValidationSessionTTLUnit","classes":"tsd-kind-type-alias"},{"id":1855,"kind":256,"name":"ValidationSessionParams","url":"interfaces/ValidationSessionParams.html","classes":"tsd-kind-interface"},{"id":1856,"kind":1024,"name":"key","url":"interfaces/ValidationSessionParams.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1857,"kind":1024,"name":"type","url":"interfaces/ValidationSessionParams.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1858,"kind":1024,"name":"ttl","url":"interfaces/ValidationSessionParams.html#ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1859,"kind":1024,"name":"ttl_unit","url":"interfaces/ValidationSessionParams.html#ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionParams"},{"id":1860,"kind":256,"name":"ValidationSessionResponse","url":"interfaces/ValidationSessionResponse.html","classes":"tsd-kind-interface"},{"id":1861,"kind":1024,"name":"key","url":"interfaces/ValidationSessionResponse.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1862,"kind":1024,"name":"type","url":"interfaces/ValidationSessionResponse.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1863,"kind":1024,"name":"ttl","url":"interfaces/ValidationSessionResponse.html#ttl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1864,"kind":1024,"name":"ttl_unit","url":"interfaces/ValidationSessionResponse.html#ttl_unit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionResponse"},{"id":1865,"kind":256,"name":"ValidationSessionReleaseParams","url":"interfaces/ValidationSessionReleaseParams.html","classes":"tsd-kind-interface"},{"id":1866,"kind":1024,"name":"key","url":"interfaces/ValidationSessionReleaseParams.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ValidationSessionReleaseParams"},{"id":1867,"kind":4194304,"name":"ApplicableToEffect","url":"modules.html#ApplicableToEffect","classes":"tsd-kind-type-alias"},{"id":1868,"kind":256,"name":"ApplicableTo","url":"interfaces/ApplicableTo.html","classes":"tsd-kind-interface"},{"id":1869,"kind":1024,"name":"object","url":"interfaces/ApplicableTo.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1870,"kind":1024,"name":"id","url":"interfaces/ApplicableTo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1871,"kind":1024,"name":"source_id","url":"interfaces/ApplicableTo.html#source_id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1872,"kind":1024,"name":"strict","url":"interfaces/ApplicableTo.html#strict","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1873,"kind":1024,"name":"price","url":"interfaces/ApplicableTo.html#price","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1874,"kind":1024,"name":"price_formula","url":"interfaces/ApplicableTo.html#price_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1875,"kind":1024,"name":"effect","url":"interfaces/ApplicableTo.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableTo"},{"id":1876,"kind":256,"name":"ApplicableToResultList","url":"interfaces/ApplicableToResultList.html","classes":"tsd-kind-interface"},{"id":1877,"kind":1024,"name":"object","url":"interfaces/ApplicableToResultList.html#object","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1878,"kind":1024,"name":"total","url":"interfaces/ApplicableToResultList.html#total","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1879,"kind":1024,"name":"data","url":"interfaces/ApplicableToResultList.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ApplicableToResultList"},{"id":1880,"kind":4194304,"name":"DiscountVouchersTypes","url":"modules.html#DiscountVouchersTypes","classes":"tsd-kind-type-alias"},{"id":1881,"kind":4,"name":"DiscountVouchersTypesEnum","url":"enums/DiscountVouchersTypesEnum.html","classes":"tsd-kind-enum"},{"id":1882,"kind":16,"name":"AMOUNT","url":"enums/DiscountVouchersTypesEnum.html#AMOUNT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1883,"kind":16,"name":"PERCENT","url":"enums/DiscountVouchersTypesEnum.html#PERCENT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1884,"kind":16,"name":"UNIT","url":"enums/DiscountVouchersTypesEnum.html#UNIT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1885,"kind":16,"name":"FIXED","url":"enums/DiscountVouchersTypesEnum.html#FIXED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"DiscountVouchersTypesEnum"},{"id":1886,"kind":4194304,"name":"DiscountVouchersEffectTypes","url":"modules.html#DiscountVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1887,"kind":4194304,"name":"DiscountUnitVouchersEffectTypes","url":"modules.html#DiscountUnitVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1888,"kind":4194304,"name":"DiscountAmountVouchersEffectTypes","url":"modules.html#DiscountAmountVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1889,"kind":4194304,"name":"DiscountPercentVouchersEffectTypes","url":"modules.html#DiscountPercentVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1890,"kind":4194304,"name":"DiscountFixedVouchersEffectTypes","url":"modules.html#DiscountFixedVouchersEffectTypes","classes":"tsd-kind-type-alias"},{"id":1891,"kind":256,"name":"DiscountUnit","url":"interfaces/DiscountUnit.html","classes":"tsd-kind-interface"},{"id":1892,"kind":1024,"name":"type","url":"interfaces/DiscountUnit.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1893,"kind":1024,"name":"unit_off","url":"interfaces/DiscountUnit.html#unit_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1894,"kind":1024,"name":"unit_off_formula","url":"interfaces/DiscountUnit.html#unit_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1895,"kind":1024,"name":"effect","url":"interfaces/DiscountUnit.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1896,"kind":1024,"name":"unit_type","url":"interfaces/DiscountUnit.html#unit_type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1897,"kind":1024,"name":"product","url":"interfaces/DiscountUnit.html#product","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1898,"kind":1024,"name":"sku","url":"interfaces/DiscountUnit.html#sku","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountUnit"},{"id":1899,"kind":256,"name":"DiscountAmount","url":"interfaces/DiscountAmount.html","classes":"tsd-kind-interface"},{"id":1900,"kind":1024,"name":"type","url":"interfaces/DiscountAmount.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1901,"kind":1024,"name":"amount_off","url":"interfaces/DiscountAmount.html#amount_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1902,"kind":1024,"name":"amount_off_formula","url":"interfaces/DiscountAmount.html#amount_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1903,"kind":1024,"name":"effect","url":"interfaces/DiscountAmount.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountAmount"},{"id":1904,"kind":256,"name":"DiscountPercent","url":"interfaces/DiscountPercent.html","classes":"tsd-kind-interface"},{"id":1905,"kind":1024,"name":"type","url":"interfaces/DiscountPercent.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1906,"kind":1024,"name":"percent_off","url":"interfaces/DiscountPercent.html#percent_off","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1907,"kind":1024,"name":"percent_off_formula","url":"interfaces/DiscountPercent.html#percent_off_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1908,"kind":1024,"name":"amount_limit","url":"interfaces/DiscountPercent.html#amount_limit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1909,"kind":1024,"name":"effect","url":"interfaces/DiscountPercent.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountPercent"},{"id":1910,"kind":256,"name":"DiscountFixed","url":"interfaces/DiscountFixed.html","classes":"tsd-kind-interface"},{"id":1911,"kind":1024,"name":"type","url":"interfaces/DiscountFixed.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1912,"kind":1024,"name":"fixed_amount","url":"interfaces/DiscountFixed.html#fixed_amount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1913,"kind":1024,"name":"fixed_amount_formula","url":"interfaces/DiscountFixed.html#fixed_amount_formula","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1914,"kind":1024,"name":"effect","url":"interfaces/DiscountFixed.html#effect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DiscountFixed"},{"id":1915,"kind":64,"name":"VoucherifyServerSide","url":"modules.html#VoucherifyServerSide","classes":"tsd-kind-function"},{"id":1916,"kind":256,"name":"VoucherifyServerSideOptions","url":"interfaces/VoucherifyServerSideOptions.html","classes":"tsd-kind-interface"},{"id":1917,"kind":1024,"name":"apiUrl","url":"interfaces/VoucherifyServerSideOptions.html#apiUrl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1918,"kind":1024,"name":"applicationId","url":"interfaces/VoucherifyServerSideOptions.html#applicationId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1919,"kind":1024,"name":"secretKey","url":"interfaces/VoucherifyServerSideOptions.html#secretKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1920,"kind":1024,"name":"apiVersion","url":"interfaces/VoucherifyServerSideOptions.html#apiVersion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1921,"kind":1024,"name":"channel","url":"interfaces/VoucherifyServerSideOptions.html#channel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1922,"kind":1024,"name":"dangerouslySetSecretKeyInBrowser","url":"interfaces/VoucherifyServerSideOptions.html#dangerouslySetSecretKeyInBrowser","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1923,"kind":1024,"name":"customHeaders","url":"interfaces/VoucherifyServerSideOptions.html#customHeaders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1924,"kind":1024,"name":"exposeErrorCause","url":"interfaces/VoucherifyServerSideOptions.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyServerSideOptions"},{"id":1925,"kind":64,"name":"VoucherifyClientSide","url":"modules.html#VoucherifyClientSide","classes":"tsd-kind-function"},{"id":1926,"kind":256,"name":"VoucherifyClientSideOptions","url":"interfaces/VoucherifyClientSideOptions.html","classes":"tsd-kind-interface"},{"id":1927,"kind":1024,"name":"apiUrl","url":"interfaces/VoucherifyClientSideOptions.html#apiUrl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1928,"kind":1024,"name":"clientApplicationId","url":"interfaces/VoucherifyClientSideOptions.html#clientApplicationId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1929,"kind":1024,"name":"clientSecretKey","url":"interfaces/VoucherifyClientSideOptions.html#clientSecretKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1930,"kind":1024,"name":"trackingId","url":"interfaces/VoucherifyClientSideOptions.html#trackingId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1931,"kind":1024,"name":"origin","url":"interfaces/VoucherifyClientSideOptions.html#origin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1932,"kind":1024,"name":"customHeaders","url":"interfaces/VoucherifyClientSideOptions.html#customHeaders","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"},{"id":1933,"kind":1024,"name":"exposeErrorCause","url":"interfaces/VoucherifyClientSideOptions.html#exposeErrorCause","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"VoucherifyClientSideOptions"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,49.652]],["parent/0",[]],["name/1",[1,44.998]],["parent/1",[0,4.621]],["name/2",[2,48.937]],["parent/2",[0,4.621]],["name/3",[3,48.937]],["parent/3",[]],["name/4",[1,44.998]],["parent/4",[3,4.554]],["name/5",[4,66.516]],["parent/5",[3,4.554]],["name/6",[2,48.937]],["parent/6",[3,4.554]],["name/7",[5,53.166]],["parent/7",[3,4.554]],["name/8",[6,49.652]],["parent/8",[3,4.554]],["name/9",[7,51.255]],["parent/9",[3,4.554]],["name/10",[8,71.624]],["parent/10",[3,4.554]],["name/11",[9,71.624]],["parent/11",[3,4.554]],["name/12",[10,71.624]],["parent/12",[3,4.554]],["name/13",[11,50.421]],["parent/13",[3,4.554]],["name/14",[12,49.652]],["parent/14",[]],["name/15",[1,44.998]],["parent/15",[12,4.621]],["name/16",[13,71.624]],["parent/16",[12,4.621]],["name/17",[14,60.638]],["parent/17",[12,4.621]],["name/18",[15,63.151]],["parent/18",[12,4.621]],["name/19",[16,60.638]],["parent/19",[12,4.621]],["name/20",[17,71.624]],["parent/20",[12,4.621]],["name/21",[18,71.624]],["parent/21",[12,4.621]],["name/22",[19,71.624]],["parent/22",[12,4.621]],["name/23",[20,71.624]],["parent/23",[12,4.621]],["name/24",[21,66.516]],["parent/24",[12,4.621]],["name/25",[22,66.516]],["parent/25",[12,4.621]],["name/26",[23,66.516]],["parent/26",[12,4.621]],["name/27",[24,60.638]],["parent/27",[]],["name/28",[1,44.998]],["parent/28",[24,5.643]],["name/29",[11,50.421]],["parent/29",[24,5.643]],["name/30",[25,50.421]],["parent/30",[]],["name/31",[1,44.998]],["parent/31",[25,4.692]],["name/32",[2,48.937]],["parent/32",[25,4.692]],["name/33",[6,49.652]],["parent/33",[25,4.692]],["name/34",[11,50.421]],["parent/34",[25,4.692]],["name/35",[26,71.624]],["parent/35",[25,4.692]],["name/36",[5,53.166]],["parent/36",[25,4.692]],["name/37",[7,51.255]],["parent/37",[25,4.692]],["name/38",[21,66.516]],["parent/38",[25,4.692]],["name/39",[27,71.624]],["parent/39",[25,4.692]],["name/40",[28,60.638]],["parent/40",[]],["name/41",[1,44.998]],["parent/41",[28,5.643]],["name/42",[29,66.516]],["parent/42",[28,5.643]],["name/43",[30,56.961]],["parent/43",[28,5.643]],["name/44",[31,63.151]],["parent/44",[]],["name/45",[1,44.998]],["parent/45",[31,5.877]],["name/46",[2,48.937]],["parent/46",[31,5.877]],["name/47",[30,56.961]],["parent/47",[]],["name/48",[1,44.998]],["parent/48",[30,5.301]],["name/49",[2,48.937]],["parent/49",[30,5.301]],["name/50",[6,49.652]],["parent/50",[30,5.301]],["name/51",[7,51.255]],["parent/51",[30,5.301]],["name/52",[32,44.998]],["parent/52",[]],["name/53",[1,44.998]],["parent/53",[32,4.188]],["name/54",[11,50.421]],["parent/54",[32,4.188]],["name/55",[2,48.937]],["parent/55",[32,4.188]],["name/56",[6,49.652]],["parent/56",[32,4.188]],["name/57",[5,53.166]],["parent/57",[32,4.188]],["name/58",[7,51.255]],["parent/58",[32,4.188]],["name/59",[33,71.624]],["parent/59",[32,4.188]],["name/60",[34,71.624]],["parent/60",[32,4.188]],["name/61",[35,71.624]],["parent/61",[32,4.188]],["name/62",[36,71.624]],["parent/62",[32,4.188]],["name/63",[37,71.624]],["parent/63",[32,4.188]],["name/64",[38,71.624]],["parent/64",[32,4.188]],["name/65",[39,71.624]],["parent/65",[32,4.188]],["name/66",[40,71.624]],["parent/66",[32,4.188]],["name/67",[41,71.624]],["parent/67",[32,4.188]],["name/68",[42,71.624]],["parent/68",[32,4.188]],["name/69",[43,71.624]],["parent/69",[32,4.188]],["name/70",[44,71.624]],["parent/70",[32,4.188]],["name/71",[45,71.624]],["parent/71",[32,4.188]],["name/72",[46,71.624]],["parent/72",[32,4.188]],["name/73",[47,53.166]],["parent/73",[]],["name/74",[1,44.998]],["parent/74",[47,4.948]],["name/75",[2,48.937]],["parent/75",[47,4.948]],["name/76",[6,49.652]],["parent/76",[47,4.948]],["name/77",[5,53.166]],["parent/77",[47,4.948]],["name/78",[11,50.421]],["parent/78",[47,4.948]],["name/79",[48,66.516]],["parent/79",[47,4.948]],["name/80",[49,48.27]],["parent/80",[]],["name/81",[1,44.998]],["parent/81",[49,4.492]],["name/82",[2,48.937]],["parent/82",[49,4.492]],["name/83",[6,49.652]],["parent/83",[49,4.492]],["name/84",[5,53.166]],["parent/84",[49,4.492]],["name/85",[50,66.516]],["parent/85",[49,4.492]],["name/86",[51,66.516]],["parent/86",[49,4.492]],["name/87",[7,51.255]],["parent/87",[49,4.492]],["name/88",[11,50.421]],["parent/88",[49,4.492]],["name/89",[52,71.624]],["parent/89",[49,4.492]],["name/90",[53,71.624]],["parent/90",[49,4.492]],["name/91",[54,71.624]],["parent/91",[49,4.492]],["name/92",[55,71.624]],["parent/92",[49,4.492]],["name/93",[56,71.624]],["parent/93",[49,4.492]],["name/94",[57,55.53]],["parent/94",[]],["name/95",[1,44.998]],["parent/95",[57,5.168]],["name/96",[58,60.638]],["parent/96",[57,5.168]],["name/97",[2,48.937]],["parent/97",[57,5.168]],["name/98",[14,60.638]],["parent/98",[57,5.168]],["name/99",[59,53.166]],["parent/99",[]],["name/100",[1,44.998]],["parent/100",[59,4.948]],["name/101",[60,71.624]],["parent/101",[59,4.948]],["name/102",[11,50.421]],["parent/102",[59,4.948]],["name/103",[6,49.652]],["parent/103",[59,4.948]],["name/104",[2,48.937]],["parent/104",[59,4.948]],["name/105",[15,63.151]],["parent/105",[59,4.948]],["name/106",[5,53.166]],["parent/106",[59,4.948]],["name/107",[7,51.255]],["parent/107",[59,4.948]],["name/108",[61,50.421]],["parent/108",[]],["name/109",[1,44.998]],["parent/109",[61,4.692]],["name/110",[15,63.151]],["parent/110",[61,4.692]],["name/111",[23,66.516]],["parent/111",[61,4.692]],["name/112",[6,49.652]],["parent/112",[61,4.692]],["name/113",[11,50.421]],["parent/113",[61,4.692]],["name/114",[62,71.624]],["parent/114",[61,4.692]],["name/115",[63,71.624]],["parent/115",[61,4.692]],["name/116",[64,71.624]],["parent/116",[61,4.692]],["name/117",[65,47.057]],["parent/117",[]],["name/118",[1,44.998]],["parent/118",[65,4.379]],["name/119",[66,71.624]],["parent/119",[65,4.379]],["name/120",[67,71.624]],["parent/120",[65,4.379]],["name/121",[68,71.624]],["parent/121",[65,4.379]],["name/122",[69,71.624]],["parent/122",[65,4.379]],["name/123",[70,71.624]],["parent/123",[65,4.379]],["name/124",[71,71.624]],["parent/124",[65,4.379]],["name/125",[72,63.151]],["parent/125",[65,4.379]],["name/126",[73,71.624]],["parent/126",[65,4.379]],["name/127",[74,71.624]],["parent/127",[65,4.379]],["name/128",[75,71.624]],["parent/128",[65,4.379]],["name/129",[76,71.624]],["parent/129",[65,4.379]],["name/130",[6,49.652]],["parent/130",[65,4.379]],["name/131",[77,71.624]],["parent/131",[65,4.379]],["name/132",[78,71.624]],["parent/132",[65,4.379]],["name/133",[7,51.255]],["parent/133",[65,4.379]],["name/134",[79,51.255]],["parent/134",[]],["name/135",[1,44.998]],["parent/135",[79,4.77]],["name/136",[11,50.421]],["parent/136",[79,4.77]],["name/137",[2,48.937]],["parent/137",[79,4.77]],["name/138",[6,49.652]],["parent/138",[79,4.77]],["name/139",[5,53.166]],["parent/139",[79,4.77]],["name/140",[7,51.255]],["parent/140",[79,4.77]],["name/141",[80,66.516]],["parent/141",[79,4.77]],["name/142",[81,66.516]],["parent/142",[79,4.77]],["name/143",[82,71.624]],["parent/143",[79,4.77]],["name/144",[83,66.516]],["parent/144",[79,4.77]],["name/145",[84,56.961]],["parent/145",[]],["name/146",[1,44.998]],["parent/146",[84,5.301]],["name/147",[2,48.937]],["parent/147",[84,5.301]],["name/148",[6,49.652]],["parent/148",[84,5.301]],["name/149",[7,51.255]],["parent/149",[84,5.301]],["name/150",[11,50.421]],["parent/150",[84,5.301]],["name/151",[85,51.255]],["parent/151",[]],["name/152",[1,44.998]],["parent/152",[85,4.77]],["name/153",[2,48.937]],["parent/153",[85,4.77]],["name/154",[6,49.652]],["parent/154",[85,4.77]],["name/155",[5,53.166]],["parent/155",[85,4.77]],["name/156",[7,51.255]],["parent/156",[85,4.77]],["name/157",[81,66.516]],["parent/157",[85,4.77]],["name/158",[83,66.516]],["parent/158",[85,4.77]],["name/159",[14,60.638]],["parent/159",[85,4.77]],["name/160",[11,50.421]],["parent/160",[85,4.77]],["name/161",[80,66.516]],["parent/161",[85,4.77]],["name/162",[86,58.631]],["parent/162",[]],["name/163",[1,44.998]],["parent/163",[86,5.457]],["name/164",[87,71.624]],["parent/164",[86,5.457]],["name/165",[14,60.638]],["parent/165",[86,5.457]],["name/166",[22,66.516]],["parent/166",[86,5.457]],["name/167",[88,50.421]],["parent/167",[]],["name/168",[1,44.998]],["parent/168",[88,4.692]],["name/169",[89,47.057]],["parent/169",[88,4.692]],["name/170",[90,60.638]],["parent/170",[88,4.692]],["name/171",[91,71.624]],["parent/171",[88,4.692]],["name/172",[92,71.624]],["parent/172",[88,4.692]],["name/173",[93,71.624]],["parent/173",[88,4.692]],["name/174",[94,71.624]],["parent/174",[88,4.692]],["name/175",[95,71.624]],["parent/175",[88,4.692]],["name/176",[96,55.53]],["parent/176",[88,4.692]],["name/177",[97,71.624]],["parent/177",[88,4.692]],["name/178",[98,71.624]],["parent/178",[88,4.692]],["name/179",[99,46.501]],["parent/179",[]],["name/180",[1,44.998]],["parent/180",[99,4.328]],["name/181",[4,66.516]],["parent/181",[99,4.328]],["name/182",[0,49.652]],["parent/182",[99,4.328]],["name/183",[2,48.937]],["parent/183",[99,4.328]],["name/184",[6,49.652]],["parent/184",[99,4.328]],["name/185",[5,53.166]],["parent/185",[99,4.328]],["name/186",[7,51.255]],["parent/186",[99,4.328]],["name/187",[11,50.421]],["parent/187",[99,4.328]],["name/188",[100,71.624]],["parent/188",[99,4.328]],["name/189",[101,71.624]],["parent/189",[99,4.328]],["name/190",[48,66.516]],["parent/190",[99,4.328]],["name/191",[50,66.516]],["parent/191",[99,4.328]],["name/192",[51,66.516]],["parent/192",[99,4.328]],["name/193",[102,71.624]],["parent/193",[99,4.328]],["name/194",[103,55.53]],["parent/194",[]],["name/195",[104,32.982]],["parent/195",[103,5.168]],["name/196",[105,42.18]],["parent/196",[103,5.168]],["name/197",[106,56.961]],["parent/197",[103,5.168]],["name/198",[107,42.537]],["parent/198",[103,5.168]],["name/199",[108,34.988]],["parent/199",[103,5.168]],["name/200",[109,31.921]],["parent/200",[103,5.168]],["name/201",[110,47.645]],["parent/201",[]],["name/202",[104,32.982]],["parent/202",[110,4.434]],["name/203",[107,42.537]],["parent/203",[110,4.434]],["name/204",[105,42.18]],["parent/204",[110,4.434]],["name/205",[106,56.961]],["parent/205",[110,4.434]],["name/206",[111,66.516]],["parent/206",[110,4.434]],["name/207",[112,52.165]],["parent/207",[110,4.434]],["name/208",[113,66.516]],["parent/208",[110,4.434]],["name/209",[114,26.298]],["parent/209",[110,4.434]],["name/210",[115,63.151]],["parent/210",[116,4.621]],["name/211",[117,66.516]],["parent/211",[116,4.621]],["name/212",[118,66.516]],["parent/212",[116,4.621]],["name/213",[119,66.516]],["parent/213",[116,4.621]],["name/214",[120,66.516]],["parent/214",[116,4.621]],["name/215",[121,66.516]],["parent/215",[116,4.621]],["name/216",[122,71.624]],["parent/216",[110,4.434]],["name/217",[114,26.298]],["parent/217",[110,4.434]],["name/218",[61,50.421]],["parent/218",[116,4.621]],["name/219",[114,26.298]],["parent/219",[116,4.621]],["name/220",[123,71.624]],["parent/220",[124,4.492]],["name/221",[125,71.624]],["parent/221",[124,4.492]],["name/222",[126,71.624]],["parent/222",[124,4.492]],["name/223",[127,71.624]],["parent/223",[124,4.492]],["name/224",[128,71.624]],["parent/224",[124,4.492]],["name/225",[129,71.624]],["parent/225",[124,4.492]],["name/226",[130,51.255]],["parent/226",[124,4.492]],["name/227",[114,26.298]],["parent/227",[124,4.492]],["name/228",[131,66.516]],["parent/228",[132,5.643]],["name/229",[133,71.624]],["parent/229",[132,5.643]],["name/230",[134,48.937]],["parent/230",[124,4.492]],["name/231",[114,26.298]],["parent/231",[124,4.492]],["name/232",[135,63.151]],["parent/232",[132,5.643]],["name/233",[136,71.624]],["parent/233",[132,5.643]],["name/234",[47,53.166]],["parent/234",[116,4.621]],["name/235",[114,26.298]],["parent/235",[116,4.621]],["name/236",[137,60.638]],["parent/236",[124,4.492]],["name/237",[138,71.624]],["parent/237",[124,4.492]],["name/238",[139,71.624]],["parent/238",[124,4.492]],["name/239",[140,71.624]],["parent/239",[124,4.492]],["name/240",[141,71.624]],["parent/240",[124,4.492]],["name/241",[134,48.937]],["parent/241",[110,4.434]],["name/242",[114,26.298]],["parent/242",[110,4.434]],["name/243",[142,44.998]],["parent/243",[116,4.621]],["name/244",[143,71.624]],["parent/244",[116,4.621]],["name/245",[3,48.937]],["parent/245",[116,4.621]],["name/246",[108,34.988]],["parent/246",[110,4.434]],["name/247",[144,44.109]],["parent/247",[110,4.434]],["name/248",[109,31.921]],["parent/248",[110,4.434]],["name/249",[145,71.624]],["parent/249",[]],["name/250",[146,52.165]],["parent/250",[]],["name/251",[104,32.982]],["parent/251",[146,4.855]],["name/252",[107,42.537]],["parent/252",[146,4.855]],["name/253",[105,42.18]],["parent/253",[146,4.855]],["name/254",[106,56.961]],["parent/254",[146,4.855]],["name/255",[108,34.988]],["parent/255",[146,4.855]],["name/256",[112,52.165]],["parent/256",[146,4.855]],["name/257",[113,66.516]],["parent/257",[146,4.855]],["name/258",[114,26.298]],["parent/258",[146,4.855]],["name/259",[115,63.151]],["parent/259",[147,5.301]],["name/260",[117,66.516]],["parent/260",[147,5.301]],["name/261",[118,66.516]],["parent/261",[147,5.301]],["name/262",[119,66.516]],["parent/262",[147,5.301]],["name/263",[120,66.516]],["parent/263",[147,5.301]],["name/264",[121,66.516]],["parent/264",[147,5.301]],["name/265",[111,66.516]],["parent/265",[146,4.855]],["name/266",[148,54.278]],["parent/266",[]],["name/267",[149,45.974]],["parent/267",[148,5.051]],["name/268",[150,47.645]],["parent/268",[148,5.051]],["name/269",[106,56.961]],["parent/269",[148,5.051]],["name/270",[115,63.151]],["parent/270",[148,5.051]],["name/271",[105,42.18]],["parent/271",[148,5.051]],["name/272",[151,40.866]],["parent/272",[148,5.051]],["name/273",[152,66.516]],["parent/273",[148,5.051]],["name/274",[153,56.961]],["parent/274",[]],["name/275",[109,31.921]],["parent/275",[153,5.301]],["name/276",[154,39.706]],["parent/276",[153,5.301]],["name/277",[155,40.563]],["parent/277",[153,5.301]],["name/278",[25,50.421]],["parent/278",[153,5.301]],["name/279",[156,63.151]],["parent/279",[153,5.301]],["name/280",[157,55.53]],["parent/280",[]],["name/281",[149,45.974]],["parent/281",[157,5.168]],["name/282",[151,40.866]],["parent/282",[157,5.168]],["name/283",[152,66.516]],["parent/283",[157,5.168]],["name/284",[158,71.624]],["parent/284",[157,5.168]],["name/285",[159,56.961]],["parent/285",[157,5.168]],["name/286",[160,56.961]],["parent/286",[157,5.168]],["name/287",[161,58.631]],["parent/287",[]],["name/288",[109,31.921]],["parent/288",[161,5.457]],["name/289",[154,39.706]],["parent/289",[161,5.457]],["name/290",[155,40.563]],["parent/290",[161,5.457]],["name/291",[162,45.974]],["parent/291",[161,5.457]],["name/292",[163,71.624]],["parent/292",[]],["name/293",[164,71.624]],["parent/293",[]],["name/294",[165,71.624]],["parent/294",[]],["name/295",[166,71.624]],["parent/295",[]],["name/296",[167,71.624]],["parent/296",[]],["name/297",[168,71.624]],["parent/297",[]],["name/298",[169,71.624]],["parent/298",[]],["name/299",[170,71.624]],["parent/299",[]],["name/300",[171,71.624]],["parent/300",[]],["name/301",[172,71.624]],["parent/301",[]],["name/302",[173,71.624]],["parent/302",[]],["name/303",[174,66.516]],["parent/303",[]],["name/304",[175,43.692]],["parent/304",[174,6.19]],["name/305",[176,54.278]],["parent/305",[]],["name/306",[175,43.692]],["parent/306",[176,5.051]],["name/307",[154,39.706]],["parent/307",[176,5.051]],["name/308",[0,49.652]],["parent/308",[176,5.051]],["name/309",[177,41.835]],["parent/309",[176,5.051]],["name/310",[109,31.921]],["parent/310",[176,5.051]],["name/311",[178,63.151]],["parent/311",[176,5.051]],["name/312",[114,26.298]],["parent/312",[176,5.051]],["name/313",[177,41.835]],["parent/313",[179,6.19]],["name/314",[104,32.982]],["parent/314",[179,6.19]],["name/315",[180,71.624]],["parent/315",[]],["name/316",[181,71.624]],["parent/316",[]],["name/317",[182,71.624]],["parent/317",[]],["name/318",[183,48.937]],["parent/318",[]],["name/319",[89,47.057]],["parent/319",[183,4.554]],["name/320",[184,45.974]],["parent/320",[183,4.554]],["name/321",[175,43.692]],["parent/321",[183,4.554]],["name/322",[185,52.165]],["parent/322",[183,4.554]],["name/323",[186,71.624]],["parent/323",[183,4.554]],["name/324",[187,41.501]],["parent/324",[183,4.554]],["name/325",[188,51.255]],["parent/325",[183,4.554]],["name/326",[114,26.298]],["parent/326",[183,4.554]],["name/327",[104,32.982]],["parent/327",[189,6.666]],["name/328",[108,34.988]],["parent/328",[183,4.554]],["name/329",[190,71.624]],["parent/329",[183,4.554]],["name/330",[191,71.624]],["parent/330",[183,4.554]],["name/331",[192,71.624]],["parent/331",[183,4.554]],["name/332",[193,71.624]],["parent/332",[183,4.554]],["name/333",[194,71.624]],["parent/333",[]],["name/334",[195,71.624]],["parent/334",[]],["name/335",[196,58.631]],["parent/335",[]],["name/336",[109,31.921]],["parent/336",[196,5.457]],["name/337",[154,39.706]],["parent/337",[196,5.457]],["name/338",[155,40.563]],["parent/338",[196,5.457]],["name/339",[99,46.501]],["parent/339",[196,5.457]],["name/340",[197,48.937]],["parent/340",[]],["name/341",[89,47.057]],["parent/341",[197,4.554]],["name/342",[198,56.961]],["parent/342",[197,4.554]],["name/343",[199,53.166]],["parent/343",[197,4.554]],["name/344",[200,60.638]],["parent/344",[197,4.554]],["name/345",[151,40.866]],["parent/345",[197,4.554]],["name/346",[114,26.298]],["parent/346",[197,4.554]],["name/347",[175,43.692]],["parent/347",[201,5.051]],["name/348",[202,56.961]],["parent/348",[201,5.051]],["name/349",[203,63.151]],["parent/349",[201,5.051]],["name/350",[137,60.638]],["parent/350",[201,5.051]],["name/351",[185,52.165]],["parent/351",[201,5.051]],["name/352",[184,45.974]],["parent/352",[197,4.554]],["name/353",[160,56.961]],["parent/353",[197,4.554]],["name/354",[134,48.937]],["parent/354",[197,4.554]],["name/355",[114,26.298]],["parent/355",[197,4.554]],["name/356",[204,66.516]],["parent/356",[201,5.051]],["name/357",[130,51.255]],["parent/357",[197,4.554]],["name/358",[114,26.298]],["parent/358",[197,4.554]],["name/359",[175,43.692]],["parent/359",[201,5.051]],["name/360",[0,49.652]],["parent/360",[201,5.051]],["name/361",[57,55.53]],["parent/361",[197,4.554]],["name/362",[205,54.278]],["parent/362",[]],["name/363",[184,45.974]],["parent/363",[205,5.051]],["name/364",[187,41.501]],["parent/364",[205,5.051]],["name/365",[151,40.866]],["parent/365",[205,5.051]],["name/366",[108,34.988]],["parent/366",[205,5.051]],["name/367",[188,51.255]],["parent/367",[205,5.051]],["name/368",[114,26.298]],["parent/368",[205,5.051]],["name/369",[104,32.982]],["parent/369",[206,6.666]],["name/370",[207,54.278]],["parent/370",[205,5.051]],["name/371",[208,52.165]],["parent/371",[]],["name/372",[104,32.982]],["parent/372",[208,4.855]],["name/373",[109,31.921]],["parent/373",[208,4.855]],["name/374",[209,54.278]],["parent/374",[208,4.855]],["name/375",[210,53.166]],["parent/375",[208,4.855]],["name/376",[184,45.974]],["parent/376",[208,4.855]],["name/377",[151,40.866]],["parent/377",[208,4.855]],["name/378",[108,34.988]],["parent/378",[208,4.855]],["name/379",[211,49.652]],["parent/379",[208,4.855]],["name/380",[212,48.937]],["parent/380",[208,4.855]],["name/381",[213,56.961]],["parent/381",[]],["name/382",[107,42.537]],["parent/382",[213,5.301]],["name/383",[214,56.961]],["parent/383",[213,5.301]],["name/384",[187,41.501]],["parent/384",[213,5.301]],["name/385",[212,48.937]],["parent/385",[213,5.301]],["name/386",[108,34.988]],["parent/386",[213,5.301]],["name/387",[215,71.624]],["parent/387",[]],["name/388",[216,63.151]],["parent/388",[]],["name/389",[217,58.631]],["parent/389",[216,5.877]],["name/390",[218,48.937]],["parent/390",[216,5.877]],["name/391",[219,63.151]],["parent/391",[]],["name/392",[105,42.18]],["parent/392",[219,5.877]],["name/393",[220,58.631]],["parent/393",[219,5.877]],["name/394",[221,71.624]],["parent/394",[]],["name/395",[222,66.516]],["parent/395",[]],["name/396",[89,47.057]],["parent/396",[222,6.19]],["name/397",[223,66.516]],["parent/397",[]],["name/398",[89,47.057]],["parent/398",[223,6.19]],["name/399",[224,56.961]],["parent/399",[]],["name/400",[225,60.638]],["parent/400",[224,5.301]],["name/401",[108,34.988]],["parent/401",[224,5.301]],["name/402",[187,41.501]],["parent/402",[224,5.301]],["name/403",[134,48.937]],["parent/403",[224,5.301]],["name/404",[226,66.516]],["parent/404",[224,5.301]],["name/405",[227,63.151]],["parent/405",[]],["name/406",[109,31.921]],["parent/406",[227,5.877]],["name/407",[177,41.835]],["parent/407",[227,5.877]],["name/408",[228,71.624]],["parent/408",[]],["name/409",[229,63.151]],["parent/409",[]],["name/410",[151,40.866]],["parent/410",[229,5.877]],["name/411",[114,26.298]],["parent/411",[229,5.877]],["name/412",[175,43.692]],["parent/412",[230,6.666]],["name/413",[231,71.624]],["parent/413",[]],["name/414",[232,71.624]],["parent/414",[]],["name/415",[233,71.624]],["parent/415",[]],["name/416",[234,71.624]],["parent/416",[]],["name/417",[235,71.624]],["parent/417",[]],["name/418",[236,71.624]],["parent/418",[]],["name/419",[237,54.278]],["parent/419",[]],["name/420",[184,45.974]],["parent/420",[237,5.051]],["name/421",[187,41.501]],["parent/421",[237,5.051]],["name/422",[151,40.866]],["parent/422",[237,5.051]],["name/423",[108,34.988]],["parent/423",[237,5.051]],["name/424",[188,51.255]],["parent/424",[237,5.051]],["name/425",[130,51.255]],["parent/425",[237,5.051]],["name/426",[207,54.278]],["parent/426",[237,5.051]],["name/427",[238,45.474]],["parent/427",[]],["name/428",[104,32.982]],["parent/428",[238,4.232]],["name/429",[109,31.921]],["parent/429",[238,4.232]],["name/430",[209,54.278]],["parent/430",[238,4.232]],["name/431",[210,53.166]],["parent/431",[238,4.232]],["name/432",[184,45.974]],["parent/432",[238,4.232]],["name/433",[151,40.866]],["parent/433",[238,4.232]],["name/434",[108,34.988]],["parent/434",[238,4.232]],["name/435",[211,49.652]],["parent/435",[238,4.232]],["name/436",[212,48.937]],["parent/436",[238,4.232]],["name/437",[187,41.501]],["parent/437",[238,4.232]],["name/438",[188,51.255]],["parent/438",[238,4.232]],["name/439",[96,55.53]],["parent/439",[238,4.232]],["name/440",[130,51.255]],["parent/440",[238,4.232]],["name/441",[114,26.298]],["parent/441",[238,4.232]],["name/442",[175,43.692]],["parent/442",[239,6.19]],["name/443",[240,54.278]],["parent/443",[238,4.232]],["name/444",[114,26.298]],["parent/444",[238,4.232]],["name/445",[142,44.998]],["parent/445",[239,6.19]],["name/446",[241,63.151]],["parent/446",[238,4.232]],["name/447",[242,66.516]],["parent/447",[238,4.232]],["name/448",[243,66.516]],["parent/448",[238,4.232]],["name/449",[244,54.278]],["parent/449",[]],["name/450",[149,45.974]],["parent/450",[244,5.051]],["name/451",[150,47.645]],["parent/451",[244,5.051]],["name/452",[211,49.652]],["parent/452",[244,5.051]],["name/453",[218,48.937]],["parent/453",[244,5.051]],["name/454",[187,41.501]],["parent/454",[244,5.051]],["name/455",[144,44.109]],["parent/455",[244,5.051]],["name/456",[114,26.298]],["parent/456",[244,5.051]],["name/457",[245,58.631]],["parent/457",[246,6.19]],["name/458",[247,58.631]],["parent/458",[246,6.19]],["name/459",[248,42.18]],["parent/459",[]],["name/460",[104,32.982]],["parent/460",[248,3.925]],["name/461",[109,31.921]],["parent/461",[248,3.925]],["name/462",[209,54.278]],["parent/462",[248,3.925]],["name/463",[210,53.166]],["parent/463",[248,3.925]],["name/464",[184,45.974]],["parent/464",[248,3.925]],["name/465",[151,40.866]],["parent/465",[248,3.925]],["name/466",[108,34.988]],["parent/466",[248,3.925]],["name/467",[211,49.652]],["parent/467",[248,3.925]],["name/468",[242,66.516]],["parent/468",[248,3.925]],["name/469",[243,66.516]],["parent/469",[248,3.925]],["name/470",[187,41.501]],["parent/470",[248,3.925]],["name/471",[96,55.53]],["parent/471",[248,3.925]],["name/472",[212,48.937]],["parent/472",[248,3.925]],["name/473",[114,26.298]],["parent/473",[248,3.925]],["name/474",[89,47.057]],["parent/474",[249,5.168]],["name/475",[218,48.937]],["parent/475",[249,5.168]],["name/476",[104,32.982]],["parent/476",[249,5.168]],["name/477",[109,31.921]],["parent/477",[249,5.168]],["name/478",[160,56.961]],["parent/478",[249,5.168]],["name/479",[130,51.255]],["parent/479",[248,3.925]],["name/480",[114,26.298]],["parent/480",[248,3.925]],["name/481",[175,43.692]],["parent/481",[249,5.168]],["name/482",[240,54.278]],["parent/482",[248,3.925]],["name/483",[114,26.298]],["parent/483",[248,3.925]],["name/484",[142,44.998]],["parent/484",[249,5.168]],["name/485",[250,58.631]],["parent/485",[]],["name/486",[109,31.921]],["parent/486",[250,5.457]],["name/487",[154,39.706]],["parent/487",[250,5.457]],["name/488",[155,40.563]],["parent/488",[250,5.457]],["name/489",[61,50.421]],["parent/489",[250,5.457]],["name/490",[251,54.278]],["parent/490",[]],["name/491",[109,31.921]],["parent/491",[251,5.051]],["name/492",[154,39.706]],["parent/492",[251,5.051]],["name/493",[155,40.563]],["parent/493",[251,5.051]],["name/494",[252,53.166]],["parent/494",[251,5.051]],["name/495",[253,60.638]],["parent/495",[251,5.051]],["name/496",[131,66.516]],["parent/496",[251,5.051]],["name/497",[254,63.151]],["parent/497",[251,5.051]],["name/498",[255,60.638]],["parent/498",[]],["name/499",[256,63.151]],["parent/499",[255,5.643]],["name/500",[184,45.974]],["parent/500",[255,5.643]],["name/501",[187,41.501]],["parent/501",[255,5.643]],["name/502",[257,63.151]],["parent/502",[]],["name/503",[256,63.151]],["parent/503",[257,5.877]],["name/504",[184,45.974]],["parent/504",[257,5.877]],["name/505",[258,66.516]],["parent/505",[]],["name/506",[187,41.501]],["parent/506",[258,6.19]],["name/507",[259,48.937]],["parent/507",[]],["name/508",[104,32.982]],["parent/508",[259,4.554]],["name/509",[109,31.921]],["parent/509",[259,4.554]],["name/510",[209,54.278]],["parent/510",[259,4.554]],["name/511",[210,53.166]],["parent/511",[259,4.554]],["name/512",[184,45.974]],["parent/512",[259,4.554]],["name/513",[248,42.18]],["parent/513",[259,4.554]],["name/514",[175,43.692]],["parent/514",[259,4.554]],["name/515",[256,63.151]],["parent/515",[259,4.554]],["name/516",[211,49.652]],["parent/516",[259,4.554]],["name/517",[212,48.937]],["parent/517",[259,4.554]],["name/518",[187,41.501]],["parent/518",[259,4.554]],["name/519",[188,51.255]],["parent/519",[259,4.554]],["name/520",[114,26.298]],["parent/520",[259,4.554]],["name/521",[260,63.151]],["parent/521",[261,6.19]],["name/522",[109,31.921]],["parent/522",[261,6.19]],["name/523",[262,71.624]],["parent/523",[]],["name/524",[263,55.53]],["parent/524",[]],["name/525",[264,66.516]],["parent/525",[263,5.168]],["name/526",[265,63.151]],["parent/526",[263,5.168]],["name/527",[207,54.278]],["parent/527",[263,5.168]],["name/528",[151,40.866]],["parent/528",[263,5.168]],["name/529",[187,41.501]],["parent/529",[263,5.168]],["name/530",[108,34.988]],["parent/530",[263,5.168]],["name/531",[266,71.624]],["parent/531",[]],["name/532",[267,71.624]],["parent/532",[]],["name/533",[268,58.631]],["parent/533",[]],["name/534",[61,50.421]],["parent/534",[268,5.457]],["name/535",[269,71.624]],["parent/535",[268,5.457]],["name/536",[114,26.298]],["parent/536",[268,5.457]],["name/537",[104,32.982]],["parent/537",[270,4.77]],["name/538",[109,31.921]],["parent/538",[270,4.77]],["name/539",[209,54.278]],["parent/539",[270,4.77]],["name/540",[210,53.166]],["parent/540",[270,4.77]],["name/541",[184,45.974]],["parent/541",[270,4.77]],["name/542",[108,34.988]],["parent/542",[270,4.77]],["name/543",[211,49.652]],["parent/543",[270,4.77]],["name/544",[151,40.866]],["parent/544",[270,4.77]],["name/545",[187,41.501]],["parent/545",[270,4.77]],["name/546",[96,55.53]],["parent/546",[270,4.77]],["name/547",[271,60.638]],["parent/547",[270,4.77]],["name/548",[151,40.866]],["parent/548",[268,5.457]],["name/549",[272,58.631]],["parent/549",[]],["name/550",[273,71.624]],["parent/550",[272,5.457]],["name/551",[274,71.624]],["parent/551",[272,5.457]],["name/552",[114,26.298]],["parent/552",[272,5.457]],["name/553",[104,32.982]],["parent/553",[275,4.948]],["name/554",[209,54.278]],["parent/554",[275,4.948]],["name/555",[210,53.166]],["parent/555",[275,4.948]],["name/556",[184,45.974]],["parent/556",[275,4.948]],["name/557",[108,34.988]],["parent/557",[275,4.948]],["name/558",[211,49.652]],["parent/558",[275,4.948]],["name/559",[151,40.866]],["parent/559",[275,4.948]],["name/560",[187,41.501]],["parent/560",[275,4.948]],["name/561",[248,42.18]],["parent/561",[275,4.948]],["name/562",[151,40.866]],["parent/562",[272,5.457]],["name/563",[276,52.165]],["parent/563",[]],["name/564",[187,41.501]],["parent/564",[276,4.855]],["name/565",[114,26.298]],["parent/565",[276,4.855]],["name/566",[104,32.982]],["parent/566",[277,4.621]],["name/567",[107,42.537]],["parent/567",[277,4.621]],["name/568",[105,42.18]],["parent/568",[277,4.621]],["name/569",[106,56.961]],["parent/569",[277,4.621]],["name/570",[112,52.165]],["parent/570",[277,4.621]],["name/571",[108,34.988]],["parent/571",[277,4.621]],["name/572",[151,40.866]],["parent/572",[276,4.855]],["name/573",[114,26.298]],["parent/573",[276,4.855]],["name/574",[104,32.982]],["parent/574",[277,4.621]],["name/575",[107,42.537]],["parent/575",[277,4.621]],["name/576",[175,43.692]],["parent/576",[277,4.621]],["name/577",[185,52.165]],["parent/577",[277,4.621]],["name/578",[108,34.988]],["parent/578",[277,4.621]],["name/579",[130,51.255]],["parent/579",[276,4.855]],["name/580",[114,26.298]],["parent/580",[276,4.855]],["name/581",[278,63.151]],["parent/581",[277,4.621]],["name/582",[188,51.255]],["parent/582",[276,4.855]],["name/583",[114,26.298]],["parent/583",[276,4.855]],["name/584",[104,32.982]],["parent/584",[277,4.621]],["name/585",[207,54.278]],["parent/585",[276,4.855]],["name/586",[279,45.474]],["parent/586",[]],["name/587",[200,60.638]],["parent/587",[279,4.232]],["name/588",[280,66.516]],["parent/588",[279,4.232]],["name/589",[218,48.937]],["parent/589",[279,4.232]],["name/590",[160,56.961]],["parent/590",[279,4.232]],["name/591",[108,34.988]],["parent/591",[279,4.232]],["name/592",[89,47.057]],["parent/592",[279,4.232]],["name/593",[198,56.961]],["parent/593",[279,4.232]],["name/594",[199,53.166]],["parent/594",[279,4.232]],["name/595",[130,51.255]],["parent/595",[279,4.232]],["name/596",[114,26.298]],["parent/596",[279,4.232]],["name/597",[175,43.692]],["parent/597",[281,4.554]],["name/598",[0,49.652]],["parent/598",[281,4.554]],["name/599",[134,48.937]],["parent/599",[279,4.232]],["name/600",[114,26.298]],["parent/600",[279,4.232]],["name/601",[204,66.516]],["parent/601",[281,4.554]],["name/602",[151,40.866]],["parent/602",[279,4.232]],["name/603",[114,26.298]],["parent/603",[279,4.232]],["name/604",[175,43.692]],["parent/604",[281,4.554]],["name/605",[202,56.961]],["parent/605",[281,4.554]],["name/606",[203,63.151]],["parent/606",[281,4.554]],["name/607",[137,60.638]],["parent/607",[281,4.554]],["name/608",[282,63.151]],["parent/608",[281,4.554]],["name/609",[283,66.516]],["parent/609",[281,4.554]],["name/610",[185,52.165]],["parent/610",[281,4.554]],["name/611",[284,63.151]],["parent/611",[281,4.554]],["name/612",[285,66.516]],["parent/612",[281,4.554]],["name/613",[286,66.516]],["parent/613",[281,4.554]],["name/614",[108,34.988]],["parent/614",[281,4.554]],["name/615",[207,54.278]],["parent/615",[279,4.232]],["name/616",[287,49.652]],["parent/616",[279,4.232]],["name/617",[288,49.652]],["parent/617",[279,4.232]],["name/618",[184,45.974]],["parent/618",[279,4.232]],["name/619",[289,60.638]],["parent/619",[279,4.232]],["name/620",[290,55.53]],["parent/620",[]],["name/621",[264,66.516]],["parent/621",[290,5.168]],["name/622",[265,63.151]],["parent/622",[290,5.168]],["name/623",[207,54.278]],["parent/623",[290,5.168]],["name/624",[151,40.866]],["parent/624",[290,5.168]],["name/625",[187,41.501]],["parent/625",[290,5.168]],["name/626",[108,34.988]],["parent/626",[290,5.168]],["name/627",[291,56.961]],["parent/627",[]],["name/628",[198,56.961]],["parent/628",[291,5.301]],["name/629",[184,45.974]],["parent/629",[291,5.301]],["name/630",[207,54.278]],["parent/630",[291,5.301]],["name/631",[151,40.866]],["parent/631",[291,5.301]],["name/632",[265,63.151]],["parent/632",[291,5.301]],["name/633",[292,71.624]],["parent/633",[]],["name/634",[293,71.624]],["parent/634",[]],["name/635",[294,42.537]],["parent/635",[]],["name/636",[104,32.982]],["parent/636",[294,3.959]],["name/637",[105,42.18]],["parent/637",[294,3.959]],["name/638",[159,56.961]],["parent/638",[294,3.959]],["name/639",[177,41.835]],["parent/639",[294,3.959]],["name/640",[295,52.165]],["parent/640",[294,3.959]],["name/641",[296,63.151]],["parent/641",[294,3.959]],["name/642",[217,58.631]],["parent/642",[294,3.959]],["name/643",[112,52.165]],["parent/643",[294,3.959]],["name/644",[287,49.652]],["parent/644",[294,3.959]],["name/645",[297,58.631]],["parent/645",[294,3.959]],["name/646",[114,26.298]],["parent/646",[294,3.959]],["name/647",[162,45.974]],["parent/647",[298,5.301]],["name/648",[109,31.921]],["parent/648",[298,5.301]],["name/649",[154,39.706]],["parent/649",[298,5.301]],["name/650",[155,40.563]],["parent/650",[298,5.301]],["name/651",[288,49.652]],["parent/651",[294,3.959]],["name/652",[299,63.151]],["parent/652",[294,3.959]],["name/653",[300,56.961]],["parent/653",[294,3.959]],["name/654",[114,26.298]],["parent/654",[294,3.959]],["name/655",[301,56.961]],["parent/655",[298,5.301]],["name/656",[302,56.961]],["parent/656",[298,5.301]],["name/657",[303,56.961]],["parent/657",[294,3.959]],["name/658",[108,34.988]],["parent/658",[294,3.959]],["name/659",[144,44.109]],["parent/659",[294,3.959]],["name/660",[304,63.151]],["parent/660",[294,3.959]],["name/661",[305,51.255]],["parent/661",[294,3.959]],["name/662",[212,48.937]],["parent/662",[294,3.959]],["name/663",[306,66.516]],["parent/663",[294,3.959]],["name/664",[307,63.151]],["parent/664",[294,3.959]],["name/665",[308,63.151]],["parent/665",[294,3.959]],["name/666",[309,60.638]],["parent/666",[294,3.959]],["name/667",[109,31.921]],["parent/667",[294,3.959]],["name/668",[310,63.151]],["parent/668",[]],["name/669",[187,41.501]],["parent/669",[310,5.877]],["name/670",[151,40.866]],["parent/670",[310,5.877]],["name/671",[311,60.638]],["parent/671",[]],["name/672",[312,63.151]],["parent/672",[311,5.643]],["name/673",[151,40.866]],["parent/673",[311,5.643]],["name/674",[149,45.974]],["parent/674",[311,5.643]],["name/675",[313,55.53]],["parent/675",[]],["name/676",[109,31.921]],["parent/676",[313,5.168]],["name/677",[154,39.706]],["parent/677",[313,5.168]],["name/678",[155,40.563]],["parent/678",[313,5.168]],["name/679",[162,45.974]],["parent/679",[313,5.168]],["name/680",[104,32.982]],["parent/680",[313,5.168]],["name/681",[144,44.109]],["parent/681",[313,5.168]],["name/682",[314,71.624]],["parent/682",[]],["name/683",[315,71.624]],["parent/683",[]],["name/684",[316,66.516]],["parent/684",[]],["name/685",[317,58.631]],["parent/685",[316,6.19]],["name/686",[318,71.624]],["parent/686",[]],["name/687",[319,66.516]],["parent/687",[]],["name/688",[309,60.638]],["parent/688",[319,6.19]],["name/689",[320,71.624]],["parent/689",[]],["name/690",[321,71.624]],["parent/690",[]],["name/691",[322,71.624]],["parent/691",[]],["name/692",[323,71.624]],["parent/692",[]],["name/693",[324,56.961]],["parent/693",[]],["name/694",[149,45.974]],["parent/694",[324,5.301]],["name/695",[150,47.645]],["parent/695",[324,5.301]],["name/696",[159,56.961]],["parent/696",[324,5.301]],["name/697",[325,56.961]],["parent/697",[324,5.301]],["name/698",[114,26.298]],["parent/698",[324,5.301]],["name/699",[326,55.53]],["parent/699",[327,6.666]],["name/700",[328,58.631]],["parent/700",[]],["name/701",[109,31.921]],["parent/701",[328,5.457]],["name/702",[154,39.706]],["parent/702",[328,5.457]],["name/703",[155,40.563]],["parent/703",[328,5.457]],["name/704",[3,48.937]],["parent/704",[328,5.457]],["name/705",[329,66.516]],["parent/705",[]],["name/706",[114,26.298]],["parent/706",[329,6.19]],["name/707",[330,56.961]],["parent/707",[331,6.666]],["name/708",[332,71.624]],["parent/708",[]],["name/709",[333,71.624]],["parent/709",[]],["name/710",[334,71.624]],["parent/710",[]],["name/711",[335,52.165]],["parent/711",[]],["name/712",[184,45.974]],["parent/712",[335,4.855]],["name/713",[108,34.988]],["parent/713",[335,4.855]],["name/714",[198,56.961]],["parent/714",[335,4.855]],["name/715",[104,32.982]],["parent/715",[335,4.855]],["name/716",[105,42.18]],["parent/716",[335,4.855]],["name/717",[336,55.53]],["parent/717",[335,4.855]],["name/718",[199,53.166]],["parent/718",[335,4.855]],["name/719",[337,66.516]],["parent/719",[335,4.855]],["name/720",[109,31.921]],["parent/720",[335,4.855]],["name/721",[338,49.652]],["parent/721",[]],["name/722",[104,32.982]],["parent/722",[338,4.621]],["name/723",[109,31.921]],["parent/723",[338,4.621]],["name/724",[105,42.18]],["parent/724",[338,4.621]],["name/725",[336,55.53]],["parent/725",[338,4.621]],["name/726",[218,48.937]],["parent/726",[338,4.621]],["name/727",[114,26.298]],["parent/727",[338,4.621]],["name/728",[104,32.982]],["parent/728",[339,5.301]],["name/729",[109,31.921]],["parent/729",[339,5.301]],["name/730",[287,49.652]],["parent/730",[339,5.301]],["name/731",[288,49.652]],["parent/731",[339,5.301]],["name/732",[305,51.255]],["parent/732",[339,5.301]],["name/733",[340,71.624]],["parent/733",[338,4.621]],["name/734",[341,66.516]],["parent/734",[338,4.621]],["name/735",[114,26.298]],["parent/735",[338,4.621]],["name/736",[199,53.166]],["parent/736",[339,5.301]],["name/737",[337,66.516]],["parent/737",[338,4.621]],["name/738",[108,34.988]],["parent/738",[338,4.621]],["name/739",[305,51.255]],["parent/739",[338,4.621]],["name/740",[342,60.638]],["parent/740",[]],["name/741",[343,71.624]],["parent/741",[342,5.643]],["name/742",[149,45.974]],["parent/742",[342,5.643]],["name/743",[150,47.645]],["parent/743",[342,5.643]],["name/744",[344,58.631]],["parent/744",[]],["name/745",[109,31.921]],["parent/745",[344,5.457]],["name/746",[155,40.563]],["parent/746",[344,5.457]],["name/747",[58,60.638]],["parent/747",[344,5.457]],["name/748",[156,63.151]],["parent/748",[344,5.457]],["name/749",[345,71.624]],["parent/749",[]],["name/750",[346,71.624]],["parent/750",[]],["name/751",[347,56.961]],["parent/751",[]],["name/752",[105,42.18]],["parent/752",[347,5.301]],["name/753",[336,55.53]],["parent/753",[347,5.301]],["name/754",[341,66.516]],["parent/754",[347,5.301]],["name/755",[114,26.298]],["parent/755",[347,5.301]],["name/756",[199,53.166]],["parent/756",[348,6.666]],["name/757",[108,34.988]],["parent/757",[347,5.301]],["name/758",[349,71.624]],["parent/758",[]],["name/759",[350,56.961]],["parent/759",[]],["name/760",[187,41.501]],["parent/760",[350,5.301]],["name/761",[151,40.866]],["parent/761",[350,5.301]],["name/762",[114,26.298]],["parent/762",[350,5.301]],["name/763",[104,32.982]],["parent/763",[351,5.301]],["name/764",[107,42.537]],["parent/764",[351,5.301]],["name/765",[175,43.692]],["parent/765",[351,5.301]],["name/766",[185,52.165]],["parent/766",[351,5.301]],["name/767",[352,56.961]],["parent/767",[351,5.301]],["name/768",[108,34.988]],["parent/768",[351,5.301]],["name/769",[108,34.988]],["parent/769",[350,5.301]],["name/770",[207,54.278]],["parent/770",[350,5.301]],["name/771",[353,53.166]],["parent/771",[]],["name/772",[104,32.982]],["parent/772",[353,4.948]],["name/773",[109,31.921]],["parent/773",[353,4.948]],["name/774",[209,54.278]],["parent/774",[353,4.948]],["name/775",[210,53.166]],["parent/775",[353,4.948]],["name/776",[184,45.974]],["parent/776",[353,4.948]],["name/777",[151,40.866]],["parent/777",[353,4.948]],["name/778",[211,49.652]],["parent/778",[353,4.948]],["name/779",[241,63.151]],["parent/779",[353,4.948]],["name/780",[354,56.961]],["parent/780",[]],["name/781",[104,32.982]],["parent/781",[354,5.301]],["name/782",[105,42.18]],["parent/782",[354,5.301]],["name/783",[336,55.53]],["parent/783",[354,5.301]],["name/784",[218,48.937]],["parent/784",[354,5.301]],["name/785",[114,26.298]],["parent/785",[354,5.301]],["name/786",[104,32.982]],["parent/786",[355,6.666]],["name/787",[356,71.624]],["parent/787",[]],["name/788",[357,71.624]],["parent/788",[]],["name/789",[358,71.624]],["parent/789",[]],["name/790",[359,42.907]],["parent/790",[]],["name/791",[104,32.982]],["parent/791",[359,3.993]],["name/792",[105,42.18]],["parent/792",[359,3.993]],["name/793",[159,56.961]],["parent/793",[359,3.993]],["name/794",[177,41.835]],["parent/794",[359,3.993]],["name/795",[112,52.165]],["parent/795",[359,3.993]],["name/796",[287,49.652]],["parent/796",[359,3.993]],["name/797",[288,49.652]],["parent/797",[359,3.993]],["name/798",[360,66.516]],["parent/798",[359,3.993]],["name/799",[114,26.298]],["parent/799",[359,3.993]],["name/800",[109,31.921]],["parent/800",[361,4.855]],["name/801",[155,40.563]],["parent/801",[361,4.855]],["name/802",[58,60.638]],["parent/802",[361,4.855]],["name/803",[156,63.151]],["parent/803",[361,4.855]],["name/804",[295,52.165]],["parent/804",[359,3.993]],["name/805",[296,63.151]],["parent/805",[359,3.993]],["name/806",[217,58.631]],["parent/806",[359,3.993]],["name/807",[297,58.631]],["parent/807",[359,3.993]],["name/808",[114,26.298]],["parent/808",[359,3.993]],["name/809",[162,45.974]],["parent/809",[361,4.855]],["name/810",[109,31.921]],["parent/810",[361,4.855]],["name/811",[154,39.706]],["parent/811",[361,4.855]],["name/812",[155,40.563]],["parent/812",[361,4.855]],["name/813",[299,63.151]],["parent/813",[359,3.993]],["name/814",[300,56.961]],["parent/814",[359,3.993]],["name/815",[114,26.298]],["parent/815",[359,3.993]],["name/816",[301,56.961]],["parent/816",[361,4.855]],["name/817",[302,56.961]],["parent/817",[361,4.855]],["name/818",[303,56.961]],["parent/818",[359,3.993]],["name/819",[108,34.988]],["parent/819",[359,3.993]],["name/820",[144,44.109]],["parent/820",[359,3.993]],["name/821",[304,63.151]],["parent/821",[359,3.993]],["name/822",[305,51.255]],["parent/822",[359,3.993]],["name/823",[307,63.151]],["parent/823",[359,3.993]],["name/824",[308,63.151]],["parent/824",[359,3.993]],["name/825",[109,31.921]],["parent/825",[359,3.993]],["name/826",[362,55.53]],["parent/826",[]],["name/827",[105,42.18]],["parent/827",[362,5.168]],["name/828",[159,56.961]],["parent/828",[362,5.168]],["name/829",[287,49.652]],["parent/829",[362,5.168]],["name/830",[288,49.652]],["parent/830",[362,5.168]],["name/831",[360,66.516]],["parent/831",[362,5.168]],["name/832",[114,26.298]],["parent/832",[362,5.168]],["name/833",[58,60.638]],["parent/833",[363,6.666]],["name/834",[364,58.631]],["parent/834",[]],["name/835",[187,41.501]],["parent/835",[364,5.457]],["name/836",[151,40.866]],["parent/836",[364,5.457]],["name/837",[114,26.298]],["parent/837",[364,5.457]],["name/838",[104,32.982]],["parent/838",[365,5.457]],["name/839",[107,42.537]],["parent/839",[365,5.457]],["name/840",[185,52.165]],["parent/840",[365,5.457]],["name/841",[175,43.692]],["parent/841",[365,5.457]],["name/842",[108,34.988]],["parent/842",[365,5.457]],["name/843",[108,34.988]],["parent/843",[364,5.457]],["name/844",[366,63.151]],["parent/844",[]],["name/845",[312,63.151]],["parent/845",[366,5.877]],["name/846",[325,56.961]],["parent/846",[366,5.877]],["name/847",[367,60.638]],["parent/847",[]],["name/848",[198,56.961]],["parent/848",[367,5.643]],["name/849",[57,55.53]],["parent/849",[367,5.643]],["name/850",[184,45.974]],["parent/850",[367,5.643]],["name/851",[368,63.151]],["parent/851",[]],["name/852",[149,45.974]],["parent/852",[368,5.877]],["name/853",[150,47.645]],["parent/853",[368,5.877]],["name/854",[369,58.631]],["parent/854",[]],["name/855",[109,31.921]],["parent/855",[369,5.457]],["name/856",[154,39.706]],["parent/856",[369,5.457]],["name/857",[155,40.563]],["parent/857",[369,5.457]],["name/858",[3,48.937]],["parent/858",[369,5.457]],["name/859",[370,53.166]],["parent/859",[]],["name/860",[105,42.18]],["parent/860",[370,4.948]],["name/861",[287,49.652]],["parent/861",[370,4.948]],["name/862",[288,49.652]],["parent/862",[370,4.948]],["name/863",[177,41.835]],["parent/863",[370,4.948]],["name/864",[309,60.638]],["parent/864",[370,4.948]],["name/865",[212,48.937]],["parent/865",[370,4.948]],["name/866",[114,26.298]],["parent/866",[370,4.948]],["name/867",[177,41.835]],["parent/867",[371,5.168]],["name/868",[248,42.18]],["parent/868",[371,5.168]],["name/869",[114,26.298]],["parent/869",[371,5.168]],["name/870",[252,53.166]],["parent/870",[372,5.051]],["name/871",[240,54.278]],["parent/871",[371,5.168]],["name/872",[114,26.298]],["parent/872",[371,5.168]],["name/873",[142,44.998]],["parent/873",[372,5.051]],["name/874",[0,49.652]],["parent/874",[372,5.051]],["name/875",[373,60.638]],["parent/875",[371,5.168]],["name/876",[114,26.298]],["parent/876",[371,5.168]],["name/877",[374,60.638]],["parent/877",[372,5.051]],["name/878",[375,60.638]],["parent/878",[372,5.051]],["name/879",[376,60.638]],["parent/879",[372,5.051]],["name/880",[377,60.638]],["parent/880",[372,5.051]],["name/881",[378,60.638]],["parent/881",[372,5.051]],["name/882",[108,34.988]],["parent/882",[370,4.948]],["name/883",[379,42.537]],["parent/883",[]],["name/884",[104,32.982]],["parent/884",[379,3.959]],["name/885",[105,42.18]],["parent/885",[379,3.959]],["name/886",[159,56.961]],["parent/886",[379,3.959]],["name/887",[177,41.835]],["parent/887",[379,3.959]],["name/888",[295,52.165]],["parent/888",[379,3.959]],["name/889",[296,63.151]],["parent/889",[379,3.959]],["name/890",[217,58.631]],["parent/890",[379,3.959]],["name/891",[112,52.165]],["parent/891",[379,3.959]],["name/892",[287,49.652]],["parent/892",[379,3.959]],["name/893",[297,58.631]],["parent/893",[379,3.959]],["name/894",[114,26.298]],["parent/894",[379,3.959]],["name/895",[162,45.974]],["parent/895",[380,5.301]],["name/896",[109,31.921]],["parent/896",[380,5.301]],["name/897",[154,39.706]],["parent/897",[380,5.301]],["name/898",[155,40.563]],["parent/898",[380,5.301]],["name/899",[288,49.652]],["parent/899",[379,3.959]],["name/900",[299,63.151]],["parent/900",[379,3.959]],["name/901",[300,56.961]],["parent/901",[379,3.959]],["name/902",[114,26.298]],["parent/902",[379,3.959]],["name/903",[301,56.961]],["parent/903",[380,5.301]],["name/904",[302,56.961]],["parent/904",[380,5.301]],["name/905",[303,56.961]],["parent/905",[379,3.959]],["name/906",[108,34.988]],["parent/906",[379,3.959]],["name/907",[144,44.109]],["parent/907",[379,3.959]],["name/908",[304,63.151]],["parent/908",[379,3.959]],["name/909",[305,51.255]],["parent/909",[379,3.959]],["name/910",[212,48.937]],["parent/910",[379,3.959]],["name/911",[306,66.516]],["parent/911",[379,3.959]],["name/912",[307,63.151]],["parent/912",[379,3.959]],["name/913",[308,63.151]],["parent/913",[379,3.959]],["name/914",[309,60.638]],["parent/914",[379,3.959]],["name/915",[109,31.921]],["parent/915",[379,3.959]],["name/916",[381,71.624]],["parent/916",[]],["name/917",[382,55.53]],["parent/917",[]],["name/918",[104,32.982]],["parent/918",[382,5.168]],["name/919",[287,49.652]],["parent/919",[382,5.168]],["name/920",[288,49.652]],["parent/920",[382,5.168]],["name/921",[108,34.988]],["parent/921",[382,5.168]],["name/922",[112,52.165]],["parent/922",[382,5.168]],["name/923",[177,41.835]],["parent/923",[382,5.168]],["name/924",[383,71.624]],["parent/924",[]],["name/925",[384,66.516]],["parent/925",[]],["name/926",[317,58.631]],["parent/926",[384,6.19]],["name/927",[385,63.151]],["parent/927",[]],["name/928",[149,45.974]],["parent/928",[385,5.877]],["name/929",[150,47.645]],["parent/929",[385,5.877]],["name/930",[386,58.631]],["parent/930",[]],["name/931",[109,31.921]],["parent/931",[386,5.457]],["name/932",[154,39.706]],["parent/932",[386,5.457]],["name/933",[155,40.563]],["parent/933",[386,5.457]],["name/934",[162,45.974]],["parent/934",[386,5.457]],["name/935",[387,60.638]],["parent/935",[]],["name/936",[188,51.255]],["parent/936",[387,5.643]],["name/937",[388,55.53]],["parent/937",[387,5.643]],["name/938",[114,26.298]],["parent/938",[387,5.643]],["name/939",[134,48.937]],["parent/939",[389,6.19]],["name/940",[114,26.298]],["parent/940",[389,6.19]],["name/941",[142,44.998]],["parent/941",[390,6.666]],["name/942",[391,52.165]],["parent/942",[]],["name/943",[104,32.982]],["parent/943",[391,4.855]],["name/944",[392,66.516]],["parent/944",[391,4.855]],["name/945",[271,60.638]],["parent/945",[391,4.855]],["name/946",[96,55.53]],["parent/946",[391,4.855]],["name/947",[388,55.53]],["parent/947",[391,4.855]],["name/948",[114,26.298]],["parent/948",[391,4.855]],["name/949",[134,48.937]],["parent/949",[393,6.19]],["name/950",[114,26.298]],["parent/950",[393,6.19]],["name/951",[142,44.998]],["parent/951",[394,6.666]],["name/952",[144,44.109]],["parent/952",[391,4.855]],["name/953",[395,48.937]],["parent/953",[391,4.855]],["name/954",[109,31.921]],["parent/954",[391,4.855]],["name/955",[396,60.638]],["parent/955",[]],["name/956",[104,32.982]],["parent/956",[396,5.643]],["name/957",[388,55.53]],["parent/957",[396,5.643]],["name/958",[114,26.298]],["parent/958",[396,5.643]],["name/959",[134,48.937]],["parent/959",[397,6.19]],["name/960",[114,26.298]],["parent/960",[397,6.19]],["name/961",[142,44.998]],["parent/961",[398,6.666]],["name/962",[399,71.624]],["parent/962",[]],["name/963",[400,63.151]],["parent/963",[]],["name/964",[149,45.974]],["parent/964",[400,5.877]],["name/965",[150,47.645]],["parent/965",[400,5.877]],["name/966",[401,63.151]],["parent/966",[]],["name/967",[177,41.835]],["parent/967",[401,5.877]],["name/968",[142,44.998]],["parent/968",[401,5.877]],["name/969",[402,60.638]],["parent/969",[]],["name/970",[177,41.835]],["parent/970",[402,5.643]],["name/971",[151,40.866]],["parent/971",[402,5.643]],["name/972",[114,26.298]],["parent/972",[402,5.643]],["name/973",[175,43.692]],["parent/973",[403,6.19]],["name/974",[114,26.298]],["parent/974",[403,6.19]],["name/975",[404,71.624]],["parent/975",[405,6.19]],["name/976",[142,44.998]],["parent/976",[405,6.19]],["name/977",[406,49.652]],["parent/977",[]],["name/978",[104,32.982]],["parent/978",[406,4.621]],["name/979",[144,44.109]],["parent/979",[406,4.621]],["name/980",[395,48.937]],["parent/980",[406,4.621]],["name/981",[407,63.151]],["parent/981",[406,4.621]],["name/982",[134,48.937]],["parent/982",[406,4.621]],["name/983",[408,66.516]],["parent/983",[406,4.621]],["name/984",[114,26.298]],["parent/984",[406,4.621]],["name/985",[104,32.982]],["parent/985",[409,5.643]],["name/986",[225,60.638]],["parent/986",[406,4.621]],["name/987",[410,63.151]],["parent/987",[406,4.621]],["name/988",[114,26.298]],["parent/988",[406,4.621]],["name/989",[336,55.53]],["parent/989",[409,5.643]],["name/990",[411,71.624]],["parent/990",[409,5.643]],["name/991",[412,71.624]],["parent/991",[409,5.643]],["name/992",[109,31.921]],["parent/992",[406,4.621]],["name/993",[413,71.624]],["parent/993",[406,4.621]],["name/994",[414,58.631]],["parent/994",[]],["name/995",[109,31.921]],["parent/995",[414,5.457]],["name/996",[154,39.706]],["parent/996",[414,5.457]],["name/997",[155,40.563]],["parent/997",[414,5.457]],["name/998",[162,45.974]],["parent/998",[414,5.457]],["name/999",[415,52.165]],["parent/999",[]],["name/1000",[225,60.638]],["parent/1000",[415,4.855]],["name/1001",[407,63.151]],["parent/1001",[415,4.855]],["name/1002",[134,48.937]],["parent/1002",[415,4.855]],["name/1003",[410,63.151]],["parent/1003",[415,4.855]],["name/1004",[114,26.298]],["parent/1004",[415,4.855]],["name/1005",[336,55.53]],["parent/1005",[416,5.877]],["name/1006",[417,71.624]],["parent/1006",[415,4.855]],["name/1007",[114,26.298]],["parent/1007",[415,4.855]],["name/1008",[418,71.624]],["parent/1008",[416,5.877]],["name/1009",[408,66.516]],["parent/1009",[415,4.855]],["name/1010",[114,26.298]],["parent/1010",[415,4.855]],["name/1011",[104,32.982]],["parent/1011",[416,5.877]],["name/1012",[419,71.624]],["parent/1012",[]],["name/1013",[420,55.53]],["parent/1013",[]],["name/1014",[104,32.982]],["parent/1014",[420,5.168]],["name/1015",[407,63.151]],["parent/1015",[420,5.168]],["name/1016",[410,63.151]],["parent/1016",[420,5.168]],["name/1017",[114,26.298]],["parent/1017",[420,5.168]],["name/1018",[336,55.53]],["parent/1018",[421,6.19]],["name/1019",[134,48.937]],["parent/1019",[420,5.168]],["name/1020",[114,26.298]],["parent/1020",[420,5.168]],["name/1021",[142,44.998]],["parent/1021",[421,6.19]],["name/1022",[422,71.624]],["parent/1022",[]],["name/1023",[423,55.53]],["parent/1023",[]],["name/1024",[149,45.974]],["parent/1024",[423,5.168]],["name/1025",[150,47.645]],["parent/1025",[423,5.168]],["name/1026",[144,44.109]],["parent/1026",[423,5.168]],["name/1027",[114,26.298]],["parent/1027",[423,5.168]],["name/1028",[245,58.631]],["parent/1028",[424,5.643]],["name/1029",[247,58.631]],["parent/1029",[424,5.643]],["name/1030",[395,48.937]],["parent/1030",[423,5.168]],["name/1031",[114,26.298]],["parent/1031",[423,5.168]],["name/1032",[245,58.631]],["parent/1032",[424,5.643]],["name/1033",[247,58.631]],["parent/1033",[424,5.643]],["name/1034",[425,43.692]],["parent/1034",[]],["name/1035",[104,32.982]],["parent/1035",[425,4.066]],["name/1036",[89,47.057]],["parent/1036",[425,4.066]],["name/1037",[218,48.937]],["parent/1037",[425,4.066]],["name/1038",[160,56.961]],["parent/1038",[425,4.066]],["name/1039",[295,52.165]],["parent/1039",[425,4.066]],["name/1040",[177,41.835]],["parent/1040",[425,4.066]],["name/1041",[240,54.278]],["parent/1041",[425,4.066]],["name/1042",[114,26.298]],["parent/1042",[425,4.066]],["name/1043",[142,44.998]],["parent/1043",[426,4.855]],["name/1044",[0,49.652]],["parent/1044",[426,4.855]],["name/1045",[287,49.652]],["parent/1045",[425,4.066]],["name/1046",[288,49.652]],["parent/1046",[425,4.066]],["name/1047",[300,56.961]],["parent/1047",[425,4.066]],["name/1048",[114,26.298]],["parent/1048",[425,4.066]],["name/1049",[301,56.961]],["parent/1049",[426,4.855]],["name/1050",[302,56.961]],["parent/1050",[426,4.855]],["name/1051",[303,56.961]],["parent/1051",[425,4.066]],["name/1052",[16,60.638]],["parent/1052",[425,4.066]],["name/1053",[114,26.298]],["parent/1053",[425,4.066]],["name/1054",[220,58.631]],["parent/1054",[426,4.855]],["name/1055",[427,66.516]],["parent/1055",[426,4.855]],["name/1056",[248,42.18]],["parent/1056",[425,4.066]],["name/1057",[114,26.298]],["parent/1057",[425,4.066]],["name/1058",[252,53.166]],["parent/1058",[426,4.855]],["name/1059",[135,63.151]],["parent/1059",[426,4.855]],["name/1060",[253,60.638]],["parent/1060",[426,4.855]],["name/1061",[254,63.151]],["parent/1061",[426,4.855]],["name/1062",[305,51.255]],["parent/1062",[425,4.066]],["name/1063",[428,58.631]],["parent/1063",[425,4.066]],["name/1064",[108,34.988]],["parent/1064",[425,4.066]],["name/1065",[429,58.631]],["parent/1065",[425,4.066]],["name/1066",[430,63.151]],["parent/1066",[425,4.066]],["name/1067",[395,48.937]],["parent/1067",[425,4.066]],["name/1068",[431,58.631]],["parent/1068",[]],["name/1069",[109,31.921]],["parent/1069",[431,5.457]],["name/1070",[154,39.706]],["parent/1070",[431,5.457]],["name/1071",[155,40.563]],["parent/1071",[431,5.457]],["name/1072",[99,46.501]],["parent/1072",[431,5.457]],["name/1073",[432,56.961]],["parent/1073",[]],["name/1074",[212,48.937]],["parent/1074",[432,5.301]],["name/1075",[214,56.961]],["parent/1075",[432,5.301]],["name/1076",[187,41.501]],["parent/1076",[432,5.301]],["name/1077",[114,26.298]],["parent/1077",[432,5.301]],["name/1078",[104,32.982]],["parent/1078",[433,5.301]],["name/1079",[105,42.18]],["parent/1079",[433,5.301]],["name/1080",[106,56.961]],["parent/1080",[433,5.301]],["name/1081",[108,34.988]],["parent/1081",[433,5.301]],["name/1082",[112,52.165]],["parent/1082",[433,5.301]],["name/1083",[107,42.537]],["parent/1083",[433,5.301]],["name/1084",[108,34.988]],["parent/1084",[432,5.301]],["name/1085",[434,71.624]],["parent/1085",[]],["name/1086",[435,71.624]],["parent/1086",[]],["name/1087",[436,58.631]],["parent/1087",[]],["name/1088",[109,31.921]],["parent/1088",[436,5.457]],["name/1089",[155,40.563]],["parent/1089",[436,5.457]],["name/1090",[154,39.706]],["parent/1090",[436,5.457]],["name/1091",[437,71.624]],["parent/1091",[436,5.457]],["name/1092",[438,66.516]],["parent/1092",[]],["name/1093",[142,44.998]],["parent/1093",[438,6.19]],["name/1094",[439,54.278]],["parent/1094",[]],["name/1095",[142,44.998]],["parent/1095",[439,5.051]],["name/1096",[154,39.706]],["parent/1096",[439,5.051]],["name/1097",[0,49.652]],["parent/1097",[439,5.051]],["name/1098",[177,41.835]],["parent/1098",[439,5.051]],["name/1099",[109,31.921]],["parent/1099",[439,5.051]],["name/1100",[178,63.151]],["parent/1100",[439,5.051]],["name/1101",[114,26.298]],["parent/1101",[439,5.051]],["name/1102",[177,41.835]],["parent/1102",[440,6.19]],["name/1103",[104,32.982]],["parent/1103",[440,6.19]],["name/1104",[441,56.961]],["parent/1104",[]],["name/1105",[188,51.255]],["parent/1105",[441,5.301]],["name/1106",[114,26.298]],["parent/1106",[441,5.301]],["name/1107",[104,32.982]],["parent/1107",[442,5.301]],["name/1108",[151,40.866]],["parent/1108",[441,5.301]],["name/1109",[114,26.298]],["parent/1109",[441,5.301]],["name/1110",[104,32.982]],["parent/1110",[442,5.301]],["name/1111",[107,42.537]],["parent/1111",[442,5.301]],["name/1112",[175,43.692]],["parent/1112",[442,5.301]],["name/1113",[185,52.165]],["parent/1113",[442,5.301]],["name/1114",[108,34.988]],["parent/1114",[442,5.301]],["name/1115",[108,34.988]],["parent/1115",[441,5.301]],["name/1116",[443,49.652]],["parent/1116",[]],["name/1117",[104,32.982]],["parent/1117",[443,4.621]],["name/1118",[109,31.921]],["parent/1118",[443,4.621]],["name/1119",[209,54.278]],["parent/1119",[443,4.621]],["name/1120",[210,53.166]],["parent/1120",[443,4.621]],["name/1121",[175,43.692]],["parent/1121",[443,4.621]],["name/1122",[151,40.866]],["parent/1122",[443,4.621]],["name/1123",[187,41.501]],["parent/1123",[443,4.621]],["name/1124",[188,51.255]],["parent/1124",[443,4.621]],["name/1125",[211,49.652]],["parent/1125",[443,4.621]],["name/1126",[184,45.974]],["parent/1126",[443,4.621]],["name/1127",[212,48.937]],["parent/1127",[443,4.621]],["name/1128",[114,26.298]],["parent/1128",[443,4.621]],["name/1129",[104,32.982]],["parent/1129",[444,3.832]],["name/1130",[89,47.057]],["parent/1130",[444,3.832]],["name/1131",[218,48.937]],["parent/1131",[444,3.832]],["name/1132",[160,56.961]],["parent/1132",[444,3.832]],["name/1133",[295,52.165]],["parent/1133",[444,3.832]],["name/1134",[177,41.835]],["parent/1134",[444,3.832]],["name/1135",[240,54.278]],["parent/1135",[444,3.832]],["name/1136",[114,26.298]],["parent/1136",[444,3.832]],["name/1137",[142,44.998]],["parent/1137",[445,4.066]],["name/1138",[0,49.652]],["parent/1138",[445,4.066]],["name/1139",[287,49.652]],["parent/1139",[444,3.832]],["name/1140",[288,49.652]],["parent/1140",[444,3.832]],["name/1141",[300,56.961]],["parent/1141",[444,3.832]],["name/1142",[114,26.298]],["parent/1142",[444,3.832]],["name/1143",[301,56.961]],["parent/1143",[445,4.066]],["name/1144",[302,56.961]],["parent/1144",[445,4.066]],["name/1145",[303,56.961]],["parent/1145",[444,3.832]],["name/1146",[16,60.638]],["parent/1146",[444,3.832]],["name/1147",[114,26.298]],["parent/1147",[444,3.832]],["name/1148",[109,31.921]],["parent/1148",[445,4.066]],["name/1149",[220,58.631]],["parent/1149",[445,4.066]],["name/1150",[446,53.166]],["parent/1150",[445,4.066]],["name/1151",[248,42.18]],["parent/1151",[444,3.832]],["name/1152",[114,26.298]],["parent/1152",[444,3.832]],["name/1153",[109,31.921]],["parent/1153",[445,4.066]],["name/1154",[252,53.166]],["parent/1154",[445,4.066]],["name/1155",[253,60.638]],["parent/1155",[445,4.066]],["name/1156",[446,53.166]],["parent/1156",[445,4.066]],["name/1157",[135,63.151]],["parent/1157",[445,4.066]],["name/1158",[305,51.255]],["parent/1158",[444,3.832]],["name/1159",[428,58.631]],["parent/1159",[444,3.832]],["name/1160",[447,66.516]],["parent/1160",[444,3.832]],["name/1161",[114,26.298]],["parent/1161",[444,3.832]],["name/1162",[448,66.516]],["parent/1162",[445,4.066]],["name/1163",[114,26.298]],["parent/1163",[445,4.066]],["name/1164",[104,32.982]],["parent/1164",[449,5.643]],["name/1165",[446,53.166]],["parent/1165",[449,5.643]],["name/1166",[450,66.516]],["parent/1166",[445,4.066]],["name/1167",[114,26.298]],["parent/1167",[445,4.066]],["name/1168",[104,32.982]],["parent/1168",[449,5.643]],["name/1169",[446,53.166]],["parent/1169",[449,5.643]],["name/1170",[429,58.631]],["parent/1170",[444,3.832]],["name/1171",[451,63.151]],["parent/1171",[444,3.832]],["name/1172",[430,63.151]],["parent/1172",[444,3.832]],["name/1173",[144,44.109]],["parent/1173",[444,3.832]],["name/1174",[395,48.937]],["parent/1174",[444,3.832]],["name/1175",[452,71.624]],["parent/1175",[444,3.832]],["name/1176",[114,26.298]],["parent/1176",[444,3.832]],["name/1177",[104,32.982]],["parent/1177",[445,4.066]],["name/1178",[107,42.537]],["parent/1178",[445,4.066]],["name/1179",[108,34.988]],["parent/1179",[445,4.066]],["name/1180",[109,31.921]],["parent/1180",[445,4.066]],["name/1181",[109,31.921]],["parent/1181",[444,3.832]],["name/1182",[297,58.631]],["parent/1182",[444,3.832]],["name/1183",[114,26.298]],["parent/1183",[444,3.832]],["name/1184",[109,31.921]],["parent/1184",[445,4.066]],["name/1185",[154,39.706]],["parent/1185",[445,4.066]],["name/1186",[155,40.563]],["parent/1186",[445,4.066]],["name/1187",[162,45.974]],["parent/1187",[445,4.066]],["name/1188",[453,63.151]],["parent/1188",[]],["name/1189",[89,47.057]],["parent/1189",[453,5.877]],["name/1190",[142,44.998]],["parent/1190",[453,5.877]],["name/1191",[454,71.624]],["parent/1191",[]],["name/1192",[455,52.165]],["parent/1192",[]],["name/1193",[373,60.638]],["parent/1193",[455,4.855]],["name/1194",[114,26.298]],["parent/1194",[455,4.855]],["name/1195",[374,60.638]],["parent/1195",[456,5.051]],["name/1196",[375,60.638]],["parent/1196",[456,5.051]],["name/1197",[376,60.638]],["parent/1197",[456,5.051]],["name/1198",[377,60.638]],["parent/1198",[456,5.051]],["name/1199",[378,60.638]],["parent/1199",[456,5.051]],["name/1200",[177,41.835]],["parent/1200",[455,4.855]],["name/1201",[429,58.631]],["parent/1201",[455,4.855]],["name/1202",[199,53.166]],["parent/1202",[455,4.855]],["name/1203",[240,54.278]],["parent/1203",[455,4.855]],["name/1204",[114,26.298]],["parent/1204",[455,4.855]],["name/1205",[142,44.998]],["parent/1205",[456,5.051]],["name/1206",[0,49.652]],["parent/1206",[456,5.051]],["name/1207",[248,42.18]],["parent/1207",[455,4.855]],["name/1208",[114,26.298]],["parent/1208",[455,4.855]],["name/1209",[252,53.166]],["parent/1209",[456,5.051]],["name/1210",[457,40.563]],["parent/1210",[]],["name/1211",[104,32.982]],["parent/1211",[457,3.775]],["name/1212",[89,47.057]],["parent/1212",[457,3.775]],["name/1213",[218,48.937]],["parent/1213",[457,3.775]],["name/1214",[295,52.165]],["parent/1214",[457,3.775]],["name/1215",[177,41.835]],["parent/1215",[457,3.775]],["name/1216",[199,53.166]],["parent/1216",[457,3.775]],["name/1217",[130,51.255]],["parent/1217",[457,3.775]],["name/1218",[114,26.298]],["parent/1218",[457,3.775]],["name/1219",[175,43.692]],["parent/1219",[458,3.993]],["name/1220",[0,49.652]],["parent/1220",[458,3.993]],["name/1221",[240,54.278]],["parent/1221",[457,3.775]],["name/1222",[114,26.298]],["parent/1222",[457,3.775]],["name/1223",[142,44.998]],["parent/1223",[458,3.993]],["name/1224",[287,49.652]],["parent/1224",[457,3.775]],["name/1225",[288,49.652]],["parent/1225",[457,3.775]],["name/1226",[300,56.961]],["parent/1226",[457,3.775]],["name/1227",[114,26.298]],["parent/1227",[457,3.775]],["name/1228",[301,56.961]],["parent/1228",[458,3.993]],["name/1229",[302,56.961]],["parent/1229",[458,3.993]],["name/1230",[303,56.961]],["parent/1230",[457,3.775]],["name/1231",[16,60.638]],["parent/1231",[457,3.775]],["name/1232",[114,26.298]],["parent/1232",[457,3.775]],["name/1233",[109,31.921]],["parent/1233",[458,3.993]],["name/1234",[220,58.631]],["parent/1234",[458,3.993]],["name/1235",[155,40.563]],["parent/1235",[458,3.993]],["name/1236",[427,66.516]],["parent/1236",[458,3.993]],["name/1237",[154,39.706]],["parent/1237",[458,3.993]],["name/1238",[446,53.166]],["parent/1238",[458,3.993]],["name/1239",[248,42.18]],["parent/1239",[457,3.775]],["name/1240",[114,26.298]],["parent/1240",[457,3.775]],["name/1241",[109,31.921]],["parent/1241",[458,3.993]],["name/1242",[252,53.166]],["parent/1242",[458,3.993]],["name/1243",[253,60.638]],["parent/1243",[458,3.993]],["name/1244",[155,40.563]],["parent/1244",[458,3.993]],["name/1245",[254,63.151]],["parent/1245",[458,3.993]],["name/1246",[154,39.706]],["parent/1246",[458,3.993]],["name/1247",[446,53.166]],["parent/1247",[458,3.993]],["name/1248",[305,51.255]],["parent/1248",[457,3.775]],["name/1249",[428,58.631]],["parent/1249",[457,3.775]],["name/1250",[108,34.988]],["parent/1250",[457,3.775]],["name/1251",[447,66.516]],["parent/1251",[457,3.775]],["name/1252",[114,26.298]],["parent/1252",[457,3.775]],["name/1253",[448,66.516]],["parent/1253",[458,3.993]],["name/1254",[114,26.298]],["parent/1254",[458,3.993]],["name/1255",[104,32.982]],["parent/1255",[459,5.643]],["name/1256",[446,53.166]],["parent/1256",[459,5.643]],["name/1257",[450,66.516]],["parent/1257",[458,3.993]],["name/1258",[114,26.298]],["parent/1258",[458,3.993]],["name/1259",[104,32.982]],["parent/1259",[459,5.643]],["name/1260",[446,53.166]],["parent/1260",[459,5.643]],["name/1261",[429,58.631]],["parent/1261",[457,3.775]],["name/1262",[451,63.151]],["parent/1262",[457,3.775]],["name/1263",[430,63.151]],["parent/1263",[457,3.775]],["name/1264",[395,48.937]],["parent/1264",[457,3.775]],["name/1265",[144,44.109]],["parent/1265",[457,3.775]],["name/1266",[109,31.921]],["parent/1266",[457,3.775]],["name/1267",[297,58.631]],["parent/1267",[457,3.775]],["name/1268",[114,26.298]],["parent/1268",[457,3.775]],["name/1269",[109,31.921]],["parent/1269",[458,3.993]],["name/1270",[154,39.706]],["parent/1270",[458,3.993]],["name/1271",[155,40.563]],["parent/1271",[458,3.993]],["name/1272",[162,45.974]],["parent/1272",[458,3.993]],["name/1273",[460,56.961]],["parent/1273",[]],["name/1274",[187,41.501]],["parent/1274",[460,5.301]],["name/1275",[151,40.866]],["parent/1275",[460,5.301]],["name/1276",[188,51.255]],["parent/1276",[460,5.301]],["name/1277",[114,26.298]],["parent/1277",[460,5.301]],["name/1278",[104,32.982]],["parent/1278",[461,6.19]],["name/1279",[260,63.151]],["parent/1279",[461,6.19]],["name/1280",[108,34.988]],["parent/1280",[460,5.301]],["name/1281",[462,60.638]],["parent/1281",[]],["name/1282",[312,63.151]],["parent/1282",[462,5.643]],["name/1283",[151,40.866]],["parent/1283",[462,5.643]],["name/1284",[149,45.974]],["parent/1284",[462,5.643]],["name/1285",[463,58.631]],["parent/1285",[]],["name/1286",[109,31.921]],["parent/1286",[463,5.457]],["name/1287",[154,39.706]],["parent/1287",[463,5.457]],["name/1288",[155,40.563]],["parent/1288",[463,5.457]],["name/1289",[162,45.974]],["parent/1289",[463,5.457]],["name/1290",[464,55.53]],["parent/1290",[]],["name/1291",[305,51.255]],["parent/1291",[464,5.168]],["name/1292",[89,47.057]],["parent/1292",[464,5.168]],["name/1293",[373,60.638]],["parent/1293",[464,5.168]],["name/1294",[114,26.298]],["parent/1294",[464,5.168]],["name/1295",[374,60.638]],["parent/1295",[465,5.301]],["name/1296",[375,60.638]],["parent/1296",[465,5.301]],["name/1297",[376,60.638]],["parent/1297",[465,5.301]],["name/1298",[377,60.638]],["parent/1298",[465,5.301]],["name/1299",[378,60.638]],["parent/1299",[465,5.301]],["name/1300",[248,42.18]],["parent/1300",[464,5.168]],["name/1301",[114,26.298]],["parent/1301",[464,5.168]],["name/1302",[252,53.166]],["parent/1302",[465,5.301]],["name/1303",[466,71.624]],["parent/1303",[]],["name/1304",[467,71.624]],["parent/1304",[]],["name/1305",[468,71.624]],["parent/1305",[]],["name/1306",[469,52.165]],["parent/1306",[]],["name/1307",[89,47.057]],["parent/1307",[469,4.855]],["name/1308",[295,52.165]],["parent/1308",[469,4.855]],["name/1309",[287,49.652]],["parent/1309",[469,4.855]],["name/1310",[288,49.652]],["parent/1310",[469,4.855]],["name/1311",[305,51.255]],["parent/1311",[469,4.855]],["name/1312",[428,58.631]],["parent/1312",[469,4.855]],["name/1313",[108,34.988]],["parent/1313",[469,4.855]],["name/1314",[130,51.255]],["parent/1314",[469,4.855]],["name/1315",[114,26.298]],["parent/1315",[469,4.855]],["name/1316",[175,43.692]],["parent/1316",[470,6.666]],["name/1317",[471,71.624]],["parent/1317",[]],["name/1318",[472,66.516]],["parent/1318",[]],["name/1319",[317,58.631]],["parent/1319",[472,6.19]],["name/1320",[473,49.652]],["parent/1320",[]],["name/1321",[149,45.974]],["parent/1321",[473,4.621]],["name/1322",[150,47.645]],["parent/1322",[473,4.621]],["name/1323",[295,52.165]],["parent/1323",[473,4.621]],["name/1324",[218,48.937]],["parent/1324",[473,4.621]],["name/1325",[187,41.501]],["parent/1325",[473,4.621]],["name/1326",[144,44.109]],["parent/1326",[473,4.621]],["name/1327",[114,26.298]],["parent/1327",[473,4.621]],["name/1328",[247,58.631]],["parent/1328",[474,5.457]],["name/1329",[245,58.631]],["parent/1329",[474,5.457]],["name/1330",[395,48.937]],["parent/1330",[473,4.621]],["name/1331",[114,26.298]],["parent/1331",[473,4.621]],["name/1332",[247,58.631]],["parent/1332",[474,5.457]],["name/1333",[245,58.631]],["parent/1333",[474,5.457]],["name/1334",[151,40.866]],["parent/1334",[473,4.621]],["name/1335",[325,56.961]],["parent/1335",[473,4.621]],["name/1336",[114,26.298]],["parent/1336",[473,4.621]],["name/1337",[326,55.53]],["parent/1337",[474,5.457]],["name/1338",[475,58.631]],["parent/1338",[]],["name/1339",[109,31.921]],["parent/1339",[475,5.457]],["name/1340",[154,39.706]],["parent/1340",[475,5.457]],["name/1341",[155,40.563]],["parent/1341",[475,5.457]],["name/1342",[99,46.501]],["parent/1342",[475,5.457]],["name/1343",[476,71.624]],["parent/1343",[]],["name/1344",[477,71.624]],["parent/1344",[]],["name/1345",[478,48.937]],["parent/1345",[]],["name/1346",[89,47.057]],["parent/1346",[478,4.554]],["name/1347",[295,52.165]],["parent/1347",[478,4.554]],["name/1348",[177,41.835]],["parent/1348",[478,4.554]],["name/1349",[199,53.166]],["parent/1349",[478,4.554]],["name/1350",[428,58.631]],["parent/1350",[478,4.554]],["name/1351",[287,49.652]],["parent/1351",[478,4.554]],["name/1352",[288,49.652]],["parent/1352",[478,4.554]],["name/1353",[305,51.255]],["parent/1353",[478,4.554]],["name/1354",[108,34.988]],["parent/1354",[478,4.554]],["name/1355",[248,42.18]],["parent/1355",[478,4.554]],["name/1356",[114,26.298]],["parent/1356",[478,4.554]],["name/1357",[252,53.166]],["parent/1357",[479,5.301]],["name/1358",[373,60.638]],["parent/1358",[478,4.554]],["name/1359",[114,26.298]],["parent/1359",[478,4.554]],["name/1360",[374,60.638]],["parent/1360",[479,5.301]],["name/1361",[375,60.638]],["parent/1361",[479,5.301]],["name/1362",[376,60.638]],["parent/1362",[479,5.301]],["name/1363",[377,60.638]],["parent/1363",[479,5.301]],["name/1364",[378,60.638]],["parent/1364",[479,5.301]],["name/1365",[480,63.151]],["parent/1365",[]],["name/1366",[89,47.057]],["parent/1366",[480,5.877]],["name/1367",[108,34.988]],["parent/1367",[480,5.877]],["name/1368",[481,71.624]],["parent/1368",[]],["name/1369",[482,63.151]],["parent/1369",[]],["name/1370",[483,71.624]],["parent/1370",[482,5.877]],["name/1371",[108,34.988]],["parent/1371",[482,5.877]],["name/1372",[484,66.516]],["parent/1372",[]],["name/1373",[114,26.298]],["parent/1373",[484,6.19]],["name/1374",[330,56.961]],["parent/1374",[485,6.666]],["name/1375",[486,66.516]],["parent/1375",[]],["name/1376",[114,26.298]],["parent/1376",[486,6.19]],["name/1377",[330,56.961]],["parent/1377",[487,6.666]],["name/1378",[488,66.516]],["parent/1378",[]],["name/1379",[114,26.298]],["parent/1379",[488,6.19]],["name/1380",[330,56.961]],["parent/1380",[489,6.666]],["name/1381",[490,56.961]],["parent/1381",[]],["name/1382",[105,42.18]],["parent/1382",[490,5.301]],["name/1383",[289,60.638]],["parent/1383",[490,5.301]],["name/1384",[114,26.298]],["parent/1384",[490,5.301]],["name/1385",[491,66.516]],["parent/1385",[492,6.19]],["name/1386",[493,66.516]],["parent/1386",[490,5.301]],["name/1387",[114,26.298]],["parent/1387",[490,5.301]],["name/1388",[494,66.516]],["parent/1388",[492,6.19]],["name/1389",[495,52.165]],["parent/1389",[]],["name/1390",[104,32.982]],["parent/1390",[495,4.855]],["name/1391",[105,42.18]],["parent/1391",[495,4.855]],["name/1392",[289,60.638]],["parent/1392",[495,4.855]],["name/1393",[114,26.298]],["parent/1393",[495,4.855]],["name/1394",[491,66.516]],["parent/1394",[496,6.19]],["name/1395",[493,66.516]],["parent/1395",[495,4.855]],["name/1396",[114,26.298]],["parent/1396",[495,4.855]],["name/1397",[494,66.516]],["parent/1397",[496,6.19]],["name/1398",[144,44.109]],["parent/1398",[495,4.855]],["name/1399",[395,48.937]],["parent/1399",[495,4.855]],["name/1400",[109,31.921]],["parent/1400",[495,4.855]],["name/1401",[497,60.638]],["parent/1401",[]],["name/1402",[198,56.961]],["parent/1402",[497,5.643]],["name/1403",[498,66.516]],["parent/1403",[497,5.643]],["name/1404",[200,60.638]],["parent/1404",[497,5.643]],["name/1405",[499,71.624]],["parent/1405",[]],["name/1406",[500,71.624]],["parent/1406",[]],["name/1407",[501,71.624]],["parent/1407",[]],["name/1408",[502,60.638]],["parent/1408",[]],["name/1409",[212,48.937]],["parent/1409",[502,5.643]],["name/1410",[218,48.937]],["parent/1410",[502,5.643]],["name/1411",[241,63.151]],["parent/1411",[502,5.643]],["name/1412",[503,54.278]],["parent/1412",[]],["name/1413",[104,32.982]],["parent/1413",[503,5.051]],["name/1414",[498,66.516]],["parent/1414",[503,5.051]],["name/1415",[271,60.638]],["parent/1415",[503,5.051]],["name/1416",[96,55.53]],["parent/1416",[503,5.051]],["name/1417",[144,44.109]],["parent/1417",[503,5.051]],["name/1418",[395,48.937]],["parent/1418",[503,5.051]],["name/1419",[109,31.921]],["parent/1419",[503,5.051]],["name/1420",[504,63.151]],["parent/1420",[]],["name/1421",[149,45.974]],["parent/1421",[504,5.877]],["name/1422",[150,47.645]],["parent/1422",[504,5.877]],["name/1423",[505,58.631]],["parent/1423",[]],["name/1424",[109,31.921]],["parent/1424",[505,5.457]],["name/1425",[154,39.706]],["parent/1425",[505,5.457]],["name/1426",[155,40.563]],["parent/1426",[505,5.457]],["name/1427",[162,45.974]],["parent/1427",[505,5.457]],["name/1428",[506,63.151]],["parent/1428",[]],["name/1429",[149,45.974]],["parent/1429",[506,5.877]],["name/1430",[150,47.645]],["parent/1430",[506,5.877]],["name/1431",[507,58.631]],["parent/1431",[]],["name/1432",[109,31.921]],["parent/1432",[507,5.457]],["name/1433",[154,39.706]],["parent/1433",[507,5.457]],["name/1434",[155,40.563]],["parent/1434",[507,5.457]],["name/1435",[162,45.974]],["parent/1435",[507,5.457]],["name/1436",[508,63.151]],["parent/1436",[]],["name/1437",[150,47.645]],["parent/1437",[508,5.877]],["name/1438",[149,45.974]],["parent/1438",[508,5.877]],["name/1439",[509,52.165]],["parent/1439",[]],["name/1440",[104,32.982]],["parent/1440",[509,4.855]],["name/1441",[105,42.18]],["parent/1441",[509,4.855]],["name/1442",[510,71.624]],["parent/1442",[509,4.855]],["name/1443",[511,71.624]],["parent/1443",[509,4.855]],["name/1444",[512,56.961]],["parent/1444",[509,4.855]],["name/1445",[114,26.298]],["parent/1445",[509,4.855]],["name/1446",[513,58.631]],["parent/1446",[514,6.19]],["name/1447",[112,52.165]],["parent/1447",[514,6.19]],["name/1448",[144,44.109]],["parent/1448",[509,4.855]],["name/1449",[395,48.937]],["parent/1449",[509,4.855]],["name/1450",[109,31.921]],["parent/1450",[509,4.855]],["name/1451",[515,71.624]],["parent/1451",[]],["name/1452",[516,58.631]],["parent/1452",[]],["name/1453",[109,31.921]],["parent/1453",[516,5.457]],["name/1454",[154,39.706]],["parent/1454",[516,5.457]],["name/1455",[155,40.563]],["parent/1455",[516,5.457]],["name/1456",[162,45.974]],["parent/1456",[516,5.457]],["name/1457",[517,71.624]],["parent/1457",[]],["name/1458",[518,71.624]],["parent/1458",[]],["name/1459",[519,71.624]],["parent/1459",[]],["name/1460",[520,71.624]],["parent/1460",[]],["name/1461",[521,71.624]],["parent/1461",[]],["name/1462",[522,71.624]],["parent/1462",[]],["name/1463",[523,52.165]],["parent/1463",[]],["name/1464",[104,32.982]],["parent/1464",[523,4.855]],["name/1465",[392,66.516]],["parent/1465",[523,4.855]],["name/1466",[271,60.638]],["parent/1466",[523,4.855]],["name/1467",[96,55.53]],["parent/1467",[523,4.855]],["name/1468",[388,55.53]],["parent/1468",[523,4.855]],["name/1469",[114,26.298]],["parent/1469",[523,4.855]],["name/1470",[134,48.937]],["parent/1470",[524,6.19]],["name/1471",[114,26.298]],["parent/1471",[524,6.19]],["name/1472",[142,44.998]],["parent/1472",[525,6.666]],["name/1473",[144,44.109]],["parent/1473",[523,4.855]],["name/1474",[395,48.937]],["parent/1474",[523,4.855]],["name/1475",[109,31.921]],["parent/1475",[523,4.855]],["name/1476",[526,63.151]],["parent/1476",[]],["name/1477",[149,45.974]],["parent/1477",[526,5.877]],["name/1478",[150,47.645]],["parent/1478",[526,5.877]],["name/1479",[527,58.631]],["parent/1479",[]],["name/1480",[154,39.706]],["parent/1480",[527,5.457]],["name/1481",[162,45.974]],["parent/1481",[527,5.457]],["name/1482",[109,31.921]],["parent/1482",[527,5.457]],["name/1483",[155,40.563]],["parent/1483",[527,5.457]],["name/1484",[528,60.638]],["parent/1484",[]],["name/1485",[218,48.937]],["parent/1485",[528,5.643]],["name/1486",[388,55.53]],["parent/1486",[528,5.643]],["name/1487",[114,26.298]],["parent/1487",[528,5.643]],["name/1488",[134,48.937]],["parent/1488",[529,6.19]],["name/1489",[114,26.298]],["parent/1489",[529,6.19]],["name/1490",[142,44.998]],["parent/1490",[530,6.666]],["name/1491",[531,71.624]],["parent/1491",[]],["name/1492",[532,71.624]],["parent/1492",[]],["name/1493",[533,71.624]],["parent/1493",[]],["name/1494",[534,60.638]],["parent/1494",[]],["name/1495",[142,44.998]],["parent/1495",[534,5.643]],["name/1496",[260,63.151]],["parent/1496",[534,5.643]],["name/1497",[104,32.982]],["parent/1497",[534,5.643]],["name/1498",[535,55.53]],["parent/1498",[]],["name/1499",[105,42.18]],["parent/1499",[535,5.168]],["name/1500",[107,42.537]],["parent/1500",[535,5.168]],["name/1501",[536,53.166]],["parent/1501",[535,5.168]],["name/1502",[512,56.961]],["parent/1502",[535,5.168]],["name/1503",[108,34.988]],["parent/1503",[535,5.168]],["name/1504",[513,58.631]],["parent/1504",[535,5.168]],["name/1505",[537,63.151]],["parent/1505",[]],["name/1506",[538,66.516]],["parent/1506",[537,5.877]],["name/1507",[114,26.298]],["parent/1507",[537,5.877]],["name/1508",[109,31.921]],["parent/1508",[539,5.877]],["name/1509",[154,39.706]],["parent/1509",[539,5.877]],["name/1510",[162,45.974]],["parent/1510",[539,5.877]],["name/1511",[540,52.165]],["parent/1511",[]],["name/1512",[104,32.982]],["parent/1512",[540,4.855]],["name/1513",[107,42.537]],["parent/1513",[540,4.855]],["name/1514",[109,31.921]],["parent/1514",[540,4.855]],["name/1515",[105,42.18]],["parent/1515",[540,4.855]],["name/1516",[536,53.166]],["parent/1516",[540,4.855]],["name/1517",[512,56.961]],["parent/1517",[540,4.855]],["name/1518",[144,44.109]],["parent/1518",[540,4.855]],["name/1519",[513,58.631]],["parent/1519",[540,4.855]],["name/1520",[108,34.988]],["parent/1520",[540,4.855]],["name/1521",[541,71.624]],["parent/1521",[]],["name/1522",[542,66.516]],["parent/1522",[]],["name/1523",[114,26.298]],["parent/1523",[542,6.19]],["name/1524",[105,42.18]],["parent/1524",[543,5.168]],["name/1525",[104,32.982]],["parent/1525",[543,5.168]],["name/1526",[107,42.537]],["parent/1526",[543,5.168]],["name/1527",[512,56.961]],["parent/1527",[543,5.168]],["name/1528",[536,53.166]],["parent/1528",[543,5.168]],["name/1529",[513,58.631]],["parent/1529",[543,5.168]],["name/1530",[108,34.988]],["parent/1530",[543,5.168]],["name/1531",[544,71.624]],["parent/1531",[]],["name/1532",[545,63.151]],["parent/1532",[]],["name/1533",[546,71.624]],["parent/1533",[545,5.877]],["name/1534",[108,34.988]],["parent/1534",[545,5.877]],["name/1535",[547,71.624]],["parent/1535",[]],["name/1536",[548,66.516]],["parent/1536",[]],["name/1537",[114,26.298]],["parent/1537",[548,6.19]],["name/1538",[330,56.961]],["parent/1538",[549,6.666]],["name/1539",[550,66.516]],["parent/1539",[]],["name/1540",[114,26.298]],["parent/1540",[550,6.19]],["name/1541",[330,56.961]],["parent/1541",[551,6.666]],["name/1542",[552,66.516]],["parent/1542",[]],["name/1543",[317,58.631]],["parent/1543",[552,6.19]],["name/1544",[553,63.151]],["parent/1544",[]],["name/1545",[150,47.645]],["parent/1545",[553,5.877]],["name/1546",[149,45.974]],["parent/1546",[553,5.877]],["name/1547",[554,58.631]],["parent/1547",[]],["name/1548",[109,31.921]],["parent/1548",[554,5.457]],["name/1549",[154,39.706]],["parent/1549",[554,5.457]],["name/1550",[155,40.563]],["parent/1550",[554,5.457]],["name/1551",[49,48.27]],["parent/1551",[554,5.457]],["name/1552",[555,54.278]],["parent/1552",[]],["name/1553",[556,54.278]],["parent/1553",[555,5.051]],["name/1554",[107,42.537]],["parent/1554",[555,5.051]],["name/1555",[512,56.961]],["parent/1555",[555,5.051]],["name/1556",[108,34.988]],["parent/1556",[555,5.051]],["name/1557",[536,53.166]],["parent/1557",[555,5.051]],["name/1558",[513,58.631]],["parent/1558",[555,5.051]],["name/1559",[557,66.516]],["parent/1559",[555,5.051]],["name/1560",[558,51.255]],["parent/1560",[]],["name/1561",[104,32.982]],["parent/1561",[558,4.77]],["name/1562",[107,42.537]],["parent/1562",[558,4.77]],["name/1563",[556,54.278]],["parent/1563",[558,4.77]],["name/1564",[536,53.166]],["parent/1564",[558,4.77]],["name/1565",[512,56.961]],["parent/1565",[558,4.77]],["name/1566",[108,34.988]],["parent/1566",[558,4.77]],["name/1567",[395,48.937]],["parent/1567",[558,4.77]],["name/1568",[557,66.516]],["parent/1568",[558,4.77]],["name/1569",[144,44.109]],["parent/1569",[558,4.77]],["name/1570",[109,31.921]],["parent/1570",[558,4.77]],["name/1571",[559,71.624]],["parent/1571",[]],["name/1572",[560,71.624]],["parent/1572",[]],["name/1573",[561,71.624]],["parent/1573",[]],["name/1574",[562,66.516]],["parent/1574",[]],["name/1575",[317,58.631]],["parent/1575",[562,6.19]],["name/1576",[563,60.638]],["parent/1576",[]],["name/1577",[109,31.921]],["parent/1577",[563,5.643]],["name/1578",[154,39.706]],["parent/1578",[563,5.643]],["name/1579",[538,66.516]],["parent/1579",[563,5.643]],["name/1580",[564,60.638]],["parent/1580",[]],["name/1581",[104,32.982]],["parent/1581",[564,5.643]],["name/1582",[107,42.537]],["parent/1582",[564,5.643]],["name/1583",[105,42.18]],["parent/1583",[564,5.643]],["name/1584",[565,60.638]],["parent/1584",[]],["name/1585",[104,32.982]],["parent/1585",[565,5.643]],["name/1586",[107,42.537]],["parent/1586",[565,5.643]],["name/1587",[556,54.278]],["parent/1587",[565,5.643]],["name/1588",[566,52.165]],["parent/1588",[]],["name/1589",[177,41.835]],["parent/1589",[566,4.855]],["name/1590",[567,60.638]],["parent/1590",[566,4.855]],["name/1591",[568,63.151]],["parent/1591",[566,4.855]],["name/1592",[569,54.278]],["parent/1592",[566,4.855]],["name/1593",[570,63.151]],["parent/1593",[566,4.855]],["name/1594",[571,63.151]],["parent/1594",[566,4.855]],["name/1595",[572,63.151]],["parent/1595",[566,4.855]],["name/1596",[573,63.151]],["parent/1596",[566,4.855]],["name/1597",[574,63.151]],["parent/1597",[566,4.855]],["name/1598",[575,50.421]],["parent/1598",[]],["name/1599",[149,45.974]],["parent/1599",[575,4.692]],["name/1600",[150,47.645]],["parent/1600",[575,4.692]],["name/1601",[151,40.866]],["parent/1601",[575,4.692]],["name/1602",[218,48.937]],["parent/1602",[575,4.692]],["name/1603",[187,41.501]],["parent/1603",[575,4.692]],["name/1604",[212,48.937]],["parent/1604",[575,4.692]],["name/1605",[211,49.652]],["parent/1605",[575,4.692]],["name/1606",[576,71.624]],["parent/1606",[575,4.692]],["name/1607",[429,58.631]],["parent/1607",[575,4.692]],["name/1608",[325,56.961]],["parent/1608",[575,4.692]],["name/1609",[114,26.298]],["parent/1609",[575,4.692]],["name/1610",[326,55.53]],["parent/1610",[577,6.666]],["name/1611",[578,58.631]],["parent/1611",[]],["name/1612",[109,31.921]],["parent/1612",[578,5.457]],["name/1613",[154,39.706]],["parent/1613",[578,5.457]],["name/1614",[155,40.563]],["parent/1614",[578,5.457]],["name/1615",[29,66.516]],["parent/1615",[578,5.457]],["name/1616",[579,54.278]],["parent/1616",[]],["name/1617",[217,58.631]],["parent/1617",[579,5.051]],["name/1618",[107,42.537]],["parent/1618",[579,5.051]],["name/1619",[218,48.937]],["parent/1619",[579,5.051]],["name/1620",[114,26.298]],["parent/1620",[579,5.051]],["name/1621",[105,42.18]],["parent/1621",[580,6.19]],["name/1622",[220,58.631]],["parent/1622",[580,6.19]],["name/1623",[212,48.937]],["parent/1623",[579,5.051]],["name/1624",[214,56.961]],["parent/1624",[579,5.051]],["name/1625",[187,41.501]],["parent/1625",[579,5.051]],["name/1626",[581,50.421]],["parent/1626",[]],["name/1627",[104,32.982]],["parent/1627",[581,4.692]],["name/1628",[109,31.921]],["parent/1628",[581,4.692]],["name/1629",[144,44.109]],["parent/1629",[581,4.692]],["name/1630",[210,53.166]],["parent/1630",[581,4.692]],["name/1631",[184,45.974]],["parent/1631",[581,4.692]],["name/1632",[108,34.988]],["parent/1632",[581,4.692]],["name/1633",[214,56.961]],["parent/1633",[581,4.692]],["name/1634",[107,42.537]],["parent/1634",[581,4.692]],["name/1635",[211,49.652]],["parent/1635",[581,4.692]],["name/1636",[187,41.501]],["parent/1636",[581,4.692]],["name/1637",[212,48.937]],["parent/1637",[581,4.692]],["name/1638",[582,56.961]],["parent/1638",[]],["name/1639",[105,42.18]],["parent/1639",[582,5.301]],["name/1640",[177,41.835]],["parent/1640",[582,5.301]],["name/1641",[583,66.516]],["parent/1641",[582,5.301]],["name/1642",[114,26.298]],["parent/1642",[582,5.301]],["name/1643",[326,55.53]],["parent/1643",[584,6.666]],["name/1644",[25,50.421]],["parent/1644",[582,5.301]],["name/1645",[585,53.166]],["parent/1645",[]],["name/1646",[104,32.982]],["parent/1646",[585,4.948]],["name/1647",[105,42.18]],["parent/1647",[585,4.948]],["name/1648",[144,44.109]],["parent/1648",[585,4.948]],["name/1649",[108,34.988]],["parent/1649",[585,4.948]],["name/1650",[583,66.516]],["parent/1650",[585,4.948]],["name/1651",[114,26.298]],["parent/1651",[585,4.948]],["name/1652",[326,55.53]],["parent/1652",[586,6.666]],["name/1653",[177,41.835]],["parent/1653",[585,4.948]],["name/1654",[109,31.921]],["parent/1654",[585,4.948]],["name/1655",[587,71.624]],["parent/1655",[]],["name/1656",[588,58.631]],["parent/1656",[]],["name/1657",[109,31.921]],["parent/1657",[588,5.457]],["name/1658",[154,39.706]],["parent/1658",[588,5.457]],["name/1659",[155,40.563]],["parent/1659",[588,5.457]],["name/1660",[162,45.974]],["parent/1660",[588,5.457]],["name/1661",[589,60.638]],["parent/1661",[]],["name/1662",[590,66.516]],["parent/1662",[589,5.643]],["name/1663",[388,55.53]],["parent/1663",[589,5.643]],["name/1664",[114,26.298]],["parent/1664",[589,5.643]],["name/1665",[151,40.866]],["parent/1665",[591,5.643]],["name/1666",[592,66.516]],["parent/1666",[591,5.643]],["name/1667",[325,56.961]],["parent/1667",[591,5.643]],["name/1668",[114,26.298]],["parent/1668",[591,5.643]],["name/1669",[326,55.53]],["parent/1669",[593,6.666]],["name/1670",[594,51.255]],["parent/1670",[]],["name/1671",[104,32.982]],["parent/1671",[594,4.77]],["name/1672",[109,31.921]],["parent/1672",[594,4.77]],["name/1673",[144,44.109]],["parent/1673",[594,4.77]],["name/1674",[352,56.961]],["parent/1674",[594,4.77]],["name/1675",[214,56.961]],["parent/1675",[594,4.77]],["name/1676",[590,66.516]],["parent/1676",[594,4.77]],["name/1677",[388,55.53]],["parent/1677",[594,4.77]],["name/1678",[114,26.298]],["parent/1678",[594,4.77]],["name/1679",[592,66.516]],["parent/1679",[595,5.643]],["name/1680",[325,56.961]],["parent/1680",[595,5.643]],["name/1681",[114,26.298]],["parent/1681",[595,5.643]],["name/1682",[326,55.53]],["parent/1682",[596,6.666]],["name/1683",[211,49.652]],["parent/1683",[594,4.77]],["name/1684",[114,26.298]],["parent/1684",[594,4.77]],["name/1685",[446,53.166]],["parent/1685",[595,5.643]],["name/1686",[597,71.624]],["parent/1686",[]],["name/1687",[598,45.474]],["parent/1687",[]],["name/1688",[599,71.624]],["parent/1688",[598,4.232]],["name/1689",[600,71.624]],["parent/1689",[598,4.232]],["name/1690",[178,63.151]],["parent/1690",[598,4.232]],["name/1691",[107,42.537]],["parent/1691",[598,4.232]],["name/1692",[601,71.624]],["parent/1692",[598,4.232]],["name/1693",[602,71.624]],["parent/1693",[598,4.232]],["name/1694",[252,53.166]],["parent/1694",[598,4.232]],["name/1695",[536,53.166]],["parent/1695",[598,4.232]],["name/1696",[175,43.692]],["parent/1696",[598,4.232]],["name/1697",[202,56.961]],["parent/1697",[598,4.232]],["name/1698",[284,63.151]],["parent/1698",[598,4.232]],["name/1699",[282,63.151]],["parent/1699",[598,4.232]],["name/1700",[603,71.624]],["parent/1700",[598,4.232]],["name/1701",[604,60.638]],["parent/1701",[598,4.232]],["name/1702",[114,26.298]],["parent/1702",[598,4.232]],["name/1703",[104,32.982]],["parent/1703",[605,4.77]],["name/1704",[107,42.537]],["parent/1704",[605,4.77]],["name/1705",[606,66.516]],["parent/1705",[605,4.77]],["name/1706",[105,42.18]],["parent/1706",[605,4.77]],["name/1707",[108,34.988]],["parent/1707",[605,4.77]],["name/1708",[536,53.166]],["parent/1708",[605,4.77]],["name/1709",[556,54.278]],["parent/1709",[598,4.232]],["name/1710",[114,26.298]],["parent/1710",[598,4.232]],["name/1711",[104,32.982]],["parent/1711",[605,4.77]],["name/1712",[107,42.537]],["parent/1712",[605,4.77]],["name/1713",[606,66.516]],["parent/1713",[605,4.77]],["name/1714",[556,54.278]],["parent/1714",[605,4.77]],["name/1715",[536,53.166]],["parent/1715",[605,4.77]],["name/1716",[109,31.921]],["parent/1716",[598,4.232]],["name/1717",[108,34.988]],["parent/1717",[598,4.232]],["name/1718",[607,54.278]],["parent/1718",[]],["name/1719",[107,42.537]],["parent/1719",[607,5.051]],["name/1720",[352,56.961]],["parent/1720",[607,5.051]],["name/1721",[187,41.501]],["parent/1721",[607,5.051]],["name/1722",[175,43.692]],["parent/1722",[607,5.051]],["name/1723",[202,56.961]],["parent/1723",[607,5.051]],["name/1724",[185,52.165]],["parent/1724",[607,5.051]],["name/1725",[108,34.988]],["parent/1725",[607,5.051]],["name/1726",[608,45.974]],["parent/1726",[]],["name/1727",[104,32.982]],["parent/1727",[608,4.279]],["name/1728",[107,42.537]],["parent/1728",[608,4.279]],["name/1729",[144,44.109]],["parent/1729",[608,4.279]],["name/1730",[395,48.937]],["parent/1730",[608,4.279]],["name/1731",[352,56.961]],["parent/1731",[608,4.279]],["name/1732",[175,43.692]],["parent/1732",[608,4.279]],["name/1733",[284,63.151]],["parent/1733",[608,4.279]],["name/1734",[202,56.961]],["parent/1734",[608,4.279]],["name/1735",[285,66.516]],["parent/1735",[608,4.279]],["name/1736",[203,63.151]],["parent/1736",[608,4.279]],["name/1737",[282,63.151]],["parent/1737",[608,4.279]],["name/1738",[286,66.516]],["parent/1738",[608,4.279]],["name/1739",[137,60.638]],["parent/1739",[608,4.279]],["name/1740",[283,66.516]],["parent/1740",[608,4.279]],["name/1741",[185,52.165]],["parent/1741",[608,4.279]],["name/1742",[108,34.988]],["parent/1742",[608,4.279]],["name/1743",[187,41.501]],["parent/1743",[608,4.279]],["name/1744",[109,31.921]],["parent/1744",[608,4.279]],["name/1745",[609,71.624]],["parent/1745",[]],["name/1746",[610,52.165]],["parent/1746",[]],["name/1747",[104,32.982]],["parent/1747",[610,4.855]],["name/1748",[107,42.537]],["parent/1748",[610,4.855]],["name/1749",[352,56.961]],["parent/1749",[610,4.855]],["name/1750",[185,52.165]],["parent/1750",[610,4.855]],["name/1751",[175,43.692]],["parent/1751",[610,4.855]],["name/1752",[202,56.961]],["parent/1752",[610,4.855]],["name/1753",[108,34.988]],["parent/1753",[610,4.855]],["name/1754",[187,41.501]],["parent/1754",[610,4.855]],["name/1755",[114,26.298]],["parent/1755",[610,4.855]],["name/1756",[104,32.982]],["parent/1756",[611,6.666]],["name/1757",[612,71.624]],["parent/1757",[]],["name/1758",[613,63.151]],["parent/1758",[]],["name/1759",[149,45.974]],["parent/1759",[613,5.877]],["name/1760",[150,47.645]],["parent/1760",[613,5.877]],["name/1761",[614,58.631]],["parent/1761",[]],["name/1762",[109,31.921]],["parent/1762",[614,5.457]],["name/1763",[154,39.706]],["parent/1763",[614,5.457]],["name/1764",[155,40.563]],["parent/1764",[614,5.457]],["name/1765",[47,53.166]],["parent/1765",[614,5.457]],["name/1766",[615,54.278]],["parent/1766",[]],["name/1767",[104,32.982]],["parent/1767",[615,5.051]],["name/1768",[105,42.18]],["parent/1768",[615,5.051]],["name/1769",[112,52.165]],["parent/1769",[615,5.051]],["name/1770",[295,52.165]],["parent/1770",[615,5.051]],["name/1771",[144,44.109]],["parent/1771",[615,5.051]],["name/1772",[395,48.937]],["parent/1772",[615,5.051]],["name/1773",[109,31.921]],["parent/1773",[615,5.051]],["name/1774",[616,58.631]],["parent/1774",[]],["name/1775",[617,71.624]],["parent/1775",[616,5.457]],["name/1776",[114,26.298]],["parent/1776",[616,5.457]],["name/1777",[109,31.921]],["parent/1777",[618,5.051]],["name/1778",[154,39.706]],["parent/1778",[618,5.051]],["name/1779",[155,40.563]],["parent/1779",[618,5.051]],["name/1780",[162,45.974]],["parent/1780",[618,5.051]],["name/1781",[24,60.638]],["parent/1781",[616,5.457]],["name/1782",[114,26.298]],["parent/1782",[616,5.457]],["name/1783",[109,31.921]],["parent/1783",[618,5.051]],["name/1784",[154,39.706]],["parent/1784",[618,5.051]],["name/1785",[155,40.563]],["parent/1785",[618,5.051]],["name/1786",[162,45.974]],["parent/1786",[618,5.051]],["name/1787",[619,54.278]],["parent/1787",[]],["name/1788",[225,60.638]],["parent/1788",[619,5.051]],["name/1789",[187,41.501]],["parent/1789",[619,5.051]],["name/1790",[108,34.988]],["parent/1790",[619,5.051]],["name/1791",[226,66.516]],["parent/1791",[619,5.051]],["name/1792",[114,26.298]],["parent/1792",[619,5.051]],["name/1793",[89,47.057]],["parent/1793",[620,5.877]],["name/1794",[451,63.151]],["parent/1794",[620,5.877]],["name/1795",[134,48.937]],["parent/1795",[619,5.051]],["name/1796",[114,26.298]],["parent/1796",[619,5.051]],["name/1797",[89,47.057]],["parent/1797",[620,5.877]],["name/1798",[621,63.151]],["parent/1798",[]],["name/1799",[109,31.921]],["parent/1799",[621,5.877]],["name/1800",[177,41.835]],["parent/1800",[621,5.877]],["name/1801",[622,66.516]],["parent/1801",[]],["name/1802",[623,71.624]],["parent/1802",[622,6.19]],["name/1803",[624,71.624]],["parent/1803",[]],["name/1804",[625,58.631]],["parent/1804",[]],["name/1805",[109,31.921]],["parent/1805",[625,5.457]],["name/1806",[104,32.982]],["parent/1806",[625,5.457]],["name/1807",[188,51.255]],["parent/1807",[625,5.457]],["name/1808",[130,51.255]],["parent/1808",[625,5.457]],["name/1809",[626,71.624]],["parent/1809",[]],["name/1810",[627,56.961]],["parent/1810",[]],["name/1811",[569,54.278]],["parent/1811",[627,5.301]],["name/1812",[567,60.638]],["parent/1812",[627,5.301]],["name/1813",[628,63.151]],["parent/1813",[627,5.301]],["name/1814",[556,54.278]],["parent/1814",[627,5.301]],["name/1815",[604,60.638]],["parent/1815",[627,5.301]],["name/1816",[629,47.645]],["parent/1816",[]],["name/1817",[177,41.835]],["parent/1817",[629,4.434]],["name/1818",[569,54.278]],["parent/1818",[629,4.434]],["name/1819",[570,63.151]],["parent/1819",[629,4.434]],["name/1820",[571,63.151]],["parent/1820",[629,4.434]],["name/1821",[572,63.151]],["parent/1821",[629,4.434]],["name/1822",[573,63.151]],["parent/1822",[629,4.434]],["name/1823",[574,63.151]],["parent/1823",[629,4.434]],["name/1824",[630,66.516]],["parent/1824",[629,4.434]],["name/1825",[631,66.516]],["parent/1825",[629,4.434]],["name/1826",[567,60.638]],["parent/1826",[629,4.434]],["name/1827",[568,63.151]],["parent/1827",[629,4.434]],["name/1828",[628,63.151]],["parent/1828",[629,4.434]],["name/1829",[556,54.278]],["parent/1829",[629,4.434]],["name/1830",[604,60.638]],["parent/1830",[629,4.434]],["name/1831",[632,71.624]],["parent/1831",[629,4.434]],["name/1832",[633,66.516]],["parent/1832",[]],["name/1833",[278,63.151]],["parent/1833",[633,6.19]],["name/1834",[634,63.151]],["parent/1834",[]],["name/1835",[142,44.998]],["parent/1835",[634,5.877]],["name/1836",[635,71.624]],["parent/1836",[634,5.877]],["name/1837",[636,58.631]],["parent/1837",[]],["name/1838",[199,53.166]],["parent/1838",[636,5.457]],["name/1839",[130,51.255]],["parent/1839",[636,5.457]],["name/1840",[240,54.278]],["parent/1840",[636,5.457]],["name/1841",[289,60.638]],["parent/1841",[636,5.457]],["name/1842",[637,53.166]],["parent/1842",[]],["name/1843",[352,56.961]],["parent/1843",[637,4.948]],["name/1844",[104,32.982]],["parent/1844",[637,4.948]],["name/1845",[109,31.921]],["parent/1845",[637,4.948]],["name/1846",[151,40.866]],["parent/1846",[637,4.948]],["name/1847",[200,60.638]],["parent/1847",[637,4.948]],["name/1848",[280,66.516]],["parent/1848",[637,4.948]],["name/1849",[211,49.652]],["parent/1849",[637,4.948]],["name/1850",[108,34.988]],["parent/1850",[637,4.948]],["name/1851",[638,66.516]],["parent/1851",[]],["name/1852",[278,63.151]],["parent/1852",[638,6.19]],["name/1853",[639,71.624]],["parent/1853",[]],["name/1854",[640,71.624]],["parent/1854",[]],["name/1855",[641,58.631]],["parent/1855",[]],["name/1856",[90,60.638]],["parent/1856",[641,5.457]],["name/1857",[177,41.835]],["parent/1857",[641,5.457]],["name/1858",[642,66.516]],["parent/1858",[641,5.457]],["name/1859",[643,66.516]],["parent/1859",[641,5.457]],["name/1860",[644,58.631]],["parent/1860",[]],["name/1861",[90,60.638]],["parent/1861",[644,5.457]],["name/1862",[177,41.835]],["parent/1862",[644,5.457]],["name/1863",[642,66.516]],["parent/1863",[644,5.457]],["name/1864",[643,66.516]],["parent/1864",[644,5.457]],["name/1865",[645,66.516]],["parent/1865",[]],["name/1866",[90,60.638]],["parent/1866",[645,6.19]],["name/1867",[646,71.624]],["parent/1867",[]],["name/1868",[647,54.278]],["parent/1868",[]],["name/1869",[109,31.921]],["parent/1869",[647,5.051]],["name/1870",[104,32.982]],["parent/1870",[647,5.051]],["name/1871",[107,42.537]],["parent/1871",[647,5.051]],["name/1872",[648,71.624]],["parent/1872",[647,5.051]],["name/1873",[536,53.166]],["parent/1873",[647,5.051]],["name/1874",[649,71.624]],["parent/1874",[647,5.051]],["name/1875",[569,54.278]],["parent/1875",[647,5.051]],["name/1876",[650,60.638]],["parent/1876",[]],["name/1877",[109,31.921]],["parent/1877",[650,5.643]],["name/1878",[154,39.706]],["parent/1878",[650,5.643]],["name/1879",[162,45.974]],["parent/1879",[650,5.643]],["name/1880",[651,71.624]],["parent/1880",[]],["name/1881",[652,58.631]],["parent/1881",[]],["name/1882",[175,43.692]],["parent/1882",[652,5.457]],["name/1883",[653,71.624]],["parent/1883",[652,5.457]],["name/1884",[654,71.624]],["parent/1884",[652,5.457]],["name/1885",[655,71.624]],["parent/1885",[652,5.457]],["name/1886",[656,71.624]],["parent/1886",[]],["name/1887",[657,71.624]],["parent/1887",[]],["name/1888",[658,71.624]],["parent/1888",[]],["name/1889",[659,71.624]],["parent/1889",[]],["name/1890",[660,71.624]],["parent/1890",[]],["name/1891",[661,54.278]],["parent/1891",[]],["name/1892",[177,41.835]],["parent/1892",[661,5.051]],["name/1893",[567,60.638]],["parent/1893",[661,5.051]],["name/1894",[568,63.151]],["parent/1894",[661,5.051]],["name/1895",[569,54.278]],["parent/1895",[661,5.051]],["name/1896",[628,63.151]],["parent/1896",[661,5.051]],["name/1897",[604,60.638]],["parent/1897",[661,5.051]],["name/1898",[556,54.278]],["parent/1898",[661,5.051]],["name/1899",[662,58.631]],["parent/1899",[]],["name/1900",[177,41.835]],["parent/1900",[662,5.457]],["name/1901",[570,63.151]],["parent/1901",[662,5.457]],["name/1902",[571,63.151]],["parent/1902",[662,5.457]],["name/1903",[569,54.278]],["parent/1903",[662,5.457]],["name/1904",[663,56.961]],["parent/1904",[]],["name/1905",[177,41.835]],["parent/1905",[663,5.301]],["name/1906",[572,63.151]],["parent/1906",[663,5.301]],["name/1907",[573,63.151]],["parent/1907",[663,5.301]],["name/1908",[574,63.151]],["parent/1908",[663,5.301]],["name/1909",[569,54.278]],["parent/1909",[663,5.301]],["name/1910",[664,58.631]],["parent/1910",[]],["name/1911",[177,41.835]],["parent/1911",[664,5.457]],["name/1912",[630,66.516]],["parent/1912",[664,5.457]],["name/1913",[631,66.516]],["parent/1913",[664,5.457]],["name/1914",[569,54.278]],["parent/1914",[664,5.457]],["name/1915",[665,71.624]],["parent/1915",[]],["name/1916",[666,53.166]],["parent/1916",[]],["name/1917",[667,66.516]],["parent/1917",[666,4.948]],["name/1918",[668,71.624]],["parent/1918",[666,4.948]],["name/1919",[669,71.624]],["parent/1919",[666,4.948]],["name/1920",[670,71.624]],["parent/1920",[666,4.948]],["name/1921",[214,56.961]],["parent/1921",[666,4.948]],["name/1922",[671,71.624]],["parent/1922",[666,4.948]],["name/1923",[672,66.516]],["parent/1923",[666,4.948]],["name/1924",[72,63.151]],["parent/1924",[666,4.948]],["name/1925",[673,71.624]],["parent/1925",[]],["name/1926",[674,54.278]],["parent/1926",[]],["name/1927",[667,66.516]],["parent/1927",[674,5.051]],["name/1928",[675,71.624]],["parent/1928",[674,5.051]],["name/1929",[676,71.624]],["parent/1929",[674,5.051]],["name/1930",[677,71.624]],["parent/1930",[674,5.051]],["name/1931",[678,71.624]],["parent/1931",[674,5.051]],["name/1932",[672,66.516]],["parent/1932",[674,5.051]],["name/1933",[72,63.151]],["parent/1933",[674,5.051]]],"invertedIndex":[["__type",{"_index":114,"name":{"209":{},"217":{},"219":{},"227":{},"231":{},"235":{},"242":{},"258":{},"312":{},"326":{},"346":{},"355":{},"358":{},"368":{},"411":{},"441":{},"444":{},"456":{},"473":{},"480":{},"483":{},"520":{},"536":{},"552":{},"565":{},"573":{},"580":{},"583":{},"596":{},"600":{},"603":{},"646":{},"654":{},"698":{},"706":{},"727":{},"735":{},"755":{},"762":{},"785":{},"799":{},"808":{},"815":{},"832":{},"837":{},"866":{},"869":{},"872":{},"876":{},"894":{},"902":{},"938":{},"940":{},"948":{},"950":{},"958":{},"960":{},"972":{},"974":{},"984":{},"988":{},"1004":{},"1007":{},"1010":{},"1017":{},"1020":{},"1027":{},"1031":{},"1042":{},"1048":{},"1053":{},"1057":{},"1077":{},"1101":{},"1106":{},"1109":{},"1128":{},"1136":{},"1142":{},"1147":{},"1152":{},"1161":{},"1163":{},"1167":{},"1176":{},"1183":{},"1194":{},"1204":{},"1208":{},"1218":{},"1222":{},"1227":{},"1232":{},"1240":{},"1252":{},"1254":{},"1258":{},"1268":{},"1277":{},"1294":{},"1301":{},"1315":{},"1327":{},"1331":{},"1336":{},"1356":{},"1359":{},"1373":{},"1376":{},"1379":{},"1384":{},"1387":{},"1393":{},"1396":{},"1445":{},"1469":{},"1471":{},"1487":{},"1489":{},"1507":{},"1523":{},"1537":{},"1540":{},"1609":{},"1620":{},"1642":{},"1651":{},"1664":{},"1668":{},"1678":{},"1681":{},"1684":{},"1702":{},"1710":{},"1755":{},"1776":{},"1782":{},"1792":{},"1796":{}},"parent":{}}],["action",{"_index":341,"name":{"734":{},"754":{}},"parent":{}}],["active",{"_index":305,"name":{"661":{},"732":{},"739":{},"822":{},"909":{},"1062":{},"1158":{},"1248":{},"1291":{},"1311":{},"1353":{}},"parent":{}}],["activities",{"_index":437,"name":{"1091":{}},"parent":{}}],["activity_duration_after_publishing",{"_index":299,"name":{"652":{},"813":{},"900":{}},"parent":{}}],["addcertainvoucher",{"_index":9,"name":{"11":{}},"parent":{}}],["additional_info",{"_index":428,"name":{"1063":{},"1159":{},"1249":{},"1312":{},"1350":{}},"parent":{}}],["addpoints",{"_index":45,"name":{"71":{}},"parent":{}}],["address",{"_index":113,"name":{"208":{},"257":{}},"parent":{}}],["addvoucher",{"_index":8,"name":{"10":{}},"parent":{}}],["after",{"_index":247,"name":{"458":{},"1029":{},"1033":{},"1328":{},"1332":{}},"parent":{}}],["amount",{"_index":175,"name":{"304":{},"306":{},"321":{},"347":{},"359":{},"412":{},"442":{},"481":{},"514":{},"576":{},"597":{},"604":{},"765":{},"841":{},"973":{},"1112":{},"1121":{},"1219":{},"1316":{},"1696":{},"1722":{},"1732":{},"1751":{},"1882":{}},"parent":{}}],["amount_limit",{"_index":574,"name":{"1597":{},"1823":{},"1908":{}},"parent":{}}],["amount_off",{"_index":570,"name":{"1593":{},"1819":{},"1901":{}},"parent":{}}],["amount_off_formula",{"_index":571,"name":{"1594":{},"1820":{},"1902":{}},"parent":{}}],["amount_to_go",{"_index":133,"name":{"229":{}},"parent":{}}],["apiurl",{"_index":667,"name":{"1917":{},"1927":{}},"parent":{}}],["apiversion",{"_index":670,"name":{"1920":{}},"parent":{}}],["applicable_to",{"_index":200,"name":{"344":{},"587":{},"1404":{},"1847":{}},"parent":{}}],["applicableto",{"_index":647,"name":{"1868":{}},"parent":{"1869":{},"1870":{},"1871":{},"1872":{},"1873":{},"1874":{},"1875":{}}}],["applicabletoeffect",{"_index":646,"name":{"1867":{}},"parent":{}}],["applicabletoresultlist",{"_index":650,"name":{"1876":{}},"parent":{"1877":{},"1878":{},"1879":{}}}],["applicationid",{"_index":668,"name":{"1918":{}},"parent":{}}],["applied_discount_amount",{"_index":282,"name":{"608":{},"1699":{},"1737":{}},"parent":{}}],["assets",{"_index":447,"name":{"1160":{},"1251":{}},"parent":{}}],["assignment_id",{"_index":260,"name":{"521":{},"1279":{},"1496":{}},"parent":{}}],["async_action_id",{"_index":330,"name":{"707":{},"1374":{},"1377":{},"1380":{},"1538":{},"1541":{}},"parent":{}}],["attributes",{"_index":512,"name":{"1444":{},"1502":{},"1517":{},"1527":{},"1555":{},"1565":{}},"parent":{}}],["audiencerulesonly",{"_index":312,"name":{"672":{},"845":{},"1282":{}},"parent":{}}],["auto_join",{"_index":296,"name":{"641":{},"805":{},"889":{}},"parent":{}}],["automation_id",{"_index":413,"name":{"993":{}},"parent":{}}],["average_amount",{"_index":139,"name":{"238":{}},"parent":{}}],["balance",{"_index":0,"name":{"0":{},"182":{},"308":{},"360":{},"598":{},"874":{},"1044":{},"1097":{},"1138":{},"1206":{},"1220":{}},"parent":{"1":{},"2":{}}}],["balancecreateparams",{"_index":174,"name":{"303":{}},"parent":{"304":{}}}],["balancecreateresponse",{"_index":176,"name":{"305":{}},"parent":{"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{}}}],["balancecreateresponse.__type",{"_index":179,"name":{},"parent":{"313":{},"314":{}}}],["banner",{"_index":336,"name":{"717":{},"725":{},"753":{},"783":{},"989":{},"1005":{},"1018":{}},"parent":{}}],["barcode",{"_index":450,"name":{"1166":{},"1257":{}},"parent":{}}],["basepath",{"_index":67,"name":{"120":{}},"parent":{}}],["baseurl",{"_index":66,"name":{"119":{}},"parent":{}}],["before",{"_index":245,"name":{"457":{},"1028":{},"1032":{},"1329":{},"1333":{}},"parent":{}}],["bulkupdate",{"_index":51,"name":{"86":{},"192":{}},"parent":{}}],["bulkupdatemetadata",{"_index":50,"name":{"85":{},"191":{}},"parent":{}}],["campaign",{"_index":218,"name":{"390":{},"453":{},"475":{},"589":{},"726":{},"784":{},"1037":{},"1131":{},"1213":{},"1324":{},"1410":{},"1485":{},"1602":{},"1619":{}},"parent":{}}],["campaign_id",{"_index":160,"name":{"286":{},"353":{},"478":{},"590":{},"1038":{},"1132":{}},"parent":{}}],["campaign_type",{"_index":159,"name":{"285":{},"638":{},"696":{},"793":{},"828":{},"886":{}},"parent":{}}],["campaignresponse",{"_index":294,"name":{"635":{}},"parent":{"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"651":{},"652":{},"653":{},"654":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{},"667":{}}}],["campaignresponse.__type",{"_index":298,"name":{},"parent":{"647":{},"648":{},"649":{},"650":{},"655":{},"656":{}}}],["campaigns",{"_index":3,"name":{"3":{},"245":{},"704":{},"858":{}},"parent":{"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{}}}],["campaignsaddcertainvoucherparams",{"_index":320,"name":{"689":{}},"parent":{}}],["campaignsaddcertainvoucherresponse",{"_index":322,"name":{"691":{}},"parent":{}}],["campaignsaddvoucherbody",{"_index":318,"name":{"686":{}},"parent":{}}],["campaignsaddvoucherparams",{"_index":319,"name":{"687":{}},"parent":{"688":{}}}],["campaignsaddvoucherresponse",{"_index":321,"name":{"690":{}},"parent":{}}],["campaignscreatecampaign",{"_index":314,"name":{"682":{}},"parent":{}}],["campaignscreatecampaignresponse",{"_index":332,"name":{"708":{}},"parent":{}}],["campaignsdeleteparams",{"_index":316,"name":{"684":{}},"parent":{"685":{}}}],["campaignsgetcampaignresponse",{"_index":334,"name":{"710":{}},"parent":{}}],["campaignsimportvouchers",{"_index":323,"name":{"692":{}},"parent":{}}],["campaignslistparams",{"_index":324,"name":{"693":{}},"parent":{"694":{},"695":{},"696":{},"697":{},"698":{}}}],["campaignslistparams.__type",{"_index":327,"name":{},"parent":{"699":{}}}],["campaignslistresponse",{"_index":328,"name":{"700":{}},"parent":{"701":{},"702":{},"703":{},"704":{}}}],["campaignsqualificationsbody",{"_index":310,"name":{"668":{}},"parent":{"669":{},"670":{}}}],["campaignsqualificationsparams",{"_index":311,"name":{"671":{}},"parent":{"672":{},"673":{},"674":{}}}],["campaignsqualificationsresponse",{"_index":313,"name":{"675":{}},"parent":{"676":{},"677":{},"678":{},"679":{},"680":{},"681":{}}}],["campaignsupdatecampaign",{"_index":315,"name":{"683":{}},"parent":{}}],["campaignsupdatecampaignresponse",{"_index":333,"name":{"709":{}},"parent":{}}],["campaignsvouchersimportresponse",{"_index":329,"name":{"705":{}},"parent":{"706":{}}}],["campaignsvouchersimportresponse.__type",{"_index":331,"name":{},"parent":{"707":{}}}],["category",{"_index":295,"name":{"640":{},"804":{},"888":{},"1039":{},"1133":{},"1214":{},"1308":{},"1323":{},"1347":{},"1770":{}},"parent":{}}],["cause",{"_index":98,"name":{"178":{}},"parent":{}}],["channel",{"_index":214,"name":{"383":{},"1075":{},"1624":{},"1633":{},"1675":{},"1921":{}},"parent":{}}],["charset",{"_index":375,"name":{"878":{},"1196":{},"1296":{},"1361":{}},"parent":{}}],["city",{"_index":115,"name":{"210":{},"259":{},"270":{}},"parent":{}}],["clientapplicationid",{"_index":675,"name":{"1928":{}},"parent":{}}],["clientsecretkey",{"_index":676,"name":{"1929":{}},"parent":{}}],["clientside",{"_index":12,"name":{"14":{}},"parent":{"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{}}}],["clientsideconsentslistresponse",{"_index":232,"name":{"414":{}},"parent":{}}],["clientsidecustomerscreateparams",{"_index":181,"name":{"316":{}},"parent":{}}],["clientsidecustomerscreateresponse",{"_index":182,"name":{"317":{}},"parent":{}}],["clientsidecustomersupdateconsentsbody",{"_index":180,"name":{"315":{}},"parent":{}}],["clientsidelistvouchersparams",{"_index":194,"name":{"333":{}},"parent":{}}],["clientsidelistvouchersresponse",{"_index":196,"name":{"335":{}},"parent":{"336":{},"337":{},"338":{},"339":{}}}],["clientsidepublishcampaign",{"_index":219,"name":{"391":{}},"parent":{"392":{},"393":{}}}],["clientsidepublishpayload",{"_index":213,"name":{"381":{}},"parent":{"382":{},"383":{},"384":{},"385":{},"386":{}}}],["clientsidepublishpreparedpayload",{"_index":215,"name":{"387":{}},"parent":{}}],["clientsidepublishqueryparams",{"_index":216,"name":{"388":{}},"parent":{"389":{},"390":{}}}],["clientsidepublishresponse",{"_index":221,"name":{"394":{}},"parent":{}}],["clientsideredeemorder",{"_index":228,"name":{"408":{}},"parent":{}}],["clientsideredeempayload",{"_index":205,"name":{"362":{}},"parent":{"363":{},"364":{},"365":{},"366":{},"367":{},"368":{},"370":{}}}],["clientsideredeempayload.__type",{"_index":206,"name":{},"parent":{"369":{}}}],["clientsideredeemresponse",{"_index":208,"name":{"371":{}},"parent":{"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{}}}],["clientsideredeemwidgetpayload",{"_index":229,"name":{"409":{}},"parent":{"410":{},"411":{}}}],["clientsideredeemwidgetpayload.__type",{"_index":230,"name":{},"parent":{"412":{}}}],["clientsideredemptionsredeemstackableparams",{"_index":235,"name":{"417":{}},"parent":{}}],["clientsideredemptionsredeemstackableresponse",{"_index":236,"name":{"418":{}},"parent":{}}],["clientsidetrackcustomer",{"_index":231,"name":{"413":{}},"parent":{}}],["clientsidetrackloyalty",{"_index":222,"name":{"395":{}},"parent":{"396":{}}}],["clientsidetrackpayload",{"_index":224,"name":{"399":{}},"parent":{"400":{},"401":{},"402":{},"403":{},"404":{}}}],["clientsidetrackreferral",{"_index":223,"name":{"397":{}},"parent":{"398":{}}}],["clientsidetrackresponse",{"_index":227,"name":{"405":{}},"parent":{"406":{},"407":{}}}],["clientsidevalidateparams",{"_index":183,"name":{"318":{}},"parent":{"319":{},"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["clientsidevalidateparams.__type",{"_index":189,"name":{},"parent":{"327":{}}}],["clientsidevalidateresponse",{"_index":197,"name":{"340":{}},"parent":{"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"352":{},"353":{},"354":{},"355":{},"357":{},"358":{},"361":{}}}],["clientsidevalidateresponse.__type",{"_index":201,"name":{},"parent":{"347":{},"348":{},"349":{},"350":{},"351":{},"356":{},"359":{},"360":{}}}],["clientsidevalidationsvalidatestackableparams",{"_index":233,"name":{"415":{}},"parent":{}}],["clientsidevalidationvalidatestackableresponse",{"_index":234,"name":{"416":{}},"parent":{}}],["clientsidevoucherlisting",{"_index":195,"name":{"334":{}},"parent":{}}],["code",{"_index":89,"name":{"169":{},"319":{},"341":{},"396":{},"398":{},"474":{},"592":{},"1036":{},"1130":{},"1189":{},"1212":{},"1292":{},"1307":{},"1346":{},"1366":{},"1793":{},"1797":{}},"parent":{}}],["code_config",{"_index":373,"name":{"875":{},"1193":{},"1293":{},"1358":{}},"parent":{}}],["codes",{"_index":483,"name":{"1370":{}},"parent":{}}],["consent",{"_index":615,"name":{"1766":{}},"parent":{"1767":{},"1768":{},"1769":{},"1770":{},"1771":{},"1772":{},"1773":{}}}],["consents",{"_index":24,"name":{"27":{},"1781":{}},"parent":{"28":{},"29":{}}}],["consentslistresponse",{"_index":616,"name":{"1774":{}},"parent":{"1775":{},"1776":{},"1781":{},"1782":{}}}],["consentslistresponse.__type",{"_index":618,"name":{},"parent":{"1777":{},"1778":{},"1779":{},"1780":{},"1783":{},"1784":{},"1785":{},"1786":{}}}],["constructor",{"_index":1,"name":{"1":{},"4":{},"15":{},"28":{},"31":{},"41":{},"45":{},"48":{},"53":{},"74":{},"81":{},"95":{},"100":{},"109":{},"118":{},"135":{},"146":{},"152":{},"163":{},"168":{},"180":{}},"parent":{}}],["count",{"_index":220,"name":{"393":{},"1054":{},"1149":{},"1234":{},"1622":{}},"parent":{}}],["country",{"_index":120,"name":{"214":{},"263":{}},"parent":{}}],["create",{"_index":2,"name":{"2":{},"6":{},"32":{},"46":{},"49":{},"55":{},"75":{},"82":{},"97":{},"104":{},"137":{},"147":{},"153":{},"183":{}},"parent":{}}],["createassignment",{"_index":81,"name":{"142":{},"157":{}},"parent":{}}],["createcustomer",{"_index":19,"name":{"22":{}},"parent":{}}],["created_at",{"_index":144,"name":{"247":{},"455":{},"659":{},"681":{},"820":{},"907":{},"952":{},"979":{},"1026":{},"1173":{},"1265":{},"1326":{},"1398":{},"1417":{},"1448":{},"1473":{},"1518":{},"1569":{},"1629":{},"1648":{},"1673":{},"1729":{},"1771":{}},"parent":{}}],["createearningrule",{"_index":38,"name":{"64":{}},"parent":{}}],["createmember",{"_index":42,"name":{"68":{}},"parent":{}}],["createrewardassignments",{"_index":34,"name":{"60":{}},"parent":{}}],["createsku",{"_index":52,"name":{"89":{}},"parent":{}}],["credits",{"_index":278,"name":{"581":{},"1833":{},"1852":{}},"parent":{}}],["currency",{"_index":557,"name":{"1559":{},"1568":{}},"parent":{}}],["custom_event",{"_index":417,"name":{"1006":{}},"parent":{}}],["customer",{"_index":187,"name":{"324":{},"364":{},"384":{},"402":{},"421":{},"437":{},"454":{},"470":{},"501":{},"506":{},"518":{},"529":{},"545":{},"560":{},"564":{},"625":{},"669":{},"760":{},"835":{},"1076":{},"1123":{},"1274":{},"1325":{},"1603":{},"1625":{},"1636":{},"1721":{},"1743":{},"1754":{},"1789":{}},"parent":{}}],["customer_id",{"_index":210,"name":{"375":{},"431":{},"463":{},"511":{},"540":{},"555":{},"775":{},"1120":{},"1630":{}},"parent":{}}],["customeractivitieslistqueryparams",{"_index":157,"name":{"280":{}},"parent":{"281":{},"282":{},"283":{},"284":{},"285":{},"286":{}}}],["customeractivitieslistresponse",{"_index":161,"name":{"287":{}},"parent":{"288":{},"289":{},"290":{},"291":{}}}],["customerobject",{"_index":110,"name":{"201":{}},"parent":{"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"216":{},"217":{},"241":{},"242":{},"246":{},"247":{},"248":{}}}],["customerobject.__type",{"_index":116,"name":{},"parent":{"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"218":{},"219":{},"234":{},"235":{},"243":{},"244":{},"245":{}}}],["customerobject.__type.__type",{"_index":124,"name":{},"parent":{"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"230":{},"231":{},"236":{},"237":{},"238":{},"239":{},"240":{}}}],["customerobject.__type.__type.__type",{"_index":132,"name":{},"parent":{"228":{},"229":{},"232":{},"233":{}}}],["customerrequest",{"_index":146,"name":{"250":{}},"parent":{"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"265":{}}}],["customerrequest.__type",{"_index":147,"name":{},"parent":{"259":{},"260":{},"261":{},"262":{},"263":{},"264":{}}}],["customers",{"_index":25,"name":{"30":{},"278":{},"1644":{}},"parent":{"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{}}}],["customerscommonlistrequest",{"_index":148,"name":{"266":{}},"parent":{"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{}}}],["customerscommonlistresponse",{"_index":153,"name":{"274":{}},"parent":{"275":{},"276":{},"277":{},"278":{},"279":{}}}],["customerscreatebody",{"_index":163,"name":{"292":{}},"parent":{}}],["customerscreateresponse",{"_index":164,"name":{"293":{}},"parent":{}}],["customersgetresponse",{"_index":165,"name":{"294":{}},"parent":{}}],["customerslistparams",{"_index":166,"name":{"295":{}},"parent":{}}],["customerslistresponse",{"_index":167,"name":{"296":{}},"parent":{}}],["customersscrollparams",{"_index":168,"name":{"297":{}},"parent":{}}],["customersscrollresponse",{"_index":169,"name":{"298":{}},"parent":{}}],["customersscrollyield",{"_index":170,"name":{"299":{}},"parent":{}}],["customersupdateconsentsbody",{"_index":173,"name":{"302":{}},"parent":{}}],["customersupdateparams",{"_index":171,"name":{"300":{}},"parent":{}}],["customersupdateresponse",{"_index":172,"name":{"301":{}},"parent":{}}],["customerunconfirmed",{"_index":145,"name":{"249":{}},"parent":{}}],["customheaders",{"_index":672,"name":{"1923":{},"1932":{}},"parent":{}}],["dangerouslysetsecretkeyinbrowser",{"_index":671,"name":{"1922":{}},"parent":{}}],["data",{"_index":162,"name":{"291":{},"647":{},"679":{},"809":{},"895":{},"934":{},"998":{},"1187":{},"1272":{},"1289":{},"1427":{},"1435":{},"1456":{},"1481":{},"1510":{},"1660":{},"1780":{},"1786":{},"1879":{}},"parent":{}}],["data_ref",{"_index":155,"name":{"277":{},"290":{},"338":{},"488":{},"493":{},"650":{},"678":{},"703":{},"746":{},"801":{},"812":{},"857":{},"898":{},"933":{},"997":{},"1071":{},"1089":{},"1186":{},"1235":{},"1244":{},"1271":{},"1288":{},"1341":{},"1426":{},"1434":{},"1455":{},"1483":{},"1550":{},"1614":{},"1659":{},"1764":{},"1779":{},"1785":{}},"parent":{}}],["date",{"_index":209,"name":{"374":{},"430":{},"462":{},"510":{},"539":{},"554":{},"774":{},"1119":{}},"parent":{}}],["delete",{"_index":7,"name":{"9":{},"37":{},"51":{},"58":{},"87":{},"107":{},"133":{},"140":{},"149":{},"156":{},"186":{}},"parent":{}}],["deleteassignment",{"_index":83,"name":{"144":{},"158":{}},"parent":{}}],["deleteearningrule",{"_index":40,"name":{"66":{}},"parent":{}}],["deleterewardassignment",{"_index":36,"name":{"62":{}},"parent":{}}],["deletesku",{"_index":55,"name":{"92":{}},"parent":{}}],["description",{"_index":112,"name":{"207":{},"256":{},"570":{},"643":{},"795":{},"891":{},"922":{},"1082":{},"1447":{},"1769":{}},"parent":{}}],["details",{"_index":91,"name":{"171":{}},"parent":{}}],["disable",{"_index":101,"name":{"189":{}},"parent":{}}],["discount",{"_index":199,"name":{"343":{},"594":{},"718":{},"736":{},"756":{},"1202":{},"1216":{},"1349":{},"1838":{}},"parent":{}}],["discount_amount",{"_index":202,"name":{"348":{},"605":{},"1697":{},"1723":{},"1734":{},"1752":{}},"parent":{}}],["discount_quantity",{"_index":601,"name":{"1692":{}},"parent":{}}],["discountamount",{"_index":662,"name":{"1899":{}},"parent":{"1900":{},"1901":{},"1902":{},"1903":{}}}],["discountamountvoucherseffecttypes",{"_index":658,"name":{"1888":{}},"parent":{}}],["discountfixed",{"_index":664,"name":{"1910":{}},"parent":{"1911":{},"1912":{},"1913":{},"1914":{}}}],["discountfixedvoucherseffecttypes",{"_index":660,"name":{"1890":{}},"parent":{}}],["discountpercent",{"_index":663,"name":{"1904":{}},"parent":{"1905":{},"1906":{},"1907":{},"1908":{},"1909":{}}}],["discountpercentvoucherseffecttypes",{"_index":659,"name":{"1889":{}},"parent":{}}],["discountunit",{"_index":661,"name":{"1891":{}},"parent":{"1892":{},"1893":{},"1894":{},"1895":{},"1896":{},"1897":{},"1898":{}}}],["discountunitvoucherseffecttypes",{"_index":657,"name":{"1887":{}},"parent":{}}],["discountvoucherseffecttypes",{"_index":656,"name":{"1886":{}},"parent":{}}],["discountvoucherstypes",{"_index":651,"name":{"1880":{}},"parent":{}}],["discountvoucherstypesenum",{"_index":652,"name":{"1881":{}},"parent":{"1882":{},"1883":{},"1884":{},"1885":{}}}],["distributions",{"_index":28,"name":{"40":{}},"parent":{"41":{},"42":{},"43":{}}}],["distributionspublicationscreateparams",{"_index":579,"name":{"1616":{}},"parent":{"1617":{},"1618":{},"1619":{},"1620":{},"1623":{},"1624":{},"1625":{}}}],["distributionspublicationscreateparams.__type",{"_index":580,"name":{},"parent":{"1621":{},"1622":{}}}],["distributionspublicationscreateresponse",{"_index":581,"name":{"1626":{}},"parent":{"1627":{},"1628":{},"1629":{},"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{}}}],["distributionspublicationslistparams",{"_index":575,"name":{"1598":{}},"parent":{"1599":{},"1600":{},"1601":{},"1602":{},"1603":{},"1604":{},"1605":{},"1606":{},"1607":{},"1608":{},"1609":{}}}],["distributionspublicationslistparams.__type",{"_index":577,"name":{},"parent":{"1610":{}}}],["distributionspublicationslistresponse",{"_index":578,"name":{"1611":{}},"parent":{"1612":{},"1613":{},"1614":{},"1615":{}}}],["duration",{"_index":302,"name":{"656":{},"817":{},"904":{},"1050":{},"1144":{},"1229":{}},"parent":{}}],["effect",{"_index":569,"name":{"1592":{},"1811":{},"1818":{},"1875":{},"1895":{},"1903":{},"1909":{},"1914":{}},"parent":{}}],["email",{"_index":106,"name":{"197":{},"205":{},"254":{},"269":{},"569":{},"1080":{}},"parent":{}}],["enable",{"_index":100,"name":{"188":{}},"parent":{}}],["entries",{"_index":427,"name":{"1055":{},"1236":{}},"parent":{}}],["error",{"_index":289,"name":{"619":{},"1383":{},"1392":{},"1841":{}},"parent":{}}],["event",{"_index":225,"name":{"400":{},"986":{},"1000":{},"1788":{}},"parent":{}}],["events",{"_index":31,"name":{"44":{}},"parent":{"45":{},"46":{}}}],["eventsparams",{"_index":619,"name":{"1787":{}},"parent":{"1788":{},"1789":{},"1790":{},"1791":{},"1792":{},"1795":{},"1796":{}}}],["eventsparams.__type",{"_index":620,"name":{},"parent":{"1793":{},"1794":{},"1797":{}}}],["eventsresponse",{"_index":621,"name":{"1798":{}},"parent":{"1799":{},"1800":{}}}],["every",{"_index":404,"name":{"975":{}},"parent":{}}],["expand",{"_index":623,"name":{"1802":{}},"parent":{}}],["expiration_date",{"_index":288,"name":{"617":{},"651":{},"731":{},"797":{},"830":{},"862":{},"899":{},"920":{},"1046":{},"1140":{},"1225":{},"1310":{},"1352":{}},"parent":{}}],["exported_object",{"_index":590,"name":{"1662":{},"1676":{}},"parent":{}}],["exportresource",{"_index":589,"name":{"1661":{}},"parent":{"1662":{},"1663":{},"1664":{}}}],["exportresource.__type",{"_index":591,"name":{},"parent":{"1665":{},"1666":{},"1667":{},"1668":{}}}],["exportresource.__type.__type",{"_index":593,"name":{},"parent":{"1669":{}}}],["exports",{"_index":30,"name":{"43":{},"47":{}},"parent":{"48":{},"49":{},"50":{},"51":{}}}],["exportscreateresponse",{"_index":594,"name":{"1670":{}},"parent":{"1671":{},"1672":{},"1673":{},"1674":{},"1675":{},"1676":{},"1677":{},"1678":{},"1683":{},"1684":{}}}],["exportscreateresponse.__type",{"_index":595,"name":{},"parent":{"1679":{},"1680":{},"1681":{},"1685":{}}}],["exportscreateresponse.__type.__type",{"_index":596,"name":{},"parent":{"1682":{}}}],["exportsgetresponse",{"_index":597,"name":{"1686":{}},"parent":{}}],["exposeerrorcause",{"_index":72,"name":{"125":{},"1924":{},"1933":{}},"parent":{}}],["failure_code",{"_index":242,"name":{"447":{},"468":{}},"parent":{}}],["failure_message",{"_index":243,"name":{"448":{},"469":{}},"parent":{}}],["fields",{"_index":592,"name":{"1666":{},"1679":{}},"parent":{}}],["filter",{"_index":583,"name":{"1641":{},"1650":{}},"parent":{}}],["filters",{"_index":325,"name":{"697":{},"846":{},"1335":{},"1608":{},"1667":{},"1680":{}},"parent":{}}],["fixed",{"_index":655,"name":{"1885":{}},"parent":{}}],["fixed_amount",{"_index":630,"name":{"1824":{},"1912":{}},"parent":{}}],["fixed_amount_formula",{"_index":631,"name":{"1825":{},"1913":{}},"parent":{}}],["force",{"_index":317,"name":{"685":{},"926":{},"1319":{},"1543":{},"1575":{}},"parent":{}}],["get",{"_index":6,"name":{"8":{},"33":{},"50":{},"56":{},"76":{},"83":{},"103":{},"112":{},"130":{},"138":{},"148":{},"154":{},"184":{}},"parent":{}}],["getforvoucher",{"_index":62,"name":{"114":{}},"parent":{}}],["getlastresponseheaders",{"_index":74,"name":{"127":{}},"parent":{}}],["getmember",{"_index":43,"name":{"69":{}},"parent":{}}],["getmemberactivities",{"_index":44,"name":{"70":{}},"parent":{}}],["getsku",{"_index":53,"name":{"90":{}},"parent":{}}],["gift",{"_index":130,"name":{"226":{},"357":{},"425":{},"440":{},"479":{},"579":{},"595":{},"1217":{},"1314":{},"1808":{},"1839":{}},"parent":{}}],["giftredemptionparams",{"_index":638,"name":{"1851":{}},"parent":{"1852":{}}}],["groups",{"_index":617,"name":{"1775":{}},"parent":{}}],["has_more",{"_index":156,"name":{"279":{},"748":{},"803":{}},"parent":{}}],["headers",{"_index":68,"name":{"121":{}},"parent":{}}],["hierarchy",{"_index":337,"name":{"719":{},"737":{}},"parent":{}}],["holder",{"_index":452,"name":{"1175":{}},"parent":{}}],["holder_id",{"_index":430,"name":{"1066":{},"1172":{},"1263":{}},"parent":{}}],["id",{"_index":104,"name":{"195":{},"202":{},"251":{},"314":{},"327":{},"369":{},"372":{},"428":{},"460":{},"476":{},"508":{},"537":{},"553":{},"566":{},"574":{},"584":{},"636":{},"680":{},"715":{},"722":{},"728":{},"763":{},"772":{},"781":{},"786":{},"791":{},"838":{},"884":{},"918":{},"943":{},"956":{},"978":{},"985":{},"1011":{},"1014":{},"1035":{},"1078":{},"1103":{},"1107":{},"1110":{},"1117":{},"1129":{},"1164":{},"1168":{},"1177":{},"1211":{},"1255":{},"1259":{},"1278":{},"1390":{},"1413":{},"1440":{},"1464":{},"1497":{},"1512":{},"1525":{},"1561":{},"1581":{},"1585":{},"1627":{},"1646":{},"1671":{},"1703":{},"1711":{},"1727":{},"1747":{},"1756":{},"1767":{},"1806":{},"1844":{},"1870":{}},"parent":{}}],["image_url",{"_index":513,"name":{"1446":{},"1504":{},"1519":{},"1529":{},"1558":{}},"parent":{}}],["import",{"_index":48,"name":{"79":{},"190":{}},"parent":{}}],["importvouchers",{"_index":10,"name":{"12":{}},"parent":{}}],["inapplicable_to",{"_index":280,"name":{"588":{},"1848":{}},"parent":{}}],["initial_amount",{"_index":284,"name":{"611":{},"1698":{},"1733":{}},"parent":{}}],["initial_quantity",{"_index":602,"name":{"1693":{}},"parent":{}}],["interval",{"_index":301,"name":{"655":{},"816":{},"903":{},"1049":{},"1143":{},"1228":{}},"parent":{}}],["is_available",{"_index":343,"name":{"741":{}},"parent":{}}],["is_referral_code",{"_index":429,"name":{"1065":{},"1170":{},"1201":{},"1261":{},"1607":{}},"parent":{}}],["islastreponseheadersset",{"_index":73,"name":{"126":{}},"parent":{}}],["islastresponseheadersset",{"_index":71,"name":{"124":{}},"parent":{}}],["items",{"_index":185,"name":{"322":{},"351":{},"577":{},"610":{},"766":{},"840":{},"1113":{},"1724":{},"1741":{},"1750":{}},"parent":{}}],["items_applied_discount_amount",{"_index":286,"name":{"613":{},"1738":{}},"parent":{}}],["items_discount_amount",{"_index":285,"name":{"612":{},"1735":{}},"parent":{}}],["join_once",{"_index":217,"name":{"389":{},"642":{},"806":{},"890":{},"1617":{}},"parent":{}}],["junction",{"_index":326,"name":{"699":{},"1337":{},"1610":{},"1643":{},"1652":{},"1669":{},"1682":{}},"parent":{}}],["key",{"_index":90,"name":{"170":{},"1856":{},"1861":{},"1866":{}},"parent":{}}],["last_order_amount",{"_index":140,"name":{"239":{}},"parent":{}}],["last_order_date",{"_index":141,"name":{"240":{}},"parent":{}}],["lastresponseheaders",{"_index":70,"name":{"123":{}},"parent":{}}],["length",{"_index":374,"name":{"877":{},"1195":{},"1295":{},"1360":{}},"parent":{}}],["limit",{"_index":149,"name":{"267":{},"281":{},"450":{},"674":{},"694":{},"742":{},"852":{},"928":{},"964":{},"1024":{},"1284":{},"1321":{},"1421":{},"1429":{},"1438":{},"1477":{},"1546":{},"1599":{},"1759":{}},"parent":{}}],["line_1",{"_index":118,"name":{"212":{},"261":{}},"parent":{}}],["line_2",{"_index":119,"name":{"213":{},"262":{}},"parent":{}}],["list",{"_index":11,"name":{"13":{},"29":{},"34":{},"54":{},"78":{},"88":{},"102":{},"113":{},"136":{},"150":{},"160":{},"187":{}},"parent":{}}],["listactivities",{"_index":27,"name":{"39":{}},"parent":{}}],["listall",{"_index":60,"name":{"101":{}},"parent":{}}],["listassignments",{"_index":80,"name":{"141":{},"161":{}},"parent":{}}],["listconsents",{"_index":20,"name":{"23":{}},"parent":{}}],["listearningrules",{"_index":37,"name":{"63":{}},"parent":{}}],["listmembers",{"_index":41,"name":{"67":{}},"parent":{}}],["listrewardassignments",{"_index":33,"name":{"59":{}},"parent":{}}],["listskus",{"_index":56,"name":{"93":{}},"parent":{}}],["listvouchers",{"_index":18,"name":{"21":{}},"parent":{}}],["logic",{"_index":494,"name":{"1388":{},"1397":{}},"parent":{}}],["loyalties",{"_index":32,"name":{"52":{}},"parent":{"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{}}}],["loyaltiesaddpoints",{"_index":438,"name":{"1092":{}},"parent":{"1093":{}}}],["loyaltiesaddpointsresponse",{"_index":439,"name":{"1094":{}},"parent":{"1095":{},"1096":{},"1097":{},"1098":{},"1099":{},"1100":{},"1101":{}}}],["loyaltiesaddpointsresponse.__type",{"_index":440,"name":{},"parent":{"1102":{},"1103":{}}}],["loyaltiescreatecampaign",{"_index":370,"name":{"859":{}},"parent":{"860":{},"861":{},"862":{},"863":{},"864":{},"865":{},"866":{},"882":{}}}],["loyaltiescreatecampaign.__type",{"_index":371,"name":{},"parent":{"867":{},"868":{},"869":{},"871":{},"872":{},"875":{},"876":{}}}],["loyaltiescreatecampaign.__type.__type",{"_index":372,"name":{},"parent":{"870":{},"873":{},"874":{},"877":{},"878":{},"879":{},"880":{},"881":{}}}],["loyaltiescreatecampaignresponse",{"_index":379,"name":{"883":{}},"parent":{"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{},"893":{},"894":{},"899":{},"900":{},"901":{},"902":{},"905":{},"906":{},"907":{},"908":{},"909":{},"910":{},"911":{},"912":{},"913":{},"914":{},"915":{}}}],["loyaltiescreatecampaignresponse.__type",{"_index":380,"name":{},"parent":{"895":{},"896":{},"897":{},"898":{},"903":{},"904":{}}}],["loyaltiescreateearningrule",{"_index":415,"name":{"999":{}},"parent":{"1000":{},"1001":{},"1002":{},"1003":{},"1004":{},"1006":{},"1007":{},"1009":{},"1010":{}}}],["loyaltiescreateearningrule.__type",{"_index":416,"name":{},"parent":{"1005":{},"1008":{},"1011":{}}}],["loyaltiescreateearningruleresponse",{"_index":419,"name":{"1012":{}},"parent":{}}],["loyaltiescreatemember",{"_index":432,"name":{"1073":{}},"parent":{"1074":{},"1075":{},"1076":{},"1077":{},"1084":{}}}],["loyaltiescreatemember.__type",{"_index":433,"name":{},"parent":{"1078":{},"1079":{},"1080":{},"1081":{},"1082":{},"1083":{}}}],["loyaltiescreatememberresponse",{"_index":434,"name":{"1085":{}},"parent":{}}],["loyaltiescreaterewardassignmentresponse",{"_index":391,"name":{"942":{}},"parent":{"943":{},"944":{},"945":{},"946":{},"947":{},"948":{},"952":{},"953":{},"954":{}}}],["loyaltiescreaterewardassignmentresponse.__type",{"_index":393,"name":{},"parent":{"949":{},"950":{}}}],["loyaltiescreaterewardassignmentresponse.__type.__type",{"_index":394,"name":{},"parent":{"951":{}}}],["loyaltiescreaterewardassignments",{"_index":387,"name":{"935":{}},"parent":{"936":{},"937":{},"938":{}}}],["loyaltiescreaterewardassignments.__type",{"_index":389,"name":{},"parent":{"939":{},"940":{}}}],["loyaltiescreaterewardassignments.__type.__type",{"_index":390,"name":{},"parent":{"941":{}}}],["loyaltiesdeletecampaignparams",{"_index":384,"name":{"925":{}},"parent":{"926":{}}}],["loyaltiesearningrulesresponse",{"_index":406,"name":{"977":{}},"parent":{"978":{},"979":{},"980":{},"981":{},"982":{},"983":{},"984":{},"986":{},"987":{},"988":{},"992":{},"993":{}}}],["loyaltiesearningrulesresponse.__type",{"_index":409,"name":{},"parent":{"985":{},"989":{},"990":{},"991":{}}}],["loyaltiesgetcampaignresponse",{"_index":381,"name":{"916":{}},"parent":{}}],["loyaltiesgetmemberactivitiesresponse",{"_index":436,"name":{"1087":{}},"parent":{"1088":{},"1089":{},"1090":{},"1091":{}}}],["loyaltiesgetmemberresponse",{"_index":435,"name":{"1086":{}},"parent":{}}],["loyaltieslistearningrulesparams",{"_index":400,"name":{"963":{}},"parent":{"964":{},"965":{}}}],["loyaltieslistearningrulesresponse",{"_index":414,"name":{"994":{}},"parent":{"995":{},"996":{},"997":{},"998":{}}}],["loyaltieslistmembersparams",{"_index":423,"name":{"1023":{}},"parent":{"1024":{},"1025":{},"1026":{},"1027":{},"1030":{},"1031":{}}}],["loyaltieslistmembersparams.__type",{"_index":424,"name":{},"parent":{"1028":{},"1029":{},"1032":{},"1033":{}}}],["loyaltieslistmembersresponse",{"_index":431,"name":{"1068":{}},"parent":{"1069":{},"1070":{},"1071":{},"1072":{}}}],["loyaltieslistparams",{"_index":368,"name":{"851":{}},"parent":{"852":{},"853":{}}}],["loyaltieslistresponse",{"_index":369,"name":{"854":{}},"parent":{"855":{},"856":{},"857":{},"858":{}}}],["loyaltieslistrewardassignmentsparams",{"_index":385,"name":{"927":{}},"parent":{"928":{},"929":{}}}],["loyaltieslistrewardassignmentsresponse",{"_index":386,"name":{"930":{}},"parent":{"931":{},"932":{},"933":{},"934":{}}}],["loyaltiesredeemrewardparams",{"_index":441,"name":{"1104":{}},"parent":{"1105":{},"1106":{},"1108":{},"1109":{},"1115":{}}}],["loyaltiesredeemrewardparams.__type",{"_index":442,"name":{},"parent":{"1107":{},"1110":{},"1111":{},"1112":{},"1113":{},"1114":{}}}],["loyaltiesredeemrewardresponse",{"_index":443,"name":{"1116":{}},"parent":{"1117":{},"1118":{},"1119":{},"1120":{},"1121":{},"1122":{},"1123":{},"1124":{},"1125":{},"1126":{},"1127":{},"1128":{}}}],["loyaltiesredeemrewardresponse.__type",{"_index":444,"name":{},"parent":{"1129":{},"1130":{},"1131":{},"1132":{},"1133":{},"1134":{},"1135":{},"1136":{},"1139":{},"1140":{},"1141":{},"1142":{},"1145":{},"1146":{},"1147":{},"1151":{},"1152":{},"1158":{},"1159":{},"1160":{},"1161":{},"1170":{},"1171":{},"1172":{},"1173":{},"1174":{},"1175":{},"1176":{},"1181":{},"1182":{},"1183":{}}}],["loyaltiesredeemrewardresponse.__type.__type",{"_index":445,"name":{},"parent":{"1137":{},"1138":{},"1143":{},"1144":{},"1148":{},"1149":{},"1150":{},"1153":{},"1154":{},"1155":{},"1156":{},"1157":{},"1162":{},"1163":{},"1166":{},"1167":{},"1177":{},"1178":{},"1179":{},"1180":{},"1184":{},"1185":{},"1186":{},"1187":{}}}],["loyaltiesredeemrewardresponse.__type.__type.__type",{"_index":449,"name":{},"parent":{"1164":{},"1165":{},"1168":{},"1169":{}}}],["loyaltiesupdatecampaign",{"_index":382,"name":{"917":{}},"parent":{"918":{},"919":{},"920":{},"921":{},"922":{},"923":{}}}],["loyaltiesupdatecampaignresponse",{"_index":383,"name":{"924":{}},"parent":{}}],["loyaltiesupdateearningrule",{"_index":420,"name":{"1013":{}},"parent":{"1014":{},"1015":{},"1016":{},"1017":{},"1019":{},"1020":{}}}],["loyaltiesupdateearningrule.__type",{"_index":421,"name":{},"parent":{"1018":{},"1021":{}}}],["loyaltiesupdateearningruleresponse",{"_index":422,"name":{"1022":{}},"parent":{}}],["loyaltiesupdaterewardassignment",{"_index":396,"name":{"955":{}},"parent":{"956":{},"957":{},"958":{}}}],["loyaltiesupdaterewardassignment.__type",{"_index":397,"name":{},"parent":{"959":{},"960":{}}}],["loyaltiesupdaterewardassignment.__type.__type",{"_index":398,"name":{},"parent":{"961":{}}}],["loyaltiesupdaterewardassignmentresponse",{"_index":399,"name":{"962":{}},"parent":{}}],["loyaltiesvoucherresponse",{"_index":425,"name":{"1034":{}},"parent":{"1035":{},"1036":{},"1037":{},"1038":{},"1039":{},"1040":{},"1041":{},"1042":{},"1045":{},"1046":{},"1047":{},"1048":{},"1051":{},"1052":{},"1053":{},"1056":{},"1057":{},"1062":{},"1063":{},"1064":{},"1065":{},"1066":{},"1067":{}}}],["loyaltiesvoucherresponse.__type",{"_index":426,"name":{},"parent":{"1043":{},"1044":{},"1049":{},"1050":{},"1054":{},"1055":{},"1058":{},"1059":{},"1060":{},"1061":{}}}],["loyalty",{"_index":134,"name":{"230":{},"241":{},"354":{},"403":{},"599":{},"939":{},"949":{},"959":{},"982":{},"1002":{},"1019":{},"1470":{},"1488":{},"1795":{}},"parent":{}}],["loyalty_card",{"_index":240,"name":{"443":{},"482":{},"871":{},"1041":{},"1135":{},"1203":{},"1221":{},"1840":{}},"parent":{}}],["loyaltyfixed",{"_index":401,"name":{"966":{}},"parent":{"967":{},"968":{}}}],["loyaltypointstransfer",{"_index":453,"name":{"1188":{}},"parent":{"1189":{},"1190":{}}}],["loyaltyproportional",{"_index":402,"name":{"969":{}},"parent":{"970":{},"971":{},"972":{}}}],["loyaltyproportional.__type",{"_index":403,"name":{},"parent":{"973":{},"974":{}}}],["loyaltyproportional.__type.__type",{"_index":405,"name":{},"parent":{"975":{},"976":{}}}],["message",{"_index":491,"name":{"1385":{},"1394":{}},"parent":{}}],["metadata",{"_index":108,"name":{"199":{},"246":{},"255":{},"328":{},"366":{},"378":{},"386":{},"401":{},"423":{},"434":{},"466":{},"530":{},"542":{},"557":{},"571":{},"578":{},"591":{},"614":{},"626":{},"658":{},"713":{},"738":{},"757":{},"768":{},"769":{},"819":{},"842":{},"843":{},"882":{},"906":{},"921":{},"1064":{},"1081":{},"1084":{},"1114":{},"1115":{},"1179":{},"1250":{},"1280":{},"1313":{},"1354":{},"1367":{},"1371":{},"1503":{},"1520":{},"1530":{},"1534":{},"1556":{},"1566":{},"1632":{},"1649":{},"1707":{},"1717":{},"1725":{},"1742":{},"1753":{},"1790":{},"1850":{}},"parent":{}}],["name",{"_index":105,"name":{"196":{},"204":{},"253":{},"271":{},"392":{},"568":{},"637":{},"716":{},"724":{},"752":{},"782":{},"792":{},"827":{},"860":{},"885":{},"1079":{},"1382":{},"1391":{},"1441":{},"1499":{},"1515":{},"1524":{},"1583":{},"1621":{},"1639":{},"1647":{},"1706":{},"1768":{}},"parent":{}}],["object",{"_index":109,"name":{"200":{},"248":{},"275":{},"288":{},"310":{},"336":{},"373":{},"406":{},"429":{},"461":{},"477":{},"486":{},"491":{},"509":{},"522":{},"538":{},"648":{},"667":{},"676":{},"701":{},"720":{},"723":{},"729":{},"745":{},"773":{},"800":{},"810":{},"825":{},"855":{},"896":{},"915":{},"931":{},"954":{},"992":{},"995":{},"1069":{},"1088":{},"1099":{},"1118":{},"1148":{},"1153":{},"1180":{},"1181":{},"1184":{},"1233":{},"1241":{},"1266":{},"1269":{},"1286":{},"1339":{},"1400":{},"1419":{},"1424":{},"1432":{},"1450":{},"1453":{},"1475":{},"1482":{},"1508":{},"1514":{},"1548":{},"1570":{},"1577":{},"1612":{},"1628":{},"1654":{},"1657":{},"1672":{},"1716":{},"1744":{},"1762":{},"1773":{},"1777":{},"1783":{},"1799":{},"1805":{},"1845":{},"1869":{},"1877":{}},"parent":{}}],["object_id",{"_index":411,"name":{"990":{}},"parent":{}}],["object_type",{"_index":412,"name":{"991":{}},"parent":{}}],["options",{"_index":264,"name":{"525":{},"621":{}},"parent":{}}],["order",{"_index":151,"name":{"272":{},"282":{},"345":{},"365":{},"377":{},"410":{},"422":{},"433":{},"465":{},"528":{},"544":{},"548":{},"559":{},"562":{},"572":{},"602":{},"624":{},"631":{},"670":{},"673":{},"761":{},"777":{},"836":{},"971":{},"1108":{},"1122":{},"1275":{},"1283":{},"1334":{},"1601":{},"1665":{},"1846":{}},"parent":{}}],["ordermetadata",{"_index":186,"name":{"323":{}},"parent":{}}],["orders",{"_index":47,"name":{"73":{},"234":{},"1765":{}},"parent":{"74":{},"75":{},"76":{},"77":{},"78":{},"79":{}}}],["orderscreate",{"_index":607,"name":{"1718":{}},"parent":{"1719":{},"1720":{},"1721":{},"1722":{},"1723":{},"1724":{},"1725":{}}}],["orderscreateresponse",{"_index":608,"name":{"1726":{}},"parent":{"1727":{},"1728":{},"1729":{},"1730":{},"1731":{},"1732":{},"1733":{},"1734":{},"1735":{},"1736":{},"1737":{},"1738":{},"1739":{},"1740":{},"1741":{},"1742":{},"1743":{},"1744":{}}}],["ordersgetresponse",{"_index":609,"name":{"1745":{}},"parent":{}}],["ordersitem",{"_index":598,"name":{"1687":{}},"parent":{"1688":{},"1689":{},"1690":{},"1691":{},"1692":{},"1693":{},"1694":{},"1695":{},"1696":{},"1697":{},"1698":{},"1699":{},"1700":{},"1701":{},"1702":{},"1709":{},"1710":{},"1716":{},"1717":{}}}],["ordersitem.__type",{"_index":605,"name":{},"parent":{"1703":{},"1704":{},"1705":{},"1706":{},"1707":{},"1708":{},"1711":{},"1712":{},"1713":{},"1714":{},"1715":{}}}],["orderslistparams",{"_index":613,"name":{"1758":{}},"parent":{"1759":{},"1760":{}}}],["orderslistresponse",{"_index":614,"name":{"1761":{}},"parent":{"1762":{},"1763":{},"1764":{},"1765":{}}}],["ordersupdate",{"_index":610,"name":{"1746":{}},"parent":{"1747":{},"1748":{},"1749":{},"1750":{},"1751":{},"1752":{},"1753":{},"1754":{},"1755":{}}}],["ordersupdate.__type",{"_index":611,"name":{},"parent":{"1756":{}}}],["ordersupdateresponse",{"_index":612,"name":{"1757":{}},"parent":{}}],["origin",{"_index":678,"name":{"1931":{}},"parent":{}}],["override",{"_index":606,"name":{"1705":{},"1713":{}},"parent":{}}],["page",{"_index":150,"name":{"268":{},"451":{},"695":{},"743":{},"853":{},"929":{},"965":{},"1025":{},"1322":{},"1422":{},"1430":{},"1437":{},"1478":{},"1545":{},"1600":{},"1760":{}},"parent":{}}],["parameters",{"_index":388,"name":{"937":{},"947":{},"957":{},"1468":{},"1486":{},"1663":{},"1677":{}},"parent":{}}],["parent_redemption",{"_index":269,"name":{"535":{}},"parent":{}}],["parent_rollback",{"_index":274,"name":{"551":{}},"parent":{}}],["pattern",{"_index":376,"name":{"879":{},"1197":{},"1297":{},"1362":{}},"parent":{}}],["percent",{"_index":653,"name":{"1883":{}},"parent":{}}],["percent_off",{"_index":572,"name":{"1595":{},"1821":{},"1906":{}},"parent":{}}],["percent_off_formula",{"_index":573,"name":{"1596":{},"1822":{},"1907":{}},"parent":{}}],["phone",{"_index":111,"name":{"206":{},"265":{}},"parent":{}}],["points",{"_index":142,"name":{"243":{},"445":{},"484":{},"873":{},"941":{},"951":{},"961":{},"968":{},"976":{},"1021":{},"1043":{},"1093":{},"1095":{},"1137":{},"1190":{},"1205":{},"1223":{},"1472":{},"1490":{},"1495":{},"1835":{}},"parent":{}}],["points_cost",{"_index":204,"name":{"356":{},"601":{}},"parent":{}}],["points_to_go",{"_index":136,"name":{"233":{}},"parent":{}}],["post",{"_index":77,"name":{"131":{}},"parent":{}}],["postal_code",{"_index":121,"name":{"215":{},"264":{}},"parent":{}}],["prefix",{"_index":377,"name":{"880":{},"1198":{},"1298":{},"1363":{}},"parent":{}}],["price",{"_index":536,"name":{"1501":{},"1516":{},"1528":{},"1557":{},"1564":{},"1695":{},"1708":{},"1715":{},"1873":{}},"parent":{}}],["price_formula",{"_index":649,"name":{"1874":{}},"parent":{}}],["product",{"_index":604,"name":{"1701":{},"1815":{},"1830":{},"1897":{}},"parent":{}}],["product_id",{"_index":600,"name":{"1689":{}},"parent":{}}],["products",{"_index":49,"name":{"80":{},"1551":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{}}}],["productsbulkupdate",{"_index":547,"name":{"1535":{}},"parent":{}}],["productsbulkupdatemetadata",{"_index":545,"name":{"1532":{}},"parent":{"1533":{},"1534":{}}}],["productsbulkupdatemetadataresponse",{"_index":550,"name":{"1539":{}},"parent":{"1540":{}}}],["productsbulkupdatemetadataresponse.__type",{"_index":551,"name":{},"parent":{"1541":{}}}],["productsbulkupdateresponse",{"_index":548,"name":{"1536":{}},"parent":{"1537":{}}}],["productsbulkupdateresponse.__type",{"_index":549,"name":{},"parent":{"1538":{}}}],["productscreate",{"_index":535,"name":{"1498":{}},"parent":{"1499":{},"1500":{},"1501":{},"1502":{},"1503":{},"1504":{}}}],["productscreateresponse",{"_index":540,"name":{"1511":{}},"parent":{"1512":{},"1513":{},"1514":{},"1515":{},"1516":{},"1517":{},"1518":{},"1519":{},"1520":{}}}],["productscreatesku",{"_index":555,"name":{"1552":{}},"parent":{"1553":{},"1554":{},"1555":{},"1556":{},"1557":{},"1558":{},"1559":{}}}],["productscreateskuresponse",{"_index":558,"name":{"1560":{}},"parent":{"1561":{},"1562":{},"1563":{},"1564":{},"1565":{},"1566":{},"1567":{},"1568":{},"1569":{},"1570":{}}}],["productsdeleteparams",{"_index":552,"name":{"1542":{}},"parent":{"1543":{}}}],["productsdeleteskuparams",{"_index":562,"name":{"1574":{}},"parent":{"1575":{}}}],["productsgetresponse",{"_index":541,"name":{"1521":{}},"parent":{}}],["productsgetresponseskus",{"_index":537,"name":{"1505":{}},"parent":{"1506":{},"1507":{}}}],["productsgetresponseskus.__type",{"_index":539,"name":{},"parent":{"1508":{},"1509":{},"1510":{}}}],["productsgetskuresponse",{"_index":559,"name":{"1571":{}},"parent":{}}],["productslistparams",{"_index":553,"name":{"1544":{}},"parent":{"1545":{},"1546":{}}}],["productslistresponse",{"_index":554,"name":{"1547":{}},"parent":{"1548":{},"1549":{},"1550":{},"1551":{}}}],["productslistskus",{"_index":563,"name":{"1576":{}},"parent":{"1577":{},"1578":{},"1579":{}}}],["productsupdate",{"_index":542,"name":{"1522":{}},"parent":{"1523":{}}}],["productsupdate.__type",{"_index":543,"name":{},"parent":{"1524":{},"1525":{},"1526":{},"1527":{},"1528":{},"1529":{},"1530":{}}}],["productsupdateresponse",{"_index":544,"name":{"1531":{}},"parent":{}}],["productsupdatesku",{"_index":560,"name":{"1572":{}},"parent":{}}],["productsupdateskuresponse",{"_index":561,"name":{"1573":{}},"parent":{}}],["promotion",{"_index":360,"name":{"798":{},"831":{}},"parent":{}}],["promotion_tier",{"_index":241,"name":{"446":{},"779":{},"1411":{}},"parent":{}}],["promotions",{"_index":57,"name":{"94":{},"361":{},"849":{}},"parent":{"95":{},"96":{},"97":{},"98":{}}}],["promotionscreate",{"_index":362,"name":{"826":{}},"parent":{"827":{},"828":{},"829":{},"830":{},"831":{},"832":{}}}],["promotionscreate.__type",{"_index":363,"name":{},"parent":{"833":{}}}],["promotionscreateresponse",{"_index":359,"name":{"790":{}},"parent":{"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"804":{},"805":{},"806":{},"807":{},"808":{},"813":{},"814":{},"815":{},"818":{},"819":{},"820":{},"821":{},"822":{},"823":{},"824":{},"825":{}}}],["promotionscreateresponse.__type",{"_index":361,"name":{},"parent":{"800":{},"801":{},"802":{},"803":{},"809":{},"810":{},"811":{},"812":{},"816":{},"817":{}}}],["promotionsvalidateparams",{"_index":364,"name":{"834":{}},"parent":{"835":{},"836":{},"837":{},"843":{}}}],["promotionsvalidateparams.__type",{"_index":365,"name":{},"parent":{"838":{},"839":{},"840":{},"841":{},"842":{}}}],["promotionsvalidatequeryparams",{"_index":366,"name":{"844":{}},"parent":{"845":{},"846":{}}}],["promotionsvalidateresponse",{"_index":367,"name":{"847":{}},"parent":{"848":{},"849":{},"850":{}}}],["promotiontier",{"_index":338,"name":{"721":{}},"parent":{"722":{},"723":{},"724":{},"725":{},"726":{},"727":{},"733":{},"734":{},"735":{},"737":{},"738":{},"739":{}}}],["promotiontier.__type",{"_index":339,"name":{},"parent":{"728":{},"729":{},"730":{},"731":{},"732":{},"736":{}}}],["promotiontiergetresponse",{"_index":346,"name":{"750":{}},"parent":{}}],["promotiontierredeemdetails",{"_index":356,"name":{"787":{}},"parent":{}}],["promotiontierredeemdetailssimple",{"_index":354,"name":{"780":{}},"parent":{"781":{},"782":{},"783":{},"784":{},"785":{}}}],["promotiontierredeemdetailssimple.__type",{"_index":355,"name":{},"parent":{"786":{}}}],["promotiontiers",{"_index":59,"name":{"99":{}},"parent":{"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{}}}],["promotiontierscreateparams",{"_index":347,"name":{"751":{}},"parent":{"752":{},"753":{},"754":{},"755":{},"757":{}}}],["promotiontierscreateparams.__type",{"_index":348,"name":{},"parent":{"756":{}}}],["promotiontierscreateresponse",{"_index":349,"name":{"758":{}},"parent":{}}],["promotiontierslistallparams",{"_index":342,"name":{"740":{}},"parent":{"741":{},"742":{},"743":{}}}],["promotiontierslistallresponse",{"_index":344,"name":{"744":{}},"parent":{"745":{},"746":{},"747":{},"748":{}}}],["promotiontierslistresponse",{"_index":345,"name":{"749":{}},"parent":{}}],["promotiontiersredeemparams",{"_index":350,"name":{"759":{}},"parent":{"760":{},"761":{},"762":{},"769":{},"770":{}}}],["promotiontiersredeemparams.__type",{"_index":351,"name":{},"parent":{"763":{},"764":{},"765":{},"766":{},"767":{},"768":{}}}],["promotiontiersredeemresponse",{"_index":353,"name":{"771":{}},"parent":{"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{}}}],["promotiontiersupdateparams",{"_index":357,"name":{"788":{}},"parent":{}}],["promotiontiersupdateresponse",{"_index":358,"name":{"789":{}},"parent":{}}],["protected",{"_index":308,"name":{"665":{},"824":{},"913":{}},"parent":{}}],["publications",{"_index":29,"name":{"42":{},"1615":{}},"parent":{}}],["publish",{"_index":16,"name":{"19":{},"1052":{},"1146":{},"1231":{}},"parent":{}}],["put",{"_index":78,"name":{"132":{}},"parent":{}}],["qr",{"_index":448,"name":{"1162":{},"1253":{}},"parent":{}}],["qualifications",{"_index":4,"name":{"5":{},"181":{}},"parent":{}}],["quantity",{"_index":252,"name":{"494":{},"870":{},"1058":{},"1154":{},"1209":{},"1242":{},"1302":{},"1357":{},"1694":{}},"parent":{}}],["reason",{"_index":256,"name":{"499":{},"503":{},"515":{}},"parent":{}}],["redeem",{"_index":15,"name":{"18":{},"105":{},"110":{}},"parent":{}}],["redeemables",{"_index":265,"name":{"526":{},"622":{},"632":{}},"parent":{}}],["redeemed",{"_index":511,"name":{"1443":{}},"parent":{}}],["redeemed_amount",{"_index":131,"name":{"228":{},"496":{}},"parent":{}}],["redeemed_points",{"_index":135,"name":{"232":{},"1059":{},"1157":{}},"parent":{}}],["redeemed_quantity",{"_index":253,"name":{"495":{},"1060":{},"1155":{},"1243":{}},"parent":{}}],["redeemreward",{"_index":46,"name":{"72":{}},"parent":{}}],["redeemstackable",{"_index":23,"name":{"26":{},"111":{}},"parent":{}}],["redemption",{"_index":248,"name":{"459":{},"513":{},"561":{},"868":{},"1056":{},"1151":{},"1207":{},"1239":{},"1300":{},"1355":{}},"parent":{"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"479":{},"480":{},"482":{},"483":{}}}],["redemption.__type",{"_index":249,"name":{},"parent":{"474":{},"475":{},"476":{},"477":{},"478":{},"481":{},"484":{}}}],["redemption_entries",{"_index":254,"name":{"497":{},"1061":{},"1245":{}},"parent":{}}],["redemptions",{"_index":61,"name":{"108":{},"218":{},"489":{},"534":{}},"parent":{"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{}}}],["redemptionsgetforvoucherresponse",{"_index":251,"name":{"490":{}},"parent":{"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{}}}],["redemptionslistparams",{"_index":244,"name":{"449":{}},"parent":{"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{}}}],["redemptionslistparams.__type",{"_index":246,"name":{},"parent":{"457":{},"458":{}}}],["redemptionslistresponse",{"_index":250,"name":{"485":{}},"parent":{"486":{},"487":{},"488":{},"489":{}}}],["redemptionsredeembody",{"_index":237,"name":{"419":{}},"parent":{"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{}}}],["redemptionsredeemresponse",{"_index":238,"name":{"427":{}},"parent":{"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"443":{},"444":{},"446":{},"447":{},"448":{}}}],["redemptionsredeemresponse.__type",{"_index":239,"name":{},"parent":{"442":{},"445":{}}}],["redemptionsredeemstackableorderresponse",{"_index":267,"name":{"532":{}},"parent":{}}],["redemptionsredeemstackableparams",{"_index":263,"name":{"524":{}},"parent":{"525":{},"526":{},"527":{},"528":{},"529":{},"530":{}}}],["redemptionsredeemstackableredemptionresult",{"_index":266,"name":{"531":{}},"parent":{}}],["redemptionsredeemstackableresponse",{"_index":268,"name":{"533":{}},"parent":{"534":{},"535":{},"536":{},"548":{}}}],["redemptionsredeemstackableresponse.__type",{"_index":270,"name":{},"parent":{"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{}}}],["redemptionsrollbackparams",{"_index":255,"name":{"498":{}},"parent":{"499":{},"500":{},"501":{}}}],["redemptionsrollbackpayload",{"_index":258,"name":{"505":{}},"parent":{"506":{}}}],["redemptionsrollbackqueryparams",{"_index":257,"name":{"502":{}},"parent":{"503":{},"504":{}}}],["redemptionsrollbackresponse",{"_index":259,"name":{"507":{}},"parent":{"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{}}}],["redemptionsrollbackresponse.__type",{"_index":261,"name":{},"parent":{"521":{},"522":{}}}],["redemptionsrollbackstackableresponse",{"_index":272,"name":{"549":{}},"parent":{"550":{},"551":{},"552":{},"562":{}}}],["redemptionsrollbackstackableresponse.__type",{"_index":275,"name":{},"parent":{"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{}}}],["referral",{"_index":226,"name":{"404":{},"1791":{}},"parent":{}}],["referral_program",{"_index":306,"name":{"663":{},"911":{}},"parent":{}}],["referred_customers",{"_index":143,"name":{"244":{}},"parent":{}}],["referrer_id",{"_index":451,"name":{"1171":{},"1262":{},"1794":{}},"parent":{}}],["related_object",{"_index":178,"name":{"311":{},"1100":{},"1690":{}},"parent":{}}],["related_object_id",{"_index":271,"name":{"547":{},"945":{},"1415":{},"1466":{}},"parent":{}}],["related_object_ids",{"_index":95,"name":{"175":{}},"parent":{}}],["related_object_total",{"_index":97,"name":{"177":{}},"parent":{}}],["related_object_type",{"_index":96,"name":{"176":{},"439":{},"471":{},"546":{},"946":{},"1416":{},"1467":{}},"parent":{}}],["releasevalidationsession",{"_index":102,"name":{"193":{}},"parent":{}}],["request",{"_index":69,"name":{"122":{}},"parent":{}}],["request_id",{"_index":92,"name":{"172":{}},"parent":{}}],["requestcontroller",{"_index":65,"name":{"117":{}},"parent":{"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{},"133":{}}}],["resource_id",{"_index":93,"name":{"173":{}},"parent":{}}],["resource_type",{"_index":94,"name":{"174":{}},"parent":{}}],["result",{"_index":211,"name":{"379":{},"435":{},"452":{},"467":{},"516":{},"543":{},"558":{},"778":{},"1125":{},"1605":{},"1635":{},"1683":{},"1849":{}},"parent":{}}],["reward",{"_index":188,"name":{"325":{},"367":{},"424":{},"438":{},"519":{},"582":{},"936":{},"1105":{},"1124":{},"1276":{},"1807":{}},"parent":{}}],["reward_id",{"_index":392,"name":{"944":{},"1465":{}},"parent":{}}],["rewardredemptionparams",{"_index":534,"name":{"1494":{}},"parent":{"1495":{},"1496":{},"1497":{}}}],["rewards",{"_index":79,"name":{"134":{}},"parent":{"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{}}}],["rewardsassignmentobject",{"_index":523,"name":{"1463":{}},"parent":{"1464":{},"1465":{},"1466":{},"1467":{},"1468":{},"1469":{},"1473":{},"1474":{},"1475":{}}}],["rewardsassignmentobject.__type",{"_index":524,"name":{},"parent":{"1470":{},"1471":{}}}],["rewardsassignmentobject.__type.__type",{"_index":525,"name":{},"parent":{"1472":{}}}],["rewardscreate",{"_index":519,"name":{"1459":{}},"parent":{}}],["rewardscreateassignment",{"_index":528,"name":{"1484":{}},"parent":{"1485":{},"1486":{},"1487":{}}}],["rewardscreateassignment.__type",{"_index":529,"name":{},"parent":{"1488":{},"1489":{}}}],["rewardscreateassignment.__type.__type",{"_index":530,"name":{},"parent":{"1490":{}}}],["rewardscreateassignmentresponse",{"_index":531,"name":{"1491":{}},"parent":{}}],["rewardscreateresponse",{"_index":515,"name":{"1451":{}},"parent":{}}],["rewardsgetresponse",{"_index":520,"name":{"1460":{}},"parent":{}}],["rewardslistassignmentsparams",{"_index":526,"name":{"1476":{}},"parent":{"1477":{},"1478":{}}}],["rewardslistassignmentsresponse",{"_index":527,"name":{"1479":{}},"parent":{"1480":{},"1481":{},"1482":{},"1483":{}}}],["rewardslistparams",{"_index":508,"name":{"1436":{}},"parent":{"1437":{},"1438":{}}}],["rewardslistresponse",{"_index":516,"name":{"1452":{}},"parent":{"1453":{},"1454":{},"1455":{},"1456":{}}}],["rewardsresponse",{"_index":509,"name":{"1439":{}},"parent":{"1440":{},"1441":{},"1442":{},"1443":{},"1444":{},"1445":{},"1448":{},"1449":{},"1450":{}}}],["rewardsresponse.__type",{"_index":514,"name":{},"parent":{"1446":{},"1447":{}}}],["rewardstype",{"_index":517,"name":{"1457":{}},"parent":{}}],["rewardstyperesponse",{"_index":518,"name":{"1458":{}},"parent":{}}],["rewardsupdate",{"_index":521,"name":{"1461":{}},"parent":{}}],["rewardsupdateassignment",{"_index":532,"name":{"1492":{}},"parent":{}}],["rewardsupdateassignmentresponse",{"_index":533,"name":{"1493":{}},"parent":{}}],["rewardsupdateresponse",{"_index":522,"name":{"1462":{}},"parent":{}}],["rollback",{"_index":63,"name":{"115":{}},"parent":{}}],["rollbacks",{"_index":273,"name":{"550":{}},"parent":{}}],["rollbackstackable",{"_index":64,"name":{"116":{}},"parent":{}}],["rule_id",{"_index":498,"name":{"1403":{},"1414":{}},"parent":{}}],["rules",{"_index":493,"name":{"1386":{},"1395":{}},"parent":{}}],["schema_id",{"_index":418,"name":{"1008":{}},"parent":{}}],["scroll",{"_index":26,"name":{"35":{}},"parent":{}}],["secretkey",{"_index":669,"name":{"1919":{}},"parent":{}}],["segment",{"_index":408,"name":{"983":{},"1009":{}},"parent":{}}],["segments",{"_index":84,"name":{"145":{}},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["segmentscreate",{"_index":582,"name":{"1638":{}},"parent":{"1639":{},"1640":{},"1641":{},"1642":{},"1644":{}}}],["segmentscreate.__type",{"_index":584,"name":{},"parent":{"1643":{}}}],["segmentscreateresponse",{"_index":585,"name":{"1645":{}},"parent":{"1646":{},"1647":{},"1648":{},"1649":{},"1650":{},"1651":{},"1653":{},"1654":{}}}],["segmentscreateresponse.__type",{"_index":586,"name":{},"parent":{"1652":{}}}],["segmentsgetresponse",{"_index":587,"name":{"1655":{}},"parent":{}}],["segmentslistresponse",{"_index":588,"name":{"1656":{}},"parent":{"1657":{},"1658":{},"1659":{},"1660":{}}}],["session",{"_index":207,"name":{"370":{},"426":{},"527":{},"585":{},"615":{},"623":{},"630":{},"770":{}},"parent":{}}],["session_key",{"_index":191,"name":{"330":{}},"parent":{}}],["session_ttl",{"_index":192,"name":{"331":{}},"parent":{}}],["session_ttl_unit",{"_index":193,"name":{"332":{}},"parent":{}}],["session_type",{"_index":190,"name":{"329":{}},"parent":{}}],["setbaseurl",{"_index":76,"name":{"129":{}},"parent":{}}],["setidentity",{"_index":13,"name":{"16":{}},"parent":{}}],["setlastresponseheaders",{"_index":75,"name":{"128":{}},"parent":{}}],["simplecustomer",{"_index":103,"name":{"194":{}},"parent":{"195":{},"196":{},"197":{},"198":{},"199":{},"200":{}}}],["simpleproduct",{"_index":564,"name":{"1580":{}},"parent":{"1581":{},"1582":{},"1583":{}}}],["simplepromotiontier",{"_index":335,"name":{"711":{}},"parent":{"712":{},"713":{},"714":{},"715":{},"716":{},"717":{},"718":{},"719":{},"720":{}}}],["simplerollback",{"_index":262,"name":{"523":{}},"parent":{}}],["simplesku",{"_index":565,"name":{"1584":{}},"parent":{"1585":{},"1586":{},"1587":{}}}],["simplevoucher",{"_index":455,"name":{"1192":{}},"parent":{"1193":{},"1194":{},"1200":{},"1201":{},"1202":{},"1203":{},"1204":{},"1207":{},"1208":{}}}],["simplevoucher.__type",{"_index":456,"name":{},"parent":{"1195":{},"1196":{},"1197":{},"1198":{},"1199":{},"1205":{},"1206":{},"1209":{}}}],["sku",{"_index":556,"name":{"1553":{},"1563":{},"1587":{},"1709":{},"1714":{},"1814":{},"1829":{},"1898":{}},"parent":{}}],["sku_id",{"_index":599,"name":{"1688":{}},"parent":{}}],["skus",{"_index":538,"name":{"1506":{},"1579":{}},"parent":{}}],["source",{"_index":410,"name":{"987":{},"1003":{},"1016":{}},"parent":{}}],["source_id",{"_index":107,"name":{"198":{},"203":{},"252":{},"382":{},"567":{},"575":{},"764":{},"839":{},"1083":{},"1111":{},"1178":{},"1500":{},"1513":{},"1526":{},"1554":{},"1562":{},"1582":{},"1586":{},"1618":{},"1634":{},"1691":{},"1704":{},"1712":{},"1719":{},"1728":{},"1748":{},"1871":{}},"parent":{}}],["source_ids",{"_index":546,"name":{"1533":{}},"parent":{}}],["stackableoptions",{"_index":622,"name":{"1801":{}},"parent":{"1802":{}}}],["stackableredeemableobject",{"_index":624,"name":{"1803":{}},"parent":{}}],["stackableredeemableparams",{"_index":625,"name":{"1804":{}},"parent":{"1805":{},"1806":{},"1807":{},"1808":{}}}],["stackableredeemableresponse",{"_index":637,"name":{"1842":{}},"parent":{"1843":{},"1844":{},"1845":{},"1846":{},"1847":{},"1848":{},"1849":{},"1850":{}}}],["stackableredeemableresponsestatus",{"_index":626,"name":{"1809":{}},"parent":{}}],["stackableredeemableresultdiscount",{"_index":629,"name":{"1816":{}},"parent":{"1817":{},"1818":{},"1819":{},"1820":{},"1821":{},"1822":{},"1823":{},"1824":{},"1825":{},"1826":{},"1827":{},"1828":{},"1829":{},"1830":{},"1831":{}}}],["stackableredeemableresultdiscountunit",{"_index":627,"name":{"1810":{}},"parent":{"1811":{},"1812":{},"1813":{},"1814":{},"1815":{}}}],["stackableredeemableresultgift",{"_index":633,"name":{"1832":{}},"parent":{"1833":{}}}],["stackableredeemableresultloyaltycard",{"_index":634,"name":{"1834":{}},"parent":{"1835":{},"1836":{}}}],["stackableredeemableresultresponse",{"_index":636,"name":{"1837":{}},"parent":{"1838":{},"1839":{},"1840":{},"1841":{}}}],["start_date",{"_index":287,"name":{"616":{},"644":{},"730":{},"796":{},"829":{},"861":{},"892":{},"919":{},"1045":{},"1139":{},"1224":{},"1309":{},"1351":{}},"parent":{}}],["starting_after",{"_index":152,"name":{"273":{},"283":{}},"parent":{}}],["starting_after_id",{"_index":158,"name":{"284":{}},"parent":{}}],["state",{"_index":117,"name":{"211":{},"260":{}},"parent":{}}],["status",{"_index":352,"name":{"767":{},"1674":{},"1720":{},"1731":{},"1749":{},"1843":{}},"parent":{}}],["stock",{"_index":510,"name":{"1442":{}},"parent":{}}],["strict",{"_index":648,"name":{"1872":{}},"parent":{}}],["subtotal_amount",{"_index":603,"name":{"1700":{}},"parent":{}}],["suffix",{"_index":378,"name":{"881":{},"1199":{},"1299":{},"1364":{}},"parent":{}}],["summary",{"_index":122,"name":{"216":{}},"parent":{}}],["tiers",{"_index":58,"name":{"96":{},"747":{},"802":{},"833":{}},"parent":{}}],["total",{"_index":154,"name":{"276":{},"289":{},"307":{},"337":{},"487":{},"492":{},"649":{},"677":{},"702":{},"811":{},"856":{},"897":{},"932":{},"996":{},"1070":{},"1090":{},"1096":{},"1185":{},"1237":{},"1246":{},"1270":{},"1287":{},"1340":{},"1425":{},"1433":{},"1454":{},"1480":{},"1509":{},"1549":{},"1578":{},"1613":{},"1658":{},"1763":{},"1778":{},"1784":{},"1878":{}},"parent":{}}],["total_amount",{"_index":137,"name":{"236":{},"350":{},"607":{},"1739":{}},"parent":{}}],["total_applied_discount_amount",{"_index":283,"name":{"609":{},"1740":{}},"parent":{}}],["total_count",{"_index":138,"name":{"237":{}},"parent":{}}],["total_discount_amount",{"_index":203,"name":{"349":{},"606":{},"1736":{}},"parent":{}}],["total_failed",{"_index":125,"name":{"221":{}},"parent":{}}],["total_redeemed",{"_index":123,"name":{"220":{}},"parent":{}}],["total_rollback_failed",{"_index":128,"name":{"224":{}},"parent":{}}],["total_rollback_succeeded",{"_index":129,"name":{"225":{}},"parent":{}}],["total_rolled_back",{"_index":127,"name":{"223":{}},"parent":{}}],["total_succeeded",{"_index":126,"name":{"222":{}},"parent":{}}],["track",{"_index":17,"name":{"20":{}},"parent":{}}],["tracking_id",{"_index":184,"name":{"320":{},"352":{},"363":{},"376":{},"420":{},"432":{},"464":{},"500":{},"504":{},"512":{},"541":{},"556":{},"618":{},"629":{},"712":{},"776":{},"850":{},"1126":{},"1631":{}},"parent":{}}],["trackingid",{"_index":677,"name":{"1930":{}},"parent":{}}],["transfers",{"_index":635,"name":{"1836":{}},"parent":{}}],["ttl",{"_index":642,"name":{"1858":{},"1863":{}},"parent":{}}],["ttl_unit",{"_index":643,"name":{"1859":{},"1864":{}},"parent":{}}],["type",{"_index":177,"name":{"309":{},"313":{},"407":{},"639":{},"794":{},"863":{},"867":{},"887":{},"923":{},"967":{},"970":{},"1040":{},"1098":{},"1102":{},"1134":{},"1200":{},"1215":{},"1348":{},"1589":{},"1640":{},"1653":{},"1800":{},"1817":{},"1857":{},"1862":{},"1892":{},"1900":{},"1905":{},"1911":{}},"parent":{}}],["unit",{"_index":654,"name":{"1884":{}},"parent":{}}],["unit_off",{"_index":567,"name":{"1590":{},"1812":{},"1826":{},"1893":{}},"parent":{}}],["unit_off_formula",{"_index":568,"name":{"1591":{},"1827":{},"1894":{}},"parent":{}}],["unit_type",{"_index":628,"name":{"1813":{},"1828":{},"1896":{}},"parent":{}}],["units",{"_index":632,"name":{"1831":{}},"parent":{}}],["update",{"_index":5,"name":{"7":{},"36":{},"57":{},"77":{},"84":{},"106":{},"139":{},"155":{},"185":{}},"parent":{}}],["updateassignment",{"_index":82,"name":{"143":{}},"parent":{}}],["updateconsents",{"_index":21,"name":{"24":{},"38":{}},"parent":{}}],["updated_at",{"_index":395,"name":{"953":{},"980":{},"1030":{},"1067":{},"1174":{},"1264":{},"1330":{},"1399":{},"1418":{},"1449":{},"1474":{},"1567":{},"1730":{},"1772":{}},"parent":{}}],["updateearningrule",{"_index":39,"name":{"65":{}},"parent":{}}],["updaterewardassignment",{"_index":35,"name":{"61":{}},"parent":{}}],["updatesku",{"_index":54,"name":{"91":{}},"parent":{}}],["url",{"_index":446,"name":{"1150":{},"1156":{},"1165":{},"1169":{},"1238":{},"1247":{},"1256":{},"1260":{},"1685":{}},"parent":{}}],["use_voucher_metadata_schema",{"_index":307,"name":{"664":{},"823":{},"912":{}},"parent":{}}],["valid",{"_index":198,"name":{"342":{},"593":{},"628":{},"714":{},"848":{},"1402":{}},"parent":{}}],["validate",{"_index":14,"name":{"17":{},"98":{},"159":{},"165":{}},"parent":{}}],["validatestackable",{"_index":22,"name":{"25":{},"166":{}},"parent":{}}],["validatevoucher",{"_index":87,"name":{"164":{}},"parent":{}}],["validation_rule_assignments",{"_index":340,"name":{"733":{}},"parent":{}}],["validation_rule_id",{"_index":407,"name":{"981":{},"1001":{},"1015":{}},"parent":{}}],["validation_rules_assignments",{"_index":297,"name":{"645":{},"807":{},"893":{},"1182":{},"1267":{}},"parent":{}}],["validationrules",{"_index":85,"name":{"151":{}},"parent":{"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{}}}],["validationrulescreate",{"_index":490,"name":{"1381":{}},"parent":{"1382":{},"1383":{},"1384":{},"1386":{},"1387":{}}}],["validationrulescreate.__type",{"_index":492,"name":{},"parent":{"1385":{},"1388":{}}}],["validationrulescreateassignment",{"_index":502,"name":{"1408":{}},"parent":{"1409":{},"1410":{},"1411":{}}}],["validationrulescreateassignmentresponse",{"_index":503,"name":{"1412":{}},"parent":{"1413":{},"1414":{},"1415":{},"1416":{},"1417":{},"1418":{},"1419":{}}}],["validationrulescreateresponse",{"_index":495,"name":{"1389":{}},"parent":{"1390":{},"1391":{},"1392":{},"1393":{},"1395":{},"1396":{},"1398":{},"1399":{},"1400":{}}}],["validationrulescreateresponse.__type",{"_index":496,"name":{},"parent":{"1394":{},"1397":{}}}],["validationrulesgetresponse",{"_index":499,"name":{"1405":{}},"parent":{}}],["validationruleslistassignmentsparams",{"_index":506,"name":{"1428":{}},"parent":{"1429":{},"1430":{}}}],["validationruleslistassignmentsresponse",{"_index":507,"name":{"1431":{}},"parent":{"1432":{},"1433":{},"1434":{},"1435":{}}}],["validationruleslistparams",{"_index":504,"name":{"1420":{}},"parent":{"1421":{},"1422":{}}}],["validationruleslistresponse",{"_index":505,"name":{"1423":{}},"parent":{"1424":{},"1425":{},"1426":{},"1427":{}}}],["validationrulesupdate",{"_index":500,"name":{"1406":{}},"parent":{}}],["validationrulesupdateresponse",{"_index":501,"name":{"1407":{}},"parent":{}}],["validationrulesvalidateresponse",{"_index":497,"name":{"1401":{}},"parent":{"1402":{},"1403":{},"1404":{}}}],["validations",{"_index":86,"name":{"162":{}},"parent":{"163":{},"164":{},"165":{},"166":{}}}],["validationsessionparams",{"_index":641,"name":{"1855":{}},"parent":{"1856":{},"1857":{},"1858":{},"1859":{}}}],["validationsessionreleaseparams",{"_index":645,"name":{"1865":{}},"parent":{"1866":{}}}],["validationsessionresponse",{"_index":644,"name":{"1860":{}},"parent":{"1861":{},"1862":{},"1863":{},"1864":{}}}],["validationsessionttlunit",{"_index":640,"name":{"1854":{}},"parent":{}}],["validationsessiontype",{"_index":639,"name":{"1853":{}},"parent":{}}],["validationsvalidatecode",{"_index":292,"name":{"633":{}},"parent":{}}],["validationsvalidatecontext",{"_index":293,"name":{"634":{}},"parent":{}}],["validationsvalidatestackableparams",{"_index":290,"name":{"620":{}},"parent":{"621":{},"622":{},"623":{},"624":{},"625":{},"626":{}}}],["validationsvalidatevoucherparams",{"_index":276,"name":{"563":{}},"parent":{"564":{},"565":{},"572":{},"573":{},"579":{},"580":{},"582":{},"583":{},"585":{}}}],["validationsvalidatevoucherparams.__type",{"_index":277,"name":{},"parent":{"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"574":{},"575":{},"576":{},"577":{},"578":{},"581":{},"584":{}}}],["validationsvalidatevoucherresponse",{"_index":279,"name":{"586":{}},"parent":{"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"599":{},"600":{},"602":{},"603":{},"615":{},"616":{},"617":{},"618":{},"619":{}}}],["validationsvalidatevoucherresponse.__type",{"_index":281,"name":{},"parent":{"597":{},"598":{},"601":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{}}}],["validationvalidatestackableresponse",{"_index":291,"name":{"627":{}},"parent":{"628":{},"629":{},"630":{},"631":{},"632":{}}}],["validity_day_of_week",{"_index":303,"name":{"657":{},"818":{},"905":{},"1051":{},"1145":{},"1230":{}},"parent":{}}],["validity_timeframe",{"_index":300,"name":{"653":{},"814":{},"901":{},"1047":{},"1141":{},"1226":{}},"parent":{}}],["voucher",{"_index":212,"name":{"380":{},"385":{},"436":{},"472":{},"517":{},"662":{},"865":{},"910":{},"1074":{},"1127":{},"1409":{},"1604":{},"1623":{},"1637":{}},"parent":{}}],["voucher_type",{"_index":576,"name":{"1606":{}},"parent":{}}],["voucherdiscount",{"_index":566,"name":{"1588":{}},"parent":{"1589":{},"1590":{},"1591":{},"1592":{},"1593":{},"1594":{},"1595":{},"1596":{},"1597":{}}}],["voucherifyclientside",{"_index":673,"name":{"1925":{}},"parent":{}}],["voucherifyclientsideoptions",{"_index":674,"name":{"1926":{}},"parent":{"1927":{},"1928":{},"1929":{},"1930":{},"1931":{},"1932":{},"1933":{}}}],["voucherifyerror",{"_index":88,"name":{"167":{}},"parent":{"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{}}}],["voucherifyserverside",{"_index":665,"name":{"1915":{}},"parent":{}}],["voucherifyserversideoptions",{"_index":666,"name":{"1916":{}},"parent":{"1917":{},"1918":{},"1919":{},"1920":{},"1921":{},"1922":{},"1923":{},"1924":{}}}],["vouchers",{"_index":99,"name":{"179":{},"339":{},"1072":{},"1342":{}},"parent":{"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{}}}],["vouchers_count",{"_index":309,"name":{"666":{},"688":{},"864":{},"914":{}},"parent":{}}],["vouchers_generation_status",{"_index":304,"name":{"660":{},"821":{},"908":{}},"parent":{}}],["vouchersbulkupdate",{"_index":481,"name":{"1368":{}},"parent":{}}],["vouchersbulkupdatemetadata",{"_index":482,"name":{"1369":{}},"parent":{"1370":{},"1371":{}}}],["vouchersbulkupdatemetadataresponse",{"_index":486,"name":{"1375":{}},"parent":{"1376":{}}}],["vouchersbulkupdatemetadataresponse.__type",{"_index":487,"name":{},"parent":{"1377":{}}}],["vouchersbulkupdateobject",{"_index":480,"name":{"1365":{}},"parent":{"1366":{},"1367":{}}}],["vouchersbulkupdateresponse",{"_index":488,"name":{"1378":{}},"parent":{"1379":{}}}],["vouchersbulkupdateresponse.__type",{"_index":489,"name":{},"parent":{"1380":{}}}],["voucherscreate",{"_index":466,"name":{"1303":{}},"parent":{}}],["voucherscreateparameters",{"_index":464,"name":{"1290":{}},"parent":{"1291":{},"1292":{},"1293":{},"1294":{},"1300":{},"1301":{}}}],["voucherscreateparameters.__type",{"_index":465,"name":{},"parent":{"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1302":{}}}],["voucherscreateresponse",{"_index":467,"name":{"1304":{}},"parent":{}}],["vouchersdeleteparams",{"_index":472,"name":{"1318":{}},"parent":{"1319":{}}}],["vouchersdisableresponse",{"_index":477,"name":{"1344":{}},"parent":{}}],["vouchersenableresponse",{"_index":476,"name":{"1343":{}},"parent":{}}],["vouchersgetresponse",{"_index":468,"name":{"1305":{}},"parent":{}}],["vouchersimport",{"_index":478,"name":{"1345":{}},"parent":{"1346":{},"1347":{},"1348":{},"1349":{},"1350":{},"1351":{},"1352":{},"1353":{},"1354":{},"1355":{},"1356":{},"1358":{},"1359":{}}}],["vouchersimport.__type",{"_index":479,"name":{},"parent":{"1357":{},"1360":{},"1361":{},"1362":{},"1363":{},"1364":{}}}],["vouchersimportresponse",{"_index":484,"name":{"1372":{}},"parent":{"1373":{}}}],["vouchersimportresponse.__type",{"_index":485,"name":{},"parent":{"1374":{}}}],["voucherslistparams",{"_index":473,"name":{"1320":{}},"parent":{"1321":{},"1322":{},"1323":{},"1324":{},"1325":{},"1326":{},"1327":{},"1330":{},"1331":{},"1334":{},"1335":{},"1336":{}}}],["voucherslistparams.__type",{"_index":474,"name":{},"parent":{"1328":{},"1329":{},"1332":{},"1333":{},"1337":{}}}],["voucherslistresponse",{"_index":475,"name":{"1338":{}},"parent":{"1339":{},"1340":{},"1341":{},"1342":{}}}],["vouchersqualificationexaminebody",{"_index":460,"name":{"1273":{}},"parent":{"1274":{},"1275":{},"1276":{},"1277":{},"1280":{}}}],["vouchersqualificationexaminebody.__type",{"_index":461,"name":{},"parent":{"1278":{},"1279":{}}}],["vouchersqualificationexamineparams",{"_index":462,"name":{"1281":{}},"parent":{"1282":{},"1283":{},"1284":{}}}],["vouchersqualificationexamineresponse",{"_index":463,"name":{"1285":{}},"parent":{"1286":{},"1287":{},"1288":{},"1289":{}}}],["vouchersresponse",{"_index":457,"name":{"1210":{}},"parent":{"1211":{},"1212":{},"1213":{},"1214":{},"1215":{},"1216":{},"1217":{},"1218":{},"1221":{},"1222":{},"1224":{},"1225":{},"1226":{},"1227":{},"1230":{},"1231":{},"1232":{},"1239":{},"1240":{},"1248":{},"1249":{},"1250":{},"1251":{},"1252":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{}}}],["vouchersresponse.__type",{"_index":458,"name":{},"parent":{"1219":{},"1220":{},"1223":{},"1228":{},"1229":{},"1233":{},"1234":{},"1235":{},"1236":{},"1237":{},"1238":{},"1241":{},"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1253":{},"1254":{},"1257":{},"1258":{},"1269":{},"1270":{},"1271":{},"1272":{}}}],["vouchersresponse.__type.__type",{"_index":459,"name":{},"parent":{"1255":{},"1256":{},"1259":{},"1260":{}}}],["vouchersupdate",{"_index":469,"name":{"1306":{}},"parent":{"1307":{},"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{}}}],["vouchersupdate.__type",{"_index":470,"name":{},"parent":{"1316":{}}}],["vouchersupdateresponse",{"_index":471,"name":{"1317":{}},"parent":{}}],["vouchertype",{"_index":454,"name":{"1191":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/classes/Validations.html b/docs/classes/Validations.html index 4ce5c40f2..8c3d2dfcf 100644 --- a/docs/classes/Validations.html +++ b/docs/classes/Validations.html @@ -126,7 +126,7 @@

    Methods

    validate

    • @@ -141,7 +141,7 @@
      code: stringValidationsValidateVoucherParams = {}
    -

    Returns Promise<PromotionsValidateResponse> | Promise<ValidationsValidateVoucherResponse>

    +

    Returns Promise<PromotionsValidateResponse> | Promise<ValidationsValidateVoucherResponse>

    @@ -176,7 +176,7 @@

    Returns Promise

    validateVoucher

    -

    Returns Promise<ValidationsValidateVoucherResponse>

    +

    Returns Promise<ValidationsValidateVoucherResponse>

    diff --git a/docs/classes/VoucherifyError.html b/docs/classes/VoucherifyError.html index 33eac7c01..feaff5daf 100644 --- a/docs/classes/VoucherifyError.html +++ b/docs/classes/VoucherifyError.html @@ -131,7 +131,7 @@

    Constructors

    constructor

      -
    • new VoucherifyError(statusCode: number, body?: unknown, axiosError?: AxiosError<unknown, any>): VoucherifyError
    • +
    • new VoucherifyError(statusCode: number, body?: unknown, axiosError?: AxiosError<any>): VoucherifyError
    • @@ -147,7 +147,7 @@
      statusCode: number
      Optional body: unknown
    • -
      Optional axiosError: AxiosError<unknown, any>
      +
      Optional axiosError: AxiosError<any>

    Returns VoucherifyError

    @@ -160,7 +160,7 @@

    Properties

    Optional cause

    -
    cause: AxiosError<unknown, any>
    +
    cause: AxiosError<any>
    diff --git a/docs/docs.json b/docs/docs.json index df1e6e4fc..a8e9c9769 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -7,14 +7,14 @@ "originalName": "", "children": [ { - "id": 2504, + "id": 2457, "name": "DiscountVouchersTypesEnum", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2505, + "id": 2458, "name": "AMOUNT", "kind": 16, "kindString": "Enumeration member", @@ -22,7 +22,7 @@ "defaultValue": "\"AMOUNT\"" }, { - "id": 2508, + "id": 2461, "name": "FIXED", "kind": 16, "kindString": "Enumeration member", @@ -30,7 +30,7 @@ "defaultValue": "\"FIXED\"" }, { - "id": 2506, + "id": 2459, "name": "PERCENT", "kind": 16, "kindString": "Enumeration member", @@ -38,7 +38,7 @@ "defaultValue": "\"PERCENT\"" }, { - "id": 2507, + "id": 2460, "name": "UNIT", "kind": 16, "kindString": "Enumeration member", @@ -51,10 +51,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2505, - 2508, - 2506, - 2507 + 2458, + 2461, + 2459, + 2460 ] } ] @@ -145,7 +145,7 @@ "flags": {}, "type": { "type": "reference", - "id": 698, + "id": 697, "name": "BalanceCreateParams" } } @@ -155,7 +155,7 @@ "typeArguments": [ { "type": "reference", - "id": 700, + "id": 699, "name": "BalanceCreateResponse" } ], @@ -297,7 +297,7 @@ "typeArguments": [ { "type": "reference", - "id": 1935, + "id": 1892, "name": "VouchersImport" } ], @@ -338,7 +338,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" }, { @@ -468,7 +468,7 @@ "typeArguments": [ { "type": "reference", - "id": 1935, + "id": 1892, "name": "VouchersImport" } ], @@ -512,7 +512,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1168, + "id": 1125, "name": "CampaignsAddVoucherParams" }, "defaultValue": "{}" @@ -539,7 +539,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" }, { @@ -654,7 +654,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1161, + "id": 1118, "name": "CampaignsCreateCampaign" } } @@ -664,7 +664,7 @@ "typeArguments": [ { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" } ], @@ -716,7 +716,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1165, + "id": 1122, "name": "CampaignsDeleteParams" }, "defaultValue": "{}" @@ -776,7 +776,7 @@ "typeArguments": [ { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" } ], @@ -833,7 +833,7 @@ "typeArguments": [ { "type": "reference", - "id": 1935, + "id": 1892, "name": "VouchersImport" }, { @@ -872,7 +872,7 @@ "typeArguments": [ { "type": "reference", - "id": 1188, + "id": 1145, "name": "CampaignsVouchersImportResponse" } ], @@ -913,7 +913,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1174, + "id": 1131, "name": "CampaignsListParams" }, "defaultValue": "{}" @@ -924,7 +924,7 @@ "typeArguments": [ { "type": "reference", - "id": 1183, + "id": 1140, "name": "CampaignsListResponse" } ], @@ -979,7 +979,7 @@ "typeArguments": [ { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" }, { @@ -1017,7 +1017,7 @@ "typeArguments": [ { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" } ], @@ -1168,7 +1168,7 @@ "typeArguments": [ { "type": "reference", - "id": 688, + "id": 687, "name": "CustomersCreateResponse" } ], @@ -1205,7 +1205,7 @@ "typeArguments": [ { "type": "reference", - "id": 2393, + "id": 2350, "name": "ConsentsListResponse" } ], @@ -1246,7 +1246,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1908, + "id": 1865, "name": "VouchersListParams" }, "defaultValue": "{}" @@ -1257,7 +1257,7 @@ "typeArguments": [ { "type": "reference", - "id": 730, + "id": 729, "name": "ClientSideListVouchersResponse" } ], @@ -1309,7 +1309,7 @@ "flags": {}, "type": { "type": "reference", - "id": 776, + "id": 775, "name": "ClientSidePublishPayload" }, "defaultValue": "{}" @@ -1322,7 +1322,7 @@ "flags": {}, "type": { "type": "reference", - "id": 783, + "id": 782, "name": "ClientSidePublishQueryParams" }, "defaultValue": "{}" @@ -1333,7 +1333,7 @@ "typeArguments": [ { "type": "reference", - "id": 789, + "id": 788, "name": "ClientSidePublishResponse" } ], @@ -1385,7 +1385,7 @@ "flags": {}, "type": { "type": "reference", - "id": 757, + "id": 756, "name": "ClientSideRedeemPayload" }, "defaultValue": "{}" @@ -1396,7 +1396,7 @@ "typeArguments": [ { "type": "reference", - "id": 766, + "id": 765, "name": "ClientSideRedeemResponse" } ], @@ -1437,7 +1437,7 @@ "flags": {}, "type": { "type": "reference", - "id": 949, + "id": 948, "name": "RedemptionsRedeemStackableParams" } } @@ -1447,7 +1447,7 @@ "typeArguments": [ { "type": "reference", - "id": 970, + "id": 969, "name": "RedemptionsRedeemStackableResponse" } ], @@ -1573,7 +1573,7 @@ }, "type": { "type": "reference", - "id": 794, + "id": 793, "name": "ClientSideTrackReferral" } }, @@ -1587,7 +1587,7 @@ }, "type": { "type": "reference", - "id": 792, + "id": 791, "name": "ClientSideTrackLoyalty" } } @@ -1597,7 +1597,7 @@ "typeArguments": [ { "type": "reference", - "id": 802, + "id": 801, "name": "ClientSideTrackResponse" } ], @@ -1715,7 +1715,7 @@ }, { "type": "reference", - "id": 713, + "id": 712, "name": "ClientSideValidateParams" } ] @@ -1727,7 +1727,7 @@ "typeArguments": [ { "type": "reference", - "id": 735, + "id": 734, "name": "ClientSideValidateResponse" } ], @@ -1768,7 +1768,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1099, + "id": 1056, "name": "ValidationsValidateStackableParams" } } @@ -1778,7 +1778,7 @@ "typeArguments": [ { "type": "reference", - "id": 1106, + "id": 1063, "name": "ValidationValidateStackableResponse" } ], @@ -1885,7 +1885,7 @@ "typeArguments": [ { "type": "reference", - "id": 2393, + "id": 2350, "name": "ConsentsListResponse" } ], @@ -1996,7 +1996,7 @@ "typeArguments": [ { "type": "reference", - "id": 688, + "id": 687, "name": "CustomersCreateResponse" } ], @@ -2095,7 +2095,7 @@ "typeArguments": [ { "type": "reference", - "id": 688, + "id": 687, "name": "CustomersCreateResponse" } ], @@ -2136,7 +2136,7 @@ "flags": {}, "type": { "type": "reference", - "id": 661, + "id": 660, "name": "CustomersCommonListRequest" } } @@ -2146,7 +2146,7 @@ "typeArguments": [ { "type": "reference", - "id": 669, + "id": 668, "name": "CustomersCommonListResponse" } ], @@ -2200,7 +2200,7 @@ }, "type": { "type": "reference", - "id": 675, + "id": 674, "name": "CustomerActivitiesListQueryParams" } } @@ -2210,7 +2210,7 @@ "typeArguments": [ { "type": "reference", - "id": 682, + "id": 681, "name": "CustomerActivitiesListResponse" } ], @@ -2247,7 +2247,7 @@ "flags": {}, "type": { "type": "reference", - "id": 661, + "id": 660, "name": "CustomersCommonListRequest" } } @@ -2307,7 +2307,7 @@ "flags": {}, "type": { "type": "reference", - "id": 695, + "id": 694, "name": "CustomersUpdateParams" } } @@ -2317,7 +2317,7 @@ "typeArguments": [ { "type": "reference", - "id": 688, + "id": 687, "name": "CustomersCreateResponse" } ], @@ -2606,7 +2606,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2406, + "id": 2363, "name": "EventsParams" } } @@ -2616,7 +2616,7 @@ "typeArguments": [ { "type": "reference", - "id": 2417, + "id": 2374, "name": "EventsResponse" } ], @@ -2717,7 +2717,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2276, + "id": 2233, "name": "ExportResource" } } @@ -2727,7 +2727,7 @@ "typeArguments": [ { "type": "reference", - "id": 2287, + "id": 2244, "name": "ExportsCreateResponse" } ], @@ -2826,7 +2826,7 @@ "typeArguments": [ { "type": "reference", - "id": 2287, + "id": 2244, "name": "ExportsCreateResponse" } ], @@ -2951,7 +2951,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1653, + "id": 1610, "name": "LoyaltiesAddPoints" } } @@ -2961,7 +2961,7 @@ "typeArguments": [ { "type": "reference", - "id": 1655, + "id": 1612, "name": "LoyaltiesAddPointsResponse" } ], @@ -3002,7 +3002,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1414, + "id": 1371, "name": "LoyaltiesCreateCampaign" } } @@ -3012,7 +3012,7 @@ "typeArguments": [ { "type": "reference", - "id": 1438, + "id": 1395, "name": "LoyaltiesCreateCampaignResponse" } ], @@ -3066,7 +3066,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1554, + "id": 1511, "name": "LoyaltiesCreateEarningRule" } } @@ -3079,7 +3079,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1532, + "id": 1489, "name": "LoyaltiesEarningRulesResponse" } } @@ -3132,7 +3132,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1628, + "id": 1585, "name": "LoyaltiesCreateMember" } } @@ -3142,7 +3142,7 @@ "typeArguments": [ { "type": "reference", - "id": 1589, + "id": 1546, "name": "LoyaltiesVoucherResponse" } ], @@ -3196,7 +3196,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1490, + "id": 1447, "name": "LoyaltiesCreateRewardAssignments" } } @@ -3209,7 +3209,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1497, + "id": 1454, "name": "LoyaltiesCreateRewardAssignmentResponse" } } @@ -3264,7 +3264,7 @@ }, "type": { "type": "reference", - "id": 1480, + "id": 1437, "name": "LoyaltiesDeleteCampaignParams" } } @@ -3443,7 +3443,7 @@ "typeArguments": [ { "type": "reference", - "id": 1438, + "id": 1395, "name": "LoyaltiesCreateCampaignResponse" } ], @@ -3504,7 +3504,7 @@ "typeArguments": [ { "type": "reference", - "id": 1589, + "id": 1546, "name": "LoyaltiesVoucherResponse" } ], @@ -3565,7 +3565,7 @@ "typeArguments": [ { "type": "reference", - "id": 1642, + "id": 1599, "name": "LoyaltiesGetMemberActivitiesResponse" } ], @@ -3606,7 +3606,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1406, + "id": 1363, "name": "LoyaltiesListParams" }, "defaultValue": "{}" @@ -3617,7 +3617,7 @@ "typeArguments": [ { "type": "reference", - "id": 1409, + "id": 1366, "name": "LoyaltiesListResponse" } ], @@ -3669,7 +3669,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1518, + "id": 1475, "name": "LoyaltiesListEarningRulesParams" }, "defaultValue": "{}" @@ -3680,7 +3680,7 @@ "typeArguments": [ { "type": "reference", - "id": 1549, + "id": 1506, "name": "LoyaltiesListEarningRulesResponse" } ], @@ -3734,7 +3734,7 @@ }, "type": { "type": "reference", - "id": 1578, + "id": 1535, "name": "LoyaltiesListMembersParams" } } @@ -3744,7 +3744,7 @@ "typeArguments": [ { "type": "reference", - "id": 1623, + "id": 1580, "name": "LoyaltiesListMembersResponse" } ], @@ -3796,7 +3796,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1482, + "id": 1439, "name": "LoyaltiesListRewardAssignmentsParams" }, "defaultValue": "{}" @@ -3807,7 +3807,7 @@ "typeArguments": [ { "type": "reference", - "id": 1485, + "id": 1442, "name": "LoyaltiesListRewardAssignmentsResponse" } ], @@ -3870,7 +3870,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1665, + "id": 1622, "name": "LoyaltiesRedeemRewardParams" } } @@ -3880,7 +3880,7 @@ "typeArguments": [ { "type": "reference", - "id": 1677, + "id": 1634, "name": "LoyaltiesRedeemRewardResponse" } ], @@ -3921,7 +3921,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1472, + "id": 1429, "name": "LoyaltiesUpdateCampaign" } } @@ -3931,7 +3931,7 @@ "typeArguments": [ { "type": "reference", - "id": 1438, + "id": 1395, "name": "LoyaltiesCreateCampaignResponse" } ], @@ -3983,7 +3983,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1568, + "id": 1525, "name": "LoyaltiesUpdateEarningRule" } } @@ -3993,7 +3993,7 @@ "typeArguments": [ { "type": "reference", - "id": 1532, + "id": 1489, "name": "LoyaltiesEarningRulesResponse" } ], @@ -4045,7 +4045,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1510, + "id": 1467, "name": "LoyaltiesUpdateRewardAssignment" } } @@ -4055,7 +4055,7 @@ "typeArguments": [ { "type": "reference", - "id": 1497, + "id": 1454, "name": "LoyaltiesCreateRewardAssignmentResponse" } ], @@ -4174,7 +4174,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2294, "name": "OrdersCreate" } } @@ -4184,7 +4184,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } ], @@ -4234,7 +4234,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } ], @@ -4277,7 +4277,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2337, + "id": 2294, "name": "OrdersCreate" } } @@ -4328,7 +4328,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2377, + "id": 2334, "name": "OrdersListParams" }, "defaultValue": "{}" @@ -4339,7 +4339,7 @@ "typeArguments": [ { "type": "reference", - "id": 2380, + "id": 2337, "name": "OrdersListResponse" } ], @@ -4380,7 +4380,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2365, + "id": 2322, "name": "OrdersUpdate" } } @@ -4390,7 +4390,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } ], @@ -4495,7 +4495,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2137, + "id": 2094, "name": "ProductsBulkUpdate" } } @@ -4505,7 +4505,7 @@ "typeArguments": [ { "type": "reference", - "id": 2138, + "id": 2095, "name": "ProductsBulkUpdateResponse" } ], @@ -4546,7 +4546,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2134, + "id": 2091, "name": "ProductsBulkUpdateMetadata" } } @@ -4556,7 +4556,7 @@ "typeArguments": [ { "type": "reference", - "id": 2141, + "id": 2098, "name": "ProductsBulkUpdateMetadataResponse" } ], @@ -4597,7 +4597,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2100, + "id": 2057, "name": "ProductsCreate" } } @@ -4607,7 +4607,7 @@ "typeArguments": [ { "type": "reference", - "id": 2113, + "id": 2070, "name": "ProductsCreateResponse" } ], @@ -4659,7 +4659,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2154, + "id": 2111, "name": "ProductsCreateSku" } } @@ -4669,7 +4669,7 @@ "typeArguments": [ { "type": "reference", - "id": 2162, + "id": 2119, "name": "ProductsCreateSkuResponse" } ], @@ -4723,7 +4723,7 @@ }, "type": { "type": "reference", - "id": 2144, + "id": 2101, "name": "ProductsDeleteParams" } } @@ -4797,7 +4797,7 @@ }, "type": { "type": "reference", - "id": 2179, + "id": 2136, "name": "ProductsDeleteSkuParams" } } @@ -4856,7 +4856,7 @@ "typeArguments": [ { "type": "reference", - "id": 2123, + "id": 2080, "name": "ProductsGetResponse" } ], @@ -4906,7 +4906,7 @@ "typeArguments": [ { "type": "reference", - "id": 2162, + "id": 2119, "name": "ProductsCreateSkuResponse" } ], @@ -4949,7 +4949,7 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2103, "name": "ProductsListParams" } } @@ -4959,7 +4959,7 @@ "typeArguments": [ { "type": "reference", - "id": 2149, + "id": 2106, "name": "ProductsListResponse" } ], @@ -5009,7 +5009,7 @@ "typeArguments": [ { "type": "reference", - "id": 2181, + "id": 2138, "name": "ProductsListSkus" } ], @@ -5050,7 +5050,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2124, + "id": 2081, "name": "ProductsUpdate" } } @@ -5060,7 +5060,7 @@ "typeArguments": [ { "type": "reference", - "id": 2113, + "id": 2070, "name": "ProductsCreateResponse" } ], @@ -5112,7 +5112,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2174, + "id": 2131, "name": "ProductsUpdateSku" } } @@ -5122,7 +5122,7 @@ "typeArguments": [ { "type": "reference", - "id": 2162, + "id": 2119, "name": "ProductsCreateSkuResponse" } ], @@ -5245,7 +5245,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1234, + "id": 1191, "name": "PromotionTiersCreateParams" } } @@ -5255,7 +5255,7 @@ "typeArguments": [ { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" } ], @@ -5354,7 +5354,7 @@ "typeArguments": [ { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" } ], @@ -5404,7 +5404,7 @@ "typeArguments": [ { "type": "reference", - "id": 1227, + "id": 1184, "name": "PromotionTiersListAllResponse" } ], @@ -5445,7 +5445,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1223, + "id": 1180, "name": "PromotionTiersListAllParams" }, "defaultValue": "{}" @@ -5456,7 +5456,7 @@ "typeArguments": [ { "type": "reference", - "id": 1227, + "id": 1184, "name": "PromotionTiersListAllResponse" } ], @@ -5508,7 +5508,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1242, + "id": 1199, "name": "PromotionTiersRedeemParams" } } @@ -5518,7 +5518,7 @@ "typeArguments": [ { "type": "reference", - "id": 1256, + "id": 1213, "name": "PromotionTiersRedeemResponse" } ], @@ -5559,7 +5559,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1304, + "id": 1261, "name": "PromotionTiersUpdateParams" } } @@ -5569,7 +5569,7 @@ "typeArguments": [ { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" } ], @@ -5702,7 +5702,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1344, + "id": 1301, "name": "PromotionsCreate" } } @@ -5712,7 +5712,7 @@ "typeArguments": [ { "type": "reference", - "id": 1308, + "id": 1265, "name": "PromotionsCreateResponse" } ], @@ -5753,7 +5753,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1359, + "id": 1316, "name": "PromotionsValidateParams" } }, @@ -5767,7 +5767,7 @@ }, "type": { "type": "reference", - "id": 1372, + "id": 1329, "name": "PromotionsValidateQueryParams" } } @@ -5777,7 +5777,7 @@ "typeArguments": [ { "type": "reference", - "id": 1375, + "id": 1332, "name": "PromotionsValidateResponse" } ], @@ -5895,7 +5895,7 @@ "typeArguments": [ { "type": "reference", - "id": 861, + "id": 860, "name": "Redemption" } ], @@ -5945,7 +5945,7 @@ "typeArguments": [ { "type": "reference", - "id": 896, + "id": 895, "name": "RedemptionsGetForVoucherResponse" } ], @@ -5986,7 +5986,7 @@ "flags": {}, "type": { "type": "reference", - "id": 851, + "id": 850, "name": "RedemptionsListParams" }, "defaultValue": "{}" @@ -5997,7 +5997,7 @@ "typeArguments": [ { "type": "reference", - "id": 891, + "id": 890, "name": "RedemptionsListResponse" } ], @@ -6049,7 +6049,7 @@ "flags": {}, "type": { "type": "reference", - "id": 818, + "id": 817, "name": "RedemptionsRedeemBody" }, "defaultValue": "{}" @@ -6060,7 +6060,7 @@ "typeArguments": [ { "type": "reference", - "id": 829, + "id": 828, "name": "RedemptionsRedeemResponse" } ], @@ -6101,7 +6101,7 @@ "flags": {}, "type": { "type": "reference", - "id": 949, + "id": 948, "name": "RedemptionsRedeemStackableParams" } } @@ -6111,7 +6111,7 @@ "typeArguments": [ { "type": "reference", - "id": 970, + "id": 969, "name": "RedemptionsRedeemStackableResponse" } ], @@ -6165,7 +6165,7 @@ }, "type": { "type": "reference", - "id": 904, + "id": 903, "name": "RedemptionsRollbackParams" } } @@ -6175,7 +6175,7 @@ "typeArguments": [ { "type": "reference", - "id": 917, + "id": 916, "name": "RedemptionsRollbackResponse" } ], @@ -6251,7 +6251,7 @@ "typeArguments": [ { "type": "reference", - "id": 986, + "id": 985, "name": "RedemptionsRollbackStackableResponse" } ], @@ -7047,7 +7047,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2057, + "id": 2014, "name": "RewardsCreate" } } @@ -7057,7 +7057,7 @@ "typeArguments": [ { "type": "reference", - "id": 2049, + "id": 2006, "name": "RewardsCreateResponse" } ], @@ -7109,7 +7109,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2084, + "id": 2041, "name": "RewardsCreateAssignment" } } @@ -7119,7 +7119,7 @@ "typeArguments": [ { "type": "reference", - "id": 2063, + "id": 2020, "name": "RewardsAssignmentObject" } ], @@ -7270,7 +7270,7 @@ "typeArguments": [ { "type": "reference", - "id": 2049, + "id": 2006, "name": "RewardsCreateResponse" } ], @@ -7311,7 +7311,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2034, + "id": 1991, "name": "RewardsListParams" }, "defaultValue": "{}" @@ -7322,7 +7322,7 @@ "typeArguments": [ { "type": "reference", - "id": 2050, + "id": 2007, "name": "RewardsListResponse" } ], @@ -7374,7 +7374,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2076, + "id": 2033, "name": "RewardsListAssignmentsParams" }, "defaultValue": "{}" @@ -7385,7 +7385,7 @@ "typeArguments": [ { "type": "reference", - "id": 2079, + "id": 2036, "name": "RewardsListAssignmentsResponse" } ], @@ -7426,7 +7426,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2059, + "id": 2016, "name": "RewardsUpdate" } } @@ -7436,7 +7436,7 @@ "typeArguments": [ { "type": "reference", - "id": 2049, + "id": 2006, "name": "RewardsCreateResponse" } ], @@ -7488,7 +7488,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2092, + "id": 2049, "name": "RewardsUpdateAssignment" } } @@ -7498,7 +7498,7 @@ "typeArguments": [ { "type": "reference", - "id": 2063, + "id": 2020, "name": "RewardsAssignmentObject" } ], @@ -7607,7 +7607,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2245, + "id": 2202, "name": "SegmentsCreate" } } @@ -7617,7 +7617,7 @@ "typeArguments": [ { "type": "reference", - "id": 2254, + "id": 2211, "name": "SegmentsCreateResponse" } ], @@ -7716,7 +7716,7 @@ "typeArguments": [ { "type": "reference", - "id": 2254, + "id": 2211, "name": "SegmentsCreateResponse" } ], @@ -7766,7 +7766,7 @@ "typeArguments": [ { "type": "reference", - "id": 2267, + "id": 2224, "name": "SegmentsListResponse" } ], @@ -7870,7 +7870,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1971, + "id": 1928, "name": "ValidationRulesCreate" } } @@ -7880,7 +7880,7 @@ "typeArguments": [ { "type": "reference", - "id": 1981, + "id": 1938, "name": "ValidationRulesCreateResponse" } ], @@ -7932,7 +7932,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2006, + "id": 1963, "name": "ValidationRulesCreateAssignment" } } @@ -7942,7 +7942,7 @@ "typeArguments": [ { "type": "reference", - "id": 2010, + "id": 1967, "name": "ValidationRulesCreateAssignmentResponse" } ], @@ -8101,7 +8101,7 @@ "typeArguments": [ { "type": "reference", - "id": 1999, + "id": 1956, "name": "ValidationRulesGetResponse" } ], @@ -8142,7 +8142,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2018, + "id": 1975, "name": "ValidationRulesListParams" }, "defaultValue": "{}" @@ -8153,7 +8153,7 @@ "typeArguments": [ { "type": "reference", - "id": 2021, + "id": 1978, "name": "ValidationRulesListResponse" } ], @@ -8205,7 +8205,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2026, + "id": 1983, "name": "ValidationRulesListAssignmentsParams" }, "defaultValue": "{}" @@ -8216,7 +8216,7 @@ "typeArguments": [ { "type": "reference", - "id": 2029, + "id": 1986, "name": "ValidationRulesListAssignmentsResponse" } ], @@ -8257,7 +8257,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2002, + "id": 1959, "name": "ValidationRulesUpdate" } } @@ -8267,7 +8267,7 @@ "typeArguments": [ { "type": "reference", - "id": 1981, + "id": 1938, "name": "ValidationRulesCreateResponse" } ], @@ -8321,7 +8321,7 @@ "typeArguments": [ { "type": "reference", - "id": 1995, + "id": 1952, "name": "ValidationRulesValidateResponse" } ], @@ -8441,7 +8441,7 @@ }, { "type": "reference", - "id": 1359, + "id": 1316, "name": "PromotionsValidateParams" } ] @@ -8455,7 +8455,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1000, + "id": 999, "name": "ValidationsValidateVoucherParams" }, "defaultValue": "{}" @@ -8469,7 +8469,7 @@ "typeArguments": [ { "type": "reference", - "id": 1375, + "id": 1332, "name": "PromotionsValidateResponse" } ], @@ -8480,7 +8480,7 @@ "typeArguments": [ { "type": "reference", - "id": 1020, + "id": 1022, "name": "ValidationsValidateVoucherResponse" } ], @@ -8523,7 +8523,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1099, + "id": 1056, "name": "ValidationsValidateStackableParams" } } @@ -8533,7 +8533,7 @@ "typeArguments": [ { "type": "reference", - "id": 1106, + "id": 1063, "name": "ValidationValidateStackableResponse" } ], @@ -8585,7 +8585,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1000, + "id": 999, "name": "ValidationsValidateVoucherParams" }, "defaultValue": "{}" @@ -8596,7 +8596,7 @@ "typeArguments": [ { "type": "reference", - "id": 1020, + "id": 1022, "name": "ValidationsValidateVoucherResponse" } ], @@ -8689,10 +8689,6 @@ "type": { "type": "reference", "typeArguments": [ - { - "type": "intrinsic", - "name": "unknown" - }, { "type": "intrinsic", "name": "any" @@ -8730,10 +8726,6 @@ "type": { "type": "reference", "typeArguments": [ - { - "type": "intrinsic", - "name": "unknown" - }, { "type": "intrinsic", "name": "any" @@ -9236,7 +9228,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1958, + "id": 1915, "name": "VouchersBulkUpdate" } } @@ -9246,7 +9238,7 @@ "typeArguments": [ { "type": "reference", - "id": 1968, + "id": 1925, "name": "VouchersBulkUpdateResponse" } ], @@ -9287,7 +9279,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1959, + "id": 1916, "name": "VouchersBulkUpdateMetadata" } } @@ -9297,7 +9289,7 @@ "typeArguments": [ { "type": "reference", - "id": 1965, + "id": 1922, "name": "VouchersBulkUpdateMetadataResponse" } ], @@ -9338,7 +9330,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1891, + "id": 1848, "name": "VouchersCreate" } } @@ -9351,7 +9343,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" }, { @@ -9507,7 +9499,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1906, + "id": 1863, "name": "VouchersDeleteParams" }, "defaultValue": "{}" @@ -9567,7 +9559,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } ], @@ -9617,7 +9609,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } ], @@ -9667,7 +9659,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } ], @@ -9710,7 +9702,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1935, + "id": 1892, "name": "VouchersImport" } } @@ -9721,7 +9713,7 @@ "typeArguments": [ { "type": "reference", - "id": 1962, + "id": 1919, "name": "VouchersImportResponse" } ], @@ -9762,7 +9754,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1908, + "id": 1865, "name": "VouchersListParams" }, "defaultValue": "{}" @@ -9773,7 +9765,7 @@ "typeArguments": [ { "type": "reference", - "id": 1928, + "id": 1885, "name": "VouchersListResponse" } ], @@ -9874,7 +9866,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1894, + "id": 1851, "name": "VouchersUpdate" } } @@ -9884,7 +9876,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } ], @@ -9930,39 +9922,26 @@ ] }, { - "id": 2487, + "id": 2444, "name": "ApplicableTo", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2497, - "name": "aggregated_quantity_limit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2498, + "id": 2451, "name": "effect", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2486, + "id": 2443, "name": "ApplicableToEffect" } }, { - "id": 2489, + "id": 2446, "name": "id", "kind": 1024, "kindString": "Property", @@ -9973,7 +9952,7 @@ } }, { - "id": 2488, + "id": 2445, "name": "object", "kind": 1024, "kindString": "Property", @@ -9997,7 +9976,7 @@ } }, { - "id": 2494, + "id": 2449, "name": "price", "kind": 1024, "kindString": "Property", @@ -10010,7 +9989,7 @@ } }, { - "id": 2495, + "id": 2450, "name": "price_formula", "kind": 1024, "kindString": "Property", @@ -10023,46 +10002,7 @@ } }, { - "id": 2491, - "name": "product_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2492, - "name": "product_source_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2496, - "name": "quantity_limit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2490, + "id": 2447, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -10075,7 +10015,7 @@ } }, { - "id": 2493, + "id": 2448, "name": "strict", "kind": 1024, "kindString": "Property", @@ -10091,30 +10031,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2497, - 2498, - 2489, - 2488, - 2494, - 2495, - 2491, - 2492, - 2496, - 2490, - 2493 + 2451, + 2446, + 2445, + 2449, + 2450, + 2447, + 2448 ] } ] }, { - "id": 2499, + "id": 2452, "name": "ApplicableToResultList", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2502, + "id": 2455, "name": "data", "kind": 1024, "kindString": "Property", @@ -10123,13 +10059,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2487, + "id": 2444, "name": "ApplicableTo" } } }, { - "id": 2500, + "id": 2453, "name": "object", "kind": 1024, "kindString": "Property", @@ -10140,7 +10076,7 @@ } }, { - "id": 2501, + "id": 2454, "name": "total", "kind": 1024, "kindString": "Property", @@ -10156,22 +10092,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2502, - 2500, - 2501 + 2455, + 2453, + 2454 ] } ] }, { - "id": 698, + "id": 697, "name": "BalanceCreateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 699, + "id": 698, "name": "amount", "kind": 1024, "kindString": "Property", @@ -10187,20 +10123,20 @@ "title": "Properties", "kind": 1024, "children": [ - 699 + 698 ] } ] }, { - "id": 700, + "id": 699, "name": "BalanceCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 701, + "id": 700, "name": "amount", "kind": 1024, "kindString": "Property", @@ -10211,7 +10147,7 @@ } }, { - "id": 703, + "id": 702, "name": "balance", "kind": 1024, "kindString": "Property", @@ -10222,7 +10158,7 @@ } }, { - "id": 705, + "id": 704, "name": "object", "kind": 1024, "kindString": "Property", @@ -10233,7 +10169,7 @@ } }, { - "id": 706, + "id": 705, "name": "related_object", "kind": 1024, "kindString": "Property", @@ -10241,14 +10177,14 @@ "type": { "type": "reflection", "declaration": { - "id": 707, + "id": 706, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 709, + "id": 708, "name": "id", "kind": 1024, "kindString": "Property", @@ -10259,7 +10195,7 @@ } }, { - "id": 708, + "id": 707, "name": "type", "kind": 1024, "kindString": "Property", @@ -10275,8 +10211,8 @@ "title": "Properties", "kind": 1024, "children": [ - 709, - 708 + 708, + 707 ] } ] @@ -10284,7 +10220,7 @@ } }, { - "id": 702, + "id": 701, "name": "total", "kind": 1024, "kindString": "Property", @@ -10295,7 +10231,7 @@ } }, { - "id": 704, + "id": 703, "name": "type", "kind": 1024, "kindString": "Property", @@ -10311,25 +10247,25 @@ "title": "Properties", "kind": 1024, "children": [ - 701, - 703, - 705, - 706, + 700, 702, - 704 + 704, + 705, + 701, + 703 ] } ] }, { - "id": 1114, + "id": 1071, "name": "CampaignResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1140, + "id": 1097, "name": "active", "kind": 1024, "kindString": "Property", @@ -10340,7 +10276,7 @@ } }, { - "id": 1131, + "id": 1088, "name": "activity_duration_after_publishing", "kind": 1024, "kindString": "Property", @@ -10353,7 +10289,7 @@ } }, { - "id": 1120, + "id": 1077, "name": "auto_join", "kind": 1024, "kindString": "Property", @@ -10366,7 +10302,7 @@ } }, { - "id": 1117, + "id": 1074, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -10398,7 +10334,7 @@ } }, { - "id": 1119, + "id": 1076, "name": "category", "kind": 1024, "kindString": "Property", @@ -10411,7 +10347,7 @@ } }, { - "id": 1138, + "id": 1095, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -10422,7 +10358,7 @@ } }, { - "id": 1122, + "id": 1079, "name": "description", "kind": 1024, "kindString": "Property", @@ -10435,7 +10371,7 @@ } }, { - "id": 1130, + "id": 1087, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -10448,7 +10384,7 @@ } }, { - "id": 1115, + "id": 1072, "name": "id", "kind": 1024, "kindString": "Property", @@ -10459,7 +10395,7 @@ } }, { - "id": 1121, + "id": 1078, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -10472,7 +10408,7 @@ } }, { - "id": 1137, + "id": 1094, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -10495,7 +10431,7 @@ } }, { - "id": 1116, + "id": 1073, "name": "name", "kind": 1024, "kindString": "Property", @@ -10506,7 +10442,7 @@ } }, { - "id": 1146, + "id": 1103, "name": "object", "kind": 1024, "kindString": "Property", @@ -10517,7 +10453,7 @@ } }, { - "id": 1144, + "id": 1101, "name": "protected", "kind": 1024, "kindString": "Property", @@ -10530,7 +10466,7 @@ } }, { - "id": 1142, + "id": 1099, "name": "referral_program", "kind": 1024, "kindString": "Property", @@ -10552,7 +10488,7 @@ } }, { - "id": 1123, + "id": 1080, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -10565,7 +10501,7 @@ } }, { - "id": 1118, + "id": 1075, "name": "type", "kind": 1024, "kindString": "Property", @@ -10585,7 +10521,7 @@ } }, { - "id": 1143, + "id": 1100, "name": "use_voucher_metadata_schema", "kind": 1024, "kindString": "Property", @@ -10598,7 +10534,7 @@ } }, { - "id": 1124, + "id": 1081, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -10606,14 +10542,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1125, + "id": 1082, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1126, + "id": 1083, "name": "data", "kind": 1024, "kindString": "Property", @@ -10624,13 +10560,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2010, + "id": 1967, "name": "ValidationRulesCreateAssignmentResponse" } } }, { - "id": 1129, + "id": 1086, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -10641,7 +10577,7 @@ } }, { - "id": 1127, + "id": 1084, "name": "object", "kind": 1024, "kindString": "Property", @@ -10652,7 +10588,7 @@ } }, { - "id": 1128, + "id": 1085, "name": "total", "kind": 1024, "kindString": "Property", @@ -10668,10 +10604,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1126, - 1129, - 1127, - 1128 + 1083, + 1086, + 1084, + 1085 ] } ] @@ -10679,7 +10615,7 @@ } }, { - "id": 1136, + "id": 1093, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -10695,7 +10631,7 @@ } }, { - "id": 1132, + "id": 1089, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -10705,14 +10641,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1133, + "id": 1090, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1135, + "id": 1092, "name": "duration", "kind": 1024, "kindString": "Property", @@ -10725,7 +10661,7 @@ } }, { - "id": 1134, + "id": 1091, "name": "interval", "kind": 1024, "kindString": "Property", @@ -10743,8 +10679,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1135, - 1134 + 1092, + 1091 ] } ] @@ -10752,7 +10688,7 @@ } }, { - "id": 1141, + "id": 1098, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -10761,12 +10697,12 @@ }, "type": { "type": "reference", - "id": 1771, + "id": 1728, "name": "SimpleVoucher" } }, { - "id": 1145, + "id": 1102, "name": "vouchers_count", "kind": 1024, "kindString": "Property", @@ -10779,7 +10715,7 @@ } }, { - "id": 1139, + "id": 1096, "name": "vouchers_generation_status", "kind": 1024, "kindString": "Property", @@ -10812,43 +10748,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1140, - 1131, - 1120, - 1117, - 1119, - 1138, - 1122, - 1130, - 1115, - 1121, - 1137, - 1116, - 1146, - 1144, - 1142, - 1123, - 1118, - 1143, - 1124, - 1136, - 1132, - 1141, - 1145, - 1139 + 1097, + 1088, + 1077, + 1074, + 1076, + 1095, + 1079, + 1087, + 1072, + 1078, + 1094, + 1073, + 1103, + 1101, + 1099, + 1080, + 1075, + 1100, + 1081, + 1093, + 1089, + 1098, + 1102, + 1096 ] } ] }, { - "id": 1168, + "id": 1125, "name": "CampaignsAddVoucherParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1169, + "id": 1126, "name": "vouchers_count", "kind": 1024, "kindString": "Property", @@ -10866,20 +10802,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1169 + 1126 ] } ] }, { - "id": 1165, + "id": 1122, "name": "CampaignsDeleteParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1166, + "id": 1123, "name": "force", "kind": 1024, "kindString": "Property", @@ -10897,20 +10833,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1166 + 1123 ] } ] }, { - "id": 1174, + "id": 1131, "name": "CampaignsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1177, + "id": 1134, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -10940,7 +10876,7 @@ } }, { - "id": 1178, + "id": 1135, "name": "filters", "kind": 1024, "kindString": "Property", @@ -10950,14 +10886,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1179, + "id": 1136, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1180, + "id": 1137, "name": "junction", "kind": 1024, "kindString": "Property", @@ -10975,19 +10911,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1180 + 1137 ] } ], "indexSignature": { - "id": 1181, + "id": 1138, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1182, + "id": 1139, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -11006,7 +10942,7 @@ } }, { - "id": 1175, + "id": 1132, "name": "limit", "kind": 1024, "kindString": "Property", @@ -11019,7 +10955,7 @@ } }, { - "id": 1176, + "id": 1133, "name": "page", "kind": 1024, "kindString": "Property", @@ -11037,23 +10973,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1177, - 1178, - 1175, - 1176 + 1134, + 1135, + 1132, + 1133 ] } ] }, { - "id": 1183, + "id": 1140, "name": "CampaignsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1187, + "id": 1144, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -11062,13 +10998,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" } } }, { - "id": 1186, + "id": 1143, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -11079,7 +11015,7 @@ } }, { - "id": 1184, + "id": 1141, "name": "object", "kind": 1024, "kindString": "Property", @@ -11090,7 +11026,7 @@ } }, { - "id": 1185, + "id": 1142, "name": "total", "kind": 1024, "kindString": "Property", @@ -11106,23 +11042,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1187, - 1186, - 1184, - 1185 + 1144, + 1143, + 1141, + 1142 ] } ] }, { - "id": 1147, + "id": 1104, "name": "CampaignsQualificationsBody", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1148, + "id": 1105, "name": "customer", "kind": 1024, "kindString": "Property", @@ -11136,7 +11072,7 @@ } }, { - "id": 1149, + "id": 1106, "name": "order", "kind": 1024, "kindString": "Property", @@ -11148,7 +11084,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" }, { @@ -11178,21 +11114,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1148, - 1149 + 1105, + 1106 ] } ] }, { - "id": 1150, + "id": 1107, "name": "CampaignsQualificationsParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1151, + "id": 1108, "name": "audienceRulesOnly", "kind": 1024, "kindString": "Property", @@ -11205,7 +11141,7 @@ } }, { - "id": 1153, + "id": 1110, "name": "limit", "kind": 1024, "kindString": "Property", @@ -11218,7 +11154,7 @@ } }, { - "id": 1152, + "id": 1109, "name": "order", "kind": 1024, "kindString": "Property", @@ -11253,22 +11189,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1151, - 1153, - 1152 + 1108, + 1110, + 1109 ] } ] }, { - "id": 1154, + "id": 1111, "name": "CampaignsQualificationsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1160, + "id": 1117, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -11281,7 +11217,7 @@ } }, { - "id": 1158, + "id": 1115, "name": "data", "kind": 1024, "kindString": "Property", @@ -11290,13 +11226,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" } } }, { - "id": 1157, + "id": 1114, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -11307,7 +11243,7 @@ } }, { - "id": 1159, + "id": 1116, "name": "id", "kind": 1024, "kindString": "Property", @@ -11320,7 +11256,7 @@ } }, { - "id": 1155, + "id": 1112, "name": "object", "kind": 1024, "kindString": "Property", @@ -11331,7 +11267,7 @@ } }, { - "id": 1156, + "id": 1113, "name": "total", "kind": 1024, "kindString": "Property", @@ -11347,25 +11283,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1160, - 1158, - 1157, - 1159, - 1155, - 1156 + 1117, + 1115, + 1114, + 1116, + 1112, + 1113 ] } ] }, { - "id": 730, + "id": 729, "name": "ClientSideListVouchersResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 733, + "id": 732, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -11376,7 +11312,7 @@ } }, { - "id": 731, + "id": 730, "name": "object", "kind": 1024, "kindString": "Property", @@ -11387,7 +11323,7 @@ } }, { - "id": 732, + "id": 731, "name": "total", "kind": 1024, "kindString": "Property", @@ -11398,7 +11334,7 @@ } }, { - "id": 734, + "id": 733, "name": "vouchers", "kind": 1024, "kindString": "Property", @@ -11410,7 +11346,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" }, { @@ -11461,23 +11397,23 @@ "title": "Properties", "kind": 1024, "children": [ - 733, - 731, 732, - 734 + 730, + 731, + 733 ] } ] }, { - "id": 786, + "id": 785, "name": "ClientSidePublishCampaign", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 788, + "id": 787, "name": "count", "kind": 1024, "kindString": "Property", @@ -11490,7 +11426,7 @@ } }, { - "id": 787, + "id": 786, "name": "name", "kind": 1024, "kindString": "Property", @@ -11506,21 +11442,21 @@ "title": "Properties", "kind": 1024, "children": [ - 788, - 787 + 787, + 786 ] } ] }, { - "id": 776, + "id": 775, "name": "ClientSidePublishPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 778, + "id": 777, "name": "channel", "kind": 1024, "kindString": "Property", @@ -11533,7 +11469,7 @@ } }, { - "id": 779, + "id": 778, "name": "customer", "kind": 1024, "kindString": "Property", @@ -11547,7 +11483,7 @@ } }, { - "id": 781, + "id": 780, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -11570,7 +11506,7 @@ } }, { - "id": 777, + "id": 776, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -11583,7 +11519,7 @@ } }, { - "id": 780, + "id": 779, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -11601,24 +11537,24 @@ "title": "Properties", "kind": 1024, "children": [ - 778, - 779, - 781, 777, - 780 + 778, + 780, + 776, + 779 ] } ] }, { - "id": 783, + "id": 782, "name": "ClientSidePublishQueryParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 785, + "id": 784, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -11631,7 +11567,7 @@ } }, { - "id": 784, + "id": 783, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -11649,21 +11585,21 @@ "title": "Properties", "kind": 1024, "children": [ - 785, - 784 + 784, + 783 ] } ] }, { - "id": 757, + "id": 756, "name": "ClientSideRedeemPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 759, + "id": 758, "name": "customer", "kind": 1024, "kindString": "Property", @@ -11677,7 +11613,7 @@ } }, { - "id": 761, + "id": 760, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -11700,7 +11636,7 @@ } }, { - "id": 760, + "id": 759, "name": "order", "kind": 1024, "kindString": "Property", @@ -11709,12 +11645,12 @@ }, "type": { "type": "reference", - "id": 805, + "id": 804, "name": "ClientSideRedeemOrder" } }, { - "id": 762, + "id": 761, "name": "reward", "kind": 1024, "kindString": "Property", @@ -11724,14 +11660,14 @@ "type": { "type": "reflection", "declaration": { - "id": 763, + "id": 762, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 764, + "id": 763, "name": "id", "kind": 1024, "kindString": "Property", @@ -11747,7 +11683,7 @@ "title": "Properties", "kind": 1024, "children": [ - 764 + 763 ] } ] @@ -11755,7 +11691,7 @@ } }, { - "id": 765, + "id": 764, "name": "session", "kind": 1024, "kindString": "Property", @@ -11764,12 +11700,12 @@ }, "type": { "type": "reference", - "id": 2484, + "id": 2441, "name": "ValidationSessionReleaseParams" } }, { - "id": 758, + "id": 757, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -11787,25 +11723,25 @@ "title": "Properties", "kind": 1024, "children": [ + 758, + 760, 759, 761, - 760, - 762, - 765, - 758 + 764, + 757 ] } ] }, { - "id": 766, + "id": 765, "name": "ClientSideRedeemResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 770, + "id": 769, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -11818,7 +11754,7 @@ } }, { - "id": 769, + "id": 768, "name": "date", "kind": 1024, "kindString": "Property", @@ -11831,7 +11767,7 @@ } }, { - "id": 767, + "id": 766, "name": "id", "kind": 1024, "kindString": "Property", @@ -11842,7 +11778,7 @@ } }, { - "id": 773, + "id": 772, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -11865,7 +11801,7 @@ } }, { - "id": 768, + "id": 767, "name": "object", "kind": 1024, "kindString": "Property", @@ -11876,7 +11812,7 @@ } }, { - "id": 772, + "id": 771, "name": "order", "kind": 1024, "kindString": "Property", @@ -11885,12 +11821,12 @@ }, "type": { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } }, { - "id": 774, + "id": 773, "name": "result", "kind": 1024, "kindString": "Property", @@ -11910,7 +11846,7 @@ } }, { - "id": 771, + "id": 770, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -11923,7 +11859,7 @@ } }, { - "id": 775, + "id": 774, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -11932,7 +11868,7 @@ }, "type": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } } @@ -11942,28 +11878,28 @@ "title": "Properties", "kind": 1024, "children": [ - 770, 769, - 767, - 773, 768, + 766, 772, - 774, + 767, 771, - 775 + 773, + 770, + 774 ] } ] }, { - "id": 808, + "id": 807, "name": "ClientSideRedeemWidgetPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 809, + "id": 808, "name": "order", "kind": 1024, "kindString": "Property", @@ -11973,14 +11909,14 @@ "type": { "type": "reflection", "declaration": { - "id": 810, + "id": 809, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 811, + "id": 810, "name": "amount", "kind": 1024, "kindString": "Property", @@ -11998,7 +11934,7 @@ "title": "Properties", "kind": 1024, "children": [ - 811 + 810 ] } ] @@ -12011,20 +11947,20 @@ "title": "Properties", "kind": 1024, "children": [ - 809 + 808 ] } ] }, { - "id": 792, + "id": 791, "name": "ClientSideTrackLoyalty", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 793, + "id": 792, "name": "code", "kind": 1024, "kindString": "Property", @@ -12042,20 +11978,20 @@ "title": "Properties", "kind": 1024, "children": [ - 793 + 792 ] } ] }, { - "id": 796, + "id": 795, "name": "ClientSideTrackPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 799, + "id": 798, "name": "customer", "kind": 1024, "kindString": "Property", @@ -12067,7 +12003,7 @@ } }, { - "id": 797, + "id": 796, "name": "event", "kind": 1024, "kindString": "Property", @@ -12078,7 +12014,7 @@ } }, { - "id": 800, + "id": 799, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -12087,12 +12023,12 @@ }, "type": { "type": "reference", - "id": 792, + "id": 791, "name": "ClientSideTrackLoyalty" } }, { - "id": 798, + "id": 797, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -12115,7 +12051,7 @@ } }, { - "id": 801, + "id": 800, "name": "referral", "kind": 1024, "kindString": "Property", @@ -12124,7 +12060,7 @@ }, "type": { "type": "reference", - "id": 794, + "id": 793, "name": "ClientSideTrackReferral" } } @@ -12134,24 +12070,24 @@ "title": "Properties", "kind": 1024, "children": [ + 798, + 796, 799, 797, - 800, - 798, - 801 + 800 ] } ] }, { - "id": 794, + "id": 793, "name": "ClientSideTrackReferral", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 795, + "id": 794, "name": "code", "kind": 1024, "kindString": "Property", @@ -12169,20 +12105,20 @@ "title": "Properties", "kind": 1024, "children": [ - 795 + 794 ] } ] }, { - "id": 802, + "id": 801, "name": "ClientSideTrackResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 803, + "id": 802, "name": "object", "kind": 1024, "kindString": "Property", @@ -12193,7 +12129,7 @@ } }, { - "id": 804, + "id": 803, "name": "type", "kind": 1024, "kindString": "Property", @@ -12209,21 +12145,21 @@ "title": "Properties", "kind": 1024, "children": [ - 803, - 804 + 802, + 803 ] } ] }, { - "id": 713, + "id": 712, "name": "ClientSideValidateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 716, + "id": 715, "name": "amount", "kind": 1024, "kindString": "Property", @@ -12236,7 +12172,7 @@ } }, { - "id": 714, + "id": 713, "name": "code", "kind": 1024, "kindString": "Property", @@ -12249,7 +12185,7 @@ } }, { - "id": 719, + "id": 718, "name": "customer", "kind": 1024, "kindString": "Property", @@ -12282,7 +12218,7 @@ } }, { - "id": 717, + "id": 716, "name": "items", "kind": 1024, "kindString": "Property", @@ -12296,7 +12232,7 @@ "typeArguments": [ { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" }, { @@ -12338,7 +12274,7 @@ } }, { - "id": 723, + "id": 722, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -12361,7 +12297,7 @@ } }, { - "id": 718, + "id": 717, "name": "orderMetadata", "kind": 1024, "kindString": "Property", @@ -12384,7 +12320,7 @@ } }, { - "id": 720, + "id": 719, "name": "reward", "kind": 1024, "kindString": "Property", @@ -12394,14 +12330,14 @@ "type": { "type": "reflection", "declaration": { - "id": 721, + "id": 720, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 722, + "id": 721, "name": "id", "kind": 1024, "kindString": "Property", @@ -12417,7 +12353,7 @@ "title": "Properties", "kind": 1024, "children": [ - 722 + 721 ] } ] @@ -12425,7 +12361,7 @@ } }, { - "id": 725, + "id": 724, "name": "session_key", "kind": 1024, "kindString": "Property", @@ -12438,7 +12374,7 @@ } }, { - "id": 726, + "id": 725, "name": "session_ttl", "kind": 1024, "kindString": "Property", @@ -12451,7 +12387,7 @@ } }, { - "id": 727, + "id": 726, "name": "session_ttl_unit", "kind": 1024, "kindString": "Property", @@ -12485,7 +12421,7 @@ } }, { - "id": 724, + "id": 723, "name": "session_type", "kind": 1024, "kindString": "Property", @@ -12498,7 +12434,7 @@ } }, { - "id": 715, + "id": 714, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -12516,31 +12452,31 @@ "title": "Properties", "kind": 1024, "children": [ + 715, + 713, + 718, 716, - 714, - 719, + 722, 717, - 723, - 718, - 720, + 719, + 724, 725, 726, - 727, - 724, - 715 + 723, + 714 ] } ] }, { - "id": 735, + "id": 734, "name": "ClientSideValidateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 739, + "id": 738, "name": "applicable_to", "kind": 1024, "kindString": "Property", @@ -12549,12 +12485,12 @@ }, "type": { "type": "reference", - "id": 2499, + "id": 2452, "name": "ApplicableToResultList" } }, { - "id": 748, + "id": 747, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -12567,7 +12503,7 @@ } }, { - "id": 736, + "id": 735, "name": "code", "kind": 1024, "kindString": "Property", @@ -12580,7 +12516,7 @@ } }, { - "id": 738, + "id": 737, "name": "discount", "kind": 1024, "kindString": "Property", @@ -12592,29 +12528,29 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] } }, { - "id": 752, + "id": 751, "name": "gift", "kind": 1024, "kindString": "Property", @@ -12624,14 +12560,14 @@ "type": { "type": "reflection", "declaration": { - "id": 753, + "id": 752, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 754, + "id": 753, "name": "amount", "kind": 1024, "kindString": "Property", @@ -12642,7 +12578,7 @@ } }, { - "id": 755, + "id": 754, "name": "balance", "kind": 1024, "kindString": "Property", @@ -12658,8 +12594,8 @@ "title": "Properties", "kind": 1024, "children": [ - 754, - 755 + 753, + 754 ] } ] @@ -12667,7 +12603,7 @@ } }, { - "id": 749, + "id": 748, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -12677,14 +12613,14 @@ "type": { "type": "reflection", "declaration": { - "id": 750, + "id": 749, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 751, + "id": 750, "name": "points_cost", "kind": 1024, "kindString": "Property", @@ -12700,7 +12636,7 @@ "title": "Properties", "kind": 1024, "children": [ - 751 + 750 ] } ] @@ -12708,7 +12644,7 @@ } }, { - "id": 740, + "id": 739, "name": "order", "kind": 1024, "kindString": "Property", @@ -12718,14 +12654,14 @@ "type": { "type": "reflection", "declaration": { - "id": 741, + "id": 740, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 742, + "id": 741, "name": "amount", "kind": 1024, "kindString": "Property", @@ -12736,7 +12672,7 @@ } }, { - "id": 743, + "id": 742, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -12747,7 +12683,7 @@ } }, { - "id": 746, + "id": 745, "name": "items", "kind": 1024, "kindString": "Property", @@ -12761,7 +12697,7 @@ "typeArguments": [ { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" }, { @@ -12803,7 +12739,7 @@ } }, { - "id": 745, + "id": 744, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -12814,7 +12750,7 @@ } }, { - "id": 744, + "id": 743, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -12830,11 +12766,11 @@ "title": "Properties", "kind": 1024, "children": [ + 741, 742, - 743, - 746, 745, - 744 + 744, + 743 ] } ] @@ -12842,7 +12778,7 @@ } }, { - "id": 756, + "id": 755, "name": "promotions", "kind": 1024, "kindString": "Property", @@ -12853,13 +12789,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1194, + "id": 1151, "name": "SimplePromotionTier" } } }, { - "id": 747, + "id": 746, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -12872,7 +12808,7 @@ } }, { - "id": 737, + "id": 736, "name": "valid", "kind": 1024, "kindString": "Property", @@ -12888,29 +12824,29 @@ "title": "Properties", "kind": 1024, "children": [ - 739, - 748, - 736, 738, - 752, - 749, - 740, - 756, 747, - 737 + 735, + 737, + 751, + 748, + 739, + 755, + 746, + 736 ] } ] }, { - "id": 2385, + "id": 2342, "name": "Consent", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2389, + "id": 2346, "name": "category", "kind": 1024, "kindString": "Property", @@ -12921,7 +12857,7 @@ } }, { - "id": 2390, + "id": 2347, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -12932,7 +12868,7 @@ } }, { - "id": 2388, + "id": 2345, "name": "description", "kind": 1024, "kindString": "Property", @@ -12943,7 +12879,7 @@ } }, { - "id": 2386, + "id": 2343, "name": "id", "kind": 1024, "kindString": "Property", @@ -12954,7 +12890,7 @@ } }, { - "id": 2387, + "id": 2344, "name": "name", "kind": 1024, "kindString": "Property", @@ -12965,7 +12901,7 @@ } }, { - "id": 2392, + "id": 2349, "name": "object", "kind": 1024, "kindString": "Property", @@ -12976,7 +12912,7 @@ } }, { - "id": 2391, + "id": 2348, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -12994,26 +12930,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2389, - 2390, - 2388, - 2386, - 2387, - 2392, - 2391 + 2346, + 2347, + 2345, + 2343, + 2344, + 2349, + 2348 ] } ] }, { - "id": 2393, + "id": 2350, "name": "ConsentsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2400, + "id": 2357, "name": "consents", "kind": 1024, "kindString": "Property", @@ -13021,14 +12957,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2401, + "id": 2358, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2405, + "id": 2362, "name": "data", "kind": 1024, "kindString": "Property", @@ -13037,13 +12973,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2385, + "id": 2342, "name": "Consent" } } }, { - "id": 2404, + "id": 2361, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -13054,7 +12990,7 @@ } }, { - "id": 2402, + "id": 2359, "name": "object", "kind": 1024, "kindString": "Property", @@ -13065,7 +13001,7 @@ } }, { - "id": 2403, + "id": 2360, "name": "total", "kind": 1024, "kindString": "Property", @@ -13081,10 +13017,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2405, - 2404, - 2402, - 2403 + 2362, + 2361, + 2359, + 2360 ] } ] @@ -13092,7 +13028,7 @@ } }, { - "id": 2394, + "id": 2351, "name": "groups", "kind": 1024, "kindString": "Property", @@ -13100,14 +13036,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2395, + "id": 2352, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2399, + "id": 2356, "name": "data", "kind": 1024, "kindString": "Property", @@ -13121,7 +13057,7 @@ } }, { - "id": 2398, + "id": 2355, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -13132,7 +13068,7 @@ } }, { - "id": 2396, + "id": 2353, "name": "object", "kind": 1024, "kindString": "Property", @@ -13143,7 +13079,7 @@ } }, { - "id": 2397, + "id": 2354, "name": "total", "kind": 1024, "kindString": "Property", @@ -13159,10 +13095,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2399, - 2398, - 2396, - 2397 + 2356, + 2355, + 2353, + 2354 ] } ] @@ -13175,21 +13111,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2400, - 2394 + 2357, + 2351 ] } ] }, { - "id": 675, + "id": 674, "name": "CustomerActivitiesListQueryParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 681, + "id": 680, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -13202,7 +13138,7 @@ } }, { - "id": 680, + "id": 679, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -13236,7 +13172,7 @@ } }, { - "id": 676, + "id": 675, "name": "limit", "kind": 1024, "kindString": "Property", @@ -13249,7 +13185,7 @@ } }, { - "id": 677, + "id": 676, "name": "order", "kind": 1024, "kindString": "Property", @@ -13271,7 +13207,7 @@ } }, { - "id": 678, + "id": 677, "name": "starting_after", "kind": 1024, "kindString": "Property", @@ -13284,7 +13220,7 @@ } }, { - "id": 679, + "id": 678, "name": "starting_after_id", "kind": 1024, "kindString": "Property", @@ -13302,25 +13238,25 @@ "title": "Properties", "kind": 1024, "children": [ - 681, 680, + 679, + 675, 676, 677, - 678, - 679 + 678 ] } ] }, { - "id": 682, + "id": 681, "name": "CustomerActivitiesListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 686, + "id": 685, "name": "data", "kind": 1024, "kindString": "Property", @@ -13344,7 +13280,7 @@ } }, { - "id": 685, + "id": 684, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -13355,7 +13291,7 @@ } }, { - "id": 683, + "id": 682, "name": "object", "kind": 1024, "kindString": "Property", @@ -13366,7 +13302,7 @@ } }, { - "id": 684, + "id": 683, "name": "total", "kind": 1024, "kindString": "Property", @@ -13382,10 +13318,10 @@ "title": "Properties", "kind": 1024, "children": [ - 686, 685, - 683, - 684 + 684, + 682, + 683 ] } ] @@ -14209,19 +14145,6 @@ } } }, - { - "id": 660, - "name": "birthdate", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, { "id": 650, "name": "description", @@ -14330,7 +14253,6 @@ "kind": 1024, "children": [ 651, - 660, 650, 648, 645, @@ -14343,14 +14265,14 @@ ] }, { - "id": 661, + "id": 660, "name": "CustomersCommonListRequest", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 665, + "id": 664, "name": "city", "kind": 1024, "kindString": "Property", @@ -14363,7 +14285,7 @@ } }, { - "id": 664, + "id": 663, "name": "email", "kind": 1024, "kindString": "Property", @@ -14376,7 +14298,7 @@ } }, { - "id": 662, + "id": 661, "name": "limit", "kind": 1024, "kindString": "Property", @@ -14389,7 +14311,7 @@ } }, { - "id": 666, + "id": 665, "name": "name", "kind": 1024, "kindString": "Property", @@ -14402,7 +14324,7 @@ } }, { - "id": 667, + "id": 666, "name": "order", "kind": 1024, "kindString": "Property", @@ -14424,7 +14346,7 @@ } }, { - "id": 663, + "id": 662, "name": "page", "kind": 1024, "kindString": "Property", @@ -14437,7 +14359,7 @@ } }, { - "id": 668, + "id": 667, "name": "starting_after", "kind": 1024, "kindString": "Property", @@ -14464,26 +14386,26 @@ "title": "Properties", "kind": 1024, "children": [ - 665, 664, - 662, - 666, - 667, 663, - 668 + 661, + 665, + 666, + 662, + 667 ] } ] }, { - "id": 669, + "id": 668, "name": "CustomersCommonListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 673, + "id": 672, "name": "customers", "kind": 1024, "kindString": "Property", @@ -14498,7 +14420,7 @@ } }, { - "id": 672, + "id": 671, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -14509,7 +14431,7 @@ } }, { - "id": 674, + "id": 673, "name": "has_more", "kind": 1024, "kindString": "Property", @@ -14522,7 +14444,7 @@ } }, { - "id": 670, + "id": 669, "name": "object", "kind": 1024, "kindString": "Property", @@ -14533,7 +14455,7 @@ } }, { - "id": 671, + "id": 670, "name": "total", "kind": 1024, "kindString": "Property", @@ -14549,24 +14471,24 @@ "title": "Properties", "kind": 1024, "children": [ - 673, 672, - 674, - 670, - 671 + 671, + 673, + 669, + 670 ] } ] }, { - "id": 2533, + "id": 2475, "name": "DiscountAmount", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2535, + "id": 2477, "name": "amount_off", "kind": 1024, "kindString": "Property", @@ -14579,7 +14501,7 @@ } }, { - "id": 2536, + "id": 2478, "name": "amount_off_formula", "kind": 1024, "kindString": "Property", @@ -14592,7 +14514,7 @@ } }, { - "id": 2537, + "id": 2479, "name": "effect", "kind": 1024, "kindString": "Property", @@ -14622,7 +14544,7 @@ } }, { - "id": 2534, + "id": 2476, "name": "type", "kind": 1024, "kindString": "Property", @@ -14631,7 +14553,7 @@ }, "type": { "type": "reference", - "id": 2505, + "id": 2458, "name": "AMOUNT" } } @@ -14641,23 +14563,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2535, - 2536, - 2537, - 2534 + 2477, + 2478, + 2479, + 2476 ] } ] }, { - "id": 2544, + "id": 2486, "name": "DiscountFixed", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2548, + "id": 2490, "name": "effect", "kind": 1024, "kindString": "Property", @@ -14679,7 +14601,7 @@ } }, { - "id": 2546, + "id": 2488, "name": "fixed_amount", "kind": 1024, "kindString": "Property", @@ -14692,7 +14614,7 @@ } }, { - "id": 2547, + "id": 2489, "name": "fixed_amount_formula", "kind": 1024, "kindString": "Property", @@ -14705,7 +14627,7 @@ } }, { - "id": 2545, + "id": 2487, "name": "type", "kind": 1024, "kindString": "Property", @@ -14714,7 +14636,7 @@ }, "type": { "type": "reference", - "id": 2508, + "id": 2461, "name": "FIXED" } } @@ -14724,23 +14646,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2548, - 2546, - 2547, - 2545 + 2490, + 2488, + 2489, + 2487 ] } ] }, { - "id": 2538, + "id": 2480, "name": "DiscountPercent", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2542, + "id": 2484, "name": "amount_limit", "kind": 1024, "kindString": "Property", @@ -14753,7 +14675,7 @@ } }, { - "id": 2543, + "id": 2485, "name": "effect", "kind": 1024, "kindString": "Property", @@ -14775,7 +14697,7 @@ } }, { - "id": 2540, + "id": 2482, "name": "percent_off", "kind": 1024, "kindString": "Property", @@ -14788,7 +14710,7 @@ } }, { - "id": 2541, + "id": 2483, "name": "percent_off_formula", "kind": 1024, "kindString": "Property", @@ -14801,7 +14723,7 @@ } }, { - "id": 2539, + "id": 2481, "name": "type", "kind": 1024, "kindString": "Property", @@ -14810,7 +14732,7 @@ }, "type": { "type": "reference", - "id": 2506, + "id": 2459, "name": "PERCENT" } } @@ -14820,24 +14742,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2542, - 2543, - 2540, - 2541, - 2539 + 2484, + 2485, + 2482, + 2483, + 2481 ] } ] }, { - "id": 2525, + "id": 2467, "name": "DiscountUnit", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2529, + "id": 2471, "name": "effect", "kind": 1024, "kindString": "Property", @@ -14863,7 +14785,7 @@ } }, { - "id": 2531, + "id": 2473, "name": "product", "kind": 1024, "kindString": "Property", @@ -14876,7 +14798,7 @@ } }, { - "id": 2532, + "id": 2474, "name": "sku", "kind": 1024, "kindString": "Property", @@ -14889,7 +14811,7 @@ } }, { - "id": 2526, + "id": 2468, "name": "type", "kind": 1024, "kindString": "Property", @@ -14898,12 +14820,12 @@ }, "type": { "type": "reference", - "id": 2507, + "id": 2460, "name": "UNIT" } }, { - "id": 2527, + "id": 2469, "name": "unit_off", "kind": 1024, "kindString": "Property", @@ -14916,7 +14838,7 @@ } }, { - "id": 2528, + "id": 2470, "name": "unit_off_formula", "kind": 1024, "kindString": "Property", @@ -14929,171 +14851,7 @@ } }, { - "id": 2530, - "name": "unit_type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2529, - 2531, - 2532, - 2526, - 2527, - 2528, - 2530 - ] - } - ] - }, - { - "id": 2514, - "name": "DiscountUnitMultiple", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2516, - "name": "effect", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "literal", - "value": "ADD_MANY_ITEMS" - } - }, - { - "id": 2515, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "id": 2507, - "name": "UNIT" - } - }, - { - "id": 2517, - "name": "units", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2518, - "name": "DiscountUnitMultipleOneUnit" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2516, - 2515, - 2517 - ] - } - ] - }, - { - "id": 2518, - "name": "DiscountUnitMultipleOneUnit", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2520, - "name": "effect", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "ADD_MISSING_ITEMS" - }, - { - "type": "literal", - "value": "ADD_NEW_ITEMS" - } - ] - } - }, - { - "id": 2523, - "name": "product", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "name": "SimpleProductDiscountUnit" - } - }, - { - "id": 2524, - "name": "sku", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "name": "SimpleSkuDiscountUnit" - } - }, - { - "id": 2519, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "id": 2507, - "name": "UNIT" - } - }, - { - "id": 2521, - "name": "unit_off", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2522, + "id": 2472, "name": "unit_type", "kind": 1024, "kindString": "Property", @@ -15111,25 +14869,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2520, - 2523, - 2524, - 2519, - 2521, - 2522 + 2471, + 2473, + 2474, + 2468, + 2469, + 2470, + 2472 ] } ] }, { - "id": 2223, + "id": 2180, "name": "DistributionsPublicationsCreateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2226, + "id": 2183, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -15139,14 +14898,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2227, + "id": 2184, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2229, + "id": 2186, "name": "count", "kind": 1024, "kindString": "Property", @@ -15159,7 +14918,7 @@ } }, { - "id": 2228, + "id": 2185, "name": "name", "kind": 1024, "kindString": "Property", @@ -15175,8 +14934,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2229, - 2228 + 2186, + 2185 ] } ] @@ -15184,7 +14943,7 @@ } }, { - "id": 2231, + "id": 2188, "name": "channel", "kind": 1024, "kindString": "Property", @@ -15197,7 +14956,7 @@ } }, { - "id": 2232, + "id": 2189, "name": "customer", "kind": 1024, "kindString": "Property", @@ -15209,7 +14968,7 @@ } }, { - "id": 2224, + "id": 2181, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -15222,7 +14981,7 @@ } }, { - "id": 2225, + "id": 2182, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -15235,7 +14994,7 @@ } }, { - "id": 2230, + "id": 2187, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -15253,25 +15012,25 @@ "title": "Properties", "kind": 1024, "children": [ - 2226, - 2231, - 2232, - 2224, - 2225, - 2230 + 2183, + 2188, + 2189, + 2181, + 2182, + 2187 ] } ] }, { - "id": 2233, + "id": 2190, "name": "DistributionsPublicationsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2240, + "id": 2197, "name": "channel", "kind": 1024, "kindString": "Property", @@ -15284,7 +15043,7 @@ } }, { - "id": 2236, + "id": 2193, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15295,7 +15054,7 @@ } }, { - "id": 2243, + "id": 2200, "name": "customer", "kind": 1024, "kindString": "Property", @@ -15309,7 +15068,7 @@ } }, { - "id": 2237, + "id": 2194, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -15320,7 +15079,7 @@ } }, { - "id": 2234, + "id": 2191, "name": "id", "kind": 1024, "kindString": "Property", @@ -15331,7 +15090,7 @@ } }, { - "id": 2239, + "id": 2196, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -15354,7 +15113,7 @@ } }, { - "id": 2235, + "id": 2192, "name": "object", "kind": 1024, "kindString": "Property", @@ -15365,7 +15124,7 @@ } }, { - "id": 2242, + "id": 2199, "name": "result", "kind": 1024, "kindString": "Property", @@ -15385,7 +15144,7 @@ } }, { - "id": 2241, + "id": 2198, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -15398,7 +15157,7 @@ } }, { - "id": 2238, + "id": 2195, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -15411,7 +15170,7 @@ } }, { - "id": 2244, + "id": 2201, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -15427,30 +15186,30 @@ "title": "Properties", "kind": 1024, "children": [ - 2240, - 2236, - 2243, - 2237, - 2234, - 2239, - 2235, - 2242, - 2241, - 2238, - 2244 + 2197, + 2193, + 2200, + 2194, + 2191, + 2196, + 2192, + 2199, + 2198, + 2195, + 2201 ] } ] }, { - "id": 2203, + "id": 2160, "name": "DistributionsPublicationsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2207, + "id": 2164, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -15463,7 +15222,7 @@ } }, { - "id": 2208, + "id": 2165, "name": "customer", "kind": 1024, "kindString": "Property", @@ -15476,7 +15235,7 @@ } }, { - "id": 2213, + "id": 2170, "name": "filters", "kind": 1024, "kindString": "Property", @@ -15486,14 +15245,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2214, + "id": 2171, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2215, + "id": 2172, "name": "junction", "kind": 1024, "kindString": "Property", @@ -15520,19 +15279,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2215 + 2172 ] } ], "indexSignature": { - "id": 2216, + "id": 2173, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2217, + "id": 2174, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -15551,7 +15310,7 @@ } }, { - "id": 2212, + "id": 2169, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -15564,7 +15323,7 @@ } }, { - "id": 2204, + "id": 2161, "name": "limit", "kind": 1024, "kindString": "Property", @@ -15577,7 +15336,7 @@ } }, { - "id": 2206, + "id": 2163, "name": "order", "kind": 1024, "kindString": "Property", @@ -15639,7 +15398,7 @@ } }, { - "id": 2205, + "id": 2162, "name": "page", "kind": 1024, "kindString": "Property", @@ -15652,7 +15411,7 @@ } }, { - "id": 2210, + "id": 2167, "name": "result", "kind": 1024, "kindString": "Property", @@ -15674,7 +15433,7 @@ } }, { - "id": 2209, + "id": 2166, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -15687,7 +15446,7 @@ } }, { - "id": 2211, + "id": 2168, "name": "voucher_type", "kind": 1024, "kindString": "Property", @@ -15722,29 +15481,29 @@ "title": "Properties", "kind": 1024, "children": [ - 2207, - 2208, - 2213, - 2212, - 2204, - 2206, - 2205, - 2210, - 2209, - 2211 + 2164, + 2165, + 2170, + 2169, + 2161, + 2163, + 2162, + 2167, + 2166, + 2168 ] } ] }, { - "id": 2218, + "id": 2175, "name": "DistributionsPublicationsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2221, + "id": 2178, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -15755,7 +15514,7 @@ } }, { - "id": 2219, + "id": 2176, "name": "object", "kind": 1024, "kindString": "Property", @@ -15766,7 +15525,7 @@ } }, { - "id": 2222, + "id": 2179, "name": "publications", "kind": 1024, "kindString": "Property", @@ -15782,7 +15541,7 @@ } }, { - "id": 2220, + "id": 2177, "name": "total", "kind": 1024, "kindString": "Property", @@ -15798,23 +15557,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2221, - 2219, - 2222, - 2220 + 2178, + 2176, + 2179, + 2177 ] } ] }, { - "id": 2406, + "id": 2363, "name": "EventsParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2408, + "id": 2365, "name": "customer", "kind": 1024, "kindString": "Property", @@ -15826,7 +15585,7 @@ } }, { - "id": 2407, + "id": 2364, "name": "event", "kind": 1024, "kindString": "Property", @@ -15837,7 +15596,7 @@ } }, { - "id": 2414, + "id": 2371, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -15847,14 +15606,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2415, + "id": 2372, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2416, + "id": 2373, "name": "code", "kind": 1024, "kindString": "Property", @@ -15870,7 +15629,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2416 + 2373 ] } ] @@ -15878,7 +15637,7 @@ } }, { - "id": 2409, + "id": 2366, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -15901,7 +15660,7 @@ } }, { - "id": 2410, + "id": 2367, "name": "referral", "kind": 1024, "kindString": "Property", @@ -15911,14 +15670,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2411, + "id": 2368, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2412, + "id": 2369, "name": "code", "kind": 1024, "kindString": "Property", @@ -15929,7 +15688,7 @@ } }, { - "id": 2413, + "id": 2370, "name": "referrer_id", "kind": 1024, "kindString": "Property", @@ -15947,8 +15706,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2412, - 2413 + 2369, + 2370 ] } ] @@ -15961,24 +15720,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2408, - 2407, - 2414, - 2409, - 2410 + 2365, + 2364, + 2371, + 2366, + 2367 ] } ] }, { - "id": 2417, + "id": 2374, "name": "EventsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2418, + "id": 2375, "name": "object", "kind": 1024, "kindString": "Property", @@ -15989,7 +15748,7 @@ } }, { - "id": 2419, + "id": 2376, "name": "type", "kind": 1024, "kindString": "Property", @@ -16005,21 +15764,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2418, - 2419 + 2375, + 2376 ] } ] }, { - "id": 2276, + "id": 2233, "name": "ExportResource", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2277, + "id": 2234, "name": "exported_object", "kind": 1024, "kindString": "Property", @@ -16047,7 +15806,7 @@ } }, { - "id": 2278, + "id": 2235, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -16057,14 +15816,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2279, + "id": 2236, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2281, + "id": 2238, "name": "fields", "kind": 1024, "kindString": "Property", @@ -16080,7 +15839,7 @@ } }, { - "id": 2282, + "id": 2239, "name": "filters", "kind": 1024, "kindString": "Property", @@ -16090,14 +15849,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2283, + "id": 2240, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2284, + "id": 2241, "name": "junction", "kind": 1024, "kindString": "Property", @@ -16124,19 +15883,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2284 + 2241 ] } ], "indexSignature": { - "id": 2285, + "id": 2242, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2286, + "id": 2243, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -16155,7 +15914,7 @@ } }, { - "id": 2280, + "id": 2237, "name": "order", "kind": 1024, "kindString": "Property", @@ -16173,9 +15932,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2281, - 2282, - 2280 + 2238, + 2239, + 2237 ] } ] @@ -16188,21 +15947,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2277, - 2278 + 2234, + 2235 ] } ] }, { - "id": 2287, + "id": 2244, "name": "ExportsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2292, + "id": 2249, "name": "channel", "kind": 1024, "kindString": "Property", @@ -16215,7 +15974,7 @@ } }, { - "id": 2290, + "id": 2247, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -16226,7 +15985,7 @@ } }, { - "id": 2293, + "id": 2250, "name": "exported_object", "kind": 1024, "kindString": "Property", @@ -16254,7 +16013,7 @@ } }, { - "id": 2288, + "id": 2245, "name": "id", "kind": 1024, "kindString": "Property", @@ -16265,7 +16024,7 @@ } }, { - "id": 2289, + "id": 2246, "name": "object", "kind": 1024, "kindString": "Property", @@ -16276,7 +16035,7 @@ } }, { - "id": 2294, + "id": 2251, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -16286,14 +16045,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2295, + "id": 2252, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2296, + "id": 2253, "name": "fields", "kind": 1024, "kindString": "Property", @@ -16309,7 +16068,7 @@ } }, { - "id": 2297, + "id": 2254, "name": "filters", "kind": 1024, "kindString": "Property", @@ -16319,14 +16078,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2298, + "id": 2255, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2299, + "id": 2256, "name": "junction", "kind": 1024, "kindString": "Property", @@ -16344,19 +16103,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2299 + 2256 ] } ], "indexSignature": { - "id": 2300, + "id": 2257, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2301, + "id": 2258, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -16380,8 +16139,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2296, - 2297 + 2253, + 2254 ] } ] @@ -16389,7 +16148,7 @@ } }, { - "id": 2302, + "id": 2259, "name": "result", "kind": 1024, "kindString": "Property", @@ -16399,14 +16158,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2303, + "id": 2260, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2304, + "id": 2261, "name": "url", "kind": 1024, "kindString": "Property", @@ -16422,7 +16181,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2304 + 2261 ] } ] @@ -16430,7 +16189,7 @@ } }, { - "id": 2291, + "id": 2248, "name": "status", "kind": 1024, "kindString": "Property", @@ -16463,27 +16222,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2292, - 2290, - 2293, - 2288, - 2289, - 2294, - 2302, - 2291 + 2249, + 2247, + 2250, + 2245, + 2246, + 2251, + 2259, + 2248 ] } ] }, { - "id": 2470, + "id": 2427, "name": "GiftRedemptionParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2471, + "id": 2428, "name": "credits", "kind": 1024, "kindString": "Property", @@ -16501,20 +16260,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2471 + 2428 ] } ] }, { - "id": 1653, + "id": 1610, "name": "LoyaltiesAddPoints", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1654, + "id": 1611, "name": "points", "kind": 1024, "kindString": "Property", @@ -16530,20 +16289,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1654 + 1611 ] } ] }, { - "id": 1655, + "id": 1612, "name": "LoyaltiesAddPointsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1658, + "id": 1615, "name": "balance", "kind": 1024, "kindString": "Property", @@ -16554,7 +16313,7 @@ } }, { - "id": 1660, + "id": 1617, "name": "object", "kind": 1024, "kindString": "Property", @@ -16565,7 +16324,7 @@ } }, { - "id": 1656, + "id": 1613, "name": "points", "kind": 1024, "kindString": "Property", @@ -16576,7 +16335,7 @@ } }, { - "id": 1661, + "id": 1618, "name": "related_object", "kind": 1024, "kindString": "Property", @@ -16586,14 +16345,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1662, + "id": 1619, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1664, + "id": 1621, "name": "id", "kind": 1024, "kindString": "Property", @@ -16606,7 +16365,7 @@ } }, { - "id": 1663, + "id": 1620, "name": "type", "kind": 1024, "kindString": "Property", @@ -16624,8 +16383,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1664, - 1663 + 1621, + 1620 ] } ] @@ -16633,7 +16392,7 @@ } }, { - "id": 1657, + "id": 1614, "name": "total", "kind": 1024, "kindString": "Property", @@ -16644,7 +16403,7 @@ } }, { - "id": 1659, + "id": 1616, "name": "type", "kind": 1024, "kindString": "Property", @@ -16660,25 +16419,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1658, - 1660, - 1656, - 1661, - 1657, - 1659 + 1615, + 1617, + 1613, + 1618, + 1614, + 1616 ] } ] }, { - "id": 1414, + "id": 1371, "name": "LoyaltiesCreateCampaign", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1417, + "id": 1374, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -16691,7 +16450,7 @@ } }, { - "id": 1437, + "id": 1394, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -16714,7 +16473,7 @@ } }, { - "id": 1415, + "id": 1372, "name": "name", "kind": 1024, "kindString": "Property", @@ -16725,7 +16484,7 @@ } }, { - "id": 1416, + "id": 1373, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -16738,7 +16497,7 @@ } }, { - "id": 1418, + "id": 1375, "name": "type", "kind": 1024, "kindString": "Property", @@ -16760,7 +16519,7 @@ } }, { - "id": 1420, + "id": 1377, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -16768,14 +16527,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1421, + "id": 1378, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1430, + "id": 1387, "name": "code_config", "kind": 1024, "kindString": "Property", @@ -16785,14 +16544,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1431, + "id": 1388, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1433, + "id": 1390, "name": "charset", "kind": 1024, "kindString": "Property", @@ -16805,7 +16564,7 @@ } }, { - "id": 1432, + "id": 1389, "name": "length", "kind": 1024, "kindString": "Property", @@ -16818,7 +16577,7 @@ } }, { - "id": 1434, + "id": 1391, "name": "pattern", "kind": 1024, "kindString": "Property", @@ -16831,7 +16590,7 @@ } }, { - "id": 1435, + "id": 1392, "name": "prefix", "kind": 1024, "kindString": "Property", @@ -16844,7 +16603,7 @@ } }, { - "id": 1436, + "id": 1393, "name": "suffix", "kind": 1024, "kindString": "Property", @@ -16862,11 +16621,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1433, - 1432, - 1434, - 1435, - 1436 + 1390, + 1389, + 1391, + 1392, + 1393 ] } ] @@ -16874,7 +16633,7 @@ } }, { - "id": 1426, + "id": 1383, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -16882,14 +16641,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1427, + "id": 1384, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1429, + "id": 1386, "name": "balance", "kind": 1024, "kindString": "Property", @@ -16902,7 +16661,7 @@ } }, { - "id": 1428, + "id": 1385, "name": "points", "kind": 1024, "kindString": "Property", @@ -16918,8 +16677,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1429, - 1428 + 1386, + 1385 ] } ] @@ -16927,7 +16686,7 @@ } }, { - "id": 1423, + "id": 1380, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -16937,14 +16696,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1424, + "id": 1381, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1425, + "id": 1382, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -16960,7 +16719,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1425 + 1382 ] } ] @@ -16968,7 +16727,7 @@ } }, { - "id": 1422, + "id": 1379, "name": "type", "kind": 1024, "kindString": "Property", @@ -16984,10 +16743,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1430, - 1426, - 1423, - 1422 + 1387, + 1383, + 1380, + 1379 ] } ] @@ -16995,7 +16754,7 @@ } }, { - "id": 1419, + "id": 1376, "name": "vouchers_count", "kind": 1024, "kindString": "Property", @@ -17013,26 +16772,26 @@ "title": "Properties", "kind": 1024, "children": [ - 1417, - 1437, - 1415, - 1416, - 1418, - 1420, - 1419 + 1374, + 1394, + 1372, + 1373, + 1375, + 1377, + 1376 ] } ] }, { - "id": 1438, + "id": 1395, "name": "LoyaltiesCreateCampaignResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1464, + "id": 1421, "name": "active", "kind": 1024, "kindString": "Property", @@ -17043,7 +16802,7 @@ } }, { - "id": 1455, + "id": 1412, "name": "activity_duration_after_publishing", "kind": 1024, "kindString": "Property", @@ -17056,7 +16815,7 @@ } }, { - "id": 1444, + "id": 1401, "name": "auto_join", "kind": 1024, "kindString": "Property", @@ -17069,7 +16828,7 @@ } }, { - "id": 1441, + "id": 1398, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -17082,7 +16841,7 @@ } }, { - "id": 1443, + "id": 1400, "name": "category", "kind": 1024, "kindString": "Property", @@ -17095,7 +16854,7 @@ } }, { - "id": 1462, + "id": 1419, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -17106,7 +16865,7 @@ } }, { - "id": 1446, + "id": 1403, "name": "description", "kind": 1024, "kindString": "Property", @@ -17119,7 +16878,7 @@ } }, { - "id": 1454, + "id": 1411, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -17132,7 +16891,7 @@ } }, { - "id": 1439, + "id": 1396, "name": "id", "kind": 1024, "kindString": "Property", @@ -17143,7 +16902,7 @@ } }, { - "id": 1445, + "id": 1402, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -17156,7 +16915,7 @@ } }, { - "id": 1461, + "id": 1418, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -17179,7 +16938,7 @@ } }, { - "id": 1440, + "id": 1397, "name": "name", "kind": 1024, "kindString": "Property", @@ -17190,7 +16949,7 @@ } }, { - "id": 1470, + "id": 1427, "name": "object", "kind": 1024, "kindString": "Property", @@ -17201,7 +16960,7 @@ } }, { - "id": 1468, + "id": 1425, "name": "protected", "kind": 1024, "kindString": "Property", @@ -17214,7 +16973,7 @@ } }, { - "id": 1466, + "id": 1423, "name": "referral_program", "kind": 1024, "kindString": "Property", @@ -17227,7 +16986,7 @@ } }, { - "id": 1447, + "id": 1404, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -17240,7 +16999,7 @@ } }, { - "id": 1442, + "id": 1399, "name": "type", "kind": 1024, "kindString": "Property", @@ -17260,7 +17019,7 @@ } }, { - "id": 1467, + "id": 1424, "name": "use_voucher_metadata_schema", "kind": 1024, "kindString": "Property", @@ -17273,7 +17032,7 @@ } }, { - "id": 1448, + "id": 1405, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -17283,14 +17042,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1449, + "id": 1406, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1450, + "id": 1407, "name": "data", "kind": 1024, "kindString": "Property", @@ -17301,13 +17060,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2010, + "id": 1967, "name": "ValidationRulesCreateAssignmentResponse" } } }, { - "id": 1453, + "id": 1410, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -17318,7 +17077,7 @@ } }, { - "id": 1451, + "id": 1408, "name": "object", "kind": 1024, "kindString": "Property", @@ -17329,7 +17088,7 @@ } }, { - "id": 1452, + "id": 1409, "name": "total", "kind": 1024, "kindString": "Property", @@ -17345,10 +17104,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1450, - 1453, - 1451, - 1452 + 1407, + 1410, + 1408, + 1409 ] } ] @@ -17356,7 +17115,7 @@ } }, { - "id": 1460, + "id": 1417, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -17372,7 +17131,7 @@ } }, { - "id": 1456, + "id": 1413, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -17382,14 +17141,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1457, + "id": 1414, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1459, + "id": 1416, "name": "duration", "kind": 1024, "kindString": "Property", @@ -17402,7 +17161,7 @@ } }, { - "id": 1458, + "id": 1415, "name": "interval", "kind": 1024, "kindString": "Property", @@ -17420,8 +17179,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1459, - 1458 + 1416, + 1415 ] } ] @@ -17429,7 +17188,7 @@ } }, { - "id": 1465, + "id": 1422, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -17442,7 +17201,7 @@ } }, { - "id": 1469, + "id": 1426, "name": "vouchers_count", "kind": 1024, "kindString": "Property", @@ -17455,7 +17214,7 @@ } }, { - "id": 1463, + "id": 1420, "name": "vouchers_generation_status", "kind": 1024, "kindString": "Property", @@ -17488,43 +17247,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1464, - 1455, - 1444, - 1441, - 1443, - 1462, - 1446, - 1454, - 1439, - 1445, - 1461, - 1440, - 1470, - 1468, - 1466, - 1447, - 1442, - 1467, - 1448, - 1460, - 1456, - 1465, - 1469, - 1463 + 1421, + 1412, + 1401, + 1398, + 1400, + 1419, + 1403, + 1411, + 1396, + 1402, + 1418, + 1397, + 1427, + 1425, + 1423, + 1404, + 1399, + 1424, + 1405, + 1417, + 1413, + 1422, + 1426, + 1420 ] } ] }, { - "id": 1554, + "id": 1511, "name": "LoyaltiesCreateEarningRule", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1561, + "id": 1518, "name": "custom_event", "kind": 1024, "kindString": "Property", @@ -17534,14 +17293,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1562, + "id": 1519, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1563, + "id": 1520, "name": "schema_id", "kind": 1024, "kindString": "Property", @@ -17559,7 +17318,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1563 + 1520 ] } ] @@ -17567,7 +17326,7 @@ } }, { - "id": 1555, + "id": 1512, "name": "event", "kind": 1024, "kindString": "Property", @@ -17578,7 +17337,7 @@ } }, { - "id": 1557, + "id": 1514, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -17588,19 +17347,19 @@ "types": [ { "type": "reference", - "id": 1521, + "id": 1478, "name": "LoyaltyFixed" }, { "type": "reference", - "id": 1524, + "id": 1481, "name": "LoyaltyProportional" } ] } }, { - "id": 1564, + "id": 1521, "name": "segment", "kind": 1024, "kindString": "Property", @@ -17610,14 +17369,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1565, + "id": 1522, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1566, + "id": 1523, "name": "id", "kind": 1024, "kindString": "Property", @@ -17635,7 +17394,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1566 + 1523 ] } ] @@ -17643,7 +17402,7 @@ } }, { - "id": 1558, + "id": 1515, "name": "source", "kind": 1024, "kindString": "Property", @@ -17653,14 +17412,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1559, + "id": 1516, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1560, + "id": 1517, "name": "banner", "kind": 1024, "kindString": "Property", @@ -17678,7 +17437,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1560 + 1517 ] } ] @@ -17686,7 +17445,7 @@ } }, { - "id": 1556, + "id": 1513, "name": "validation_rule_id", "kind": 1024, "kindString": "Property", @@ -17704,25 +17463,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1561, - 1555, - 1557, - 1564, - 1558, - 1556 + 1518, + 1512, + 1514, + 1521, + 1515, + 1513 ] } ] }, { - "id": 1628, + "id": 1585, "name": "LoyaltiesCreateMember", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1630, + "id": 1587, "name": "channel", "kind": 1024, "kindString": "Property", @@ -17735,7 +17494,7 @@ } }, { - "id": 1631, + "id": 1588, "name": "customer", "kind": 1024, "kindString": "Property", @@ -17743,14 +17502,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1632, + "id": 1589, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1637, + "id": 1594, "name": "description", "kind": 1024, "kindString": "Property", @@ -17763,7 +17522,7 @@ } }, { - "id": 1635, + "id": 1592, "name": "email", "kind": 1024, "kindString": "Property", @@ -17776,7 +17535,7 @@ } }, { - "id": 1633, + "id": 1590, "name": "id", "kind": 1024, "kindString": "Property", @@ -17789,7 +17548,7 @@ } }, { - "id": 1636, + "id": 1593, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -17812,7 +17571,7 @@ } }, { - "id": 1634, + "id": 1591, "name": "name", "kind": 1024, "kindString": "Property", @@ -17825,7 +17584,7 @@ } }, { - "id": 1638, + "id": 1595, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -17843,12 +17602,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1637, - 1635, - 1633, - 1636, - 1634, - 1638 + 1594, + 1592, + 1590, + 1593, + 1591, + 1595 ] } ] @@ -17856,7 +17615,7 @@ } }, { - "id": 1639, + "id": 1596, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -17879,7 +17638,7 @@ } }, { - "id": 1629, + "id": 1586, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -17897,23 +17656,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1630, - 1631, - 1639, - 1629 + 1587, + 1588, + 1596, + 1586 ] } ] }, { - "id": 1497, + "id": 1454, "name": "LoyaltiesCreateRewardAssignmentResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1507, + "id": 1464, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -17924,7 +17683,7 @@ } }, { - "id": 1498, + "id": 1455, "name": "id", "kind": 1024, "kindString": "Property", @@ -17935,7 +17694,7 @@ } }, { - "id": 1509, + "id": 1466, "name": "object", "kind": 1024, "kindString": "Property", @@ -17946,7 +17705,7 @@ } }, { - "id": 1502, + "id": 1459, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -17956,14 +17715,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1503, + "id": 1460, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1504, + "id": 1461, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -17971,14 +17730,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1505, + "id": 1462, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1506, + "id": 1463, "name": "points", "kind": 1024, "kindString": "Property", @@ -17994,7 +17753,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1506 + 1463 ] } ] @@ -18007,7 +17766,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1504 + 1461 ] } ] @@ -18015,7 +17774,7 @@ } }, { - "id": 1500, + "id": 1457, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -18028,7 +17787,7 @@ } }, { - "id": 1501, + "id": 1458, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -18041,7 +17800,7 @@ } }, { - "id": 1499, + "id": 1456, "name": "reward_id", "kind": 1024, "kindString": "Property", @@ -18052,7 +17811,7 @@ } }, { - "id": 1508, + "id": 1465, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -18070,27 +17829,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1507, - 1498, - 1509, - 1502, - 1500, - 1501, - 1499, - 1508 + 1464, + 1455, + 1466, + 1459, + 1457, + 1458, + 1456, + 1465 ] } ] }, { - "id": 1490, + "id": 1447, "name": "LoyaltiesCreateRewardAssignments", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1492, + "id": 1449, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -18098,14 +17857,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1493, + "id": 1450, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1494, + "id": 1451, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -18113,14 +17872,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1495, + "id": 1452, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1496, + "id": 1453, "name": "points", "kind": 1024, "kindString": "Property", @@ -18136,7 +17895,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1496 + 1453 ] } ] @@ -18149,7 +17908,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1494 + 1451 ] } ] @@ -18157,7 +17916,7 @@ } }, { - "id": 1491, + "id": 1448, "name": "reward", "kind": 1024, "kindString": "Property", @@ -18173,21 +17932,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1492, - 1491 + 1449, + 1448 ] } ] }, { - "id": 1480, + "id": 1437, "name": "LoyaltiesDeleteCampaignParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1481, + "id": 1438, "name": "force", "kind": 1024, "kindString": "Property", @@ -18205,20 +17964,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1481 + 1438 ] } ] }, { - "id": 1532, + "id": 1489, "name": "LoyaltiesEarningRulesResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1548, + "id": 1505, "name": "automation_id", "kind": 1024, "kindString": "Property", @@ -18229,7 +17988,7 @@ } }, { - "id": 1534, + "id": 1491, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -18240,7 +17999,7 @@ } }, { - "id": 1541, + "id": 1498, "name": "event", "kind": 1024, "kindString": "Property", @@ -18251,7 +18010,7 @@ } }, { - "id": 1533, + "id": 1490, "name": "id", "kind": 1024, "kindString": "Property", @@ -18262,7 +18021,7 @@ } }, { - "id": 1537, + "id": 1494, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -18272,19 +18031,19 @@ "types": [ { "type": "reference", - "id": 1521, + "id": 1478, "name": "LoyaltyFixed" }, { "type": "reference", - "id": 1524, + "id": 1481, "name": "LoyaltyProportional" } ] } }, { - "id": 1547, + "id": 1504, "name": "object", "kind": 1024, "kindString": "Property", @@ -18295,7 +18054,7 @@ } }, { - "id": 1538, + "id": 1495, "name": "segment", "kind": 1024, "kindString": "Property", @@ -18305,14 +18064,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1539, + "id": 1496, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1540, + "id": 1497, "name": "id", "kind": 1024, "kindString": "Property", @@ -18328,7 +18087,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1540 + 1497 ] } ] @@ -18336,7 +18095,7 @@ } }, { - "id": 1542, + "id": 1499, "name": "source", "kind": 1024, "kindString": "Property", @@ -18346,14 +18105,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1543, + "id": 1500, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1544, + "id": 1501, "name": "banner", "kind": 1024, "kindString": "Property", @@ -18366,7 +18125,7 @@ } }, { - "id": 1545, + "id": 1502, "name": "object_id", "kind": 1024, "kindString": "Property", @@ -18379,7 +18138,7 @@ } }, { - "id": 1546, + "id": 1503, "name": "object_type", "kind": 1024, "kindString": "Property", @@ -18397,9 +18156,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1544, - 1545, - 1546 + 1501, + 1502, + 1503 ] } ] @@ -18407,7 +18166,7 @@ } }, { - "id": 1535, + "id": 1492, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -18420,7 +18179,7 @@ } }, { - "id": 1536, + "id": 1493, "name": "validation_rule_id", "kind": 1024, "kindString": "Property", @@ -18438,29 +18197,29 @@ "title": "Properties", "kind": 1024, "children": [ - 1548, - 1534, - 1541, - 1533, - 1537, - 1547, - 1538, - 1542, - 1535, - 1536 + 1505, + 1491, + 1498, + 1490, + 1494, + 1504, + 1495, + 1499, + 1492, + 1493 ] } ] }, { - "id": 1642, + "id": 1599, "name": "LoyaltiesGetMemberActivitiesResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1646, + "id": 1603, "name": "activities", "kind": 1024, "kindString": "Property", @@ -18470,14 +18229,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1647, + "id": 1604, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1651, + "id": 1608, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -18488,7 +18247,7 @@ } }, { - "id": 1652, + "id": 1609, "name": "data", "kind": 1024, "kindString": "Property", @@ -18499,7 +18258,7 @@ } }, { - "id": 1648, + "id": 1605, "name": "id", "kind": 1024, "kindString": "Property", @@ -18510,7 +18269,7 @@ } }, { - "id": 1650, + "id": 1607, "name": "object", "kind": 1024, "kindString": "Property", @@ -18521,7 +18280,7 @@ } }, { - "id": 1649, + "id": 1606, "name": "type", "kind": 1024, "kindString": "Property", @@ -18537,11 +18296,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1651, - 1652, - 1648, - 1650, - 1649 + 1608, + 1609, + 1605, + 1607, + 1606 ] } ] @@ -18550,7 +18309,7 @@ } }, { - "id": 1644, + "id": 1601, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -18561,7 +18320,7 @@ } }, { - "id": 1643, + "id": 1600, "name": "object", "kind": 1024, "kindString": "Property", @@ -18572,7 +18331,7 @@ } }, { - "id": 1645, + "id": 1602, "name": "total", "kind": 1024, "kindString": "Property", @@ -18588,23 +18347,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1646, - 1644, - 1643, - 1645 + 1603, + 1601, + 1600, + 1602 ] } ] }, { - "id": 1518, + "id": 1475, "name": "LoyaltiesListEarningRulesParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1519, + "id": 1476, "name": "limit", "kind": 1024, "kindString": "Property", @@ -18617,7 +18376,7 @@ } }, { - "id": 1520, + "id": 1477, "name": "page", "kind": 1024, "kindString": "Property", @@ -18635,21 +18394,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1519, - 1520 + 1476, + 1477 ] } ] }, { - "id": 1549, + "id": 1506, "name": "LoyaltiesListEarningRulesResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1553, + "id": 1510, "name": "data", "kind": 1024, "kindString": "Property", @@ -18658,13 +18417,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1532, + "id": 1489, "name": "LoyaltiesEarningRulesResponse" } } }, { - "id": 1552, + "id": 1509, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -18675,7 +18434,7 @@ } }, { - "id": 1550, + "id": 1507, "name": "object", "kind": 1024, "kindString": "Property", @@ -18686,7 +18445,7 @@ } }, { - "id": 1551, + "id": 1508, "name": "total", "kind": 1024, "kindString": "Property", @@ -18702,23 +18461,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1553, - 1552, - 1550, - 1551 + 1510, + 1509, + 1507, + 1508 ] } ] }, { - "id": 1578, + "id": 1535, "name": "LoyaltiesListMembersParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1581, + "id": 1538, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -18728,14 +18487,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1582, + "id": 1539, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1584, + "id": 1541, "name": "after", "kind": 1024, "kindString": "Property", @@ -18748,7 +18507,7 @@ } }, { - "id": 1583, + "id": 1540, "name": "before", "kind": 1024, "kindString": "Property", @@ -18766,8 +18525,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1584, - 1583 + 1541, + 1540 ] } ] @@ -18775,7 +18534,7 @@ } }, { - "id": 1579, + "id": 1536, "name": "limit", "kind": 1024, "kindString": "Property", @@ -18788,7 +18547,7 @@ } }, { - "id": 1580, + "id": 1537, "name": "page", "kind": 1024, "kindString": "Property", @@ -18801,7 +18560,7 @@ } }, { - "id": 1585, + "id": 1542, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -18811,14 +18570,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1586, + "id": 1543, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1588, + "id": 1545, "name": "after", "kind": 1024, "kindString": "Property", @@ -18831,7 +18590,7 @@ } }, { - "id": 1587, + "id": 1544, "name": "before", "kind": 1024, "kindString": "Property", @@ -18849,8 +18608,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1588, - 1587 + 1545, + 1544 ] } ] @@ -18863,23 +18622,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1581, - 1579, - 1580, - 1585 + 1538, + 1536, + 1537, + 1542 ] } ] }, { - "id": 1623, + "id": 1580, "name": "LoyaltiesListMembersResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1626, + "id": 1583, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -18890,7 +18649,7 @@ } }, { - "id": 1624, + "id": 1581, "name": "object", "kind": 1024, "kindString": "Property", @@ -18901,7 +18660,7 @@ } }, { - "id": 1625, + "id": 1582, "name": "total", "kind": 1024, "kindString": "Property", @@ -18912,7 +18671,7 @@ } }, { - "id": 1627, + "id": 1584, "name": "vouchers", "kind": 1024, "kindString": "Property", @@ -18921,7 +18680,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1589, + "id": 1546, "name": "LoyaltiesVoucherResponse" } } @@ -18932,23 +18691,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1626, - 1624, - 1625, - 1627 + 1583, + 1581, + 1582, + 1584 ] } ] }, { - "id": 1406, + "id": 1363, "name": "LoyaltiesListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1407, + "id": 1364, "name": "limit", "kind": 1024, "kindString": "Property", @@ -18961,7 +18720,7 @@ } }, { - "id": 1408, + "id": 1365, "name": "page", "kind": 1024, "kindString": "Property", @@ -18979,21 +18738,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1407, - 1408 + 1364, + 1365 ] } ] }, { - "id": 1409, + "id": 1366, "name": "LoyaltiesListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1413, + "id": 1370, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -19004,13 +18763,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1438, + "id": 1395, "name": "LoyaltiesCreateCampaignResponse" } } }, { - "id": 1412, + "id": 1369, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -19021,7 +18780,7 @@ } }, { - "id": 1410, + "id": 1367, "name": "object", "kind": 1024, "kindString": "Property", @@ -19032,7 +18791,7 @@ } }, { - "id": 1411, + "id": 1368, "name": "total", "kind": 1024, "kindString": "Property", @@ -19048,23 +18807,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1413, - 1412, - 1410, - 1411 + 1370, + 1369, + 1367, + 1368 ] } ] }, { - "id": 1482, + "id": 1439, "name": "LoyaltiesListRewardAssignmentsParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1483, + "id": 1440, "name": "limit", "kind": 1024, "kindString": "Property", @@ -19077,7 +18836,7 @@ } }, { - "id": 1484, + "id": 1441, "name": "page", "kind": 1024, "kindString": "Property", @@ -19095,21 +18854,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1483, - 1484 + 1440, + 1441 ] } ] }, { - "id": 1485, + "id": 1442, "name": "LoyaltiesListRewardAssignmentsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1489, + "id": 1446, "name": "data", "kind": 1024, "kindString": "Property", @@ -19118,13 +18877,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1497, + "id": 1454, "name": "LoyaltiesCreateRewardAssignmentResponse" } } }, { - "id": 1488, + "id": 1445, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -19135,7 +18894,7 @@ } }, { - "id": 1486, + "id": 1443, "name": "object", "kind": 1024, "kindString": "Property", @@ -19146,7 +18905,7 @@ } }, { - "id": 1487, + "id": 1444, "name": "total", "kind": 1024, "kindString": "Property", @@ -19162,23 +18921,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1489, - 1488, - 1486, - 1487 + 1446, + 1445, + 1443, + 1444 ] } ] }, { - "id": 1665, + "id": 1622, "name": "LoyaltiesRedeemRewardParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1676, + "id": 1633, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -19201,7 +18960,7 @@ } }, { - "id": 1669, + "id": 1626, "name": "order", "kind": 1024, "kindString": "Property", @@ -19211,14 +18970,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1670, + "id": 1627, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1673, + "id": 1630, "name": "amount", "kind": 1024, "kindString": "Property", @@ -19229,7 +18988,7 @@ } }, { - "id": 1671, + "id": 1628, "name": "id", "kind": 1024, "kindString": "Property", @@ -19242,7 +19001,7 @@ } }, { - "id": 1674, + "id": 1631, "name": "items", "kind": 1024, "kindString": "Property", @@ -19253,13 +19012,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" } } }, { - "id": 1675, + "id": 1632, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -19282,7 +19041,7 @@ } }, { - "id": 1672, + "id": 1629, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -19300,11 +19059,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1673, - 1671, - 1674, - 1675, - 1672 + 1630, + 1628, + 1631, + 1632, + 1629 ] } ] @@ -19312,7 +19071,7 @@ } }, { - "id": 1666, + "id": 1623, "name": "reward", "kind": 1024, "kindString": "Property", @@ -19320,14 +19079,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1667, + "id": 1624, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1668, + "id": 1625, "name": "id", "kind": 1024, "kindString": "Property", @@ -19343,7 +19102,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1668 + 1625 ] } ] @@ -19356,22 +19115,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1676, - 1669, - 1666 + 1633, + 1626, + 1623 ] } ] }, { - "id": 1677, + "id": 1634, "name": "LoyaltiesRedeemRewardResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1682, + "id": 1639, "name": "amount", "kind": 1024, "kindString": "Property", @@ -19382,7 +19141,7 @@ } }, { - "id": 1695, + "id": 1652, "name": "customer", "kind": 1024, "kindString": "Property", @@ -19394,7 +19153,7 @@ } }, { - "id": 1681, + "id": 1638, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -19405,7 +19164,7 @@ } }, { - "id": 1680, + "id": 1637, "name": "date", "kind": 1024, "kindString": "Property", @@ -19416,7 +19175,7 @@ } }, { - "id": 1678, + "id": 1635, "name": "id", "kind": 1024, "kindString": "Property", @@ -19427,7 +19186,7 @@ } }, { - "id": 1679, + "id": 1636, "name": "object", "kind": 1024, "kindString": "Property", @@ -19438,7 +19197,7 @@ } }, { - "id": 1683, + "id": 1640, "name": "order", "kind": 1024, "kindString": "Property", @@ -19453,7 +19212,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" }, { @@ -19535,14 +19294,14 @@ { "type": "reflection", "declaration": { - "id": 1684, + "id": 1641, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1687, + "id": 1644, "name": "customer", "kind": 1024, "kindString": "Property", @@ -19550,14 +19309,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1688, + "id": 1645, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1689, + "id": 1646, "name": "id", "kind": 1024, "kindString": "Property", @@ -19568,7 +19327,7 @@ } }, { - "id": 1690, + "id": 1647, "name": "object", "kind": 1024, "kindString": "Property", @@ -19579,7 +19338,7 @@ } }, { - "id": 1691, + "id": 1648, "name": "referrals", "kind": 1024, "kindString": "Property", @@ -19587,14 +19346,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1692, + "id": 1649, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1693, + "id": 1650, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -19608,7 +19367,7 @@ } }, { - "id": 1694, + "id": 1651, "name": "total", "kind": 1024, "kindString": "Property", @@ -19624,8 +19383,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1693, - 1694 + 1650, + 1651 ] } ] @@ -19638,9 +19397,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1689, - 1690, - 1691 + 1646, + 1647, + 1648 ] } ] @@ -19648,7 +19407,7 @@ } }, { - "id": 1686, + "id": 1643, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -19659,7 +19418,7 @@ } }, { - "id": 1685, + "id": 1642, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -19675,9 +19434,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1687, - 1686, - 1685 + 1644, + 1643, + 1642 ] } ] @@ -19687,7 +19446,7 @@ } }, { - "id": 1697, + "id": 1654, "name": "result", "kind": 1024, "kindString": "Property", @@ -19707,7 +19466,7 @@ } }, { - "id": 1696, + "id": 1653, "name": "reward", "kind": 1024, "kindString": "Property", @@ -19731,7 +19490,7 @@ } }, { - "id": 1698, + "id": 1655, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -19744,7 +19503,7 @@ } }, { - "id": 1699, + "id": 1656, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -19752,14 +19511,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1700, + "id": 1657, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1730, + "id": 1687, "name": "active", "kind": 1024, "kindString": "Property", @@ -19770,7 +19529,7 @@ } }, { - "id": 1731, + "id": 1688, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -19783,7 +19542,7 @@ } }, { - "id": 1732, + "id": 1689, "name": "assets", "kind": 1024, "kindString": "Property", @@ -19793,14 +19552,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1733, + "id": 1690, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1738, + "id": 1695, "name": "barcode", "kind": 1024, "kindString": "Property", @@ -19810,14 +19569,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1739, + "id": 1696, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1740, + "id": 1697, "name": "id", "kind": 1024, "kindString": "Property", @@ -19828,7 +19587,7 @@ } }, { - "id": 1741, + "id": 1698, "name": "url", "kind": 1024, "kindString": "Property", @@ -19844,8 +19603,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1740, - 1741 + 1697, + 1698 ] } ] @@ -19853,7 +19612,7 @@ } }, { - "id": 1734, + "id": 1691, "name": "qr", "kind": 1024, "kindString": "Property", @@ -19863,14 +19622,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1735, + "id": 1692, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1736, + "id": 1693, "name": "id", "kind": 1024, "kindString": "Property", @@ -19881,7 +19640,7 @@ } }, { - "id": 1737, + "id": 1694, "name": "url", "kind": 1024, "kindString": "Property", @@ -19897,8 +19656,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1736, - 1737 + 1693, + 1694 ] } ] @@ -19911,8 +19670,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1738, - 1734 + 1695, + 1691 ] } ] @@ -19920,7 +19679,7 @@ } }, { - "id": 1703, + "id": 1660, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -19933,7 +19692,7 @@ } }, { - "id": 1704, + "id": 1661, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -19946,7 +19705,7 @@ } }, { - "id": 1705, + "id": 1662, "name": "category", "kind": 1024, "kindString": "Property", @@ -19959,7 +19718,7 @@ } }, { - "id": 1702, + "id": 1659, "name": "code", "kind": 1024, "kindString": "Property", @@ -19972,7 +19731,7 @@ } }, { - "id": 1745, + "id": 1702, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -19983,7 +19742,7 @@ } }, { - "id": 1712, + "id": 1669, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -19996,7 +19755,7 @@ } }, { - "id": 1747, + "id": 1704, "name": "holder", "kind": 1024, "kindString": "Property", @@ -20004,14 +19763,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1748, + "id": 1705, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1749, + "id": 1706, "name": "id", "kind": 1024, "kindString": "Property", @@ -20022,7 +19781,7 @@ } }, { - "id": 1751, + "id": 1708, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -20045,7 +19804,7 @@ } }, { - "id": 1752, + "id": 1709, "name": "object", "kind": 1024, "kindString": "Property", @@ -20056,7 +19815,7 @@ } }, { - "id": 1750, + "id": 1707, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -20072,10 +19831,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1749, - 1751, - 1752, - 1750 + 1706, + 1708, + 1709, + 1707 ] } ] @@ -20083,7 +19842,7 @@ } }, { - "id": 1744, + "id": 1701, "name": "holder_id", "kind": 1024, "kindString": "Property", @@ -20094,7 +19853,7 @@ } }, { - "id": 1701, + "id": 1658, "name": "id", "kind": 1024, "kindString": "Property", @@ -20105,7 +19864,7 @@ } }, { - "id": 1742, + "id": 1699, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -20116,7 +19875,7 @@ } }, { - "id": 1707, + "id": 1664, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -20126,14 +19885,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1708, + "id": 1665, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1710, + "id": 1667, "name": "balance", "kind": 1024, "kindString": "Property", @@ -20144,7 +19903,7 @@ } }, { - "id": 1709, + "id": 1666, "name": "points", "kind": 1024, "kindString": "Property", @@ -20160,8 +19919,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1710, - 1709 + 1667, + 1666 ] } ] @@ -20169,7 +19928,7 @@ } }, { - "id": 1753, + "id": 1710, "name": "object", "kind": 1024, "kindString": "Property", @@ -20182,7 +19941,7 @@ } }, { - "id": 1718, + "id": 1675, "name": "publish", "kind": 1024, "kindString": "Property", @@ -20190,14 +19949,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1719, + "id": 1676, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1721, + "id": 1678, "name": "count", "kind": 1024, "kindString": "Property", @@ -20208,7 +19967,7 @@ } }, { - "id": 1720, + "id": 1677, "name": "object", "kind": 1024, "kindString": "Property", @@ -20219,7 +19978,7 @@ } }, { - "id": 1722, + "id": 1679, "name": "url", "kind": 1024, "kindString": "Property", @@ -20235,9 +19994,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1721, - 1720, - 1722 + 1678, + 1677, + 1679 ] } ] @@ -20245,7 +20004,7 @@ } }, { - "id": 1723, + "id": 1680, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -20253,14 +20012,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1724, + "id": 1681, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1725, + "id": 1682, "name": "object", "kind": 1024, "kindString": "Property", @@ -20271,7 +20030,7 @@ } }, { - "id": 1726, + "id": 1683, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -20282,7 +20041,7 @@ } }, { - "id": 1729, + "id": 1686, "name": "redeemed_points", "kind": 1024, "kindString": "Property", @@ -20293,7 +20052,7 @@ } }, { - "id": 1727, + "id": 1684, "name": "redeemed_quantity", "kind": 1024, "kindString": "Property", @@ -20304,7 +20063,7 @@ } }, { - "id": 1728, + "id": 1685, "name": "url", "kind": 1024, "kindString": "Property", @@ -20320,11 +20079,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1725, - 1726, - 1729, - 1727, - 1728 + 1682, + 1683, + 1686, + 1684, + 1685 ] } ] @@ -20332,7 +20091,7 @@ } }, { - "id": 1743, + "id": 1700, "name": "referrer_id", "kind": 1024, "kindString": "Property", @@ -20343,7 +20102,7 @@ } }, { - "id": 1711, + "id": 1668, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -20356,7 +20115,7 @@ } }, { - "id": 1706, + "id": 1663, "name": "type", "kind": 1024, "kindString": "Property", @@ -20367,7 +20126,7 @@ } }, { - "id": 1746, + "id": 1703, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -20378,7 +20137,7 @@ } }, { - "id": 1754, + "id": 1711, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -20386,14 +20145,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1755, + "id": 1712, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1759, + "id": 1716, "name": "data", "kind": 1024, "kindString": "Property", @@ -20405,14 +20164,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1760, + "id": 1717, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1765, + "id": 1722, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -20423,7 +20182,7 @@ } }, { - "id": 1761, + "id": 1718, "name": "id", "kind": 1024, "kindString": "Property", @@ -20434,7 +20193,7 @@ } }, { - "id": 1766, + "id": 1723, "name": "object", "kind": 1024, "kindString": "Property", @@ -20445,7 +20204,7 @@ } }, { - "id": 1763, + "id": 1720, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -20458,7 +20217,7 @@ } }, { - "id": 1764, + "id": 1721, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -20471,7 +20230,7 @@ } }, { - "id": 1762, + "id": 1719, "name": "rule_id", "kind": 1024, "kindString": "Property", @@ -20489,12 +20248,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1765, - 1761, - 1766, - 1763, - 1764, - 1762 + 1722, + 1718, + 1723, + 1720, + 1721, + 1719 ] } ] @@ -20503,7 +20262,7 @@ } }, { - "id": 1758, + "id": 1715, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -20514,7 +20273,7 @@ } }, { - "id": 1756, + "id": 1713, "name": "object", "kind": 1024, "kindString": "Property", @@ -20525,7 +20284,7 @@ } }, { - "id": 1757, + "id": 1714, "name": "total", "kind": 1024, "kindString": "Property", @@ -20541,10 +20300,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1759, - 1758, - 1756, - 1757 + 1716, + 1715, + 1713, + 1714 ] } ] @@ -20552,7 +20311,7 @@ } }, { - "id": 1717, + "id": 1674, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -20568,7 +20327,7 @@ } }, { - "id": 1713, + "id": 1670, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -20578,14 +20337,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1714, + "id": 1671, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1716, + "id": 1673, "name": "duration", "kind": 1024, "kindString": "Property", @@ -20598,7 +20357,7 @@ } }, { - "id": 1715, + "id": 1672, "name": "interval", "kind": 1024, "kindString": "Property", @@ -20616,8 +20375,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1716, - 1715 + 1673, + 1672 ] } ] @@ -20630,30 +20389,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1730, - 1731, - 1732, - 1703, - 1704, - 1705, + 1687, + 1688, + 1689, + 1660, + 1661, + 1662, + 1659, 1702, - 1745, - 1712, - 1747, - 1744, + 1669, + 1704, 1701, - 1742, - 1707, - 1753, - 1718, - 1723, - 1743, + 1658, + 1699, + 1664, + 1710, + 1675, + 1680, + 1700, + 1668, + 1663, + 1703, 1711, - 1706, - 1746, - 1754, - 1717, - 1713 + 1674, + 1670 ] } ] @@ -20666,30 +20425,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1682, - 1695, - 1681, - 1680, - 1678, - 1679, - 1683, - 1697, - 1696, - 1698, - 1699 + 1639, + 1652, + 1638, + 1637, + 1635, + 1636, + 1640, + 1654, + 1653, + 1655, + 1656 ] } ] }, { - "id": 1472, + "id": 1429, "name": "LoyaltiesUpdateCampaign", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1477, + "id": 1434, "name": "description", "kind": 1024, "kindString": "Property", @@ -20702,7 +20461,7 @@ } }, { - "id": 1475, + "id": 1432, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -20715,7 +20474,7 @@ } }, { - "id": 1473, + "id": 1430, "name": "id", "kind": 1024, "kindString": "Property", @@ -20726,7 +20485,7 @@ } }, { - "id": 1476, + "id": 1433, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -20749,7 +20508,7 @@ } }, { - "id": 1474, + "id": 1431, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -20762,7 +20521,7 @@ } }, { - "id": 1478, + "id": 1435, "name": "type", "kind": 1024, "kindString": "Property", @@ -20789,25 +20548,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1477, - 1475, - 1473, - 1476, - 1474, - 1478 + 1434, + 1432, + 1430, + 1433, + 1431, + 1435 ] } ] }, { - "id": 1568, + "id": 1525, "name": "LoyaltiesUpdateEarningRule", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1569, + "id": 1526, "name": "id", "kind": 1024, "kindString": "Property", @@ -20818,7 +20577,7 @@ } }, { - "id": 1574, + "id": 1531, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -20828,14 +20587,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1575, + "id": 1532, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1576, + "id": 1533, "name": "points", "kind": 1024, "kindString": "Property", @@ -20851,7 +20610,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1576 + 1533 ] } ] @@ -20859,7 +20618,7 @@ } }, { - "id": 1571, + "id": 1528, "name": "source", "kind": 1024, "kindString": "Property", @@ -20869,14 +20628,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1572, + "id": 1529, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1573, + "id": 1530, "name": "banner", "kind": 1024, "kindString": "Property", @@ -20892,7 +20651,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1573 + 1530 ] } ] @@ -20900,7 +20659,7 @@ } }, { - "id": 1570, + "id": 1527, "name": "validation_rule_id", "kind": 1024, "kindString": "Property", @@ -20918,23 +20677,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1569, - 1574, - 1571, - 1570 + 1526, + 1531, + 1528, + 1527 ] } ] }, { - "id": 1510, + "id": 1467, "name": "LoyaltiesUpdateRewardAssignment", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1511, + "id": 1468, "name": "id", "kind": 1024, "kindString": "Property", @@ -20945,7 +20704,7 @@ } }, { - "id": 1512, + "id": 1469, "name": "parameters", "kind": 1024, "kindString": "Property", @@ -20953,14 +20712,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1513, + "id": 1470, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1514, + "id": 1471, "name": "loyalty", "kind": 1024, "kindString": "Property", @@ -20968,14 +20727,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1515, + "id": 1472, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1516, + "id": 1473, "name": "points", "kind": 1024, "kindString": "Property", @@ -20991,7 +20750,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1516 + 1473 ] } ] @@ -21004,7 +20763,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1514 + 1471 ] } ] @@ -21017,21 +20776,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1511, - 1512 + 1468, + 1469 ] } ] }, { - "id": 1589, + "id": 1546, "name": "LoyaltiesVoucherResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1617, + "id": 1574, "name": "active", "kind": 1024, "kindString": "Property", @@ -21044,7 +20803,7 @@ } }, { - "id": 1618, + "id": 1575, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -21057,7 +20816,7 @@ } }, { - "id": 1592, + "id": 1549, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -21068,7 +20827,7 @@ } }, { - "id": 1593, + "id": 1550, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -21079,7 +20838,7 @@ } }, { - "id": 1594, + "id": 1551, "name": "category", "kind": 1024, "kindString": "Property", @@ -21092,7 +20851,7 @@ } }, { - "id": 1591, + "id": 1548, "name": "code", "kind": 1024, "kindString": "Property", @@ -21103,7 +20862,7 @@ } }, { - "id": 1601, + "id": 1558, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -21116,7 +20875,7 @@ } }, { - "id": 1621, + "id": 1578, "name": "holder_id", "kind": 1024, "kindString": "Property", @@ -21129,7 +20888,7 @@ } }, { - "id": 1590, + "id": 1547, "name": "id", "kind": 1024, "kindString": "Property", @@ -21140,7 +20899,7 @@ } }, { - "id": 1620, + "id": 1577, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -21153,7 +20912,7 @@ } }, { - "id": 1596, + "id": 1553, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -21161,14 +20920,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1597, + "id": 1554, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1599, + "id": 1556, "name": "balance", "kind": 1024, "kindString": "Property", @@ -21179,7 +20938,7 @@ } }, { - "id": 1598, + "id": 1555, "name": "points", "kind": 1024, "kindString": "Property", @@ -21195,8 +20954,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1599, - 1598 + 1556, + 1555 ] } ] @@ -21204,7 +20963,7 @@ } }, { - "id": 1619, + "id": 1576, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -21227,7 +20986,7 @@ } }, { - "id": 1607, + "id": 1564, "name": "publish", "kind": 1024, "kindString": "Property", @@ -21237,14 +20996,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1608, + "id": 1565, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1609, + "id": 1566, "name": "count", "kind": 1024, "kindString": "Property", @@ -21257,7 +21016,7 @@ } }, { - "id": 1610, + "id": 1567, "name": "entries", "kind": 1024, "kindString": "Property", @@ -21278,8 +21037,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1609, - 1610 + 1566, + 1567 ] } ] @@ -21287,7 +21046,7 @@ } }, { - "id": 1611, + "id": 1568, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -21297,14 +21056,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1612, + "id": 1569, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1613, + "id": 1570, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -21317,7 +21076,7 @@ } }, { - "id": 1614, + "id": 1571, "name": "redeemed_points", "kind": 1024, "kindString": "Property", @@ -21330,7 +21089,7 @@ } }, { - "id": 1615, + "id": 1572, "name": "redeemed_quantity", "kind": 1024, "kindString": "Property", @@ -21343,7 +21102,7 @@ } }, { - "id": 1616, + "id": 1573, "name": "redemption_entries", "kind": 1024, "kindString": "Property", @@ -21364,10 +21123,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1613, - 1614, - 1615, - 1616 + 1570, + 1571, + 1572, + 1573 ] } ] @@ -21375,7 +21134,7 @@ } }, { - "id": 1600, + "id": 1557, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -21388,7 +21147,7 @@ } }, { - "id": 1595, + "id": 1552, "name": "type", "kind": 1024, "kindString": "Property", @@ -21399,7 +21158,7 @@ } }, { - "id": 1622, + "id": 1579, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -21412,7 +21171,7 @@ } }, { - "id": 1606, + "id": 1563, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -21428,7 +21187,7 @@ } }, { - "id": 1602, + "id": 1559, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -21438,14 +21197,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1603, + "id": 1560, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1605, + "id": 1562, "name": "duration", "kind": 1024, "kindString": "Property", @@ -21458,7 +21217,7 @@ } }, { - "id": 1604, + "id": 1561, "name": "interval", "kind": 1024, "kindString": "Property", @@ -21476,8 +21235,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1605, - 1604 + 1562, + 1561 ] } ] @@ -21490,38 +21249,38 @@ "title": "Properties", "kind": 1024, "children": [ - 1617, - 1618, - 1592, - 1593, - 1594, - 1591, - 1601, - 1621, - 1590, - 1620, - 1596, - 1619, - 1607, - 1611, - 1600, - 1595, - 1622, - 1606, - 1602 + 1574, + 1575, + 1549, + 1550, + 1551, + 1548, + 1558, + 1578, + 1547, + 1577, + 1553, + 1576, + 1564, + 1568, + 1557, + 1552, + 1579, + 1563, + 1559 ] } ] }, { - "id": 1521, + "id": 1478, "name": "LoyaltyFixed", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1523, + "id": 1480, "name": "points", "kind": 1024, "kindString": "Property", @@ -21532,7 +21291,7 @@ } }, { - "id": 1522, + "id": 1479, "name": "type", "kind": 1024, "kindString": "Property", @@ -21548,21 +21307,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1523, - 1522 + 1480, + 1479 ] } ] }, { - "id": 1767, + "id": 1724, "name": "LoyaltyPointsTransfer", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1768, + "id": 1725, "name": "code", "kind": 1024, "kindString": "Property", @@ -21573,7 +21332,7 @@ } }, { - "id": 1769, + "id": 1726, "name": "points", "kind": 1024, "kindString": "Property", @@ -21589,21 +21348,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1768, - 1769 + 1725, + 1726 ] } ] }, { - "id": 1524, + "id": 1481, "name": "LoyaltyProportional", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1526, + "id": 1483, "name": "order", "kind": 1024, "kindString": "Property", @@ -21613,14 +21372,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1527, + "id": 1484, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1528, + "id": 1485, "name": "amount", "kind": 1024, "kindString": "Property", @@ -21628,14 +21387,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1529, + "id": 1486, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1530, + "id": 1487, "name": "every", "kind": 1024, "kindString": "Property", @@ -21646,7 +21405,7 @@ } }, { - "id": 1531, + "id": 1488, "name": "points", "kind": 1024, "kindString": "Property", @@ -21662,8 +21421,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1530, - 1531 + 1487, + 1488 ] } ] @@ -21676,7 +21435,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1528 + 1485 ] } ] @@ -21684,7 +21443,7 @@ } }, { - "id": 1525, + "id": 1482, "name": "type", "kind": 1024, "kindString": "Property", @@ -21700,21 +21459,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1526, - 1525 + 1483, + 1482 ] } ] }, { - "id": 2337, + "id": 2294, "name": "OrdersCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2341, + "id": 2298, "name": "amount", "kind": 1024, "kindString": "Property", @@ -21727,7 +21486,7 @@ } }, { - "id": 2340, + "id": 2297, "name": "customer", "kind": 1024, "kindString": "Property", @@ -21741,7 +21500,7 @@ } }, { - "id": 2342, + "id": 2299, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -21754,7 +21513,7 @@ } }, { - "id": 2343, + "id": 2300, "name": "items", "kind": 1024, "kindString": "Property", @@ -21765,13 +21524,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" } } }, { - "id": 2344, + "id": 2301, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -21794,7 +21553,7 @@ } }, { - "id": 2338, + "id": 2295, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -21807,7 +21566,7 @@ } }, { - "id": 2339, + "id": 2296, "name": "status", "kind": 1024, "kindString": "Property", @@ -21842,26 +21601,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2341, - 2340, - 2342, - 2343, - 2344, - 2338, - 2339 + 2298, + 2297, + 2299, + 2300, + 2301, + 2295, + 2296 ] } ] }, { - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2351, + "id": 2308, "name": "amount", "kind": 1024, "kindString": "Property", @@ -21874,7 +21633,7 @@ } }, { - "id": 2356, + "id": 2313, "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -21887,7 +21646,7 @@ } }, { - "id": 2348, + "id": 2305, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -21898,7 +21657,7 @@ } }, { - "id": 2362, + "id": 2319, "name": "customer", "kind": 1024, "kindString": "Property", @@ -21912,7 +21671,7 @@ } }, { - "id": 2353, + "id": 2310, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -21925,7 +21684,7 @@ } }, { - "id": 2346, + "id": 2303, "name": "id", "kind": 1024, "kindString": "Property", @@ -21936,7 +21695,7 @@ } }, { - "id": 2352, + "id": 2309, "name": "initial_amount", "kind": 1024, "kindString": "Property", @@ -21949,7 +21708,7 @@ } }, { - "id": 2360, + "id": 2317, "name": "items", "kind": 1024, "kindString": "Property", @@ -21960,13 +21719,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" } } }, { - "id": 2357, + "id": 2314, "name": "items_applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -21979,7 +21738,7 @@ } }, { - "id": 2354, + "id": 2311, "name": "items_discount_amount", "kind": 1024, "kindString": "Property", @@ -21992,7 +21751,7 @@ } }, { - "id": 2361, + "id": 2318, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22015,7 +21774,7 @@ } }, { - "id": 2363, + "id": 2320, "name": "object", "kind": 1024, "kindString": "Property", @@ -22026,7 +21785,7 @@ } }, { - "id": 2347, + "id": 2304, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22039,7 +21798,7 @@ } }, { - "id": 2350, + "id": 2307, "name": "status", "kind": 1024, "kindString": "Property", @@ -22073,7 +21832,7 @@ } }, { - "id": 2358, + "id": 2315, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -22086,7 +21845,7 @@ } }, { - "id": 2359, + "id": 2316, "name": "total_applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -22099,7 +21858,7 @@ } }, { - "id": 2355, + "id": 2312, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -22112,7 +21871,7 @@ } }, { - "id": 2349, + "id": 2306, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -22130,37 +21889,37 @@ "title": "Properties", "kind": 1024, "children": [ - 2351, - 2356, - 2348, - 2362, - 2353, - 2346, - 2352, - 2360, - 2357, - 2354, - 2361, - 2363, - 2347, - 2350, - 2358, - 2359, - 2355, - 2349 + 2308, + 2313, + 2305, + 2319, + 2310, + 2303, + 2309, + 2317, + 2314, + 2311, + 2318, + 2320, + 2304, + 2307, + 2315, + 2316, + 2312, + 2306 ] } ] }, { - "id": 2306, + "id": 2263, "name": "OrdersItem", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2315, + "id": 2272, "name": "amount", "kind": 1024, "kindString": "Property", @@ -22173,7 +21932,7 @@ } }, { - "id": 2318, + "id": 2275, "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -22186,7 +21945,7 @@ } }, { - "id": 2316, + "id": 2273, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -22199,7 +21958,7 @@ } }, { - "id": 2311, + "id": 2268, "name": "discount_quantity", "kind": 1024, "kindString": "Property", @@ -22212,7 +21971,7 @@ } }, { - "id": 2317, + "id": 2274, "name": "initial_amount", "kind": 1024, "kindString": "Property", @@ -22225,7 +21984,7 @@ } }, { - "id": 2312, + "id": 2269, "name": "initial_quantity", "kind": 1024, "kindString": "Property", @@ -22238,7 +21997,7 @@ } }, { - "id": 2336, + "id": 2293, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22261,7 +22020,7 @@ } }, { - "id": 2335, + "id": 2292, "name": "object", "kind": 1024, "kindString": "Property", @@ -22274,7 +22033,7 @@ } }, { - "id": 2314, + "id": 2271, "name": "price", "kind": 1024, "kindString": "Property", @@ -22287,7 +22046,7 @@ } }, { - "id": 2320, + "id": 2277, "name": "product", "kind": 1024, "kindString": "Property", @@ -22297,14 +22056,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2321, + "id": 2278, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2322, + "id": 2279, "name": "id", "kind": 1024, "kindString": "Property", @@ -22317,7 +22076,7 @@ } }, { - "id": 2326, + "id": 2283, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22340,7 +22099,7 @@ } }, { - "id": 2325, + "id": 2282, "name": "name", "kind": 1024, "kindString": "Property", @@ -22353,7 +22112,7 @@ } }, { - "id": 2324, + "id": 2281, "name": "override", "kind": 1024, "kindString": "Property", @@ -22366,7 +22125,7 @@ } }, { - "id": 2327, + "id": 2284, "name": "price", "kind": 1024, "kindString": "Property", @@ -22379,7 +22138,7 @@ } }, { - "id": 2323, + "id": 2280, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22397,12 +22156,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2322, - 2326, - 2325, - 2324, - 2327, - 2323 + 2279, + 2283, + 2282, + 2281, + 2284, + 2280 ] } ] @@ -22410,7 +22169,7 @@ } }, { - "id": 2308, + "id": 2265, "name": "product_id", "kind": 1024, "kindString": "Property", @@ -22423,7 +22182,7 @@ } }, { - "id": 2313, + "id": 2270, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -22436,7 +22195,7 @@ } }, { - "id": 2309, + "id": 2266, "name": "related_object", "kind": 1024, "kindString": "Property", @@ -22458,7 +22217,7 @@ } }, { - "id": 2328, + "id": 2285, "name": "sku", "kind": 1024, "kindString": "Property", @@ -22468,14 +22227,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2329, + "id": 2286, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2330, + "id": 2287, "name": "id", "kind": 1024, "kindString": "Property", @@ -22488,7 +22247,7 @@ } }, { - "id": 2332, + "id": 2289, "name": "override", "kind": 1024, "kindString": "Property", @@ -22501,7 +22260,7 @@ } }, { - "id": 2334, + "id": 2291, "name": "price", "kind": 1024, "kindString": "Property", @@ -22514,7 +22273,7 @@ } }, { - "id": 2333, + "id": 2290, "name": "sku", "kind": 1024, "kindString": "Property", @@ -22527,7 +22286,7 @@ } }, { - "id": 2331, + "id": 2288, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22545,11 +22304,11 @@ "title": "Properties", "kind": 1024, "children": [ - 2330, - 2332, - 2334, - 2333, - 2331 + 2287, + 2289, + 2291, + 2290, + 2288 ] } ] @@ -22557,7 +22316,7 @@ } }, { - "id": 2307, + "id": 2264, "name": "sku_id", "kind": 1024, "kindString": "Property", @@ -22570,7 +22329,7 @@ } }, { - "id": 2310, + "id": 2267, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22583,7 +22342,7 @@ } }, { - "id": 2319, + "id": 2276, "name": "subtotal_amount", "kind": 1024, "kindString": "Property", @@ -22601,36 +22360,36 @@ "title": "Properties", "kind": 1024, "children": [ - 2315, - 2318, - 2316, - 2311, - 2317, - 2312, - 2336, - 2335, - 2314, - 2320, - 2308, - 2313, - 2309, - 2328, - 2307, - 2310, - 2319 + 2272, + 2275, + 2273, + 2268, + 2274, + 2269, + 2293, + 2292, + 2271, + 2277, + 2265, + 2270, + 2266, + 2285, + 2264, + 2267, + 2276 ] } ] }, { - "id": 2377, + "id": 2334, "name": "OrdersListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2378, + "id": 2335, "name": "limit", "kind": 1024, "kindString": "Property", @@ -22643,7 +22402,7 @@ } }, { - "id": 2379, + "id": 2336, "name": "page", "kind": 1024, "kindString": "Property", @@ -22661,21 +22420,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2378, - 2379 + 2335, + 2336 ] } ] }, { - "id": 2380, + "id": 2337, "name": "OrdersListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2383, + "id": 2340, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -22686,7 +22445,7 @@ } }, { - "id": 2381, + "id": 2338, "name": "object", "kind": 1024, "kindString": "Property", @@ -22697,7 +22456,7 @@ } }, { - "id": 2384, + "id": 2341, "name": "orders", "kind": 1024, "kindString": "Property", @@ -22706,13 +22465,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } } }, { - "id": 2382, + "id": 2339, "name": "total", "kind": 1024, "kindString": "Property", @@ -22728,23 +22487,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2383, - 2381, - 2384, - 2382 + 2340, + 2338, + 2341, + 2339 ] } ] }, { - "id": 2365, + "id": 2322, "name": "OrdersUpdate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2370, + "id": 2327, "name": "amount", "kind": 1024, "kindString": "Property", @@ -22757,7 +22516,7 @@ } }, { - "id": 2373, + "id": 2330, "name": "customer", "kind": 1024, "kindString": "Property", @@ -22767,14 +22526,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2374, + "id": 2331, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2375, + "id": 2332, "name": "id", "kind": 1024, "kindString": "Property", @@ -22790,7 +22549,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2375 + 2332 ] } ] @@ -22798,7 +22557,7 @@ } }, { - "id": 2371, + "id": 2328, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -22811,7 +22570,7 @@ } }, { - "id": 2366, + "id": 2323, "name": "id", "kind": 1024, "kindString": "Property", @@ -22822,7 +22581,7 @@ } }, { - "id": 2369, + "id": 2326, "name": "items", "kind": 1024, "kindString": "Property", @@ -22833,13 +22592,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" } } }, { - "id": 2372, + "id": 2329, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22862,7 +22621,7 @@ } }, { - "id": 2367, + "id": 2324, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -22875,7 +22634,7 @@ } }, { - "id": 2368, + "id": 2325, "name": "status", "kind": 1024, "kindString": "Property", @@ -22910,27 +22669,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2370, - 2373, - 2371, - 2366, - 2369, - 2372, - 2367, - 2368 + 2327, + 2330, + 2328, + 2323, + 2326, + 2329, + 2324, + 2325 ] } ] }, { - "id": 2134, + "id": 2091, "name": "ProductsBulkUpdateMetadata", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2136, + "id": 2093, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -22951,7 +22710,7 @@ } }, { - "id": 2135, + "id": 2092, "name": "source_ids", "kind": 1024, "kindString": "Property", @@ -22970,21 +22729,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2136, - 2135 + 2093, + 2092 ] } ] }, { - "id": 2100, + "id": 2057, "name": "ProductsCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2104, + "id": 2061, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -23000,7 +22759,7 @@ } }, { - "id": 2106, + "id": 2063, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -23013,7 +22772,7 @@ } }, { - "id": 2105, + "id": 2062, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -23036,7 +22795,7 @@ } }, { - "id": 2101, + "id": 2058, "name": "name", "kind": 1024, "kindString": "Property", @@ -23049,7 +22808,7 @@ } }, { - "id": 2103, + "id": 2060, "name": "price", "kind": 1024, "kindString": "Property", @@ -23062,7 +22821,7 @@ } }, { - "id": 2102, + "id": 2059, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -23080,25 +22839,25 @@ "title": "Properties", "kind": 1024, "children": [ - 2104, - 2106, - 2105, - 2101, - 2103, - 2102 + 2061, + 2063, + 2062, + 2058, + 2060, + 2059 ] } ] }, { - "id": 2113, + "id": 2070, "name": "ProductsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2119, + "id": 2076, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -23114,7 +22873,7 @@ } }, { - "id": 2120, + "id": 2077, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -23125,7 +22884,7 @@ } }, { - "id": 2114, + "id": 2071, "name": "id", "kind": 1024, "kindString": "Property", @@ -23136,7 +22895,7 @@ } }, { - "id": 2121, + "id": 2078, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -23149,7 +22908,7 @@ } }, { - "id": 2122, + "id": 2079, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -23172,7 +22931,7 @@ } }, { - "id": 2117, + "id": 2074, "name": "name", "kind": 1024, "kindString": "Property", @@ -23185,7 +22944,7 @@ } }, { - "id": 2116, + "id": 2073, "name": "object", "kind": 1024, "kindString": "Property", @@ -23196,7 +22955,7 @@ } }, { - "id": 2118, + "id": 2075, "name": "price", "kind": 1024, "kindString": "Property", @@ -23209,7 +22968,7 @@ } }, { - "id": 2115, + "id": 2072, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -23227,28 +22986,28 @@ "title": "Properties", "kind": 1024, "children": [ - 2119, - 2120, - 2114, - 2121, - 2122, - 2117, - 2116, - 2118, - 2115 + 2076, + 2077, + 2071, + 2078, + 2079, + 2074, + 2073, + 2075, + 2072 ] } ] }, { - "id": 2154, + "id": 2111, "name": "ProductsCreateSku", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2157, + "id": 2114, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -23271,7 +23030,7 @@ } }, { - "id": 2161, + "id": 2118, "name": "currency", "kind": 1024, "kindString": "Property", @@ -23284,7 +23043,7 @@ } }, { - "id": 2160, + "id": 2117, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -23297,7 +23056,7 @@ } }, { - "id": 2158, + "id": 2115, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -23320,7 +23079,7 @@ } }, { - "id": 2159, + "id": 2116, "name": "price", "kind": 1024, "kindString": "Property", @@ -23333,7 +23092,7 @@ } }, { - "id": 2155, + "id": 2112, "name": "sku", "kind": 1024, "kindString": "Property", @@ -23344,7 +23103,7 @@ } }, { - "id": 2156, + "id": 2113, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -23362,26 +23121,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2157, - 2161, - 2160, - 2158, - 2159, - 2155, - 2156 + 2114, + 2118, + 2117, + 2115, + 2116, + 2112, + 2113 ] } ] }, { - "id": 2162, + "id": 2119, "name": "ProductsCreateSkuResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2167, + "id": 2124, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -23404,7 +23163,7 @@ } }, { - "id": 2171, + "id": 2128, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -23415,7 +23174,7 @@ } }, { - "id": 2170, + "id": 2127, "name": "currency", "kind": 1024, "kindString": "Property", @@ -23428,7 +23187,7 @@ } }, { - "id": 2163, + "id": 2120, "name": "id", "kind": 1024, "kindString": "Property", @@ -23439,7 +23198,7 @@ } }, { - "id": 2168, + "id": 2125, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -23462,7 +23221,7 @@ } }, { - "id": 2172, + "id": 2129, "name": "object", "kind": 1024, "kindString": "Property", @@ -23473,7 +23232,7 @@ } }, { - "id": 2166, + "id": 2123, "name": "price", "kind": 1024, "kindString": "Property", @@ -23486,7 +23245,7 @@ } }, { - "id": 2165, + "id": 2122, "name": "sku", "kind": 1024, "kindString": "Property", @@ -23499,7 +23258,7 @@ } }, { - "id": 2164, + "id": 2121, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -23512,7 +23271,7 @@ } }, { - "id": 2169, + "id": 2126, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -23530,29 +23289,29 @@ "title": "Properties", "kind": 1024, "children": [ - 2167, - 2171, - 2170, - 2163, - 2168, - 2172, - 2166, - 2165, - 2164, - 2169 + 2124, + 2128, + 2127, + 2120, + 2125, + 2129, + 2123, + 2122, + 2121, + 2126 ] } ] }, { - "id": 2144, + "id": 2101, "name": "ProductsDeleteParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2145, + "id": 2102, "name": "force", "kind": 1024, "kindString": "Property", @@ -23570,20 +23329,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2145 + 2102 ] } ] }, { - "id": 2179, + "id": 2136, "name": "ProductsDeleteSkuParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2180, + "id": 2137, "name": "force", "kind": 1024, "kindString": "Property", @@ -23601,20 +23360,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2180 + 2137 ] } ] }, { - "id": 2107, + "id": 2064, "name": "ProductsGetResponseSkus", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2108, + "id": 2065, "name": "skus", "kind": 1024, "kindString": "Property", @@ -23624,14 +23383,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2109, + "id": 2066, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2112, + "id": 2069, "name": "data", "kind": 1024, "kindString": "Property", @@ -23642,13 +23401,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2162, + "id": 2119, "name": "ProductsCreateSkuResponse" } } }, { - "id": 2110, + "id": 2067, "name": "object", "kind": 1024, "kindString": "Property", @@ -23659,7 +23418,7 @@ } }, { - "id": 2111, + "id": 2068, "name": "total", "kind": 1024, "kindString": "Property", @@ -23675,9 +23434,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2112, - 2110, - 2111 + 2069, + 2067, + 2068 ] } ] @@ -23690,20 +23449,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2108 + 2065 ] } ] }, { - "id": 2146, + "id": 2103, "name": "ProductsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2148, + "id": 2105, "name": "limit", "kind": 1024, "kindString": "Property", @@ -23716,7 +23475,7 @@ } }, { - "id": 2147, + "id": 2104, "name": "page", "kind": 1024, "kindString": "Property", @@ -23734,21 +23493,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2148, - 2147 + 2105, + 2104 ] } ] }, { - "id": 2149, + "id": 2106, "name": "ProductsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2152, + "id": 2109, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -23759,7 +23518,7 @@ } }, { - "id": 2150, + "id": 2107, "name": "object", "kind": 1024, "kindString": "Property", @@ -23770,7 +23529,7 @@ } }, { - "id": 2153, + "id": 2110, "name": "products", "kind": 1024, "kindString": "Property", @@ -23779,13 +23538,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2080, "name": "ProductsGetResponse" } } }, { - "id": 2151, + "id": 2108, "name": "total", "kind": 1024, "kindString": "Property", @@ -23801,23 +23560,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2152, - 2150, - 2153, - 2151 + 2109, + 2107, + 2110, + 2108 ] } ] }, { - "id": 2181, + "id": 2138, "name": "ProductsListSkus", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2182, + "id": 2139, "name": "object", "kind": 1024, "kindString": "Property", @@ -23828,7 +23587,7 @@ } }, { - "id": 2184, + "id": 2141, "name": "skus", "kind": 1024, "kindString": "Property", @@ -23837,13 +23596,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2162, + "id": 2119, "name": "ProductsCreateSkuResponse" } } }, { - "id": 2183, + "id": 2140, "name": "total", "kind": 1024, "kindString": "Property", @@ -23859,22 +23618,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2182, - 2184, - 2183 + 2139, + 2141, + 2140 ] } ] }, { - "id": 1204, + "id": 1161, "name": "PromotionTier", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1217, + "id": 1174, "name": "action", "kind": 1024, "kindString": "Property", @@ -23882,14 +23641,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1218, + "id": 1175, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1219, + "id": 1176, "name": "discount", "kind": 1024, "kindString": "Property", @@ -23899,22 +23658,22 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] @@ -23926,7 +23685,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1219 + 1176 ] } ] @@ -23934,7 +23693,7 @@ } }, { - "id": 1222, + "id": 1179, "name": "active", "kind": 1024, "kindString": "Property", @@ -23947,7 +23706,7 @@ } }, { - "id": 1208, + "id": 1165, "name": "banner", "kind": 1024, "kindString": "Property", @@ -23960,7 +23719,7 @@ } }, { - "id": 1209, + "id": 1166, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -23968,14 +23727,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1210, + "id": 1167, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1215, + "id": 1172, "name": "active", "kind": 1024, "kindString": "Property", @@ -23986,7 +23745,7 @@ } }, { - "id": 1214, + "id": 1171, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -23999,7 +23758,7 @@ } }, { - "id": 1211, + "id": 1168, "name": "id", "kind": 1024, "kindString": "Property", @@ -24010,7 +23769,7 @@ } }, { - "id": 1212, + "id": 1169, "name": "object", "kind": 1024, "kindString": "Property", @@ -24021,7 +23780,7 @@ } }, { - "id": 1213, + "id": 1170, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -24039,11 +23798,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1215, - 1214, - 1211, - 1212, - 1213 + 1172, + 1171, + 1168, + 1169, + 1170 ] } ] @@ -24051,7 +23810,7 @@ } }, { - "id": 1220, + "id": 1177, "name": "hierarchy", "kind": 1024, "kindString": "Property", @@ -24062,7 +23821,7 @@ } }, { - "id": 1205, + "id": 1162, "name": "id", "kind": 1024, "kindString": "Property", @@ -24073,7 +23832,7 @@ } }, { - "id": 1221, + "id": 1178, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -24096,7 +23855,7 @@ } }, { - "id": 1207, + "id": 1164, "name": "name", "kind": 1024, "kindString": "Property", @@ -24107,7 +23866,7 @@ } }, { - "id": 1206, + "id": 1163, "name": "object", "kind": 1024, "kindString": "Property", @@ -24118,14 +23877,14 @@ } }, { - "id": 1216, + "id": 1173, "name": "validation_rule_assignments", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2029, + "id": 1986, "name": "ValidationRulesListAssignmentsResponse" } } @@ -24135,29 +23894,29 @@ "title": "Properties", "kind": 1024, "children": [ - 1217, - 1222, - 1208, - 1209, - 1220, - 1205, - 1221, - 1207, - 1206, - 1216 + 1174, + 1179, + 1165, + 1166, + 1177, + 1162, + 1178, + 1164, + 1163, + 1173 ] } ] }, { - "id": 1286, + "id": 1243, "name": "PromotionTierRedeemDetailsSimple", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1289, + "id": 1246, "name": "banner", "kind": 1024, "kindString": "Property", @@ -24170,7 +23929,7 @@ } }, { - "id": 1290, + "id": 1247, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -24178,14 +23937,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1291, + "id": 1248, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1292, + "id": 1249, "name": "id", "kind": 1024, "kindString": "Property", @@ -24201,7 +23960,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1292 + 1249 ] } ] @@ -24209,7 +23968,7 @@ } }, { - "id": 1287, + "id": 1244, "name": "id", "kind": 1024, "kindString": "Property", @@ -24220,7 +23979,7 @@ } }, { - "id": 1288, + "id": 1245, "name": "name", "kind": 1024, "kindString": "Property", @@ -24236,23 +23995,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1289, - 1290, - 1287, - 1288 + 1246, + 1247, + 1244, + 1245 ] } ] }, { - "id": 1234, + "id": 1191, "name": "PromotionTiersCreateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1237, + "id": 1194, "name": "action", "kind": 1024, "kindString": "Property", @@ -24262,14 +24021,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1238, + "id": 1195, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1239, + "id": 1196, "name": "discount", "kind": 1024, "kindString": "Property", @@ -24281,22 +24040,22 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] @@ -24308,7 +24067,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1239 + 1196 ] } ] @@ -24316,7 +24075,7 @@ } }, { - "id": 1236, + "id": 1193, "name": "banner", "kind": 1024, "kindString": "Property", @@ -24329,7 +24088,7 @@ } }, { - "id": 1240, + "id": 1197, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -24352,7 +24111,7 @@ } }, { - "id": 1235, + "id": 1192, "name": "name", "kind": 1024, "kindString": "Property", @@ -24370,23 +24129,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1237, - 1236, - 1240, - 1235 + 1194, + 1193, + 1197, + 1192 ] } ] }, { - "id": 1223, + "id": 1180, "name": "PromotionTiersListAllParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1224, + "id": 1181, "name": "is_available", "kind": 1024, "kindString": "Property", @@ -24399,7 +24158,7 @@ } }, { - "id": 1225, + "id": 1182, "name": "limit", "kind": 1024, "kindString": "Property", @@ -24412,7 +24171,7 @@ } }, { - "id": 1226, + "id": 1183, "name": "page", "kind": 1024, "kindString": "Property", @@ -24430,22 +24189,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1224, - 1225, - 1226 + 1181, + 1182, + 1183 ] } ] }, { - "id": 1227, + "id": 1184, "name": "PromotionTiersListAllResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1229, + "id": 1186, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -24456,7 +24215,7 @@ } }, { - "id": 1231, + "id": 1188, "name": "has_more", "kind": 1024, "kindString": "Property", @@ -24467,7 +24226,7 @@ } }, { - "id": 1228, + "id": 1185, "name": "object", "kind": 1024, "kindString": "Property", @@ -24478,7 +24237,7 @@ } }, { - "id": 1230, + "id": 1187, "name": "tiers", "kind": 1024, "kindString": "Property", @@ -24487,7 +24246,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" } } @@ -24498,23 +24257,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1229, - 1231, - 1228, - 1230 + 1186, + 1188, + 1185, + 1187 ] } ] }, { - "id": 1242, + "id": 1199, "name": "PromotionTiersRedeemParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1243, + "id": 1200, "name": "customer", "kind": 1024, "kindString": "Property", @@ -24563,14 +24322,14 @@ { "type": "reflection", "declaration": { - "id": 1244, + "id": 1201, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1245, + "id": 1202, "name": "description", "kind": 1024, "kindString": "Property", @@ -24588,7 +24347,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1245 + 1202 ] } ] @@ -24598,7 +24357,7 @@ } }, { - "id": 1254, + "id": 1211, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -24621,7 +24380,7 @@ } }, { - "id": 1246, + "id": 1203, "name": "order", "kind": 1024, "kindString": "Property", @@ -24631,14 +24390,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1247, + "id": 1204, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1250, + "id": 1207, "name": "amount", "kind": 1024, "kindString": "Property", @@ -24651,7 +24410,7 @@ } }, { - "id": 1248, + "id": 1205, "name": "id", "kind": 1024, "kindString": "Property", @@ -24664,7 +24423,7 @@ } }, { - "id": 1251, + "id": 1208, "name": "items", "kind": 1024, "kindString": "Property", @@ -24675,13 +24434,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" } } }, { - "id": 1253, + "id": 1210, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -24704,7 +24463,7 @@ } }, { - "id": 1249, + "id": 1206, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -24717,7 +24476,7 @@ } }, { - "id": 1252, + "id": 1209, "name": "status", "kind": 1024, "kindString": "Property", @@ -24752,12 +24511,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1250, - 1248, - 1251, - 1253, - 1249, - 1252 + 1207, + 1205, + 1208, + 1210, + 1206, + 1209 ] } ] @@ -24765,7 +24524,7 @@ } }, { - "id": 1255, + "id": 1212, "name": "session", "kind": 1024, "kindString": "Property", @@ -24774,7 +24533,7 @@ }, "type": { "type": "reference", - "id": 2484, + "id": 2441, "name": "ValidationSessionReleaseParams" } } @@ -24784,23 +24543,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1243, - 1254, - 1246, - 1255 + 1200, + 1211, + 1203, + 1212 ] } ] }, { - "id": 1256, + "id": 1213, "name": "PromotionTiersRedeemResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1260, + "id": 1217, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -24813,7 +24572,7 @@ } }, { - "id": 1259, + "id": 1216, "name": "date", "kind": 1024, "kindString": "Property", @@ -24824,7 +24583,7 @@ } }, { - "id": 1257, + "id": 1214, "name": "id", "kind": 1024, "kindString": "Property", @@ -24835,7 +24594,7 @@ } }, { - "id": 1258, + "id": 1215, "name": "object", "kind": 1024, "kindString": "Property", @@ -24846,7 +24605,7 @@ } }, { - "id": 1262, + "id": 1219, "name": "order", "kind": 1024, "kindString": "Property", @@ -24859,7 +24618,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" }, { @@ -24937,14 +24696,14 @@ { "type": "reflection", "declaration": { - "id": 1263, + "id": 1220, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1264, + "id": 1221, "name": "customer", "kind": 1024, "kindString": "Property", @@ -24952,14 +24711,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1265, + "id": 1222, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1266, + "id": 1223, "name": "id", "kind": 1024, "kindString": "Property", @@ -24970,7 +24729,7 @@ } }, { - "id": 1267, + "id": 1224, "name": "object", "kind": 1024, "kindString": "Property", @@ -24981,7 +24740,7 @@ } }, { - "id": 1268, + "id": 1225, "name": "referrals", "kind": 1024, "kindString": "Property", @@ -24989,14 +24748,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1269, + "id": 1226, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1270, + "id": 1227, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -25010,7 +24769,7 @@ } }, { - "id": 1271, + "id": 1228, "name": "total", "kind": 1024, "kindString": "Property", @@ -25026,8 +24785,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1270, - 1271 + 1227, + 1228 ] } ] @@ -25040,9 +24799,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1266, - 1267, - 1268 + 1223, + 1224, + 1225 ] } ] @@ -25050,7 +24809,7 @@ } }, { - "id": 1273, + "id": 1230, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -25063,7 +24822,7 @@ } }, { - "id": 1272, + "id": 1229, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -25081,9 +24840,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1264, - 1273, - 1272 + 1221, + 1230, + 1229 ] } ] @@ -25093,7 +24852,7 @@ } }, { - "id": 1275, + "id": 1232, "name": "promotion_tier", "kind": 1024, "kindString": "Property", @@ -25103,20 +24862,20 @@ "types": [ { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" }, { "type": "reflection", "declaration": { - "id": 1276, + "id": 1233, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1277, + "id": 1234, "name": "summary", "kind": 1024, "kindString": "Property", @@ -25124,14 +24883,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1278, + "id": 1235, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1282, + "id": 1239, "name": "orders", "kind": 1024, "kindString": "Property", @@ -25139,14 +24898,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1283, + "id": 1240, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1284, + "id": 1241, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -25157,7 +24916,7 @@ } }, { - "id": 1285, + "id": 1242, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -25173,8 +24932,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1284, - 1285 + 1241, + 1242 ] } ] @@ -25182,7 +24941,7 @@ } }, { - "id": 1279, + "id": 1236, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -25190,14 +24949,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1280, + "id": 1237, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1281, + "id": 1238, "name": "total_redeemed", "kind": 1024, "kindString": "Property", @@ -25213,7 +24972,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1281 + 1238 ] } ] @@ -25226,8 +24985,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1282, - 1279 + 1239, + 1236 ] } ] @@ -25240,7 +24999,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1277 + 1234 ] } ] @@ -25250,7 +25009,7 @@ } }, { - "id": 1274, + "id": 1231, "name": "result", "kind": 1024, "kindString": "Property", @@ -25263,7 +25022,7 @@ } }, { - "id": 1261, + "id": 1218, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -25281,27 +25040,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1260, - 1259, - 1257, - 1258, - 1262, - 1275, - 1274, - 1261 + 1217, + 1216, + 1214, + 1215, + 1219, + 1232, + 1231, + 1218 ] } ] }, { - "id": 1344, + "id": 1301, "name": "PromotionsCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1346, + "id": 1303, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -25312,7 +25071,7 @@ } }, { - "id": 1348, + "id": 1305, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -25325,7 +25084,7 @@ } }, { - "id": 1345, + "id": 1302, "name": "name", "kind": 1024, "kindString": "Property", @@ -25336,7 +25095,7 @@ } }, { - "id": 1349, + "id": 1306, "name": "promotion", "kind": 1024, "kindString": "Property", @@ -25346,14 +25105,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1350, + "id": 1307, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1351, + "id": 1308, "name": "tiers", "kind": 1024, "kindString": "Property", @@ -25363,14 +25122,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1352, + "id": 1309, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1355, + "id": 1312, "name": "action", "kind": 1024, "kindString": "Property", @@ -25378,14 +25137,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1356, + "id": 1313, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1357, + "id": 1314, "name": "discount", "kind": 1024, "kindString": "Property", @@ -25395,22 +25154,22 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] @@ -25422,7 +25181,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1357 + 1314 ] } ] @@ -25430,20 +25189,18 @@ } }, { - "id": 1354, + "id": 1311, "name": "banner", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 1358, + "id": 1315, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -25466,7 +25223,7 @@ } }, { - "id": 1353, + "id": 1310, "name": "name", "kind": 1024, "kindString": "Property", @@ -25482,10 +25239,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1355, - 1354, - 1358, - 1353 + 1312, + 1311, + 1315, + 1310 ] } ] @@ -25499,7 +25256,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1351 + 1308 ] } ] @@ -25507,7 +25264,7 @@ } }, { - "id": 1347, + "id": 1304, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -25525,24 +25282,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1346, - 1348, - 1345, - 1349, - 1347 + 1303, + 1305, + 1302, + 1306, + 1304 ] } ] }, { - "id": 1308, + "id": 1265, "name": "PromotionsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1340, + "id": 1297, "name": "active", "kind": 1024, "kindString": "Property", @@ -25553,7 +25310,7 @@ } }, { - "id": 1331, + "id": 1288, "name": "activity_duration_after_publishing", "kind": 1024, "kindString": "Property", @@ -25566,7 +25323,7 @@ } }, { - "id": 1323, + "id": 1280, "name": "auto_join", "kind": 1024, "kindString": "Property", @@ -25577,7 +25334,7 @@ } }, { - "id": 1311, + "id": 1268, "name": "campaign_type", "kind": 1024, "kindString": "Property", @@ -25590,7 +25347,7 @@ } }, { - "id": 1322, + "id": 1279, "name": "category", "kind": 1024, "kindString": "Property", @@ -25603,7 +25360,7 @@ } }, { - "id": 1338, + "id": 1295, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -25614,7 +25371,7 @@ } }, { - "id": 1313, + "id": 1270, "name": "description", "kind": 1024, "kindString": "Property", @@ -25627,7 +25384,7 @@ } }, { - "id": 1315, + "id": 1272, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -25640,7 +25397,7 @@ } }, { - "id": 1309, + "id": 1266, "name": "id", "kind": 1024, "kindString": "Property", @@ -25651,7 +25408,7 @@ } }, { - "id": 1324, + "id": 1281, "name": "join_once", "kind": 1024, "kindString": "Property", @@ -25662,7 +25419,7 @@ } }, { - "id": 1337, + "id": 1294, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -25685,7 +25442,7 @@ } }, { - "id": 1310, + "id": 1267, "name": "name", "kind": 1024, "kindString": "Property", @@ -25696,7 +25453,7 @@ } }, { - "id": 1343, + "id": 1300, "name": "object", "kind": 1024, "kindString": "Property", @@ -25707,7 +25464,7 @@ } }, { - "id": 1316, + "id": 1273, "name": "promotion", "kind": 1024, "kindString": "Property", @@ -25715,14 +25472,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1317, + "id": 1274, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1319, + "id": 1276, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -25733,7 +25490,7 @@ } }, { - "id": 1321, + "id": 1278, "name": "has_more", "kind": 1024, "kindString": "Property", @@ -25744,7 +25501,7 @@ } }, { - "id": 1318, + "id": 1275, "name": "object", "kind": 1024, "kindString": "Property", @@ -25755,7 +25512,7 @@ } }, { - "id": 1320, + "id": 1277, "name": "tiers", "kind": 1024, "kindString": "Property", @@ -25766,7 +25523,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" } } @@ -25777,10 +25534,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1319, - 1321, - 1318, - 1320 + 1276, + 1278, + 1275, + 1277 ] } ] @@ -25788,7 +25545,7 @@ } }, { - "id": 1342, + "id": 1299, "name": "protected", "kind": 1024, "kindString": "Property", @@ -25799,7 +25556,7 @@ } }, { - "id": 1314, + "id": 1271, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -25812,7 +25569,7 @@ } }, { - "id": 1312, + "id": 1269, "name": "type", "kind": 1024, "kindString": "Property", @@ -25823,7 +25580,7 @@ } }, { - "id": 1341, + "id": 1298, "name": "use_voucher_metadata_schema", "kind": 1024, "kindString": "Property", @@ -25834,7 +25591,7 @@ } }, { - "id": 1325, + "id": 1282, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -25842,14 +25599,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1326, + "id": 1283, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1327, + "id": 1284, "name": "data", "kind": 1024, "kindString": "Property", @@ -25860,13 +25617,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2010, + "id": 1967, "name": "ValidationRulesCreateAssignmentResponse" } } }, { - "id": 1330, + "id": 1287, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -25877,7 +25634,7 @@ } }, { - "id": 1328, + "id": 1285, "name": "object", "kind": 1024, "kindString": "Property", @@ -25888,7 +25645,7 @@ } }, { - "id": 1329, + "id": 1286, "name": "total", "kind": 1024, "kindString": "Property", @@ -25904,10 +25661,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1327, - 1330, - 1328, - 1329 + 1284, + 1287, + 1285, + 1286 ] } ] @@ -25915,7 +25672,7 @@ } }, { - "id": 1336, + "id": 1293, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -25931,7 +25688,7 @@ } }, { - "id": 1332, + "id": 1289, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -25941,14 +25698,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1333, + "id": 1290, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1335, + "id": 1292, "name": "duration", "kind": 1024, "kindString": "Property", @@ -25961,7 +25718,7 @@ } }, { - "id": 1334, + "id": 1291, "name": "interval", "kind": 1024, "kindString": "Property", @@ -25979,8 +25736,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1335, - 1334 + 1292, + 1291 ] } ] @@ -25988,7 +25745,7 @@ } }, { - "id": 1339, + "id": 1296, "name": "vouchers_generation_status", "kind": 1024, "kindString": "Property", @@ -26004,41 +25761,41 @@ "title": "Properties", "kind": 1024, "children": [ - 1340, - 1331, - 1323, - 1311, - 1322, - 1338, - 1313, - 1315, - 1309, - 1324, - 1337, - 1310, - 1343, - 1316, - 1342, - 1314, - 1312, - 1341, - 1325, - 1336, - 1332, - 1339 + 1297, + 1288, + 1280, + 1268, + 1279, + 1295, + 1270, + 1272, + 1266, + 1281, + 1294, + 1267, + 1300, + 1273, + 1299, + 1271, + 1269, + 1298, + 1282, + 1293, + 1289, + 1296 ] } ] }, { - "id": 1359, + "id": 1316, "name": "PromotionsValidateParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1360, + "id": 1317, "name": "customer", "kind": 1024, "kindString": "Property", @@ -26083,14 +25840,14 @@ { "type": "reflection", "declaration": { - "id": 1361, + "id": 1318, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1362, + "id": 1319, "name": "description", "kind": 1024, "kindString": "Property", @@ -26103,7 +25860,7 @@ } }, { - "id": 1363, + "id": 1320, "name": "id", "kind": 1024, "kindString": "Property", @@ -26121,8 +25878,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1362, - 1363 + 1319, + 1320 ] } ] @@ -26132,7 +25889,7 @@ } }, { - "id": 1371, + "id": 1328, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -26155,7 +25912,7 @@ } }, { - "id": 1364, + "id": 1321, "name": "order", "kind": 1024, "kindString": "Property", @@ -26165,14 +25922,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1365, + "id": 1322, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1369, + "id": 1326, "name": "amount", "kind": 1024, "kindString": "Property", @@ -26185,7 +25942,7 @@ } }, { - "id": 1366, + "id": 1323, "name": "id", "kind": 1024, "kindString": "Property", @@ -26198,7 +25955,7 @@ } }, { - "id": 1368, + "id": 1325, "name": "items", "kind": 1024, "kindString": "Property", @@ -26209,13 +25966,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" } } }, { - "id": 1370, + "id": 1327, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -26238,7 +25995,7 @@ } }, { - "id": 1367, + "id": 1324, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -26256,11 +26013,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1369, - 1366, - 1368, - 1370, - 1367 + 1326, + 1323, + 1325, + 1327, + 1324 ] } ] @@ -26273,22 +26030,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1360, - 1371, - 1364 + 1317, + 1328, + 1321 ] } ] }, { - "id": 1372, + "id": 1329, "name": "PromotionsValidateQueryParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1373, + "id": 1330, "name": "audienceRulesOnly", "kind": 1024, "kindString": "Property", @@ -26301,7 +26058,7 @@ } }, { - "id": 1374, + "id": 1331, "name": "filters", "kind": 1024, "kindString": "Property", @@ -26329,21 +26086,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1373, - 1374 + 1330, + 1331 ] } ] }, { - "id": 1375, + "id": 1332, "name": "PromotionsValidateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1377, + "id": 1334, "name": "promotions", "kind": 1024, "kindString": "Property", @@ -26355,14 +26112,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1378, + "id": 1335, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1387, + "id": 1344, "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -26375,7 +26132,7 @@ } }, { - "id": 1381, + "id": 1338, "name": "banner", "kind": 1024, "kindString": "Property", @@ -26388,7 +26145,7 @@ } }, { - "id": 1385, + "id": 1342, "name": "discount", "kind": 1024, "kindString": "Property", @@ -26400,29 +26157,29 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] } }, { - "id": 1386, + "id": 1343, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -26435,7 +26192,7 @@ } }, { - "id": 1384, + "id": 1341, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -26448,7 +26205,7 @@ } }, { - "id": 1404, + "id": 1361, "name": "hierarchy", "kind": 1024, "kindString": "Property", @@ -26461,7 +26218,7 @@ } }, { - "id": 1379, + "id": 1336, "name": "id", "kind": 1024, "kindString": "Property", @@ -26472,7 +26229,7 @@ } }, { - "id": 1388, + "id": 1345, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -26495,7 +26252,7 @@ } }, { - "id": 1382, + "id": 1339, "name": "name", "kind": 1024, "kindString": "Property", @@ -26506,7 +26263,7 @@ } }, { - "id": 1380, + "id": 1337, "name": "object", "kind": 1024, "kindString": "Property", @@ -26517,7 +26274,7 @@ } }, { - "id": 1389, + "id": 1346, "name": "order", "kind": 1024, "kindString": "Property", @@ -26527,14 +26284,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1390, + "id": 1347, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1393, + "id": 1350, "name": "amount", "kind": 1024, "kindString": "Property", @@ -26545,7 +26302,7 @@ } }, { - "id": 1402, + "id": 1359, "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -26558,7 +26315,7 @@ } }, { - "id": 1399, + "id": 1356, "name": "discount_amount", "kind": 1024, "kindString": "Property", @@ -26571,7 +26328,7 @@ } }, { - "id": 1391, + "id": 1348, "name": "id", "kind": 1024, "kindString": "Property", @@ -26584,7 +26341,7 @@ } }, { - "id": 1394, + "id": 1351, "name": "initial_amount", "kind": 1024, "kindString": "Property", @@ -26597,7 +26354,7 @@ } }, { - "id": 1397, + "id": 1354, "name": "items", "kind": 1024, "kindString": "Property", @@ -26608,13 +26365,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" } } }, { - "id": 1396, + "id": 1353, "name": "items_applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -26627,7 +26384,7 @@ } }, { - "id": 1395, + "id": 1352, "name": "items_discount_amount", "kind": 1024, "kindString": "Property", @@ -26640,7 +26397,7 @@ } }, { - "id": 1398, + "id": 1355, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -26663,7 +26420,7 @@ } }, { - "id": 1392, + "id": 1349, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -26676,7 +26433,7 @@ } }, { - "id": 1401, + "id": 1358, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -26689,7 +26446,7 @@ } }, { - "id": 1403, + "id": 1360, "name": "total_applied_discount_amount", "kind": 1024, "kindString": "Property", @@ -26702,7 +26459,7 @@ } }, { - "id": 1400, + "id": 1357, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -26720,19 +26477,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1393, - 1402, - 1399, - 1391, - 1394, - 1397, - 1396, - 1395, - 1398, - 1392, - 1401, - 1403, - 1400 + 1350, + 1359, + 1356, + 1348, + 1351, + 1354, + 1353, + 1352, + 1355, + 1349, + 1358, + 1360, + 1357 ] } ] @@ -26740,7 +26497,7 @@ } }, { - "id": 1383, + "id": 1340, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -26758,18 +26515,18 @@ "title": "Properties", "kind": 1024, "children": [ - 1387, - 1381, - 1385, - 1386, - 1384, - 1404, - 1379, - 1388, - 1382, - 1380, - 1389, - 1383 + 1344, + 1338, + 1342, + 1343, + 1341, + 1361, + 1336, + 1345, + 1339, + 1337, + 1346, + 1340 ] } ] @@ -26778,7 +26535,7 @@ } }, { - "id": 1405, + "id": 1362, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -26791,7 +26548,7 @@ } }, { - "id": 1376, + "id": 1333, "name": "valid", "kind": 1024, "kindString": "Property", @@ -26807,22 +26564,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1377, - 1405, - 1376 + 1334, + 1362, + 1333 ] } ] }, { - "id": 861, + "id": 860, "name": "Redemption", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 876, + "id": 875, "name": "customer", "kind": 1024, "kindString": "Property", @@ -26836,7 +26593,7 @@ } }, { - "id": 865, + "id": 864, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -26849,7 +26606,7 @@ } }, { - "id": 864, + "id": 863, "name": "date", "kind": 1024, "kindString": "Property", @@ -26862,7 +26619,7 @@ } }, { - "id": 874, + "id": 873, "name": "failure_code", "kind": 1024, "kindString": "Property", @@ -26875,7 +26632,7 @@ } }, { - "id": 875, + "id": 874, "name": "failure_message", "kind": 1024, "kindString": "Property", @@ -26888,7 +26645,7 @@ } }, { - "id": 885, + "id": 884, "name": "gift", "kind": 1024, "kindString": "Property", @@ -26898,14 +26655,14 @@ "type": { "type": "reflection", "declaration": { - "id": 886, + "id": 885, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 887, + "id": 886, "name": "amount", "kind": 1024, "kindString": "Property", @@ -26921,7 +26678,7 @@ "title": "Properties", "kind": 1024, "children": [ - 887 + 886 ] } ] @@ -26929,7 +26686,7 @@ } }, { - "id": 862, + "id": 861, "name": "id", "kind": 1024, "kindString": "Property", @@ -26940,7 +26697,7 @@ } }, { - "id": 888, + "id": 887, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -26950,14 +26707,14 @@ "type": { "type": "reflection", "declaration": { - "id": 889, + "id": 888, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 890, + "id": 889, "name": "points", "kind": 1024, "kindString": "Property", @@ -26973,7 +26730,7 @@ "title": "Properties", "kind": 1024, "children": [ - 890 + 889 ] } ] @@ -26981,7 +26738,7 @@ } }, { - "id": 872, + "id": 871, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -27004,7 +26761,7 @@ } }, { - "id": 863, + "id": 862, "name": "object", "kind": 1024, "kindString": "Property", @@ -27015,7 +26772,7 @@ } }, { - "id": 867, + "id": 866, "name": "order", "kind": 1024, "kindString": "Property", @@ -27030,7 +26787,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" }, { @@ -27112,14 +26869,14 @@ { "type": "reflection", "declaration": { - "id": 868, + "id": 867, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 871, + "id": 870, "name": "referrer", "kind": 1024, "kindString": "Property", @@ -27132,7 +26889,7 @@ } }, { - "id": 869, + "id": 868, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -27143,7 +26900,7 @@ } }, { - "id": 870, + "id": 869, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -27159,9 +26916,9 @@ "title": "Properties", "kind": 1024, "children": [ - 871, - 869, - 870 + 870, + 868, + 869 ] } ] @@ -27171,7 +26928,7 @@ } }, { - "id": 877, + "id": 876, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -27184,7 +26941,7 @@ } }, { - "id": 873, + "id": 872, "name": "result", "kind": 1024, "kindString": "Property", @@ -27204,7 +26961,7 @@ } }, { - "id": 866, + "id": 865, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -27217,7 +26974,7 @@ } }, { - "id": 878, + "id": 877, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -27227,14 +26984,14 @@ "type": { "type": "reflection", "declaration": { - "id": 879, + "id": 878, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 881, + "id": 880, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -27247,7 +27004,7 @@ } }, { - "id": 884, + "id": 883, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -27260,7 +27017,7 @@ } }, { - "id": 880, + "id": 879, "name": "code", "kind": 1024, "kindString": "Property", @@ -27271,7 +27028,7 @@ } }, { - "id": 882, + "id": 881, "name": "id", "kind": 1024, "kindString": "Property", @@ -27282,7 +27039,7 @@ } }, { - "id": 883, + "id": 882, "name": "object", "kind": 1024, "kindString": "Property", @@ -27298,11 +27055,11 @@ "title": "Properties", "kind": 1024, "children": [ - 881, - 884, 880, - 882, - 883 + 883, + 879, + 881, + 882 ] } ] @@ -27315,34 +27072,34 @@ "title": "Properties", "kind": 1024, "children": [ - 876, - 865, - 864, - 874, 875, - 885, - 862, - 888, - 872, + 864, 863, - 867, - 877, 873, + 874, + 884, + 861, + 887, + 871, + 862, 866, - 878 + 876, + 872, + 865, + 877 ] } ] }, { - "id": 896, + "id": 895, "name": "RedemptionsGetForVoucherResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 899, + "id": 898, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -27353,7 +27110,7 @@ } }, { - "id": 897, + "id": 896, "name": "object", "kind": 1024, "kindString": "Property", @@ -27364,7 +27121,7 @@ } }, { - "id": 900, + "id": 899, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -27375,7 +27132,7 @@ } }, { - "id": 902, + "id": 901, "name": "redeemed_amount", "kind": 1024, "kindString": "Property", @@ -27388,7 +27145,7 @@ } }, { - "id": 901, + "id": 900, "name": "redeemed_quantity", "kind": 1024, "kindString": "Property", @@ -27401,7 +27158,7 @@ } }, { - "id": 903, + "id": 902, "name": "redemption_entries", "kind": 1024, "kindString": "Property", @@ -27415,12 +27172,12 @@ "types": [ { "type": "reference", - "id": 861, + "id": 860, "name": "Redemption" }, { "type": "reference", - "id": 933, + "id": 932, "name": "SimpleRollback" } ] @@ -27428,7 +27185,7 @@ } }, { - "id": 898, + "id": 897, "name": "total", "kind": 1024, "kindString": "Property", @@ -27444,26 +27201,26 @@ "title": "Properties", "kind": 1024, "children": [ + 898, + 896, 899, - 897, + 901, 900, 902, - 901, - 903, - 898 + 897 ] } ] }, { - "id": 851, + "id": 850, "name": "RedemptionsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 855, + "id": 854, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -27476,7 +27233,7 @@ } }, { - "id": 857, + "id": 856, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -27486,14 +27243,14 @@ "type": { "type": "reflection", "declaration": { - "id": 858, + "id": 857, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 860, + "id": 859, "name": "after", "kind": 1024, "kindString": "Property", @@ -27506,7 +27263,7 @@ } }, { - "id": 859, + "id": 858, "name": "before", "kind": 1024, "kindString": "Property", @@ -27524,8 +27281,8 @@ "title": "Properties", "kind": 1024, "children": [ - 860, - 859 + 859, + 858 ] } ] @@ -27533,7 +27290,7 @@ } }, { - "id": 856, + "id": 855, "name": "customer", "kind": 1024, "kindString": "Property", @@ -27546,7 +27303,7 @@ } }, { - "id": 852, + "id": 851, "name": "limit", "kind": 1024, "kindString": "Property", @@ -27559,7 +27316,7 @@ } }, { - "id": 853, + "id": 852, "name": "page", "kind": 1024, "kindString": "Property", @@ -27572,7 +27329,7 @@ } }, { - "id": 854, + "id": 853, "name": "result", "kind": 1024, "kindString": "Property", @@ -27599,25 +27356,25 @@ "title": "Properties", "kind": 1024, "children": [ - 855, - 857, + 854, 856, + 855, + 851, 852, - 853, - 854 + 853 ] } ] }, { - "id": 891, + "id": 890, "name": "RedemptionsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 894, + "id": 893, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -27628,7 +27385,7 @@ } }, { - "id": 892, + "id": 891, "name": "object", "kind": 1024, "kindString": "Property", @@ -27639,7 +27396,7 @@ } }, { - "id": 895, + "id": 894, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -27651,12 +27408,12 @@ "types": [ { "type": "reference", - "id": 861, + "id": 860, "name": "Redemption" }, { "type": "reference", - "id": 933, + "id": 932, "name": "SimpleRollback" } ] @@ -27664,7 +27421,7 @@ } }, { - "id": 893, + "id": 892, "name": "total", "kind": 1024, "kindString": "Property", @@ -27680,23 +27437,23 @@ "title": "Properties", "kind": 1024, "children": [ + 893, + 891, 894, - 892, - 895, - 893 + 892 ] } ] }, { - "id": 818, + "id": 817, "name": "RedemptionsRedeemBody", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 820, + "id": 819, "name": "customer", "kind": 1024, "kindString": "Property", @@ -27745,14 +27502,14 @@ { "type": "reflection", "declaration": { - "id": 821, + "id": 820, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 822, + "id": 821, "name": "description", "kind": 1024, "kindString": "Property", @@ -27765,7 +27522,7 @@ } }, { - "id": 823, + "id": 822, "name": "id", "kind": 1024, "kindString": "Property", @@ -27783,8 +27540,8 @@ "title": "Properties", "kind": 1024, "children": [ - 822, - 823 + 821, + 822 ] } ] @@ -27794,7 +27551,7 @@ } }, { - "id": 827, + "id": 826, "name": "gift", "kind": 1024, "kindString": "Property", @@ -27803,12 +27560,12 @@ }, "type": { "type": "reference", - "id": 2470, + "id": 2427, "name": "GiftRedemptionParams" } }, { - "id": 825, + "id": 824, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -27831,7 +27588,7 @@ } }, { - "id": 824, + "id": 823, "name": "order", "kind": 1024, "kindString": "Property", @@ -27846,7 +27603,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } ], @@ -27886,7 +27643,7 @@ } }, { - "id": 826, + "id": 825, "name": "reward", "kind": 1024, "kindString": "Property", @@ -27895,12 +27652,12 @@ }, "type": { "type": "reference", - "id": 2096, + "id": 2053, "name": "RewardRedemptionParams" } }, { - "id": 828, + "id": 827, "name": "session", "kind": 1024, "kindString": "Property", @@ -27909,12 +27666,12 @@ }, "type": { "type": "reference", - "id": 2484, + "id": 2441, "name": "ValidationSessionReleaseParams" } }, { - "id": 819, + "id": 818, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -27932,26 +27689,26 @@ "title": "Properties", "kind": 1024, "children": [ - 820, - 827, - 825, - 824, + 819, 826, - 828, - 819 + 824, + 823, + 825, + 827, + 818 ] } ] }, { - "id": 829, + "id": 828, "name": "RedemptionsRedeemResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 839, + "id": 838, "name": "customer", "kind": 1024, "kindString": "Property", @@ -27965,7 +27722,7 @@ } }, { - "id": 833, + "id": 832, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -27978,7 +27735,7 @@ } }, { - "id": 832, + "id": 831, "name": "date", "kind": 1024, "kindString": "Property", @@ -27991,7 +27748,7 @@ } }, { - "id": 849, + "id": 848, "name": "failure_code", "kind": 1024, "kindString": "Property", @@ -28004,7 +27761,7 @@ } }, { - "id": 850, + "id": 849, "name": "failure_message", "kind": 1024, "kindString": "Property", @@ -28017,7 +27774,7 @@ } }, { - "id": 842, + "id": 841, "name": "gift", "kind": 1024, "kindString": "Property", @@ -28027,14 +27784,14 @@ "type": { "type": "reflection", "declaration": { - "id": 843, + "id": 842, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 844, + "id": 843, "name": "amount", "kind": 1024, "kindString": "Property", @@ -28050,7 +27807,7 @@ "title": "Properties", "kind": 1024, "children": [ - 844 + 843 ] } ] @@ -28058,7 +27815,7 @@ } }, { - "id": 830, + "id": 829, "name": "id", "kind": 1024, "kindString": "Property", @@ -28069,7 +27826,7 @@ } }, { - "id": 845, + "id": 844, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -28079,14 +27836,14 @@ "type": { "type": "reflection", "declaration": { - "id": 846, + "id": 845, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 847, + "id": 846, "name": "points", "kind": 1024, "kindString": "Property", @@ -28102,7 +27859,7 @@ "title": "Properties", "kind": 1024, "children": [ - 847 + 846 ] } ] @@ -28110,7 +27867,7 @@ } }, { - "id": 836, + "id": 835, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -28133,7 +27890,7 @@ } }, { - "id": 831, + "id": 830, "name": "object", "kind": 1024, "kindString": "Property", @@ -28144,7 +27901,7 @@ } }, { - "id": 835, + "id": 834, "name": "order", "kind": 1024, "kindString": "Property", @@ -28153,12 +27910,12 @@ }, "type": { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } }, { - "id": 848, + "id": 847, "name": "promotion_tier", "kind": 1024, "kindString": "Property", @@ -28170,19 +27927,19 @@ "types": [ { "type": "reference", - "id": 1286, + "id": 1243, "name": "PromotionTierRedeemDetailsSimple" }, { "type": "reference", - "id": 1293, + "id": 1250, "name": "PromotionTierRedeemDetails" } ] } }, { - "id": 841, + "id": 840, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -28193,7 +27950,7 @@ } }, { - "id": 837, + "id": 836, "name": "result", "kind": 1024, "kindString": "Property", @@ -28213,7 +27970,7 @@ } }, { - "id": 840, + "id": 839, "name": "reward", "kind": 1024, "kindString": "Property", @@ -28228,7 +27985,7 @@ "types": [ { "type": "reference", - "id": 2037, + "id": 1994, "name": "RewardsResponse" }, { @@ -28248,7 +28005,7 @@ "types": [ { "type": "reference", - "id": 2037, + "id": 1994, "name": "RewardsResponse" }, { @@ -28268,7 +28025,7 @@ "types": [ { "type": "reference", - "id": 2037, + "id": 1994, "name": "RewardsResponse" }, { @@ -28287,7 +28044,7 @@ } }, { - "id": 834, + "id": 833, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28300,14 +28057,14 @@ } }, { - "id": 838, + "id": 837, "name": "voucher", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } } @@ -28317,36 +28074,36 @@ "title": "Properties", "kind": 1024, "children": [ - 839, - 833, + 838, 832, - 849, - 850, - 842, - 830, - 845, - 836, 831, - 835, 848, + 849, 841, - 837, - 840, + 829, + 844, + 835, + 830, 834, - 838 + 847, + 840, + 836, + 839, + 833, + 837 ] } ] }, { - "id": 949, + "id": 948, "name": "RedemptionsRedeemStackableParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 954, + "id": 953, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28360,7 +28117,7 @@ } }, { - "id": 955, + "id": 954, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -28383,7 +28140,7 @@ } }, { - "id": 950, + "id": 949, "name": "options", "kind": 1024, "kindString": "Property", @@ -28392,12 +28149,12 @@ }, "type": { "type": "reference", - "id": 2420, + "id": 2377, "name": "StackableOptions" } }, { - "id": 953, + "id": 952, "name": "order", "kind": 1024, "kindString": "Property", @@ -28406,12 +28163,12 @@ }, "type": { "type": "reference", - "id": 2337, + "id": 2294, "name": "OrdersCreate" } }, { - "id": 951, + "id": 950, "name": "redeemables", "kind": 1024, "kindString": "Property", @@ -28420,13 +28177,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2423, + "id": 2380, "name": "StackableRedeemableParams" } } }, { - "id": 952, + "id": 951, "name": "session", "kind": 1024, "kindString": "Property", @@ -28435,7 +28192,7 @@ }, "type": { "type": "reference", - "id": 2474, + "id": 2431, "name": "ValidationSessionParams" } } @@ -28445,25 +28202,25 @@ "title": "Properties", "kind": 1024, "children": [ + 953, 954, - 955, + 949, + 952, 950, - 953, - 951, - 952 + 951 ] } ] }, { - "id": 970, + "id": 969, "name": "RedemptionsRedeemStackableResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 985, + "id": 984, "name": "order", "kind": 1024, "kindString": "Property", @@ -28472,12 +28229,12 @@ }, "type": { "type": "reference", - "id": 959, + "id": 958, "name": "RedemptionsRedeemStackableOrderResponse" } }, { - "id": 972, + "id": 971, "name": "parent_redemption", "kind": 1024, "kindString": "Property", @@ -28485,14 +28242,14 @@ "type": { "type": "reflection", "declaration": { - "id": 973, + "id": 972, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 982, + "id": 981, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28506,7 +28263,7 @@ } }, { - "id": 977, + "id": 976, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -28519,7 +28276,7 @@ } }, { - "id": 976, + "id": 975, "name": "date", "kind": 1024, "kindString": "Property", @@ -28530,7 +28287,7 @@ } }, { - "id": 974, + "id": 973, "name": "id", "kind": 1024, "kindString": "Property", @@ -28541,7 +28298,7 @@ } }, { - "id": 979, + "id": 978, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -28564,7 +28321,7 @@ } }, { - "id": 975, + "id": 974, "name": "object", "kind": 1024, "kindString": "Property", @@ -28575,7 +28332,7 @@ } }, { - "id": 981, + "id": 980, "name": "order", "kind": 1024, "kindString": "Property", @@ -28584,12 +28341,12 @@ }, "type": { "type": "reference", - "id": 959, + "id": 958, "name": "RedemptionsRedeemStackableOrderResponse" } }, { - "id": 984, + "id": 983, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -28600,7 +28357,7 @@ } }, { - "id": 983, + "id": 982, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -28611,7 +28368,7 @@ } }, { - "id": 980, + "id": 979, "name": "result", "kind": 1024, "kindString": "Property", @@ -28631,7 +28388,7 @@ } }, { - "id": 978, + "id": 977, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28649,17 +28406,17 @@ "title": "Properties", "kind": 1024, "children": [ - 982, - 977, + 981, 976, - 974, - 979, 975, - 981, - 984, - 983, + 973, + 978, + 974, 980, - 978 + 983, + 982, + 979, + 977 ] } ] @@ -28667,7 +28424,7 @@ } }, { - "id": 971, + "id": 970, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -28676,7 +28433,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 956, + "id": 955, "name": "RedemptionsRedeemStackableRedemptionResult" } } @@ -28687,22 +28444,22 @@ "title": "Properties", "kind": 1024, "children": [ - 985, - 972, - 971 + 984, + 971, + 970 ] } ] }, { - "id": 904, + "id": 903, "name": "RedemptionsRollbackParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 907, + "id": 906, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28720,14 +28477,14 @@ { "type": "reflection", "declaration": { - "id": 908, + "id": 907, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 909, + "id": 908, "name": "description", "kind": 1024, "kindString": "Property", @@ -28745,7 +28502,7 @@ "title": "Properties", "kind": 1024, "children": [ - 909 + 908 ] } ] @@ -28755,7 +28512,7 @@ } }, { - "id": 905, + "id": 904, "name": "reason", "kind": 1024, "kindString": "Property", @@ -28768,7 +28525,7 @@ } }, { - "id": 906, + "id": 905, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28786,22 +28543,22 @@ "title": "Properties", "kind": 1024, "children": [ - 907, - 905, - 906 + 906, + 904, + 905 ] } ] }, { - "id": 913, + "id": 912, "name": "RedemptionsRollbackPayload", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 914, + "id": 913, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28819,14 +28576,14 @@ { "type": "reflection", "declaration": { - "id": 915, + "id": 914, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 916, + "id": 915, "name": "description", "kind": 1024, "kindString": "Property", @@ -28844,7 +28601,7 @@ "title": "Properties", "kind": 1024, "children": [ - 916 + 915 ] } ] @@ -28859,20 +28616,20 @@ "title": "Properties", "kind": 1024, "children": [ - 914 + 913 ] } ] }, { - "id": 910, + "id": 909, "name": "RedemptionsRollbackQueryParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 911, + "id": 910, "name": "reason", "kind": 1024, "kindString": "Property", @@ -28885,7 +28642,7 @@ } }, { - "id": 912, + "id": 911, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -28903,21 +28660,21 @@ "title": "Properties", "kind": 1024, "children": [ - 911, - 912 + 910, + 911 ] } ] }, { - "id": 917, + "id": 916, "name": "RedemptionsRollbackResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 924, + "id": 923, "name": "amount", "kind": 1024, "kindString": "Property", @@ -28930,7 +28687,7 @@ } }, { - "id": 928, + "id": 927, "name": "customer", "kind": 1024, "kindString": "Property", @@ -28944,7 +28701,7 @@ } }, { - "id": 921, + "id": 920, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -28957,7 +28714,7 @@ } }, { - "id": 920, + "id": 919, "name": "date", "kind": 1024, "kindString": "Property", @@ -28970,7 +28727,7 @@ } }, { - "id": 918, + "id": 917, "name": "id", "kind": 1024, "kindString": "Property", @@ -28981,7 +28738,7 @@ } }, { - "id": 919, + "id": 918, "name": "object", "kind": 1024, "kindString": "Property", @@ -28992,7 +28749,7 @@ } }, { - "id": 925, + "id": 924, "name": "reason", "kind": 1024, "kindString": "Property", @@ -29005,7 +28762,7 @@ } }, { - "id": 923, + "id": 922, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -29018,7 +28775,7 @@ } }, { - "id": 926, + "id": 925, "name": "result", "kind": 1024, "kindString": "Property", @@ -29038,7 +28795,7 @@ } }, { - "id": 929, + "id": 928, "name": "reward", "kind": 1024, "kindString": "Property", @@ -29048,14 +28805,14 @@ "type": { "type": "reflection", "declaration": { - "id": 930, + "id": 929, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 931, + "id": 930, "name": "assignment_id", "kind": 1024, "kindString": "Property", @@ -29066,7 +28823,7 @@ } }, { - "id": 932, + "id": 931, "name": "object", "kind": 1024, "kindString": "Property", @@ -29082,8 +28839,8 @@ "title": "Properties", "kind": 1024, "children": [ - 931, - 932 + 930, + 931 ] } ] @@ -29091,7 +28848,7 @@ } }, { - "id": 922, + "id": 921, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -29104,7 +28861,7 @@ } }, { - "id": 927, + "id": 926, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -29113,7 +28870,7 @@ }, "type": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } } @@ -29123,31 +28880,31 @@ "title": "Properties", "kind": 1024, "children": [ - 924, - 928, - 921, + 923, + 927, 920, - 918, 919, - 925, - 923, - 926, - 929, + 917, + 918, + 924, 922, - 927 + 925, + 928, + 921, + 926 ] } ] }, { - "id": 986, + "id": 985, "name": "RedemptionsRollbackStackableResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 999, + "id": 998, "name": "order", "kind": 1024, "kindString": "Property", @@ -29156,12 +28913,12 @@ }, "type": { "type": "reference", - "id": 959, + "id": 958, "name": "RedemptionsRedeemStackableOrderResponse" } }, { - "id": 988, + "id": 987, "name": "parent_rollback", "kind": 1024, "kindString": "Property", @@ -29169,14 +28926,14 @@ "type": { "type": "reflection", "declaration": { - "id": 989, + "id": 988, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 997, + "id": 996, "name": "customer", "kind": 1024, "kindString": "Property", @@ -29190,7 +28947,7 @@ } }, { - "id": 992, + "id": 991, "name": "customer_id", "kind": 1024, "kindString": "Property", @@ -29203,7 +28960,7 @@ } }, { - "id": 991, + "id": 990, "name": "date", "kind": 1024, "kindString": "Property", @@ -29214,7 +28971,7 @@ } }, { - "id": 990, + "id": 989, "name": "id", "kind": 1024, "kindString": "Property", @@ -29225,7 +28982,7 @@ } }, { - "id": 994, + "id": 993, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -29248,7 +29005,7 @@ } }, { - "id": 996, + "id": 995, "name": "order", "kind": 1024, "kindString": "Property", @@ -29257,12 +29014,12 @@ }, "type": { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } }, { - "id": 998, + "id": 997, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -29273,7 +29030,7 @@ } }, { - "id": 995, + "id": 994, "name": "result", "kind": 1024, "kindString": "Property", @@ -29293,7 +29050,7 @@ } }, { - "id": 993, + "id": 992, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -29311,15 +29068,15 @@ "title": "Properties", "kind": 1024, "children": [ - 997, - 992, + 996, 991, 990, - 994, - 996, - 998, + 989, + 993, 995, - 993 + 997, + 994, + 992 ] } ] @@ -29327,7 +29084,7 @@ } }, { - "id": 987, + "id": 986, "name": "rollbacks", "kind": 1024, "kindString": "Property", @@ -29336,7 +29093,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 956, + "id": 955, "name": "RedemptionsRedeemStackableRedemptionResult" } } @@ -29347,34 +29104,36 @@ "title": "Properties", "kind": 1024, "children": [ - 999, - 988, - 987 + 998, + 987, + 986 ] } ] }, { - "id": 1076, - "name": "ResponseValidateVoucherFalse", + "id": 2053, + "name": "RewardRedemptionParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1078, - "name": "code", + "id": 2055, + "name": "assignment_id", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 1089, - "name": "customer_id", + "id": 2056, + "name": "id", "kind": 1024, "kindString": "Property", "flags": { @@ -29386,8 +29145,74 @@ } }, { - "id": 1079, - "name": "error", + "id": 2054, + "name": "points", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2055, + 2056, + 2054 + ] + } + ] + }, + { + "id": 2020, + "name": "RewardsAssignmentObject", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2030, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2021, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2032, + "name": "object", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "literal", + "value": "reward_assignment" + } + }, + { + "id": 2025, + "name": "parameters", "kind": 1024, "kindString": "Property", "flags": { @@ -29396,93 +29221,51 @@ "type": { "type": "reflection", "declaration": { - "id": 1080, + "id": 2026, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1081, - "name": "code", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1084, - "name": "details", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1082, - "name": "key", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1083, - "name": "message", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1085, - "name": "request_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1086, - "name": "resource_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1087, - "name": "resource_type", + "id": 2027, + "name": "loyalty", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 2028, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2029, + "name": "points", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2029 + ] + } + ] + } } } ], @@ -29491,13 +29274,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1081, - 1084, - 1082, - 1083, - 1085, - 1086, - 1087 + 2027 ] } ] @@ -29505,31 +29282,21 @@ } }, { - "id": 1090, - "name": "metadata", + "id": 2023, + "name": "related_object_id", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" + "type": "intrinsic", + "name": "string" } }, { - "id": 1091, - "name": "reason", + "id": 2024, + "name": "related_object_type", "kind": 1024, "kindString": "Property", "flags": { @@ -29541,27 +29308,27 @@ } }, { - "id": 1088, - "name": "tracking_id", + "id": 2022, + "name": "reward_id", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 1077, - "name": "valid", + "id": 2031, + "name": "updated_at", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "literal", - "value": false + "type": "intrinsic", + "name": "string" } } ], @@ -29570,38 +29337,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1078, - 1089, - 1079, - 1090, - 1091, - 1088, - 1077 + 2030, + 2021, + 2032, + 2025, + 2023, + 2024, + 2022, + 2031 ] } ] }, { - "id": 1021, - "name": "ResponseValidateVoucherTrue", + "id": 2041, + "name": "RewardsCreateAssignment", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1024, - "name": "applicable_to", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "id": 2499, - "name": "ApplicableToResultList" - } - }, - { - "id": 1026, + "id": 2042, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -29614,1201 +29370,111 @@ } }, { - "id": 1027, - "name": "campaign_id", + "id": 2043, + "name": "parameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 2044, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2045, + "name": "loyalty", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 2046, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2047, + "name": "points", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2047 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2045 + ] + } + ] + } } - }, + } + ], + "groups": [ { - "id": 1023, - "name": "code", + "title": "Properties", + "kind": 1024, + "children": [ + 2042, + 2043 + ] + } + ] + }, + { + "id": 2033, + "name": "RewardsListAssignmentsParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2034, + "name": "limit", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" } }, { - "id": 1029, - "name": "discount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 2525, - "name": "DiscountUnit" - }, - { - "type": "reference", - "id": 2533, - "name": "DiscountAmount" - }, - { - "type": "reference", - "id": 2538, - "name": "DiscountPercent" - }, - { - "type": "reference", - "id": 2544, - "name": "DiscountFixed" - }, - { - "type": "reference", - "id": 2514, - "name": "DiscountUnitMultiple" - } - ] - } - }, - { - "id": 1074, - "name": "expiration_date", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1030, - "name": "gift", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1031, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1032, - "name": "amount", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1033, - "name": "balance", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1034, - "name": "effect", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "APPLY_TO_ORDER" - }, - { - "type": "literal", - "value": "APPLY_TO_ITEMS" - } - ] - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1032, - 1033, - 1034 - ] - } - ] - } - } - }, - { - "id": 1025, - "name": "inapplicable_to", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "id": 2499, - "name": "ApplicableToResultList" - } - }, - { - "id": 1035, - "name": "loyalty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1036, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1037, - "name": "points_cost", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1037 - ] - } - ] - } - } - }, - { - "id": 1028, - "name": "metadata", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - }, - { - "id": 1043, - "name": "order", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1044, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1050, - "name": "amount", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1053, - "name": "applied_discount_amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1047, - "name": "created_at", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1061, - "name": "customer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 644, - "name": "CustomerRequest" - } - }, - { - "id": 1062, - "name": "customer_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1052, - "name": "discount_amount", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1045, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1051, - "name": "initial_amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1059, - "name": "items", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2306, - "name": "OrdersItem" - } - } - }, - { - "id": 1057, - "name": "items_applied_discount_amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1054, - "name": "items_discount_amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1060, - "name": "metadata", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - }, - { - "id": 1064, - "name": "object", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "literal", - "value": "order" - } - }, - { - "id": 1065, - "name": "redemptions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reflection", - "declaration": { - "id": 1066, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1067, - "name": "date", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1069, - "name": "related_object_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1070, - "name": "related_object_parent_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1068, - "name": "related_object_type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "voucher" - }, - { - "type": "literal", - "value": "promotion_tier" - } - ] - } - }, - { - "id": 1071, - "name": "stacked", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1067, - 1069, - 1070, - 1068, - 1071 - ] - } - ] - } - } - ], - "name": "Record" - } - }, - { - "id": 1063, - "name": "referrer_id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, - { - "id": 1046, - "name": "source_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1049, - "name": "status", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "CREATED" - }, - { - "type": "literal", - "value": "PAID" - }, - { - "type": "literal", - "value": "CANCELED" - }, - { - "type": "literal", - "value": "FULFILLED" - }, - { - "type": "literal", - "value": "PROCESSING" - } - ] - } - }, - { - "id": 1056, - "name": "total_amount", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1058, - "name": "total_applied_discount_amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1055, - "name": "total_discount_amount", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1048, - "name": "updated_at", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1050, - 1053, - 1047, - 1061, - 1062, - 1052, - 1045, - 1051, - 1059, - 1057, - 1054, - 1060, - 1064, - 1065, - 1063, - 1046, - 1049, - 1056, - 1058, - 1055, - 1048 - ] - } - ] - } - } - }, - { - "id": 1038, - "name": "reward", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1039, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1041, - "name": "assignment_id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1040, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1042, - "name": "points", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1041, - 1040, - 1042 - ] - } - ] - } - } - }, - { - "id": 1072, - "name": "session", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "id": 2474, - "name": "ValidationSessionParams" - } - }, - { - "id": 1073, - "name": "start_date", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1075, - "name": "tracking_id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1022, - "name": "valid", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "literal", - "value": true - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1024, - 1026, - 1027, - 1023, - 1029, - 1074, - 1030, - 1025, - 1035, - 1028, - 1043, - 1038, - 1072, - 1073, - 1075, - 1022 - ] - } - ] - }, - { - "id": 2096, - "name": "RewardRedemptionParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2098, - "name": "assignment_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2099, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2097, - "name": "points", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2098, - 2099, - 2097 - ] - } - ] - }, - { - "id": 2063, - "name": "RewardsAssignmentObject", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2073, - "name": "created_at", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2064, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2075, - "name": "object", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "literal", - "value": "reward_assignment" - } - }, - { - "id": 2068, - "name": "parameters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 2069, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2070, - "name": "loyalty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 2071, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2072, - "name": "points", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2072 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2070 - ] - } - ] - } - } - }, - { - "id": 2066, - "name": "related_object_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2067, - "name": "related_object_type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2065, - "name": "reward_id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2074, - "name": "updated_at", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2073, - 2064, - 2075, - 2068, - 2066, - 2067, - 2065, - 2074 - ] - } - ] - }, - { - "id": 2084, - "name": "RewardsCreateAssignment", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2085, - "name": "campaign", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2086, - "name": "parameters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 2087, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2088, - "name": "loyalty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 2089, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2090, - "name": "points", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2090 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2088 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2085, - 2086 - ] - } - ] - }, - { - "id": 2076, - "name": "RewardsListAssignmentsParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 2077, - "name": "limit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2078, - "name": "page", + "id": 2035, + "name": "page", "kind": 1024, "kindString": "Property", "flags": { @@ -30825,21 +29491,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2077, - 2078 + 2034, + 2035 ] } ] }, { - "id": 2079, + "id": 2036, "name": "RewardsListAssignmentsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2081, + "id": 2038, "name": "data", "kind": 1024, "kindString": "Property", @@ -30848,13 +29514,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2063, + "id": 2020, "name": "RewardsAssignmentObject" } } }, { - "id": 2083, + "id": 2040, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -30865,7 +29531,7 @@ } }, { - "id": 2082, + "id": 2039, "name": "object", "kind": 1024, "kindString": "Property", @@ -30876,7 +29542,7 @@ } }, { - "id": 2080, + "id": 2037, "name": "total", "kind": 1024, "kindString": "Property", @@ -30892,23 +29558,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2081, - 2083, - 2082, - 2080 + 2038, + 2040, + 2039, + 2037 ] } ] }, { - "id": 2034, + "id": 1991, "name": "RewardsListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2036, + "id": 1993, "name": "limit", "kind": 1024, "kindString": "Property", @@ -30921,7 +29587,7 @@ } }, { - "id": 2035, + "id": 1992, "name": "page", "kind": 1024, "kindString": "Property", @@ -30939,21 +29605,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2036, - 2035 + 1993, + 1992 ] } ] }, { - "id": 2050, + "id": 2007, "name": "RewardsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2054, + "id": 2011, "name": "data", "kind": 1024, "kindString": "Property", @@ -30962,13 +29628,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2049, + "id": 2006, "name": "RewardsCreateResponse" } } }, { - "id": 2053, + "id": 2010, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -30979,7 +29645,7 @@ } }, { - "id": 2051, + "id": 2008, "name": "object", "kind": 1024, "kindString": "Property", @@ -30990,7 +29656,7 @@ } }, { - "id": 2052, + "id": 2009, "name": "total", "kind": 1024, "kindString": "Property", @@ -31006,23 +29672,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2054, - 2053, - 2051, - 2052 + 2011, + 2010, + 2008, + 2009 ] } ] }, { - "id": 2037, + "id": 1994, "name": "RewardsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2042, + "id": 1999, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -31032,14 +29698,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2043, + "id": 2000, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2045, + "id": 2002, "name": "description", "kind": 1024, "kindString": "Property", @@ -31052,7 +29718,7 @@ } }, { - "id": 2044, + "id": 2001, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -31070,8 +29736,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2045, - 2044 + 2002, + 2001 ] } ] @@ -31079,7 +29745,7 @@ } }, { - "id": 2046, + "id": 2003, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -31090,7 +29756,7 @@ } }, { - "id": 2038, + "id": 1995, "name": "id", "kind": 1024, "kindString": "Property", @@ -31101,7 +29767,7 @@ } }, { - "id": 2039, + "id": 1996, "name": "name", "kind": 1024, "kindString": "Property", @@ -31114,7 +29780,7 @@ } }, { - "id": 2048, + "id": 2005, "name": "object", "kind": 1024, "kindString": "Property", @@ -31125,7 +29791,7 @@ } }, { - "id": 2041, + "id": 1998, "name": "redeemed", "kind": 1024, "kindString": "Property", @@ -31138,7 +29804,7 @@ } }, { - "id": 2040, + "id": 1997, "name": "stock", "kind": 1024, "kindString": "Property", @@ -31151,7 +29817,7 @@ } }, { - "id": 2047, + "id": 2004, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -31169,27 +29835,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2042, - 2046, - 2038, - 2039, - 2048, - 2041, - 2040, - 2047 + 1999, + 2003, + 1995, + 1996, + 2005, + 1998, + 1997, + 2004 ] } ] }, { - "id": 2245, + "id": 2202, "name": "SegmentsCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2253, + "id": 2210, "name": "customers", "kind": 1024, "kindString": "Property", @@ -31205,7 +29871,7 @@ } }, { - "id": 2248, + "id": 2205, "name": "filter", "kind": 1024, "kindString": "Property", @@ -31215,14 +29881,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2249, + "id": 2206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2250, + "id": 2207, "name": "junction", "kind": 1024, "kindString": "Property", @@ -31249,19 +29915,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2250 + 2207 ] } ], "indexSignature": { - "id": 2251, + "id": 2208, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2252, + "id": 2209, "name": "filter_conditions", "kind": 32768, "flags": {}, @@ -31280,7 +29946,7 @@ } }, { - "id": 2246, + "id": 2203, "name": "name", "kind": 1024, "kindString": "Property", @@ -31291,7 +29957,7 @@ } }, { - "id": 2247, + "id": 2204, "name": "type", "kind": 1024, "kindString": "Property", @@ -31316,23 +29982,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2253, - 2248, - 2246, - 2247 + 2210, + 2205, + 2203, + 2204 ] } ] }, { - "id": 2254, + "id": 2211, "name": "SegmentsCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2257, + "id": 2214, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -31343,7 +30009,7 @@ } }, { - "id": 2259, + "id": 2216, "name": "filter", "kind": 1024, "kindString": "Property", @@ -31353,14 +30019,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2260, + "id": 2217, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2261, + "id": 2218, "name": "junction", "kind": 1024, "kindString": "Property", @@ -31387,19 +30053,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2261 + 2218 ] } ], "indexSignature": { - "id": 2262, + "id": 2219, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2263, + "id": 2220, "name": "filter_conditions", "kind": 32768, "flags": {}, @@ -31418,7 +30084,7 @@ } }, { - "id": 2255, + "id": 2212, "name": "id", "kind": 1024, "kindString": "Property", @@ -31429,7 +30095,7 @@ } }, { - "id": 2258, + "id": 2215, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -31452,7 +30118,7 @@ } }, { - "id": 2256, + "id": 2213, "name": "name", "kind": 1024, "kindString": "Property", @@ -31463,7 +30129,7 @@ } }, { - "id": 2265, + "id": 2222, "name": "object", "kind": 1024, "kindString": "Property", @@ -31474,7 +30140,7 @@ } }, { - "id": 2264, + "id": 2221, "name": "type", "kind": 1024, "kindString": "Property", @@ -31492,26 +30158,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2257, - 2259, - 2255, - 2258, - 2256, - 2265, - 2264 + 2214, + 2216, + 2212, + 2215, + 2213, + 2222, + 2221 ] } ] }, { - "id": 2267, + "id": 2224, "name": "SegmentsListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2271, + "id": 2228, "name": "data", "kind": 1024, "kindString": "Property", @@ -31521,14 +30187,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2272, + "id": 2229, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2273, + "id": 2230, "name": "id", "kind": 1024, "kindString": "Property", @@ -31539,7 +30205,7 @@ } }, { - "id": 2274, + "id": 2231, "name": "name", "kind": 1024, "kindString": "Property", @@ -31550,7 +30216,7 @@ } }, { - "id": 2275, + "id": 2232, "name": "object", "kind": 1024, "kindString": "Property", @@ -31566,9 +30232,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2273, - 2274, - 2275 + 2230, + 2231, + 2232 ] } ] @@ -31577,7 +30243,7 @@ } }, { - "id": 2270, + "id": 2227, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -31588,7 +30254,7 @@ } }, { - "id": 2268, + "id": 2225, "name": "object", "kind": 1024, "kindString": "Property", @@ -31599,7 +30265,7 @@ } }, { - "id": 2269, + "id": 2226, "name": "total", "kind": 1024, "kindString": "Property", @@ -31615,10 +30281,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2271, - 2270, - 2268, - 2269 + 2228, + 2227, + 2225, + 2226 ] } ] @@ -31731,14 +30397,14 @@ ] }, { - "id": 2185, + "id": 2142, "name": "SimpleProduct", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2186, + "id": 2143, "name": "id", "kind": 1024, "kindString": "Property", @@ -31749,7 +30415,7 @@ } }, { - "id": 2188, + "id": 2145, "name": "name", "kind": 1024, "kindString": "Property", @@ -31762,7 +30428,7 @@ } }, { - "id": 2187, + "id": 2144, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -31780,22 +30446,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2186, - 2188, - 2187 + 2143, + 2145, + 2144 ] } ] }, { - "id": 1194, + "id": 1151, "name": "SimplePromotionTier", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1200, + "id": 1157, "name": "banner", "kind": 1024, "kindString": "Property", @@ -31808,7 +30474,7 @@ } }, { - "id": 1201, + "id": 1158, "name": "discount", "kind": 1024, "kindString": "Property", @@ -31818,29 +30484,29 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] } }, { - "id": 1202, + "id": 1159, "name": "hierarchy", "kind": 1024, "kindString": "Property", @@ -31851,7 +30517,7 @@ } }, { - "id": 1198, + "id": 1155, "name": "id", "kind": 1024, "kindString": "Property", @@ -31862,7 +30528,7 @@ } }, { - "id": 1196, + "id": 1153, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -31885,7 +30551,7 @@ } }, { - "id": 1199, + "id": 1156, "name": "name", "kind": 1024, "kindString": "Property", @@ -31896,7 +30562,7 @@ } }, { - "id": 1203, + "id": 1160, "name": "object", "kind": 1024, "kindString": "Property", @@ -31907,7 +30573,7 @@ } }, { - "id": 1195, + "id": 1152, "name": "tracking_id", "kind": 1024, "kindString": "Property", @@ -31918,7 +30584,7 @@ } }, { - "id": 1197, + "id": 1154, "name": "valid", "kind": 1024, "kindString": "Property", @@ -31934,28 +30600,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1200, - 1201, - 1202, - 1198, - 1196, - 1199, - 1203, - 1195, - 1197 + 1157, + 1158, + 1159, + 1155, + 1153, + 1156, + 1160, + 1152, + 1154 ] } ] }, { - "id": 2189, + "id": 2146, "name": "SimpleSku", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2190, + "id": 2147, "name": "id", "kind": 1024, "kindString": "Property", @@ -31966,7 +30632,7 @@ } }, { - "id": 2192, + "id": 2149, "name": "sku", "kind": 1024, "kindString": "Property", @@ -31979,7 +30645,7 @@ } }, { - "id": 2191, + "id": 2148, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -31997,22 +30663,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2190, - 2192, - 2191 + 2147, + 2149, + 2148 ] } ] }, { - "id": 1771, + "id": 1728, "name": "SimpleVoucher", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1772, + "id": 1729, "name": "code_config", "kind": 1024, "kindString": "Property", @@ -32022,14 +30688,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1773, + "id": 1730, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1775, + "id": 1732, "name": "charset", "kind": 1024, "kindString": "Property", @@ -32042,7 +30708,7 @@ } }, { - "id": 1774, + "id": 1731, "name": "length", "kind": 1024, "kindString": "Property", @@ -32055,7 +30721,7 @@ } }, { - "id": 1776, + "id": 1733, "name": "pattern", "kind": 1024, "kindString": "Property", @@ -32068,7 +30734,7 @@ } }, { - "id": 1777, + "id": 1734, "name": "prefix", "kind": 1024, "kindString": "Property", @@ -32081,7 +30747,7 @@ } }, { - "id": 1778, + "id": 1735, "name": "suffix", "kind": 1024, "kindString": "Property", @@ -32099,11 +30765,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1775, - 1774, - 1776, - 1777, - 1778 + 1732, + 1731, + 1733, + 1734, + 1735 ] } ] @@ -32111,7 +30777,7 @@ } }, { - "id": 1781, + "id": 1738, "name": "discount", "kind": 1024, "kindString": "Property", @@ -32123,29 +30789,29 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] } }, { - "id": 1780, + "id": 1737, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -32158,7 +30824,7 @@ } }, { - "id": 1782, + "id": 1739, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -32168,14 +30834,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1783, + "id": 1740, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1785, + "id": 1742, "name": "balance", "kind": 1024, "kindString": "Property", @@ -32186,7 +30852,7 @@ } }, { - "id": 1784, + "id": 1741, "name": "points", "kind": 1024, "kindString": "Property", @@ -32202,8 +30868,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1785, - 1784 + 1742, + 1741 ] } ] @@ -32211,7 +30877,7 @@ } }, { - "id": 1786, + "id": 1743, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -32221,14 +30887,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1787, + "id": 1744, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1788, + "id": 1745, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -32244,7 +30910,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1788 + 1745 ] } ] @@ -32252,14 +30918,14 @@ } }, { - "id": 1779, + "id": 1736, "name": "type", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 1770, + "id": 1727, "name": "VoucherType" } } @@ -32269,25 +30935,25 @@ "title": "Properties", "kind": 1024, "children": [ - 1772, - 1781, - 1780, - 1782, - 1786, - 1779 + 1729, + 1738, + 1737, + 1739, + 1743, + 1736 ] } ] }, { - "id": 2420, + "id": 2377, "name": "StackableOptions", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2421, + "id": 2378, "name": "expand", "kind": 1024, "kindString": "Property", @@ -32306,20 +30972,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2421 + 2378 ] } ] }, { - "id": 2423, + "id": 2380, "name": "StackableRedeemableParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2427, + "id": 2384, "name": "gift", "kind": 1024, "kindString": "Property", @@ -32328,12 +30994,12 @@ }, "type": { "type": "reference", - "id": 2470, + "id": 2427, "name": "GiftRedemptionParams" } }, { - "id": 2425, + "id": 2382, "name": "id", "kind": 1024, "kindString": "Property", @@ -32344,19 +31010,19 @@ } }, { - "id": 2424, + "id": 2381, "name": "object", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2422, + "id": 2379, "name": "StackableRedeemableObject" } }, { - "id": 2426, + "id": 2383, "name": "reward", "kind": 1024, "kindString": "Property", @@ -32365,7 +31031,7 @@ }, "type": { "type": "reference", - "id": 2096, + "id": 2053, "name": "RewardRedemptionParams" } } @@ -32375,23 +31041,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2427, - 2425, - 2424, - 2426 + 2384, + 2382, + 2381, + 2383 ] } ] }, { - "id": 2461, + "id": 2418, "name": "StackableRedeemableResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2466, + "id": 2423, "name": "applicable_to", "kind": 1024, "kindString": "Property", @@ -32400,12 +31066,12 @@ }, "type": { "type": "reference", - "id": 2499, + "id": 2452, "name": "ApplicableToResultList" } }, { - "id": 2463, + "id": 2420, "name": "id", "kind": 1024, "kindString": "Property", @@ -32416,7 +31082,7 @@ } }, { - "id": 2467, + "id": 2424, "name": "inapplicable_to", "kind": 1024, "kindString": "Property", @@ -32425,12 +31091,12 @@ }, "type": { "type": "reference", - "id": 2499, + "id": 2452, "name": "ApplicableToResultList" } }, { - "id": 2469, + "id": 2426, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -32453,19 +31119,19 @@ } }, { - "id": 2464, + "id": 2421, "name": "object", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2422, + "id": 2379, "name": "StackableRedeemableObject" } }, { - "id": 2465, + "id": 2422, "name": "order", "kind": 1024, "kindString": "Property", @@ -32474,12 +31140,12 @@ }, "type": { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } }, { - "id": 2468, + "id": 2425, "name": "result", "kind": 1024, "kindString": "Property", @@ -32488,19 +31154,19 @@ }, "type": { "type": "reference", - "id": 2456, + "id": 2413, "name": "StackableRedeemableResultResponse" } }, { - "id": 2462, + "id": 2419, "name": "status", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2428, + "id": 2385, "name": "StackableRedeemableResponseStatus" } } @@ -32510,27 +31176,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2466, - 2463, - 2467, - 2469, - 2464, - 2465, - 2468, - 2462 + 2423, + 2420, + 2424, + 2426, + 2421, + 2422, + 2425, + 2419 ] } ] }, { - "id": 2435, + "id": 2392, "name": "StackableRedeemableResultDiscount", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2442, + "id": 2399, "name": "amount_limit", "kind": 1024, "kindString": "Property", @@ -32543,7 +31209,7 @@ } }, { - "id": 2438, + "id": 2395, "name": "amount_off", "kind": 1024, "kindString": "Property", @@ -32556,7 +31222,7 @@ } }, { - "id": 2439, + "id": 2396, "name": "amount_off_formula", "kind": 1024, "kindString": "Property", @@ -32569,19 +31235,19 @@ } }, { - "id": 2437, + "id": 2394, "name": "effect", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2509, + "id": 2462, "name": "DiscountVouchersEffectTypes" } }, { - "id": 2443, + "id": 2400, "name": "fixed_amount", "kind": 1024, "kindString": "Property", @@ -32594,7 +31260,7 @@ } }, { - "id": 2444, + "id": 2401, "name": "fixed_amount_formula", "kind": 1024, "kindString": "Property", @@ -32607,7 +31273,7 @@ } }, { - "id": 2440, + "id": 2397, "name": "percent_off", "kind": 1024, "kindString": "Property", @@ -32620,7 +31286,7 @@ } }, { - "id": 2441, + "id": 2398, "name": "percent_off_formula", "kind": 1024, "kindString": "Property", @@ -32633,7 +31299,7 @@ } }, { - "id": 2449, + "id": 2406, "name": "product", "kind": 1024, "kindString": "Property", @@ -32642,12 +31308,12 @@ }, "type": { "type": "reference", - "id": 2185, + "id": 2142, "name": "SimpleProduct" } }, { - "id": 2448, + "id": 2405, "name": "sku", "kind": 1024, "kindString": "Property", @@ -32656,24 +31322,24 @@ }, "type": { "type": "reference", - "id": 2189, + "id": 2146, "name": "SimpleSku" } }, { - "id": 2436, + "id": 2393, "name": "type", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2503, + "id": 2456, "name": "DiscountVouchersTypes" } }, { - "id": 2445, + "id": 2402, "name": "unit_off", "kind": 1024, "kindString": "Property", @@ -32686,7 +31352,7 @@ } }, { - "id": 2446, + "id": 2403, "name": "unit_off_formula", "kind": 1024, "kindString": "Property", @@ -32699,7 +31365,7 @@ } }, { - "id": 2447, + "id": 2404, "name": "unit_type", "kind": 1024, "kindString": "Property", @@ -32712,7 +31378,7 @@ } }, { - "id": 2450, + "id": 2407, "name": "units", "kind": 1024, "kindString": "Property", @@ -32723,7 +31389,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2429, + "id": 2386, "name": "StackableRedeemableResultDiscountUnit" } } @@ -32734,46 +31400,46 @@ "title": "Properties", "kind": 1024, "children": [ - 2442, - 2438, - 2439, - 2437, - 2443, - 2444, - 2440, - 2441, - 2449, - 2448, - 2436, - 2445, - 2446, - 2447, - 2450 + 2399, + 2395, + 2396, + 2394, + 2400, + 2401, + 2397, + 2398, + 2406, + 2405, + 2393, + 2402, + 2403, + 2404, + 2407 ] } ] }, { - "id": 2429, + "id": 2386, "name": "StackableRedeemableResultDiscountUnit", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2430, + "id": 2387, "name": "effect", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2510, + "id": 2463, "name": "DiscountUnitVouchersEffectTypes" } }, { - "id": 2434, + "id": 2391, "name": "product", "kind": 1024, "kindString": "Property", @@ -32782,12 +31448,12 @@ }, "type": { "type": "reference", - "id": 2185, + "id": 2142, "name": "SimpleProduct" } }, { - "id": 2433, + "id": 2390, "name": "sku", "kind": 1024, "kindString": "Property", @@ -32796,12 +31462,12 @@ }, "type": { "type": "reference", - "id": 2189, + "id": 2146, "name": "SimpleSku" } }, { - "id": 2431, + "id": 2388, "name": "unit_off", "kind": 1024, "kindString": "Property", @@ -32812,7 +31478,7 @@ } }, { - "id": 2432, + "id": 2389, "name": "unit_type", "kind": 1024, "kindString": "Property", @@ -32828,24 +31494,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2430, - 2434, - 2433, - 2431, - 2432 + 2387, + 2391, + 2390, + 2388, + 2389 ] } ] }, { - "id": 2451, + "id": 2408, "name": "StackableRedeemableResultGift", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2452, + "id": 2409, "name": "credits", "kind": 1024, "kindString": "Property", @@ -32863,20 +31529,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2452 + 2409 ] } ] }, { - "id": 2453, + "id": 2410, "name": "StackableRedeemableResultLoyaltyCard", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2454, + "id": 2411, "name": "points", "kind": 1024, "kindString": "Property", @@ -32889,7 +31555,7 @@ } }, { - "id": 2455, + "id": 2412, "name": "transfers", "kind": 1024, "kindString": "Property", @@ -32900,7 +31566,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1767, + "id": 1724, "name": "LoyaltyPointsTransfer" } } @@ -32911,21 +31577,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2454, - 2455 + 2411, + 2412 ] } ] }, { - "id": 2456, + "id": 2413, "name": "StackableRedeemableResultResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2457, + "id": 2414, "name": "discount", "kind": 1024, "kindString": "Property", @@ -32934,12 +31600,12 @@ }, "type": { "type": "reference", - "id": 2435, + "id": 2392, "name": "StackableRedeemableResultDiscount" } }, { - "id": 2460, + "id": 2417, "name": "error", "kind": 1024, "kindString": "Property", @@ -32952,7 +31618,7 @@ } }, { - "id": 2458, + "id": 2415, "name": "gift", "kind": 1024, "kindString": "Property", @@ -32961,12 +31627,12 @@ }, "type": { "type": "reference", - "id": 2451, + "id": 2408, "name": "StackableRedeemableResultGift" } }, { - "id": 2459, + "id": 2416, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -32975,7 +31641,7 @@ }, "type": { "type": "reference", - "id": 2453, + "id": 2410, "name": "StackableRedeemableResultLoyaltyCard" } } @@ -32985,23 +31651,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2457, - 2460, - 2458, - 2459 + 2414, + 2417, + 2415, + 2416 ] } ] }, { - "id": 1971, + "id": 1928, "name": "ValidationRulesCreate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1973, + "id": 1930, "name": "error", "kind": 1024, "kindString": "Property", @@ -33011,14 +31677,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1974, + "id": 1931, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1975, + "id": 1932, "name": "message", "kind": 1024, "kindString": "Property", @@ -33036,7 +31702,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1975 + 1932 ] } ] @@ -33044,7 +31710,7 @@ } }, { - "id": 1972, + "id": 1929, "name": "name", "kind": 1024, "kindString": "Property", @@ -33055,7 +31721,7 @@ } }, { - "id": 1976, + "id": 1933, "name": "rules", "kind": 1024, "kindString": "Property", @@ -33065,14 +31731,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1977, + "id": 1934, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1978, + "id": 1935, "name": "logic", "kind": 1024, "kindString": "Property", @@ -33090,19 +31756,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1978 + 1935 ] } ], "indexSignature": { - "id": 1979, + "id": 1936, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1980, + "id": 1937, "name": "rule", "kind": 32768, "flags": {}, @@ -33126,22 +31792,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1973, - 1972, - 1976 + 1930, + 1929, + 1933 ] } ] }, { - "id": 2006, + "id": 1963, "name": "ValidationRulesCreateAssignment", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2008, + "id": 1965, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -33154,7 +31820,7 @@ } }, { - "id": 2009, + "id": 1966, "name": "promotion_tier", "kind": 1024, "kindString": "Property", @@ -33167,7 +31833,7 @@ } }, { - "id": 2007, + "id": 1964, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -33185,22 +31851,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2008, - 2009, - 2007 + 1965, + 1966, + 1964 ] } ] }, { - "id": 2010, + "id": 1967, "name": "ValidationRulesCreateAssignmentResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2015, + "id": 1972, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -33213,7 +31879,7 @@ } }, { - "id": 2011, + "id": 1968, "name": "id", "kind": 1024, "kindString": "Property", @@ -33224,7 +31890,7 @@ } }, { - "id": 2017, + "id": 1974, "name": "object", "kind": 1024, "kindString": "Property", @@ -33235,7 +31901,7 @@ } }, { - "id": 2013, + "id": 1970, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -33248,7 +31914,7 @@ } }, { - "id": 2014, + "id": 1971, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -33261,7 +31927,7 @@ } }, { - "id": 2012, + "id": 1969, "name": "rule_id", "kind": 1024, "kindString": "Property", @@ -33272,7 +31938,7 @@ } }, { - "id": 2016, + "id": 1973, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -33288,26 +31954,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2015, - 2011, - 2017, - 2013, - 2014, - 2012, - 2016 + 1972, + 1968, + 1974, + 1970, + 1971, + 1969, + 1973 ] } ] }, { - "id": 1981, + "id": 1938, "name": "ValidationRulesCreateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1992, + "id": 1949, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -33318,7 +31984,7 @@ } }, { - "id": 1984, + "id": 1941, "name": "error", "kind": 1024, "kindString": "Property", @@ -33328,14 +31994,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1985, + "id": 1942, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1986, + "id": 1943, "name": "message", "kind": 1024, "kindString": "Property", @@ -33353,7 +32019,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1986 + 1943 ] } ] @@ -33361,7 +32027,7 @@ } }, { - "id": 1982, + "id": 1939, "name": "id", "kind": 1024, "kindString": "Property", @@ -33372,7 +32038,7 @@ } }, { - "id": 1983, + "id": 1940, "name": "name", "kind": 1024, "kindString": "Property", @@ -33383,7 +32049,7 @@ } }, { - "id": 1994, + "id": 1951, "name": "object", "kind": 1024, "kindString": "Property", @@ -33394,7 +32060,7 @@ } }, { - "id": 1987, + "id": 1944, "name": "rules", "kind": 1024, "kindString": "Property", @@ -33404,14 +32070,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1988, + "id": 1945, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1989, + "id": 1946, "name": "logic", "kind": 1024, "kindString": "Property", @@ -33429,19 +32095,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1989 + 1946 ] } ], "indexSignature": { - "id": 1990, + "id": 1947, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1991, + "id": 1948, "name": "rule", "kind": 32768, "flags": {}, @@ -33460,7 +32126,7 @@ } }, { - "id": 1993, + "id": 1950, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -33478,26 +32144,26 @@ "title": "Properties", "kind": 1024, "children": [ - 1992, - 1984, - 1982, - 1983, - 1994, - 1987, - 1993 + 1949, + 1941, + 1939, + 1940, + 1951, + 1944, + 1950 ] } ] }, { - "id": 2026, + "id": 1983, "name": "ValidationRulesListAssignmentsParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2027, + "id": 1984, "name": "limit", "kind": 1024, "kindString": "Property", @@ -33510,7 +32176,7 @@ } }, { - "id": 2028, + "id": 1985, "name": "page", "kind": 1024, "kindString": "Property", @@ -33528,21 +32194,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2027, - 2028 + 1984, + 1985 ] } ] }, { - "id": 2029, + "id": 1986, "name": "ValidationRulesListAssignmentsResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2033, + "id": 1990, "name": "data", "kind": 1024, "kindString": "Property", @@ -33551,13 +32217,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2010, + "id": 1967, "name": "ValidationRulesCreateAssignmentResponse" } } }, { - "id": 2032, + "id": 1989, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -33568,7 +32234,7 @@ } }, { - "id": 2030, + "id": 1987, "name": "object", "kind": 1024, "kindString": "Property", @@ -33579,7 +32245,7 @@ } }, { - "id": 2031, + "id": 1988, "name": "total", "kind": 1024, "kindString": "Property", @@ -33595,23 +32261,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2033, - 2032, - 2030, - 2031 + 1990, + 1989, + 1987, + 1988 ] } ] }, { - "id": 2018, + "id": 1975, "name": "ValidationRulesListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2019, + "id": 1976, "name": "limit", "kind": 1024, "kindString": "Property", @@ -33624,7 +32290,7 @@ } }, { - "id": 2020, + "id": 1977, "name": "page", "kind": 1024, "kindString": "Property", @@ -33642,21 +32308,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2019, - 2020 + 1976, + 1977 ] } ] }, { - "id": 2021, + "id": 1978, "name": "ValidationRulesListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2025, + "id": 1982, "name": "data", "kind": 1024, "kindString": "Property", @@ -33665,13 +32331,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1999, + "id": 1956, "name": "ValidationRulesGetResponse" } } }, { - "id": 2024, + "id": 1981, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -33682,7 +32348,7 @@ } }, { - "id": 2022, + "id": 1979, "name": "object", "kind": 1024, "kindString": "Property", @@ -33693,7 +32359,7 @@ } }, { - "id": 2023, + "id": 1980, "name": "total", "kind": 1024, "kindString": "Property", @@ -33709,35 +32375,35 @@ "title": "Properties", "kind": 1024, "children": [ - 2025, - 2024, - 2022, - 2023 + 1982, + 1981, + 1979, + 1980 ] } ] }, { - "id": 1995, + "id": 1952, "name": "ValidationRulesValidateResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1998, + "id": 1955, "name": "applicable_to", "kind": 1024, "kindString": "Property", "flags": {}, "type": { "type": "reference", - "id": 2499, + "id": 2452, "name": "ApplicableToResultList" } }, { - "id": 1997, + "id": 1954, "name": "rule_id", "kind": 1024, "kindString": "Property", @@ -33748,7 +32414,7 @@ } }, { - "id": 1996, + "id": 1953, "name": "valid", "kind": 1024, "kindString": "Property", @@ -33764,22 +32430,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1998, - 1997, - 1996 + 1955, + 1954, + 1953 ] } ] }, { - "id": 2474, + "id": 2431, "name": "ValidationSessionParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2475, + "id": 2432, "name": "key", "kind": 1024, "kindString": "Property", @@ -33792,7 +32458,7 @@ } }, { - "id": 2477, + "id": 2434, "name": "ttl", "kind": 1024, "kindString": "Property", @@ -33805,7 +32471,7 @@ } }, { - "id": 2478, + "id": 2435, "name": "ttl_unit", "kind": 1024, "kindString": "Property", @@ -33847,7 +32513,7 @@ } }, { - "id": 2476, + "id": 2433, "name": "type", "kind": 1024, "kindString": "Property", @@ -33865,23 +32531,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2475, - 2477, - 2478, - 2476 + 2432, + 2434, + 2435, + 2433 ] } ] }, { - "id": 2484, + "id": 2441, "name": "ValidationSessionReleaseParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2485, + "id": 2442, "name": "key", "kind": 1024, "kindString": "Property", @@ -33890,68 +32556,629 @@ "type": "intrinsic", "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2485 - ] - } - ] - }, - { - "id": 2479, - "name": "ValidationSessionResponse", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2442 + ] + } + ] + }, + { + "id": 2436, + "name": "ValidationSessionResponse", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 2437, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2439, + "name": "ttl", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2440, + "name": "ttl_unit", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "id": 2430, + "name": "ValidationSessionTTLUnit" + } + }, + { + "id": 2438, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "literal", + "value": "LOCK" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2437, + 2439, + 2440, + 2438 + ] + } + ] + }, + { + "id": 1063, + "name": "ValidationValidateStackableResponse", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1067, + "name": "order", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "id": 2302, + "name": "OrdersCreateResponse" + } + }, + { + "id": 1068, + "name": "redeemables", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2418, + "name": "StackableRedeemableResponse" + } + } + }, + { + "id": 1066, + "name": "session", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "id": 2436, + "name": "ValidationSessionResponse" + } + }, + { + "id": 1065, + "name": "tracking_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1064, + "name": "valid", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1067, + 1068, + 1066, + 1065, + 1064 + ] + } + ] + }, + { + "id": 1056, + "name": "ValidationsValidateStackableParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1061, + "name": "customer", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "id": 644, + "name": "CustomerRequest" + } + }, + { + "id": 1062, + "name": "metadata", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + }, + { + "id": 1057, + "name": "options", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "id": 2377, + "name": "StackableOptions" + } + }, + { + "id": 1060, + "name": "order", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "id": 2294, + "name": "OrdersCreate" + } + }, + { + "id": 1058, + "name": "redeemables", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2380, + "name": "StackableRedeemableParams" + } + } + }, + { + "id": 1059, + "name": "session", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "id": 2431, + "name": "ValidationSessionParams" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1061, + 1062, + 1057, + 1060, + 1058, + 1059 + ] + } + ] + }, + { + "id": 999, + "name": "ValidationsValidateVoucherParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1000, + "name": "customer", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1001, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1006, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1005, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1002, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1007, + "name": "metadata", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + }, + { + "id": 1004, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1003, + "name": "source_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1006, + 1005, + 1002, + 1007, + 1004, + 1003 + ] + } + ] + } + } + }, { - "id": 2480, - "name": "key", + "id": 1015, + "name": "gift", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 1016, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1017, + "name": "credits", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1017 + ] + } + ] + } } }, { - "id": 2482, - "name": "ttl", + "id": 1008, + "name": "order", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "number" + "type": "reflection", + "declaration": { + "id": 1009, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1012, + "name": "amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1010, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1013, + "name": "items", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2263, + "name": "OrdersItem" + } + } + }, + { + "id": 1014, + "name": "metadata", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + }, + { + "id": 1011, + "name": "source_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1012, + 1010, + 1013, + 1014, + 1011 + ] + } + ] + } } }, { - "id": 2483, - "name": "ttl_unit", + "id": 1018, + "name": "reward", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "reference", - "id": 2473, - "name": "ValidationSessionTTLUnit" + "type": "reflection", + "declaration": { + "id": 1019, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1020, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1020 + ] + } + ] + } } }, { - "id": 2481, - "name": "type", + "id": 1021, + "name": "session", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "literal", - "value": "LOCK" + "type": "reference", + "id": 2431, + "name": "ValidationSessionParams" } } ], @@ -33960,24 +33187,25 @@ "title": "Properties", "kind": 1024, "children": [ - 2480, - 2482, - 2483, - 2481 + 1000, + 1015, + 1008, + 1018, + 1021 ] } ] }, { - "id": 1106, - "name": "ValidationValidateStackableResponse", + "id": 1022, + "name": "ValidationsValidateVoucherResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1110, - "name": "order", + "id": 1023, + "name": "applicable_to", "kind": 1024, "kindString": "Property", "flags": { @@ -33985,44 +33213,26 @@ }, "type": { "type": "reference", - "id": 2345, - "name": "OrdersCreateResponse" - } - }, - { - "id": 1111, - "name": "redeemables", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2461, - "name": "StackableRedeemableResponse" - } + "id": 2452, + "name": "ApplicableToResultList" } }, { - "id": 1109, - "name": "session", + "id": 1025, + "name": "campaign", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reference", - "id": 2479, - "name": "ValidationSessionResponse" + "type": "intrinsic", + "name": "string" } }, { - "id": 1108, - "name": "tracking_id", + "id": 1026, + "name": "campaign_id", "kind": 1024, "kindString": "Property", "flags": { @@ -34034,78 +33244,55 @@ } }, { - "id": 1107, - "name": "valid", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1110, - 1111, - 1109, - 1108, - 1107 - ] - } - ] - }, - { - "id": 1099, - "name": "ValidationsValidateStackableParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 1104, - "name": "customer", + "id": 1028, + "name": "code", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reference", - "id": 644, - "name": "CustomerRequest" + "type": "intrinsic", + "name": "string" } }, { - "id": 1105, - "name": "metadata", + "id": 1030, + "name": "discount", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reference", - "typeArguments": [ + "type": "union", + "types": [ { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2467, + "name": "DiscountUnit" }, { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 2475, + "name": "DiscountAmount" + }, + { + "type": "reference", + "id": 2480, + "name": "DiscountPercent" + }, + { + "type": "reference", + "id": 2486, + "name": "DiscountFixed" } - ], - "name": "Record" + ] } }, { - "id": 1100, - "name": "options", + "id": 1055, + "name": "error", "kind": 1024, "kindString": "Property", "flags": { @@ -34113,79 +33300,78 @@ }, "type": { "type": "reference", - "id": 2420, - "name": "StackableOptions" + "name": "ValidationError" } }, { - "id": 1103, - "name": "order", + "id": 1053, + "name": "expiration_date", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reference", - "id": 2337, - "name": "OrdersCreate" - } - }, - { - "id": 1101, - "name": "redeemables", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2423, - "name": "StackableRedeemableParams" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 1102, - "name": "session", + "id": 1031, + "name": "gift", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reference", - "id": 2474, - "name": "ValidationSessionParams" + "type": "reflection", + "declaration": { + "id": 1032, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1033, + "name": "amount", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1034, + "name": "balance", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1033, + 1034 + ] + } + ] + } } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1104, - 1105, - 1100, - 1103, - 1101, - 1102 - ] - } - ] - }, - { - "id": 1000, - "name": "ValidationsValidateVoucherParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ + }, { - "id": 1001, - "name": "customer", + "id": 1024, + "name": "inapplicable_to", "kind": 1024, "kindString": "Property", "flags": { @@ -34193,13 +33379,13 @@ }, "type": { "type": "reference", - "id": 644, - "name": "CustomerRequest" + "id": 2452, + "name": "ApplicableToResultList" } }, { - "id": 1012, - "name": "gift", + "id": 1035, + "name": "loyalty", "kind": 1024, "kindString": "Property", "flags": { @@ -34208,15 +33394,15 @@ "type": { "type": "reflection", "declaration": { - "id": 1013, + "id": 1036, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1014, - "name": "credits", + "id": 1037, + "name": "points_cost", "kind": 1024, "kindString": "Property", "flags": {}, @@ -34231,7 +33417,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1014 + 1037 ] } ] @@ -34239,7 +33425,30 @@ } }, { - "id": 1002, + "id": 1027, + "name": "metadata", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + }, + { + "id": 1038, "name": "order", "kind": 1024, "kindString": "Property", @@ -34249,42 +33458,50 @@ "type": { "type": "reflection", "declaration": { - "id": 1003, + "id": 1039, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1007, + "id": 1040, "name": "amount", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "number" } }, { - "id": 1009, - "name": "customer", + "id": 1044, + "name": "applied_discount_amount", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reference", - "id": 644, - "name": "CustomerRequest" + "type": "intrinsic", + "name": "number" } }, { - "id": 1004, - "name": "id", + "id": 1041, + "name": "discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1047, + "name": "initial_amount", "kind": 1024, "kindString": "Property", "flags": { @@ -34292,11 +33509,11 @@ }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" } }, { - "id": 1008, + "id": 1046, "name": "items", "kind": 1024, "kindString": "Property", @@ -34307,13 +33524,39 @@ "type": "array", "elementType": { "type": "reference", - "id": 2306, + "id": 2263, "name": "OrdersItem" } } }, { - "id": 1011, + "id": 1049, + "name": "items_applied_discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1048, + "name": "items_discount_amount", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1050, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -34336,22 +33579,19 @@ } }, { - "id": 1010, - "name": "referrer", + "id": 1043, + "name": "total_amount", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reference", - "id": 644, - "name": "CustomerRequest" + "type": "intrinsic", + "name": "number" } }, { - "id": 1005, - "name": "source_id", + "id": 1045, + "name": "total_applied_discount_amount", "kind": 1024, "kindString": "Property", "flags": { @@ -34359,37 +33599,18 @@ }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" } }, { - "id": 1006, - "name": "status", + "id": 1042, + "name": "total_discount_amount", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "CREATED" - }, - { - "type": "literal", - "value": "PAID" - }, - { - "type": "literal", - "value": "CANCELED" - }, - { - "type": "literal", - "value": "FULFILLED" - } - ] + "type": "intrinsic", + "name": "number" } } ], @@ -34398,14 +33619,17 @@ "title": "Properties", "kind": 1024, "children": [ - 1007, - 1009, - 1004, - 1008, - 1011, - 1010, - 1005, - 1006 + 1040, + 1044, + 1041, + 1047, + 1046, + 1049, + 1048, + 1050, + 1043, + 1045, + 1042 ] } ] @@ -34413,72 +33637,54 @@ } }, { - "id": 1015, - "name": "reward", + "id": 1051, + "name": "session", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reflection", - "declaration": { - "id": 1016, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1017, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1018, - "name": "points", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1017, - 1018 - ] - } - ] - } + "type": "reference", + "id": 2431, + "name": "ValidationSessionParams" } }, { - "id": 1019, - "name": "session", + "id": 1052, + "name": "start_date", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "type": { - "type": "reference", - "id": 2474, - "name": "ValidationSessionParams" + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1054, + "name": "tracking_id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1029, + "name": "valid", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" } } ], @@ -34487,24 +33693,35 @@ "title": "Properties", "kind": 1024, "children": [ - 1001, - 1012, - 1002, - 1015, - 1019 + 1023, + 1025, + 1026, + 1028, + 1030, + 1055, + 1053, + 1031, + 1024, + 1035, + 1027, + 1038, + 1051, + 1052, + 1054, + 1029 ] } ] }, { - "id": 2193, + "id": 2150, "name": "VoucherDiscount", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2202, + "id": 2159, "name": "amount_limit", "kind": 1024, "kindString": "Property", @@ -34517,7 +33734,7 @@ } }, { - "id": 2198, + "id": 2155, "name": "amount_off", "kind": 1024, "kindString": "Property", @@ -34530,7 +33747,7 @@ } }, { - "id": 2199, + "id": 2156, "name": "amount_off_formula", "kind": 1024, "kindString": "Property", @@ -34543,7 +33760,7 @@ } }, { - "id": 2197, + "id": 2154, "name": "effect", "kind": 1024, "kindString": "Property", @@ -34556,7 +33773,7 @@ } }, { - "id": 2200, + "id": 2157, "name": "percent_off", "kind": 1024, "kindString": "Property", @@ -34569,7 +33786,7 @@ } }, { - "id": 2201, + "id": 2158, "name": "percent_off_formula", "kind": 1024, "kindString": "Property", @@ -34582,7 +33799,7 @@ } }, { - "id": 2194, + "id": 2151, "name": "type", "kind": 1024, "kindString": "Property", @@ -34606,7 +33823,7 @@ } }, { - "id": 2195, + "id": 2152, "name": "unit_off", "kind": 1024, "kindString": "Property", @@ -34619,7 +33836,7 @@ } }, { - "id": 2196, + "id": 2153, "name": "unit_off_formula", "kind": 1024, "kindString": "Property", @@ -34637,28 +33854,28 @@ "title": "Properties", "kind": 1024, "children": [ - 2202, - 2198, - 2199, - 2197, - 2200, - 2201, - 2194, - 2195, - 2196 + 2159, + 2155, + 2156, + 2154, + 2157, + 2158, + 2151, + 2152, + 2153 ] } ] }, { - "id": 2583, + "id": 2525, "name": "VoucherifyClientSideOptions", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2584, + "id": 2526, "name": "apiUrl", "kind": 1024, "kindString": "Property", @@ -34675,7 +33892,7 @@ } }, { - "id": 2585, + "id": 2527, "name": "clientApplicationId", "kind": 1024, "kindString": "Property", @@ -34690,7 +33907,7 @@ } }, { - "id": 2586, + "id": 2528, "name": "clientSecretKey", "kind": 1024, "kindString": "Property", @@ -34705,7 +33922,7 @@ } }, { - "id": 2589, + "id": 2531, "name": "customHeaders", "kind": 1024, "kindString": "Property", @@ -34731,7 +33948,7 @@ } }, { - "id": 2590, + "id": 2532, "name": "exposeErrorCause", "kind": 1024, "kindString": "Property", @@ -34747,7 +33964,7 @@ } }, { - "id": 2588, + "id": 2530, "name": "origin", "kind": 1024, "kindString": "Property", @@ -34770,7 +33987,7 @@ } }, { - "id": 2587, + "id": 2529, "name": "trackingId", "kind": 1024, "kindString": "Property", @@ -34792,26 +34009,26 @@ "title": "Properties", "kind": 1024, "children": [ - 2584, - 2585, - 2586, - 2589, - 2590, - 2588, - 2587 + 2526, + 2527, + 2528, + 2531, + 2532, + 2530, + 2529 ] } ] }, { - "id": 2571, + "id": 2513, "name": "VoucherifyServerSideOptions", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2572, + "id": 2514, "name": "apiUrl", "kind": 1024, "kindString": "Property", @@ -34828,7 +34045,7 @@ } }, { - "id": 2575, + "id": 2517, "name": "apiVersion", "kind": 1024, "kindString": "Property", @@ -34845,7 +34062,7 @@ } }, { - "id": 2573, + "id": 2515, "name": "applicationId", "kind": 1024, "kindString": "Property", @@ -34860,7 +34077,7 @@ } }, { - "id": 2576, + "id": 2518, "name": "channel", "kind": 1024, "kindString": "Property", @@ -34873,7 +34090,7 @@ } }, { - "id": 2578, + "id": 2520, "name": "customHeaders", "kind": 1024, "kindString": "Property", @@ -34899,7 +34116,7 @@ } }, { - "id": 2577, + "id": 2519, "name": "dangerouslySetSecretKeyInBrowser", "kind": 1024, "kindString": "Property", @@ -34916,7 +34133,7 @@ } }, { - "id": 2579, + "id": 2521, "name": "exposeErrorCause", "kind": 1024, "kindString": "Property", @@ -34932,7 +34149,7 @@ } }, { - "id": 2574, + "id": 2516, "name": "secretKey", "kind": 1024, "kindString": "Property", @@ -34952,27 +34169,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2572, - 2575, - 2573, - 2576, - 2578, - 2577, - 2579, - 2574 + 2514, + 2517, + 2515, + 2518, + 2520, + 2519, + 2521, + 2516 ] } ] }, { - "id": 1959, + "id": 1916, "name": "VouchersBulkUpdateMetadata", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1960, + "id": 1917, "name": "codes", "kind": 1024, "kindString": "Property", @@ -34986,7 +34203,7 @@ } }, { - "id": 1961, + "id": 1918, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -35012,21 +34229,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1960, - 1961 + 1917, + 1918 ] } ] }, { - "id": 1955, + "id": 1912, "name": "VouchersBulkUpdateObject", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1956, + "id": 1913, "name": "code", "kind": 1024, "kindString": "Property", @@ -35037,7 +34254,7 @@ } }, { - "id": 1957, + "id": 1914, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -35063,21 +34280,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1956, - 1957 + 1913, + 1914 ] } ] }, { - "id": 1878, + "id": 1835, "name": "VouchersCreateParameters", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1879, + "id": 1836, "name": "active", "kind": 1024, "kindString": "Property", @@ -35090,7 +34307,7 @@ } }, { - "id": 1880, + "id": 1837, "name": "code", "kind": 1024, "kindString": "Property", @@ -35103,7 +34320,7 @@ } }, { - "id": 1881, + "id": 1838, "name": "code_config", "kind": 1024, "kindString": "Property", @@ -35113,14 +34330,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1882, + "id": 1839, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1884, + "id": 1841, "name": "charset", "kind": 1024, "kindString": "Property", @@ -35133,7 +34350,7 @@ } }, { - "id": 1883, + "id": 1840, "name": "length", "kind": 1024, "kindString": "Property", @@ -35146,7 +34363,7 @@ } }, { - "id": 1885, + "id": 1842, "name": "pattern", "kind": 1024, "kindString": "Property", @@ -35159,7 +34376,7 @@ } }, { - "id": 1886, + "id": 1843, "name": "prefix", "kind": 1024, "kindString": "Property", @@ -35172,7 +34389,7 @@ } }, { - "id": 1887, + "id": 1844, "name": "suffix", "kind": 1024, "kindString": "Property", @@ -35190,11 +34407,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1884, - 1883, - 1885, - 1886, - 1887 + 1841, + 1840, + 1842, + 1843, + 1844 ] } ] @@ -35202,7 +34419,7 @@ } }, { - "id": 1888, + "id": 1845, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -35212,14 +34429,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1889, + "id": 1846, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1890, + "id": 1847, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -35235,7 +34452,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1890 + 1847 ] } ] @@ -35248,23 +34465,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1879, - 1880, - 1881, - 1888 + 1836, + 1837, + 1838, + 1845 ] } ] }, { - "id": 1906, + "id": 1863, "name": "VouchersDeleteParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1907, + "id": 1864, "name": "force", "kind": 1024, "kindString": "Property", @@ -35282,20 +34499,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1907 + 1864 ] } ] }, { - "id": 1935, + "id": 1892, "name": "VouchersImport", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1943, + "id": 1900, "name": "active", "kind": 1024, "kindString": "Property", @@ -35308,7 +34525,7 @@ } }, { - "id": 1940, + "id": 1897, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -35321,7 +34538,7 @@ } }, { - "id": 1937, + "id": 1894, "name": "category", "kind": 1024, "kindString": "Property", @@ -35334,7 +34551,7 @@ } }, { - "id": 1936, + "id": 1893, "name": "code", "kind": 1024, "kindString": "Property", @@ -35345,7 +34562,7 @@ } }, { - "id": 1948, + "id": 1905, "name": "code_config", "kind": 1024, "kindString": "Property", @@ -35355,14 +34572,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1949, + "id": 1906, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1951, + "id": 1908, "name": "charset", "kind": 1024, "kindString": "Property", @@ -35375,7 +34592,7 @@ } }, { - "id": 1950, + "id": 1907, "name": "length", "kind": 1024, "kindString": "Property", @@ -35388,7 +34605,7 @@ } }, { - "id": 1952, + "id": 1909, "name": "pattern", "kind": 1024, "kindString": "Property", @@ -35401,7 +34618,7 @@ } }, { - "id": 1953, + "id": 1910, "name": "prefix", "kind": 1024, "kindString": "Property", @@ -35414,7 +34631,7 @@ } }, { - "id": 1954, + "id": 1911, "name": "suffix", "kind": 1024, "kindString": "Property", @@ -35432,11 +34649,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1951, - 1950, - 1952, - 1953, - 1954 + 1908, + 1907, + 1909, + 1910, + 1911 ] } ] @@ -35444,7 +34661,7 @@ } }, { - "id": 1939, + "id": 1896, "name": "discount", "kind": 1024, "kindString": "Property", @@ -35454,29 +34671,29 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] } }, { - "id": 1942, + "id": 1899, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -35489,7 +34706,7 @@ } }, { - "id": 1944, + "id": 1901, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -35512,7 +34729,7 @@ } }, { - "id": 1945, + "id": 1902, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -35522,14 +34739,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1946, + "id": 1903, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1947, + "id": 1904, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -35545,7 +34762,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1947 + 1904 ] } ] @@ -35553,7 +34770,7 @@ } }, { - "id": 1941, + "id": 1898, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -35566,7 +34783,7 @@ } }, { - "id": 1938, + "id": 1895, "name": "type", "kind": 1024, "kindString": "Property", @@ -35593,30 +34810,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1943, - 1940, - 1937, - 1936, - 1948, - 1939, - 1942, - 1944, - 1945, - 1941, - 1938 + 1900, + 1897, + 1894, + 1893, + 1905, + 1896, + 1899, + 1901, + 1902, + 1898, + 1895 ] } ] }, { - "id": 1908, + "id": 1865, "name": "VouchersListParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1912, + "id": 1869, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -35629,7 +34846,7 @@ } }, { - "id": 1911, + "id": 1868, "name": "category", "kind": 1024, "kindString": "Property", @@ -35642,7 +34859,7 @@ } }, { - "id": 1914, + "id": 1871, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -35652,14 +34869,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1915, + "id": 1872, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1916, + "id": 1873, "name": "after", "kind": 1024, "kindString": "Property", @@ -35672,7 +34889,7 @@ } }, { - "id": 1917, + "id": 1874, "name": "before", "kind": 1024, "kindString": "Property", @@ -35690,8 +34907,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1916, - 1917 + 1873, + 1874 ] } ] @@ -35699,7 +34916,7 @@ } }, { - "id": 1913, + "id": 1870, "name": "customer", "kind": 1024, "kindString": "Property", @@ -35712,7 +34929,7 @@ } }, { - "id": 1923, + "id": 1880, "name": "filters", "kind": 1024, "kindString": "Property", @@ -35722,14 +34939,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1924, + "id": 1881, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1925, + "id": 1882, "name": "junction", "kind": 1024, "kindString": "Property", @@ -35747,19 +34964,19 @@ "title": "Properties", "kind": 1024, "children": [ - 1925 + 1882 ] } ], "indexSignature": { - "id": 1926, + "id": 1883, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1927, + "id": 1884, "name": "filter_condition", "kind": 32768, "flags": {}, @@ -35778,7 +34995,7 @@ } }, { - "id": 1909, + "id": 1866, "name": "limit", "kind": 1024, "kindString": "Property", @@ -35791,7 +35008,7 @@ } }, { - "id": 1922, + "id": 1879, "name": "order", "kind": 1024, "kindString": "Property", @@ -35853,7 +35070,7 @@ } }, { - "id": 1910, + "id": 1867, "name": "page", "kind": 1024, "kindString": "Property", @@ -35866,7 +35083,7 @@ } }, { - "id": 1918, + "id": 1875, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -35876,14 +35093,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1919, + "id": 1876, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1920, + "id": 1877, "name": "after", "kind": 1024, "kindString": "Property", @@ -35896,7 +35113,7 @@ } }, { - "id": 1921, + "id": 1878, "name": "before", "kind": 1024, "kindString": "Property", @@ -35914,8 +35131,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1920, - 1921 + 1877, + 1878 ] } ] @@ -35928,28 +35145,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1912, - 1911, - 1914, - 1913, - 1923, - 1909, - 1922, - 1910, - 1918 + 1869, + 1868, + 1871, + 1870, + 1880, + 1866, + 1879, + 1867, + 1875 ] } ] }, { - "id": 1928, + "id": 1885, "name": "VouchersListResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1931, + "id": 1888, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -35960,7 +35177,7 @@ } }, { - "id": 1929, + "id": 1886, "name": "object", "kind": 1024, "kindString": "Property", @@ -35971,7 +35188,7 @@ } }, { - "id": 1930, + "id": 1887, "name": "total", "kind": 1024, "kindString": "Property", @@ -35982,7 +35199,7 @@ } }, { - "id": 1932, + "id": 1889, "name": "vouchers", "kind": 1024, "kindString": "Property", @@ -35991,7 +35208,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } } @@ -36002,23 +35219,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1931, - 1929, - 1930, - 1932 + 1888, + 1886, + 1887, + 1889 ] } ] }, { - "id": 1859, + "id": 1816, "name": "VouchersQualificationExamineBody", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1860, + "id": 1817, "name": "customer", "kind": 1024, "kindString": "Property", @@ -36067,14 +35284,14 @@ { "type": "reflection", "declaration": { - "id": 1861, + "id": 1818, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1862, + "id": 1819, "name": "description", "kind": 1024, "kindString": "Property", @@ -36090,7 +35307,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1862 + 1819 ] } ] @@ -36100,7 +35317,7 @@ } }, { - "id": 1868, + "id": 1825, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -36123,7 +35340,7 @@ } }, { - "id": 1863, + "id": 1820, "name": "order", "kind": 1024, "kindString": "Property", @@ -36135,7 +35352,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" }, { @@ -36168,7 +35385,7 @@ } }, { - "id": 1864, + "id": 1821, "name": "reward", "kind": 1024, "kindString": "Property", @@ -36178,14 +35395,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1865, + "id": 1822, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1867, + "id": 1824, "name": "assignment_id", "kind": 1024, "kindString": "Property", @@ -36198,7 +35415,7 @@ } }, { - "id": 1866, + "id": 1823, "name": "id", "kind": 1024, "kindString": "Property", @@ -36214,8 +35431,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1867, - 1866 + 1824, + 1823 ] } ] @@ -36228,23 +35445,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1860, - 1868, - 1863, - 1864 + 1817, + 1825, + 1820, + 1821 ] } ] }, { - "id": 1869, + "id": 1826, "name": "VouchersQualificationExamineParams", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1870, + "id": 1827, "name": "audienceRulesOnly", "kind": 1024, "kindString": "Property", @@ -36257,7 +35474,7 @@ } }, { - "id": 1872, + "id": 1829, "name": "limit", "kind": 1024, "kindString": "Property", @@ -36270,7 +35487,7 @@ } }, { - "id": 1871, + "id": 1828, "name": "order", "kind": 1024, "kindString": "Property", @@ -36305,22 +35522,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1870, - 1872, - 1871 + 1827, + 1829, + 1828 ] } ] }, { - "id": 1873, + "id": 1830, "name": "VouchersQualificationExamineResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1877, + "id": 1834, "name": "data", "kind": 1024, "kindString": "Property", @@ -36331,13 +35548,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } } }, { - "id": 1876, + "id": 1833, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -36348,7 +35565,7 @@ } }, { - "id": 1874, + "id": 1831, "name": "object", "kind": 1024, "kindString": "Property", @@ -36359,7 +35576,7 @@ } }, { - "id": 1875, + "id": 1832, "name": "total", "kind": 1024, "kindString": "Property", @@ -36375,23 +35592,23 @@ "title": "Properties", "kind": 1024, "children": [ - 1877, - 1876, - 1874, - 1875 + 1834, + 1833, + 1831, + 1832 ] } ] }, { - "id": 1789, + "id": 1746, "name": "VouchersResponse", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1827, + "id": 1784, "name": "active", "kind": 1024, "kindString": "Property", @@ -36402,7 +35619,7 @@ } }, { - "id": 1828, + "id": 1785, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -36415,7 +35632,7 @@ } }, { - "id": 1830, + "id": 1787, "name": "assets", "kind": 1024, "kindString": "Property", @@ -36425,14 +35642,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1831, + "id": 1788, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1836, + "id": 1793, "name": "barcode", "kind": 1024, "kindString": "Property", @@ -36442,14 +35659,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1837, + "id": 1794, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1838, + "id": 1795, "name": "id", "kind": 1024, "kindString": "Property", @@ -36460,7 +35677,7 @@ } }, { - "id": 1839, + "id": 1796, "name": "url", "kind": 1024, "kindString": "Property", @@ -36476,8 +35693,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1838, - 1839 + 1795, + 1796 ] } ] @@ -36485,7 +35702,7 @@ } }, { - "id": 1832, + "id": 1789, "name": "qr", "kind": 1024, "kindString": "Property", @@ -36495,14 +35712,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1833, + "id": 1790, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1834, + "id": 1791, "name": "id", "kind": 1024, "kindString": "Property", @@ -36513,7 +35730,7 @@ } }, { - "id": 1835, + "id": 1792, "name": "url", "kind": 1024, "kindString": "Property", @@ -36529,8 +35746,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1834, - 1835 + 1791, + 1792 ] } ] @@ -36543,8 +35760,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1836, - 1832 + 1793, + 1789 ] } ] @@ -36552,7 +35769,7 @@ } }, { - "id": 1792, + "id": 1749, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -36565,7 +35782,7 @@ } }, { - "id": 1793, + "id": 1750, "name": "category", "kind": 1024, "kindString": "Property", @@ -36578,7 +35795,7 @@ } }, { - "id": 1791, + "id": 1748, "name": "code", "kind": 1024, "kindString": "Property", @@ -36589,7 +35806,7 @@ } }, { - "id": 1844, + "id": 1801, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -36600,7 +35817,7 @@ } }, { - "id": 1795, + "id": 1752, "name": "discount", "kind": 1024, "kindString": "Property", @@ -36612,29 +35829,29 @@ "types": [ { "type": "reference", - "id": 2525, + "id": 2467, "name": "DiscountUnit" }, { "type": "reference", - "id": 2533, + "id": 2475, "name": "DiscountAmount" }, { "type": "reference", - "id": 2538, + "id": 2480, "name": "DiscountPercent" }, { "type": "reference", - "id": 2544, + "id": 2486, "name": "DiscountFixed" } ] } }, { - "id": 1804, + "id": 1761, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -36647,7 +35864,7 @@ } }, { - "id": 1796, + "id": 1753, "name": "gift", "kind": 1024, "kindString": "Property", @@ -36657,14 +35874,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1797, + "id": 1754, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1798, + "id": 1755, "name": "amount", "kind": 1024, "kindString": "Property", @@ -36675,7 +35892,7 @@ } }, { - "id": 1799, + "id": 1756, "name": "balance", "kind": 1024, "kindString": "Property", @@ -36691,8 +35908,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1798, - 1799 + 1755, + 1756 ] } ] @@ -36700,7 +35917,7 @@ } }, { - "id": 1842, + "id": 1799, "name": "holder_id", "kind": 1024, "kindString": "Property", @@ -36713,7 +35930,7 @@ } }, { - "id": 1790, + "id": 1747, "name": "id", "kind": 1024, "kindString": "Property", @@ -36724,7 +35941,7 @@ } }, { - "id": 1840, + "id": 1797, "name": "is_referral_code", "kind": 1024, "kindString": "Property", @@ -36735,7 +35952,7 @@ } }, { - "id": 1800, + "id": 1757, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -36745,14 +35962,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1801, + "id": 1758, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1802, + "id": 1759, "name": "points", "kind": 1024, "kindString": "Property", @@ -36768,7 +35985,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1802 + 1759 ] } ] @@ -36776,7 +35993,7 @@ } }, { - "id": 1829, + "id": 1786, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -36799,7 +36016,7 @@ } }, { - "id": 1845, + "id": 1802, "name": "object", "kind": 1024, "kindString": "Property", @@ -36810,7 +36027,7 @@ } }, { - "id": 1810, + "id": 1767, "name": "publish", "kind": 1024, "kindString": "Property", @@ -36820,14 +36037,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1811, + "id": 1768, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1813, + "id": 1770, "name": "count", "kind": 1024, "kindString": "Property", @@ -36838,7 +36055,7 @@ } }, { - "id": 1814, + "id": 1771, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -36849,7 +36066,7 @@ } }, { - "id": 1815, + "id": 1772, "name": "entries", "kind": 1024, "kindString": "Property", @@ -36863,7 +36080,7 @@ } }, { - "id": 1812, + "id": 1769, "name": "object", "kind": 1024, "kindString": "Property", @@ -36874,7 +36091,7 @@ } }, { - "id": 1816, + "id": 1773, "name": "total", "kind": 1024, "kindString": "Property", @@ -36885,7 +36102,7 @@ } }, { - "id": 1817, + "id": 1774, "name": "url", "kind": 1024, "kindString": "Property", @@ -36901,12 +36118,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1813, - 1814, - 1815, - 1812, - 1816, - 1817 + 1770, + 1771, + 1772, + 1769, + 1773, + 1774 ] } ] @@ -36914,7 +36131,7 @@ } }, { - "id": 1818, + "id": 1775, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -36924,14 +36141,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1819, + "id": 1776, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1823, + "id": 1780, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -36942,7 +36159,7 @@ } }, { - "id": 1820, + "id": 1777, "name": "object", "kind": 1024, "kindString": "Property", @@ -36953,7 +36170,7 @@ } }, { - "id": 1821, + "id": 1778, "name": "quantity", "kind": 1024, "kindString": "Property", @@ -36966,7 +36183,7 @@ } }, { - "id": 1822, + "id": 1779, "name": "redeemed_quantity", "kind": 1024, "kindString": "Property", @@ -36977,7 +36194,7 @@ } }, { - "id": 1824, + "id": 1781, "name": "redemption_entries", "kind": 1024, "kindString": "Property", @@ -36991,7 +36208,7 @@ } }, { - "id": 1825, + "id": 1782, "name": "total", "kind": 1024, "kindString": "Property", @@ -37002,7 +36219,7 @@ } }, { - "id": 1826, + "id": 1783, "name": "url", "kind": 1024, "kindString": "Property", @@ -37018,13 +36235,13 @@ "title": "Properties", "kind": 1024, "children": [ - 1823, - 1820, - 1821, - 1822, - 1824, - 1825, - 1826 + 1780, + 1777, + 1778, + 1779, + 1781, + 1782, + 1783 ] } ] @@ -37032,7 +36249,7 @@ } }, { - "id": 1841, + "id": 1798, "name": "referrer_id", "kind": 1024, "kindString": "Property", @@ -37045,7 +36262,7 @@ } }, { - "id": 1803, + "id": 1760, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -37058,7 +36275,7 @@ } }, { - "id": 1794, + "id": 1751, "name": "type", "kind": 1024, "kindString": "Property", @@ -37080,7 +36297,7 @@ } }, { - "id": 1843, + "id": 1800, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -37093,7 +36310,7 @@ } }, { - "id": 1846, + "id": 1803, "name": "validation_rules_assignments", "kind": 1024, "kindString": "Property", @@ -37101,14 +36318,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1847, + "id": 1804, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1851, + "id": 1808, "name": "data", "kind": 1024, "kindString": "Property", @@ -37120,14 +36337,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1852, + "id": 1809, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1857, + "id": 1814, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -37138,7 +36355,7 @@ } }, { - "id": 1853, + "id": 1810, "name": "id", "kind": 1024, "kindString": "Property", @@ -37149,7 +36366,7 @@ } }, { - "id": 1858, + "id": 1815, "name": "object", "kind": 1024, "kindString": "Property", @@ -37160,7 +36377,7 @@ } }, { - "id": 1855, + "id": 1812, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -37173,7 +36390,7 @@ } }, { - "id": 1856, + "id": 1813, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -37186,7 +36403,7 @@ } }, { - "id": 1854, + "id": 1811, "name": "rule_id", "kind": 1024, "kindString": "Property", @@ -37204,12 +36421,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1857, - 1853, - 1858, - 1855, - 1856, - 1854 + 1814, + 1810, + 1815, + 1812, + 1813, + 1811 ] } ] @@ -37218,7 +36435,7 @@ } }, { - "id": 1850, + "id": 1807, "name": "data_ref", "kind": 1024, "kindString": "Property", @@ -37229,7 +36446,7 @@ } }, { - "id": 1848, + "id": 1805, "name": "object", "kind": 1024, "kindString": "Property", @@ -37240,7 +36457,7 @@ } }, { - "id": 1849, + "id": 1806, "name": "total", "kind": 1024, "kindString": "Property", @@ -37256,10 +36473,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1851, - 1850, - 1848, - 1849 + 1808, + 1807, + 1805, + 1806 ] } ] @@ -37267,7 +36484,7 @@ } }, { - "id": 1809, + "id": 1766, "name": "validity_day_of_week", "kind": 1024, "kindString": "Property", @@ -37283,7 +36500,7 @@ } }, { - "id": 1805, + "id": 1762, "name": "validity_timeframe", "kind": 1024, "kindString": "Property", @@ -37293,14 +36510,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1806, + "id": 1763, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1808, + "id": 1765, "name": "duration", "kind": 1024, "kindString": "Property", @@ -37311,7 +36528,7 @@ } }, { - "id": 1807, + "id": 1764, "name": "interval", "kind": 1024, "kindString": "Property", @@ -37327,8 +36544,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1808, - 1807 + 1765, + 1764 ] } ] @@ -37341,44 +36558,44 @@ "title": "Properties", "kind": 1024, "children": [ - 1827, - 1828, - 1830, - 1792, - 1793, - 1791, - 1844, - 1795, - 1804, - 1796, - 1842, - 1790, - 1840, + 1784, + 1785, + 1787, + 1749, + 1750, + 1748, + 1801, + 1752, + 1761, + 1753, + 1799, + 1747, + 1797, + 1757, + 1786, + 1802, + 1767, + 1775, + 1798, + 1760, + 1751, 1800, - 1829, - 1845, - 1810, - 1818, - 1841, 1803, - 1794, - 1843, - 1846, - 1809, - 1805 + 1766, + 1762 ] } ] }, { - "id": 1894, + "id": 1851, "name": "VouchersUpdate", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1899, + "id": 1856, "name": "active", "kind": 1024, "kindString": "Property", @@ -37391,7 +36608,7 @@ } }, { - "id": 1900, + "id": 1857, "name": "additional_info", "kind": 1024, "kindString": "Property", @@ -37404,7 +36621,7 @@ } }, { - "id": 1896, + "id": 1853, "name": "category", "kind": 1024, "kindString": "Property", @@ -37417,7 +36634,7 @@ } }, { - "id": 1895, + "id": 1852, "name": "code", "kind": 1024, "kindString": "Property", @@ -37428,7 +36645,7 @@ } }, { - "id": 1898, + "id": 1855, "name": "expiration_date", "kind": 1024, "kindString": "Property", @@ -37441,7 +36658,7 @@ } }, { - "id": 1902, + "id": 1859, "name": "gift", "kind": 1024, "kindString": "Property", @@ -37451,14 +36668,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1903, + "id": 1860, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1904, + "id": 1861, "name": "amount", "kind": 1024, "kindString": "Property", @@ -37474,7 +36691,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1904 + 1861 ] } ] @@ -37482,7 +36699,7 @@ } }, { - "id": 1901, + "id": 1858, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -37505,7 +36722,7 @@ } }, { - "id": 1897, + "id": 1854, "name": "start_date", "kind": 1024, "kindString": "Property", @@ -37523,20 +36740,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1899, - 1900, - 1896, - 1895, - 1898, - 1902, - 1901, - 1897 + 1856, + 1857, + 1853, + 1852, + 1855, + 1859, + 1858, + 1854 ] } ] }, { - "id": 2486, + "id": 2443, "name": "ApplicableToEffect", "kind": 4194304, "kindString": "Type alias", @@ -37560,7 +36777,7 @@ } }, { - "id": 1170, + "id": 1127, "name": "CampaignsAddCertainVoucherParams", "kind": 4194304, "kindString": "Type alias", @@ -37573,7 +36790,7 @@ "typeArguments": [ { "type": "reference", - "id": 1935, + "id": 1892, "name": "VouchersImport" } ], @@ -37605,19 +36822,19 @@ } }, { - "id": 1172, + "id": 1129, "name": "CampaignsAddCertainVoucherResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1171, + "id": 1128, "name": "CampaignsAddVoucherResponse" } }, { - "id": 1167, + "id": 1124, "name": "CampaignsAddVoucherBody", "kind": 4194304, "kindString": "Type alias", @@ -37630,7 +36847,7 @@ "typeArguments": [ { "type": "reference", - "id": 1935, + "id": 1892, "name": "VouchersImport" } ], @@ -37666,7 +36883,7 @@ } }, { - "id": 1171, + "id": 1128, "name": "CampaignsAddVoucherResponse", "kind": 4194304, "kindString": "Type alias", @@ -37676,7 +36893,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" }, { @@ -37753,7 +36970,7 @@ } }, { - "id": 1161, + "id": 1118, "name": "CampaignsCreateCampaign", "kind": 4194304, "kindString": "Type alias", @@ -37766,7 +36983,7 @@ "typeArguments": [ { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" }, { @@ -37808,14 +37025,14 @@ { "type": "reflection", "declaration": { - "id": 1162, + "id": 1119, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1163, + "id": 1120, "name": "active", "kind": 1024, "kindString": "Property", @@ -37833,7 +37050,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1163 + 1120 ] } ] @@ -37843,31 +37060,31 @@ } }, { - "id": 1191, + "id": 1148, "name": "CampaignsCreateCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" } }, { - "id": 1193, + "id": 1150, "name": "CampaignsGetCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" } }, { - "id": 1173, + "id": 1130, "name": "CampaignsImportVouchers", "kind": 4194304, "kindString": "Type alias", @@ -37877,7 +37094,7 @@ "typeArguments": [ { "type": "reference", - "id": 1935, + "id": 1892, "name": "VouchersImport" }, { @@ -37910,7 +37127,7 @@ } }, { - "id": 1164, + "id": 1121, "name": "CampaignsUpdateCampaign", "kind": 4194304, "kindString": "Type alias", @@ -37920,7 +37137,7 @@ "typeArguments": [ { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" }, { @@ -37953,19 +37170,19 @@ } }, { - "id": 1192, + "id": 1149, "name": "CampaignsUpdateCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1114, + "id": 1071, "name": "CampaignResponse" } }, { - "id": 1188, + "id": 1145, "name": "CampaignsVouchersImportResponse", "kind": 4194304, "kindString": "Type alias", @@ -37973,14 +37190,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1189, + "id": 1146, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1190, + "id": 1147, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -37996,7 +37213,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1190 + 1147 ] } ] @@ -38004,79 +37221,79 @@ } }, { - "id": 813, + "id": 812, "name": "ClientSideConsentsListResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2393, + "id": 2350, "name": "ConsentsListResponse" } }, { - "id": 711, + "id": 710, "name": "ClientSideCustomersCreateParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 687, + "id": 686, "name": "CustomersCreateBody" } }, { - "id": 712, + "id": 711, "name": "ClientSideCustomersCreateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 688, + "id": 687, "name": "CustomersCreateResponse" } }, { - "id": 710, + "id": 709, "name": "ClientSideCustomersUpdateConsentsBody", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 697, + "id": 696, "name": "CustomersUpdateConsentsBody" } }, { - "id": 728, + "id": 727, "name": "ClientSideListVouchersParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1908, + "id": 1865, "name": "VouchersListParams" } }, { - "id": 782, + "id": 781, "name": "ClientSidePublishPreparedPayload", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 776, + "id": 775, "name": "ClientSidePublishPayload" } }, { - "id": 789, + "id": 788, "name": "ClientSidePublishResponse", "kind": 4194304, "kindString": "Type alias", @@ -38086,20 +37303,20 @@ "types": [ { "type": "reference", - "id": 2233, + "id": 2190, "name": "DistributionsPublicationsCreateResponse" }, { "type": "reflection", "declaration": { - "id": 790, + "id": 789, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 791, + "id": 790, "name": "vouchers_id", "kind": 1024, "kindString": "Property", @@ -38120,7 +37337,7 @@ "title": "Properties", "kind": 1024, "children": [ - 791 + 790 ] } ] @@ -38130,7 +37347,7 @@ } }, { - "id": 805, + "id": 804, "name": "ClientSideRedeemOrder", "kind": 4194304, "kindString": "Type alias", @@ -38146,7 +37363,7 @@ "typeArguments": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" }, { @@ -38179,14 +37396,14 @@ { "type": "reflection", "declaration": { - "id": 806, + "id": 805, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 807, + "id": 806, "name": "items", "kind": 1024, "kindString": "Property", @@ -38207,7 +37424,7 @@ "title": "Properties", "kind": 1024, "children": [ - 807 + 806 ] } ] @@ -38217,31 +37434,31 @@ } }, { - "id": 816, + "id": 815, "name": "ClientSideRedemptionsRedeemStackableParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 949, + "id": 948, "name": "RedemptionsRedeemStackableParams" } }, { - "id": 817, + "id": 816, "name": "ClientSideRedemptionsRedeemStackableResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 970, + "id": 969, "name": "RedemptionsRedeemStackableResponse" } }, { - "id": 812, + "id": 811, "name": "ClientSideTrackCustomer", "kind": 4194304, "kindString": "Type alias", @@ -38253,31 +37470,31 @@ } }, { - "id": 815, + "id": 814, "name": "ClientSideValidationValidateStackableResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1106, + "id": 1063, "name": "ValidationValidateStackableResponse" } }, { - "id": 814, + "id": 813, "name": "ClientSideValidationsValidateStackableParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1099, + "id": 1056, "name": "ValidationsValidateStackableParams" } }, { - "id": 729, + "id": 728, "name": "ClientSideVoucherListing", "kind": 4194304, "kindString": "Type alias", @@ -38287,7 +37504,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" }, { @@ -38404,7 +37621,7 @@ } }, { - "id": 687, + "id": 686, "name": "CustomersCreateBody", "kind": 4194304, "kindString": "Type alias", @@ -38416,7 +37633,7 @@ } }, { - "id": 688, + "id": 687, "name": "CustomersCreateResponse", "kind": 4194304, "kindString": "Type alias", @@ -38438,7 +37655,7 @@ } }, { - "id": 689, + "id": 688, "name": "CustomersGetResponse", "kind": 4194304, "kindString": "Type alias", @@ -38460,55 +37677,55 @@ } }, { - "id": 690, + "id": 689, "name": "CustomersListParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 661, + "id": 660, "name": "CustomersCommonListRequest" } }, { - "id": 691, + "id": 690, "name": "CustomersListResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 669, + "id": 668, "name": "CustomersCommonListResponse" } }, { - "id": 692, + "id": 691, "name": "CustomersScrollParams", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 661, + "id": 660, "name": "CustomersCommonListRequest" } }, { - "id": 693, + "id": 692, "name": "CustomersScrollResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 669, + "id": 668, "name": "CustomersCommonListResponse" } }, { - "id": 694, + "id": 693, "name": "CustomersScrollYield", "kind": 4194304, "kindString": "Type alias", @@ -38520,7 +37737,7 @@ } }, { - "id": 697, + "id": 696, "name": "CustomersUpdateConsentsBody", "kind": 4194304, "kindString": "Type alias", @@ -38541,7 +37758,7 @@ } }, { - "id": 695, + "id": 694, "name": "CustomersUpdateParams", "kind": 4194304, "kindString": "Type alias", @@ -38562,7 +37779,7 @@ } }, { - "id": 696, + "id": 695, "name": "CustomersUpdateResponse", "kind": 4194304, "kindString": "Type alias", @@ -38584,7 +37801,7 @@ } }, { - "id": 2511, + "id": 2464, "name": "DiscountAmountVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -38612,7 +37829,7 @@ } }, { - "id": 2513, + "id": 2466, "name": "DiscountFixedVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -38632,7 +37849,7 @@ } }, { - "id": 2512, + "id": 2465, "name": "DiscountPercentVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -38652,7 +37869,7 @@ } }, { - "id": 2510, + "id": 2463, "name": "DiscountUnitVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -38676,7 +37893,7 @@ } }, { - "id": 2509, + "id": 2462, "name": "DiscountVouchersEffectTypes", "kind": 4194304, "kindString": "Type alias", @@ -38716,7 +37933,7 @@ } }, { - "id": 2503, + "id": 2456, "name": "DiscountVouchersTypes", "kind": 4194304, "kindString": "Type alias", @@ -38744,246 +37961,127 @@ } }, { - "id": 2305, + "id": 2262, "name": "ExportsGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2287, + "id": 2244, "name": "ExportsCreateResponse" } }, { - "id": 1567, + "id": 1524, "name": "LoyaltiesCreateEarningRuleResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1532, + "id": 1489, "name": "LoyaltiesEarningRulesResponse" } }, { - "id": 1640, + "id": 1597, "name": "LoyaltiesCreateMemberResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1589, + "id": 1546, "name": "LoyaltiesVoucherResponse" } }, { - "id": 1471, + "id": 1428, "name": "LoyaltiesGetCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1438, + "id": 1395, "name": "LoyaltiesCreateCampaignResponse" } }, { - "id": 1641, + "id": 1598, "name": "LoyaltiesGetMemberResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1640, + "id": 1597, "name": "LoyaltiesCreateMemberResponse" } }, { - "id": 1479, + "id": 1436, "name": "LoyaltiesUpdateCampaignResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1438, + "id": 1395, "name": "LoyaltiesCreateCampaignResponse" } }, { - "id": 1577, + "id": 1534, "name": "LoyaltiesUpdateEarningRuleResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1532, + "id": 1489, "name": "LoyaltiesEarningRulesResponse" } }, { - "id": 1517, + "id": 1474, "name": "LoyaltiesUpdateRewardAssignmentResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1497, + "id": 1454, "name": "LoyaltiesCreateRewardAssignmentResponse" } }, { - "id": 1092, - "name": "OrderObjectRedemptions", - "kind": 4194304, - "kindString": "Type alias", - "flags": {}, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reflection", - "declaration": { - "id": 1093, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1094, - "name": "date", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1096, - "name": "related_object_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1097, - "name": "related_object_parent_id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1095, - "name": "related_object_type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "voucher" - }, - { - "type": "literal", - "value": "promotion_tier" - } - ] - } - }, - { - "id": 1098, - "name": "stacked", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1094, - 1096, - 1097, - 1095, - 1098 - ] - } - ] - } - } - ], - "name": "Record" - } - }, - { - "id": 2364, + "id": 2321, "name": "OrdersGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" } }, { - "id": 2376, + "id": 2333, "name": "OrdersUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2364, + "id": 2321, "name": "OrdersGetResponse" } }, { - "id": 2137, + "id": 2094, "name": "ProductsBulkUpdate", "kind": 4194304, "kindString": "Type alias", @@ -38992,13 +38090,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2100, + "id": 2057, "name": "ProductsCreate" } } }, { - "id": 2141, + "id": 2098, "name": "ProductsBulkUpdateMetadataResponse", "kind": 4194304, "kindString": "Type alias", @@ -39006,14 +38104,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2142, + "id": 2099, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2143, + "id": 2100, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -39029,7 +38127,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2143 + 2100 ] } ] @@ -39037,7 +38135,7 @@ } }, { - "id": 2138, + "id": 2095, "name": "ProductsBulkUpdateResponse", "kind": 4194304, "kindString": "Type alias", @@ -39045,14 +38143,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2139, + "id": 2096, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2140, + "id": 2097, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -39068,7 +38166,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2140 + 2097 ] } ] @@ -39076,7 +38174,7 @@ } }, { - "id": 2123, + "id": 2080, "name": "ProductsGetResponse", "kind": 4194304, "kindString": "Type alias", @@ -39086,31 +38184,31 @@ "types": [ { "type": "reference", - "id": 2113, + "id": 2070, "name": "ProductsCreateResponse" }, { "type": "reference", - "id": 2107, + "id": 2064, "name": "ProductsGetResponseSkus" } ] } }, { - "id": 2173, + "id": 2130, "name": "ProductsGetSkuResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2162, + "id": 2119, "name": "ProductsCreateSkuResponse" } }, { - "id": 2124, + "id": 2081, "name": "ProductsUpdate", "kind": 4194304, "kindString": "Type alias", @@ -39118,14 +38216,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2125, + "id": 2082, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2129, + "id": 2086, "name": "attributes", "kind": 1024, "kindString": "Property", @@ -39141,7 +38239,7 @@ } }, { - "id": 2127, + "id": 2084, "name": "id", "kind": 1024, "kindString": "Property", @@ -39154,7 +38252,7 @@ } }, { - "id": 2131, + "id": 2088, "name": "image_url", "kind": 1024, "kindString": "Property", @@ -39167,7 +38265,7 @@ } }, { - "id": 2132, + "id": 2089, "name": "metadata", "kind": 1024, "kindString": "Property", @@ -39190,7 +38288,7 @@ } }, { - "id": 2126, + "id": 2083, "name": "name", "kind": 1024, "kindString": "Property", @@ -39203,7 +38301,7 @@ } }, { - "id": 2130, + "id": 2087, "name": "price", "kind": 1024, "kindString": "Property", @@ -39216,7 +38314,7 @@ } }, { - "id": 2128, + "id": 2085, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -39234,13 +38332,13 @@ "title": "Properties", "kind": 1024, "children": [ - 2129, - 2127, - 2131, - 2132, - 2126, - 2130, - 2128 + 2086, + 2084, + 2088, + 2089, + 2083, + 2087, + 2085 ] } ] @@ -39248,19 +38346,19 @@ } }, { - "id": 2133, + "id": 2090, "name": "ProductsUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2113, + "id": 2070, "name": "ProductsCreateResponse" } }, { - "id": 2174, + "id": 2131, "name": "ProductsUpdateSku", "kind": 4194304, "kindString": "Type alias", @@ -39270,20 +38368,20 @@ "types": [ { "type": "reference", - "id": 2154, + "id": 2111, "name": "ProductsCreateSku" }, { "type": "reflection", "declaration": { - "id": 2175, + "id": 2132, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2176, + "id": 2133, "name": "id", "kind": 1024, "kindString": "Property", @@ -39296,7 +38394,7 @@ } }, { - "id": 2177, + "id": 2134, "name": "source_id", "kind": 1024, "kindString": "Property", @@ -39314,8 +38412,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2176, - 2177 + 2133, + 2134 ] } ] @@ -39325,31 +38423,31 @@ } }, { - "id": 2178, + "id": 2135, "name": "ProductsUpdateSkuResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2173, + "id": 2130, "name": "ProductsGetSkuResponse" } }, { - "id": 1233, + "id": 1190, "name": "PromotionTierGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" } }, { - "id": 1293, + "id": 1250, "name": "PromotionTierRedeemDetails", "kind": 4194304, "kindString": "Type alias", @@ -39359,20 +38457,20 @@ "types": [ { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" }, { "type": "reflection", "declaration": { - "id": 1294, + "id": 1251, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1295, + "id": 1252, "name": "summary", "kind": 1024, "kindString": "Property", @@ -39380,14 +38478,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1296, + "id": 1253, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1300, + "id": 1257, "name": "orders", "kind": 1024, "kindString": "Property", @@ -39395,14 +38493,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1301, + "id": 1258, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1302, + "id": 1259, "name": "total_amount", "kind": 1024, "kindString": "Property", @@ -39413,7 +38511,7 @@ } }, { - "id": 1303, + "id": 1260, "name": "total_discount_amount", "kind": 1024, "kindString": "Property", @@ -39429,8 +38527,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1302, - 1303 + 1259, + 1260 ] } ] @@ -39438,7 +38536,7 @@ } }, { - "id": 1297, + "id": 1254, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -39446,14 +38544,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1298, + "id": 1255, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1299, + "id": 1256, "name": "total_redeemed", "kind": 1024, "kindString": "Property", @@ -39469,7 +38567,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1299 + 1256 ] } ] @@ -39482,8 +38580,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1300, - 1297 + 1257, + 1254 ] } ] @@ -39496,7 +38594,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1295 + 1252 ] } ] @@ -39506,31 +38604,31 @@ } }, { - "id": 1241, + "id": 1198, "name": "PromotionTiersCreateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" } }, { - "id": 1232, + "id": 1189, "name": "PromotionTiersListResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1227, + "id": 1184, "name": "PromotionTiersListAllResponse" } }, { - "id": 1304, + "id": 1261, "name": "PromotionTiersUpdateParams", "kind": 4194304, "kindString": "Type alias", @@ -39540,20 +38638,20 @@ "types": [ { "type": "reference", - "id": 1234, + "id": 1191, "name": "PromotionTiersCreateParams" }, { "type": "reflection", "declaration": { - "id": 1305, + "id": 1262, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1306, + "id": 1263, "name": "id", "kind": 1024, "kindString": "Property", @@ -39569,7 +38667,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1306 + 1263 ] } ] @@ -39579,19 +38677,19 @@ } }, { - "id": 1307, + "id": 1264, "name": "PromotionTiersUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1204, + "id": 1161, "name": "PromotionTier" } }, { - "id": 959, + "id": 958, "name": "RedemptionsRedeemStackableOrderResponse", "kind": 4194304, "kindString": "Type alias", @@ -39601,20 +38699,20 @@ "types": [ { "type": "reference", - "id": 2345, + "id": 2302, "name": "OrdersCreateResponse" }, { "type": "reflection", "declaration": { - "id": 960, + "id": 959, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 961, + "id": 960, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -39631,14 +38729,14 @@ { "type": "reflection", "declaration": { - "id": 962, + "id": 961, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 963, + "id": 962, "name": "date", "kind": 1024, "kindString": "Property", @@ -39649,7 +38747,7 @@ } }, { - "id": 967, + "id": 966, "name": "related_object_id", "kind": 1024, "kindString": "Property", @@ -39660,7 +38758,7 @@ } }, { - "id": 966, + "id": 965, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -39671,7 +38769,7 @@ } }, { - "id": 965, + "id": 964, "name": "rollback_date", "kind": 1024, "kindString": "Property", @@ -39684,7 +38782,7 @@ } }, { - "id": 964, + "id": 963, "name": "rollback_id", "kind": 1024, "kindString": "Property", @@ -39697,7 +38795,7 @@ } }, { - "id": 969, + "id": 968, "name": "rollback_stacked", "kind": 1024, "kindString": "Property", @@ -39713,7 +38811,7 @@ } }, { - "id": 968, + "id": 967, "name": "stacked", "kind": 1024, "kindString": "Property", @@ -39732,13 +38830,13 @@ "title": "Properties", "kind": 1024, "children": [ - 963, - 967, + 962, 966, 965, 964, - 969, - 968 + 963, + 968, + 967 ] } ] @@ -39754,7 +38852,7 @@ "title": "Properties", "kind": 1024, "children": [ - 961 + 960 ] } ] @@ -39764,7 +38862,7 @@ } }, { - "id": 956, + "id": 955, "name": "RedemptionsRedeemStackableRedemptionResult", "kind": 4194304, "kindString": "Type alias", @@ -39774,20 +38872,20 @@ "types": [ { "type": "reference", - "id": 829, + "id": 828, "name": "RedemptionsRedeemResponse" }, { "type": "reflection", "declaration": { - "id": 957, + "id": 956, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 958, + "id": 957, "name": "redemption", "kind": 1024, "kindString": "Property", @@ -39803,7 +38901,7 @@ "title": "Properties", "kind": 1024, "children": [ - 958 + 957 ] } ] @@ -39813,7 +38911,7 @@ } }, { - "id": 2057, + "id": 2014, "name": "RewardsCreate", "kind": 4194304, "kindString": "Type alias", @@ -39827,26 +38925,26 @@ }, { "type": "reference", - "id": 2055, + "id": 2012, "name": "RewardsType" } ] } }, { - "id": 2091, + "id": 2048, "name": "RewardsCreateAssignmentResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2063, + "id": 2020, "name": "RewardsAssignmentObject" } }, { - "id": 2049, + "id": 2006, "name": "RewardsCreateResponse", "kind": 4194304, "kindString": "Type alias", @@ -39856,31 +38954,31 @@ "types": [ { "type": "reference", - "id": 2037, + "id": 1994, "name": "RewardsResponse" }, { "type": "reference", - "id": 2056, + "id": 2013, "name": "RewardsTypeResponse" } ] } }, { - "id": 2058, + "id": 2015, "name": "RewardsGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2049, + "id": 2006, "name": "RewardsCreateResponse" } }, { - "id": 2055, + "id": 2012, "name": "RewardsType", "kind": 4194304, "kindString": "Type alias", @@ -39904,7 +39002,7 @@ } }, { - "id": 2056, + "id": 2013, "name": "RewardsTypeResponse", "kind": 4194304, "kindString": "Type alias", @@ -39946,7 +39044,7 @@ } }, { - "id": 2059, + "id": 2016, "name": "RewardsUpdate", "kind": 4194304, "kindString": "Type alias", @@ -39959,7 +39057,7 @@ "typeArguments": [ { "type": "reference", - "id": 2057, + "id": 2014, "name": "RewardsCreate" }, { @@ -39972,14 +39070,14 @@ { "type": "reflection", "declaration": { - "id": 2060, + "id": 2017, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2061, + "id": 2018, "name": "id", "kind": 1024, "kindString": "Property", @@ -39995,7 +39093,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2061 + 2018 ] } ] @@ -40005,7 +39103,7 @@ } }, { - "id": 2092, + "id": 2049, "name": "RewardsUpdateAssignment", "kind": 4194304, "kindString": "Type alias", @@ -40015,20 +39113,20 @@ "types": [ { "type": "reference", - "id": 2084, + "id": 2041, "name": "RewardsCreateAssignment" }, { "type": "reflection", "declaration": { - "id": 2093, + "id": 2050, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2094, + "id": 2051, "name": "id", "kind": 1024, "kindString": "Property", @@ -40044,7 +39142,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2094 + 2051 ] } ] @@ -40054,43 +39152,43 @@ } }, { - "id": 2095, + "id": 2052, "name": "RewardsUpdateAssignmentResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2063, + "id": 2020, "name": "RewardsAssignmentObject" } }, { - "id": 2062, + "id": 2019, "name": "RewardsUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2049, + "id": 2006, "name": "RewardsCreateResponse" } }, { - "id": 2266, + "id": 2223, "name": "SegmentsGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 2254, + "id": 2211, "name": "SegmentsCreateResponse" } }, { - "id": 933, + "id": 932, "name": "SimpleRollback", "kind": 4194304, "kindString": "Type alias", @@ -40103,7 +39201,7 @@ "typeArguments": [ { "type": "reference", - "id": 917, + "id": 916, "name": "RedemptionsRollbackResponse" }, { @@ -40149,14 +39247,14 @@ { "type": "reflection", "declaration": { - "id": 934, + "id": 933, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 943, + "id": 942, "name": "gift", "kind": 1024, "kindString": "Property", @@ -40166,14 +39264,14 @@ "type": { "type": "reflection", "declaration": { - "id": 944, + "id": 943, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 945, + "id": 944, "name": "amount", "kind": 1024, "kindString": "Property", @@ -40189,7 +39287,7 @@ "title": "Properties", "kind": 1024, "children": [ - 945 + 944 ] } ] @@ -40197,7 +39295,7 @@ } }, { - "id": 946, + "id": 945, "name": "loyalty_card", "kind": 1024, "kindString": "Property", @@ -40207,14 +39305,14 @@ "type": { "type": "reflection", "declaration": { - "id": 947, + "id": 946, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 948, + "id": 947, "name": "points", "kind": 1024, "kindString": "Property", @@ -40230,7 +39328,7 @@ "title": "Properties", "kind": 1024, "children": [ - 948 + 947 ] } ] @@ -40238,7 +39336,7 @@ } }, { - "id": 935, + "id": 934, "name": "related_object_type", "kind": 1024, "kindString": "Property", @@ -40249,7 +39347,7 @@ } }, { - "id": 936, + "id": 935, "name": "voucher", "kind": 1024, "kindString": "Property", @@ -40257,14 +39355,14 @@ "type": { "type": "reflection", "declaration": { - "id": 937, + "id": 936, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 941, + "id": 940, "name": "campaign", "kind": 1024, "kindString": "Property", @@ -40277,7 +39375,7 @@ } }, { - "id": 942, + "id": 941, "name": "campaign_id", "kind": 1024, "kindString": "Property", @@ -40290,7 +39388,7 @@ } }, { - "id": 940, + "id": 939, "name": "code", "kind": 1024, "kindString": "Property", @@ -40301,7 +39399,7 @@ } }, { - "id": 938, + "id": 937, "name": "id", "kind": 1024, "kindString": "Property", @@ -40312,7 +39410,7 @@ } }, { - "id": 939, + "id": 938, "name": "object", "kind": 1024, "kindString": "Property", @@ -40328,11 +39426,11 @@ "title": "Properties", "kind": 1024, "children": [ - 941, - 942, 940, - 938, - 939 + 941, + 939, + 937, + 938 ] } ] @@ -40345,10 +39443,10 @@ "title": "Properties", "kind": 1024, "children": [ - 943, - 946, - 935, - 936 + 942, + 945, + 934, + 935 ] } ] @@ -40358,7 +39456,7 @@ } }, { - "id": 2422, + "id": 2379, "name": "StackableRedeemableObject", "kind": 4194304, "kindString": "Type alias", @@ -40382,7 +39480,7 @@ } }, { - "id": 2428, + "id": 2385, "name": "StackableRedeemableResponseStatus", "kind": 4194304, "kindString": "Type alias", @@ -40406,7 +39504,7 @@ } }, { - "id": 1999, + "id": 1956, "name": "ValidationRulesGetResponse", "kind": 4194304, "kindString": "Type alias", @@ -40416,20 +39514,20 @@ "types": [ { "type": "reference", - "id": 1981, + "id": 1938, "name": "ValidationRulesCreateResponse" }, { "type": "reflection", "declaration": { - "id": 2000, + "id": 1957, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2001, + "id": 1958, "name": "assignments_count", "kind": 1024, "kindString": "Property", @@ -40447,7 +39545,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2001 + 1958 ] } ] @@ -40457,7 +39555,7 @@ } }, { - "id": 2002, + "id": 1959, "name": "ValidationRulesUpdate", "kind": 4194304, "kindString": "Type alias", @@ -40470,7 +39568,7 @@ "typeArguments": [ { "type": "reference", - "id": 1971, + "id": 1928, "name": "ValidationRulesCreate" } ], @@ -40479,14 +39577,14 @@ { "type": "reflection", "declaration": { - "id": 2003, + "id": 1960, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2004, + "id": 1961, "name": "id", "kind": 1024, "kindString": "Property", @@ -40502,7 +39600,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2004 + 1961 ] } ] @@ -40512,19 +39610,19 @@ } }, { - "id": 2005, + "id": 1962, "name": "ValidationRulesUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1981, + "id": 1938, "name": "ValidationRulesCreateResponse" } }, { - "id": 2473, + "id": 2430, "name": "ValidationSessionTTLUnit", "kind": 4194304, "kindString": "Type alias", @@ -40564,7 +39662,7 @@ } }, { - "id": 2472, + "id": 2429, "name": "ValidationSessionType", "kind": 4194304, "kindString": "Type alias", @@ -40575,53 +39673,31 @@ } }, { - "id": 1112, + "id": 1069, "name": "ValidationsValidateCode", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1359, + "id": 1316, "name": "PromotionsValidateParams" } }, { - "id": 1113, + "id": 1070, "name": "ValidationsValidateContext", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1000, + "id": 999, "name": "ValidationsValidateVoucherParams" } }, { - "id": 1020, - "name": "ValidationsValidateVoucherResponse", - "kind": 4194304, - "kindString": "Type alias", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 1021, - "name": "ResponseValidateVoucherTrue" - }, - { - "type": "reference", - "id": 1076, - "name": "ResponseValidateVoucherFalse" - } - ] - } - }, - { - "id": 1770, + "id": 1727, "name": "VoucherType", "kind": 4194304, "kindString": "Type alias", @@ -40649,7 +39725,7 @@ } }, { - "id": 1958, + "id": 1915, "name": "VouchersBulkUpdate", "kind": 4194304, "kindString": "Type alias", @@ -40658,13 +39734,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1955, + "id": 1912, "name": "VouchersBulkUpdateObject" } } }, { - "id": 1965, + "id": 1922, "name": "VouchersBulkUpdateMetadataResponse", "kind": 4194304, "kindString": "Type alias", @@ -40672,14 +39748,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1966, + "id": 1923, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1967, + "id": 1924, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -40695,7 +39771,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1967 + 1924 ] } ] @@ -40703,7 +39779,7 @@ } }, { - "id": 1968, + "id": 1925, "name": "VouchersBulkUpdateResponse", "kind": 4194304, "kindString": "Type alias", @@ -40711,14 +39787,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1969, + "id": 1926, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1970, + "id": 1927, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -40734,7 +39810,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1970 + 1927 ] } ] @@ -40742,7 +39818,7 @@ } }, { - "id": 1891, + "id": 1848, "name": "VouchersCreate", "kind": 4194304, "kindString": "Type alias", @@ -40752,7 +39828,7 @@ "types": [ { "type": "reference", - "id": 1878, + "id": 1835, "name": "VouchersCreateParameters" }, { @@ -40760,7 +39836,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" }, { @@ -40807,7 +39883,7 @@ } }, { - "id": 1892, + "id": 1849, "name": "VouchersCreateResponse", "kind": 4194304, "kindString": "Type alias", @@ -40817,7 +39893,7 @@ "typeArguments": [ { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" }, { @@ -40829,43 +39905,43 @@ } }, { - "id": 1934, + "id": 1891, "name": "VouchersDisableResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } }, { - "id": 1933, + "id": 1890, "name": "VouchersEnableResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } }, { - "id": 1893, + "id": 1850, "name": "VouchersGetResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } }, { - "id": 1962, + "id": 1919, "name": "VouchersImportResponse", "kind": 4194304, "kindString": "Type alias", @@ -40873,14 +39949,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1963, + "id": 1920, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1964, + "id": 1921, "name": "async_action_id", "kind": 1024, "kindString": "Property", @@ -40896,7 +39972,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1964 + 1921 ] } ] @@ -40904,40 +39980,40 @@ } }, { - "id": 1905, + "id": 1862, "name": "VouchersUpdateResponse", "kind": 4194304, "kindString": "Type alias", "flags": {}, "type": { "type": "reference", - "id": 1789, + "id": 1746, "name": "VouchersResponse" } }, { - "id": 2580, + "id": 2522, "name": "VoucherifyClientSide", "kind": 64, "kindString": "Function", "flags": {}, "signatures": [ { - "id": 2581, + "id": 2523, "name": "VoucherifyClientSide", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2582, + "id": 2524, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2583, + "id": 2525, "name": "VoucherifyClientSideOptions" } } @@ -40951,28 +40027,28 @@ ] }, { - "id": 2549, + "id": 2491, "name": "VoucherifyServerSide", "kind": 64, "kindString": "Function", "flags": {}, "signatures": [ { - "id": 2550, + "id": 2492, "name": "VoucherifyServerSide", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2551, + "id": 2493, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2571, + "id": 2513, "name": "VoucherifyServerSideOptions" } } @@ -40980,14 +40056,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2552, + "id": 2494, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2569, + "id": 2511, "name": "apiLimitsHandler", "kind": 1024, "kindString": "Property", @@ -40998,7 +40074,7 @@ } }, { - "id": 2568, + "id": 2510, "name": "asyncActions", "kind": 1024, "kindString": "Property", @@ -41009,7 +40085,7 @@ } }, { - "id": 2554, + "id": 2496, "name": "campaigns", "kind": 1024, "kindString": "Property", @@ -41021,7 +40097,7 @@ } }, { - "id": 2560, + "id": 2502, "name": "consents", "kind": 1024, "kindString": "Property", @@ -41033,7 +40109,7 @@ } }, { - "id": 2559, + "id": 2501, "name": "customers", "kind": 1024, "kindString": "Property", @@ -41045,7 +40121,7 @@ } }, { - "id": 2555, + "id": 2497, "name": "distributions", "kind": 1024, "kindString": "Property", @@ -41057,7 +40133,7 @@ } }, { - "id": 2567, + "id": 2509, "name": "events", "kind": 1024, "kindString": "Property", @@ -41069,7 +40145,7 @@ } }, { - "id": 2564, + "id": 2506, "name": "loyalties", "kind": 1024, "kindString": "Property", @@ -41081,7 +40157,7 @@ } }, { - "id": 2570, + "id": 2512, "name": "metadataSchemas", "kind": 1024, "kindString": "Property", @@ -41092,7 +40168,7 @@ } }, { - "id": 2561, + "id": 2503, "name": "orders", "kind": 1024, "kindString": "Property", @@ -41104,7 +40180,7 @@ } }, { - "id": 2562, + "id": 2504, "name": "products", "kind": 1024, "kindString": "Property", @@ -41116,7 +40192,7 @@ } }, { - "id": 2558, + "id": 2500, "name": "promotions", "kind": 1024, "kindString": "Property", @@ -41128,7 +40204,7 @@ } }, { - "id": 2557, + "id": 2499, "name": "redemptions", "kind": 1024, "kindString": "Property", @@ -41140,7 +40216,7 @@ } }, { - "id": 2563, + "id": 2505, "name": "rewards", "kind": 1024, "kindString": "Property", @@ -41152,7 +40228,7 @@ } }, { - "id": 2565, + "id": 2507, "name": "segments", "kind": 1024, "kindString": "Property", @@ -41164,7 +40240,7 @@ } }, { - "id": 2566, + "id": 2508, "name": "validationRules", "kind": 1024, "kindString": "Property", @@ -41176,7 +40252,7 @@ } }, { - "id": 2556, + "id": 2498, "name": "validations", "kind": 1024, "kindString": "Property", @@ -41188,7 +40264,7 @@ } }, { - "id": 2553, + "id": 2495, "name": "vouchers", "kind": 1024, "kindString": "Property", @@ -41205,24 +40281,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2569, - 2568, - 2554, - 2560, - 2559, - 2555, - 2567, - 2564, - 2570, - 2561, - 2562, - 2558, - 2557, - 2563, - 2565, - 2566, - 2556, - 2553 + 2511, + 2510, + 2496, + 2502, + 2501, + 2497, + 2509, + 2506, + 2512, + 2503, + 2504, + 2500, + 2499, + 2505, + 2507, + 2508, + 2498, + 2495 ] } ] @@ -41237,7 +40313,7 @@ "title": "Enumerations", "kind": 4, "children": [ - 2504 + 2457 ] }, { @@ -41271,213 +40347,211 @@ "title": "Interfaces", "kind": 256, "children": [ - 2487, - 2499, - 698, - 700, - 1114, - 1168, - 1165, - 1174, - 1183, - 1147, - 1150, - 1154, - 730, - 786, - 776, - 783, - 757, - 766, - 808, - 792, - 796, - 794, - 802, - 713, - 735, - 2385, - 2393, - 675, - 682, + 2444, + 2452, + 697, + 699, + 1071, + 1125, + 1122, + 1131, + 1140, + 1104, + 1107, + 1111, + 729, + 785, + 775, + 782, + 756, + 765, + 807, + 791, + 795, + 793, + 801, + 712, + 734, + 2342, + 2350, + 674, + 681, 590, 644, - 661, - 669, - 2533, - 2544, - 2538, - 2525, - 2514, - 2518, - 2223, + 660, + 668, + 2475, + 2486, + 2480, + 2467, + 2180, + 2190, + 2160, + 2175, + 2363, + 2374, 2233, - 2203, - 2218, - 2406, - 2417, - 2276, - 2287, - 2470, - 1653, - 1655, - 1414, - 1438, - 1554, - 1628, - 1497, - 1490, - 1480, - 1532, - 1642, - 1518, - 1549, - 1578, - 1623, - 1406, - 1409, - 1482, - 1485, - 1665, - 1677, - 1472, - 1568, - 1510, - 1589, - 1521, - 1767, - 1524, + 2244, + 2427, + 1610, + 1612, + 1371, + 1395, + 1511, + 1585, + 1454, + 1447, + 1437, + 1489, + 1599, + 1475, + 1506, + 1535, + 1580, + 1363, + 1366, + 1439, + 1442, + 1622, + 1634, + 1429, + 1525, + 1467, + 1546, + 1478, + 1724, + 1481, + 2294, + 2302, + 2263, + 2334, 2337, - 2345, - 2306, + 2322, + 2091, + 2057, + 2070, + 2111, + 2119, + 2101, + 2136, + 2064, + 2103, + 2106, + 2138, + 1161, + 1243, + 1191, + 1180, + 1184, + 1199, + 1213, + 1301, + 1265, + 1316, + 1329, + 1332, + 860, + 895, + 850, + 890, + 817, + 828, + 948, + 969, + 903, + 912, + 909, + 916, + 985, + 2053, + 2020, + 2041, + 2033, + 2036, + 1991, + 2007, + 1994, + 2202, + 2211, + 2224, + 583, + 2142, + 1151, + 2146, + 1728, 2377, 2380, - 2365, - 2134, - 2100, - 2113, - 2154, - 2162, - 2144, - 2179, - 2107, - 2146, - 2149, - 2181, - 1204, - 1286, - 1234, - 1223, - 1227, - 1242, - 1256, - 1344, - 1308, - 1359, - 1372, - 1375, - 861, - 896, - 851, - 891, - 818, - 829, - 949, - 970, - 904, - 913, - 910, - 917, - 986, - 1076, - 1021, - 2096, - 2063, - 2084, - 2076, - 2079, - 2034, - 2050, - 2037, - 2245, - 2254, - 2267, - 583, - 2185, - 1194, - 2189, - 1771, - 2420, - 2423, - 2461, - 2435, - 2429, - 2451, - 2453, - 2456, - 1971, - 2006, - 2010, - 1981, - 2026, - 2029, - 2018, - 2021, - 1995, - 2474, - 2484, - 2479, - 1106, - 1099, - 1000, - 2193, - 2583, - 2571, - 1959, - 1955, - 1878, - 1906, - 1935, - 1908, + 2418, + 2392, + 2386, + 2408, + 2410, + 2413, 1928, - 1859, - 1869, - 1873, - 1789, - 1894 + 1963, + 1967, + 1938, + 1983, + 1986, + 1975, + 1978, + 1952, + 2431, + 2441, + 2436, + 1063, + 1056, + 999, + 1022, + 2150, + 2525, + 2513, + 1916, + 1912, + 1835, + 1863, + 1892, + 1865, + 1885, + 1816, + 1826, + 1830, + 1746, + 1851 ] }, { "title": "Type aliases", "kind": 4194304, "children": [ - 2486, - 1170, - 1172, - 1167, - 1171, - 1161, - 1191, - 1193, - 1173, - 1164, - 1192, - 1188, - 813, - 711, - 712, - 710, - 728, - 782, - 789, - 805, - 816, - 817, + 2443, + 1127, + 1129, + 1124, + 1128, + 1118, + 1148, + 1150, + 1130, + 1121, + 1149, + 1145, 812, + 710, + 711, + 709, + 727, + 781, + 788, + 804, 815, + 816, + 811, 814, - 729, + 813, + 728, 641, + 686, 687, 688, 689, @@ -41485,85 +40559,82 @@ 691, 692, 693, + 696, 694, - 697, 695, - 696, - 2511, - 2513, - 2512, - 2510, - 2509, - 2503, - 2305, - 1567, - 1640, - 1471, - 1641, - 1479, - 1577, - 1517, - 1092, - 2364, - 2376, - 2137, - 2141, - 2138, - 2123, - 2173, - 2124, - 2133, - 2174, - 2178, - 1233, - 1293, - 1241, - 1232, - 1304, - 1307, - 959, - 956, - 2057, - 2091, - 2049, - 2058, - 2055, - 2056, - 2059, - 2092, + 2464, + 2466, + 2465, + 2463, + 2462, + 2456, + 2262, + 1524, + 1597, + 1428, + 1598, + 1436, + 1534, + 1474, + 2321, + 2333, + 2094, + 2098, 2095, - 2062, - 2266, - 933, - 2422, - 2428, - 1999, - 2002, - 2005, - 2473, - 2472, - 1112, - 1113, - 1020, - 1770, - 1958, - 1965, - 1968, - 1891, - 1892, - 1934, - 1933, - 1893, + 2080, + 2130, + 2081, + 2090, + 2131, + 2135, + 1190, + 1250, + 1198, + 1189, + 1261, + 1264, + 958, + 955, + 2014, + 2048, + 2006, + 2015, + 2012, + 2013, + 2016, + 2049, + 2052, + 2019, + 2223, + 932, + 2379, + 2385, + 1956, + 1959, 1962, - 1905 + 2430, + 2429, + 1069, + 1070, + 1727, + 1915, + 1922, + 1925, + 1848, + 1849, + 1891, + 1890, + 1850, + 1919, + 1862 ] }, { "title": "Functions", "kind": 64, "children": [ - 2580, - 2549 + 2522, + 2491 ] } ] diff --git a/docs/index.html b/docs/index.html index 9e3eb2eed..c5a0928a9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1458,12 +1458,6 @@

    🗄️ Changelog

  • DiscountUnit
  • -
  • - DiscountUnitMultiple -
  • -
  • - DiscountUnitMultipleOneUnit -
  • DistributionsPublicationsCreateParams
  • @@ -1701,12 +1695,6 @@

    🗄️ Changelog

  • RedemptionsRollbackStackableResponse
  • -
  • - ResponseValidateVoucherFalse -
  • -
  • - ResponseValidateVoucherTrue -
  • RewardRedemptionParams
  • @@ -1824,6 +1812,9 @@

    🗄️ Changelog

  • ValidationsValidateVoucherParams
  • +
  • + ValidationsValidateVoucherResponse +
  • VoucherDiscount
  • @@ -2025,9 +2016,6 @@

    🗄️ Changelog

  • LoyaltiesUpdateRewardAssignmentResponse
  • -
  • - OrderObjectRedemptions -
  • OrdersGetResponse
  • @@ -2148,9 +2136,6 @@

    🗄️ Changelog

  • ValidationsValidateContext
  • -
  • - ValidationsValidateVoucherResponse -
  • VoucherType
  • diff --git a/docs/interfaces/ApplicableTo.html b/docs/interfaces/ApplicableTo.html index 47c986988..04158bbc5 100644 --- a/docs/interfaces/ApplicableTo.html +++ b/docs/interfaces/ApplicableTo.html @@ -80,15 +80,11 @@

    Index

    Properties

    @@ -98,13 +94,6 @@

    Properties

    Properties

    -
    - -

    Optional aggregated_quantity_limit

    -
    aggregated_quantity_limit: number
    - -

    effect

    @@ -140,27 +129,6 @@

    Optional price_formula

    -
    - -

    Optional product_id

    -
    product_id: string
    - -
    -
    - -

    Optional product_source_id

    -
    product_source_id: string
    - -
    -
    - -

    Optional quantity_limit

    -
    quantity_limit: number
    - -

    Optional source_id

    @@ -192,9 +160,6 @@

    strict

  • ApplicableTo
  • Optional description

    @@ -202,9 +194,6 @@

    Optional source_id

  • address
  • -
  • - birthdate -
  • description
  • diff --git a/docs/interfaces/DiscountUnitMultiple.html b/docs/interfaces/DiscountUnitMultiple.html deleted file mode 100644 index 4ca6641f8..000000000 --- a/docs/interfaces/DiscountUnitMultiple.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - DiscountUnitMultiple | @voucherify/sdk - v2.2.5 - - - - - - -
    -
    -
    -
    - -
    -
    - Options -
    -
    - All -
      -
    • Public
    • -
    • Public/Protected
    • -
    • All
    • -
    -
    - - - - -
    -
    - Menu -
    -
    -
    -
    -
    -
    - -

    Interface DiscountUnitMultiple

    -
    -
    -
    -
    -
    -
    -
    -

    Hierarchy

    -
      -
    • - DiscountUnitMultiple -
    • -
    -
    -
    -

    Index

    -
    -
    -
    -

    Properties

    - -
    -
    -
    -
    -
    -

    Properties

    -
    - -

    effect

    -
    effect: "ADD_MANY_ITEMS"
    - -
    -
    - -

    type

    -
    type: UNIT
    - -
    -
    - -

    units

    - - -
    -
    -
    - -
    -
    -
    -
    -

    Legend

    -
    -
      -
    • Constructor
    • -
    • Property
    • -
    • Method
    • -
    -
      -
    • Private property
    • -
    • Private method
    • -
    -
      -
    • Property
    • -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/docs/interfaces/DiscountUnitMultipleOneUnit.html b/docs/interfaces/DiscountUnitMultipleOneUnit.html deleted file mode 100644 index 276c0b43e..000000000 --- a/docs/interfaces/DiscountUnitMultipleOneUnit.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - DiscountUnitMultipleOneUnit | @voucherify/sdk - v2.2.5 - - - - - - -
    -
    -
    -
    - -
    -
    - Options -
    -
    - All -
      -
    • Public
    • -
    • Public/Protected
    • -
    • All
    • -
    -
    - - - - -
    -
    - Menu -
    -
    -
    -
    -
    -
    - -

    Interface DiscountUnitMultipleOneUnit

    -
    -
    -
    -
    -
    -
    -
    -

    Hierarchy

    -
      -
    • - DiscountUnitMultipleOneUnit -
    • -
    -
    -
    -

    Index

    -
    -
    -
    -

    Properties

    - -
    -
    -
    -
    -
    -

    Properties

    -
    - -

    effect

    -
    effect: "ADD_MISSING_ITEMS" | "ADD_NEW_ITEMS"
    - -
    -
    - -

    Optional product

    -
    product: SimpleProductDiscountUnit
    - -
    -
    - -

    Optional sku

    -
    sku: SimpleSkuDiscountUnit
    - -
    -
    - -

    type

    -
    type: UNIT
    - -
    -
    - -

    unit_off

    -
    unit_off: number
    - -
    -
    - -

    Optional unit_type

    -
    unit_type: string
    - -
    -
    -
    - -
    -
    -
    -
    -

    Legend

    -
    -
      -
    • Constructor
    • -
    • Property
    • -
    • Method
    • -
    -
      -
    • Private property
    • -
    • Private method
    • -
    -
      -
    • Property
    • -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/docs/interfaces/PromotionsCreate.html b/docs/interfaces/PromotionsCreate.html index e20d3af9f..04107dbc4 100644 --- a/docs/interfaces/PromotionsCreate.html +++ b/docs/interfaces/PromotionsCreate.html @@ -116,14 +116,14 @@

    name

    Optional promotion

    -
    promotion: { tiers: { action: { discount: DiscountUnit | DiscountAmount | DiscountPercent | DiscountFixed }; banner?: string; metadata?: Record<string, any>; name: string }[] }
    +
    promotion: { tiers: { action: { discount: DiscountUnit | DiscountAmount | DiscountPercent | DiscountFixed }; banner: string; metadata?: Record<string, any>; name: string }[] }

    Type declaration

    diff --git a/docs/interfaces/ResponseValidateVoucherFalse.html b/docs/interfaces/ResponseValidateVoucherFalse.html deleted file mode 100644 index 6d3a4dfc8..000000000 --- a/docs/interfaces/ResponseValidateVoucherFalse.html +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - ResponseValidateVoucherFalse | @voucherify/sdk - v2.2.5 - - - - - - -
    -
    -
    -
    - -
    -
    - Options -
    -
    - All -
      -
    • Public
    • -
    • Public/Protected
    • -
    • All
    • -
    -
    - - - - -
    -
    - Menu -
    -
    -
    -
    -
    -
    - -

    Interface ResponseValidateVoucherFalse

    -
    -
    -
    -
    -
    -
    -
    -

    Hierarchy

    -
      -
    • - ResponseValidateVoucherFalse -
    • -
    -
    -
    -

    Index

    -
    -
    -
    -

    Properties

    - -
    -
    -
    -
    -
    -

    Properties

    -
    - -

    code

    -
    code: string
    - -
    -
    - -

    Optional customer_id

    -
    customer_id: string
    - -
    -
    - -

    Optional error

    -
    error: { code: number; details: string; key: string; message: string; request_id?: string; resource_id?: string; resource_type?: string }
    - -
    -

    Type declaration

    -
      -
    • -
      code: number
      -
    • -
    • -
      details: string
      -
    • -
    • -
      key: string
      -
    • -
    • -
      message: string
      -
    • -
    • -
      Optional request_id?: string
      -
    • -
    • -
      Optional resource_id?: string
      -
    • -
    • -
      Optional resource_type?: string
      -
    • -
    -
    -
    -
    - -

    Optional metadata

    -
    metadata: Record<string, any>
    - -
    -
    - -

    Optional reason

    -
    reason: string
    - -
    -
    - -

    Optional tracking_id

    -
    tracking_id: string
    - -
    -
    - -

    valid

    -
    valid: false
    - -
    -
    -
    - -
    -
    -
    -
    -

    Legend

    -
    -
      -
    • Constructor
    • -
    • Property
    • -
    • Method
    • -
    -
      -
    • Private property
    • -
    • Private method
    • -
    -
      -
    • Property
    • -
    -
    -
    -
    -
    - - - \ No newline at end of file diff --git a/docs/interfaces/ValidationsValidateVoucherParams.html b/docs/interfaces/ValidationsValidateVoucherParams.html index 331fb3562..9cab04c89 100644 --- a/docs/interfaces/ValidationsValidateVoucherParams.html +++ b/docs/interfaces/ValidationsValidateVoucherParams.html @@ -95,9 +95,32 @@

    Properties

    Optional customer

    -
    customer: CustomerRequest
    +
    customer: { description?: string; email?: string; id?: string; metadata?: Record<string, any>; name?: string; source_id?: string }
    +
    +

    Type declaration

    +
      +
    • +
      Optional description?: string
      +
    • +
    • +
      Optional email?: string
      +
    • +
    • +
      Optional id?: string
      +
    • +
    • +
      Optional metadata?: Record<string, any>
      +
    • +
    • +
      Optional name?: string
      +
    • +
    • +
      Optional source_id?: string
      +
    • +
    +
    @@ -117,7 +140,7 @@
    credits:

    Optional order

    -
    order: { amount?: number; customer?: CustomerRequest; id?: string; items?: OrdersItem[]; metadata?: Record<string, any>; referrer?: CustomerRequest; source_id?: string; status?: "CREATED" | "PAID" | "CANCELED" | "FULFILLED" }
    +
    order: { amount?: number; id?: string; items?: OrdersItem[]; metadata?: Record<string, any>; source_id?: string }
    @@ -126,9 +149,6 @@

    Type declaration

  • Optional amount?: number
  • -
  • -
    Optional customer?: CustomerRequest
    -
  • Optional id?: string
  • @@ -138,22 +158,16 @@
    Optional items
    Optional metadata?: Record<string, any>
    -
  • -
    Optional referrer?: CustomerRequest
    -
  • Optional source_id?: string
  • -
  • -
    Optional status?: "CREATED" | "PAID" | "CANCELED" | "FULFILLED"
    -
  • Optional reward

    -
    reward: { id: string; points?: number }
    +
    reward: { id: string }
    @@ -162,9 +176,6 @@

    Type declaration

  • id: string
  • -
  • -
    Optional points?: number
    -
  • diff --git a/docs/interfaces/ResponseValidateVoucherTrue.html b/docs/interfaces/ValidationsValidateVoucherResponse.html similarity index 55% rename from docs/interfaces/ResponseValidateVoucherTrue.html rename to docs/interfaces/ValidationsValidateVoucherResponse.html index 1a93e8677..9b90bae90 100644 --- a/docs/interfaces/ResponseValidateVoucherTrue.html +++ b/docs/interfaces/ValidationsValidateVoucherResponse.html @@ -3,7 +3,7 @@ - ResponseValidateVoucherTrue | @voucherify/sdk - v2.2.5 + ValidationsValidateVoucherResponse | @voucherify/sdk - v2.2.5 @@ -55,10 +55,10 @@ @voucherify/sdk - v2.2.5
  • - ResponseValidateVoucherTrue + ValidationsValidateVoucherResponse
  • -

    Interface ResponseValidateVoucherTrue

    +

    Interface ValidationsValidateVoucherResponse

    @@ -69,7 +69,7 @@

    Interface ResponseValidateVoucherTrue

    Hierarchy

    • - ResponseValidateVoucherTrue + ValidationsValidateVoucherResponse
    @@ -80,22 +80,22 @@

    Index

    Properties

    @@ -105,7 +105,7 @@

    Properties

    Properties

    -

    applicable_to

    +

    Optional applicable_to

    applicable_to: ApplicableToResultList
    @@ -126,7 +126,7 @@

    Optional campaign_id

    -

    code

    +

    Optional code

    code: string
    @@ -134,7 +134,14 @@

    code

    Optional discount

    - + + +
    +
    + +

    Optional error

    +
    error: ValidationError
    @@ -148,7 +155,7 @@

    Optional expiration_date<

    Optional gift

    -
    gift: { amount: number; balance: number; effect?: "APPLY_TO_ORDER" | "APPLY_TO_ITEMS" }
    +
    gift: { amount: number; balance: number }
    @@ -160,15 +167,12 @@
    amount:
    balance: number
    -
  • -
    Optional effect?: "APPLY_TO_ORDER" | "APPLY_TO_ITEMS"
    -
  • -

    inapplicable_to

    +

    Optional inapplicable_to

    inapplicable_to: ApplicableToResultList
    @@ -190,7 +194,7 @@
    points_cost: -

    metadata

    +

    Optional metadata

    metadata: Record<string, any>
    @@ -198,7 +202,7 @@

    metadata

    Optional order

    -
    order: { amount: number; applied_discount_amount?: number; created_at?: string; customer?: CustomerRequest; customer_id?: string; discount_amount: number; id?: string; initial_amount?: number; items?: OrdersItem[]; items_applied_discount_amount?: number; items_discount_amount?: number; metadata?: Record<string, any>; object: "order"; redemptions?: Record<string, { date?: string; related_object_id?: string; related_object_parent_id?: string; related_object_type?: "voucher" | "promotion_tier"; stacked?: string[] }>; referrer_id: null | string; source_id?: string; status?: "CREATED" | "PAID" | "CANCELED" | "FULFILLED" | "PROCESSING"; total_amount: number; total_applied_discount_amount?: number; total_discount_amount?: number; updated_at?: string }
    +
    order: { amount: number; applied_discount_amount?: number; discount_amount: number; initial_amount?: number; items?: OrdersItem[]; items_applied_discount_amount?: number; items_discount_amount?: number; metadata?: Record<string, any>; total_amount: number; total_applied_discount_amount?: number; total_discount_amount: number }
    @@ -210,21 +214,9 @@
    amount:
    Optional applied_discount_amount?: number
    -
  • -
    Optional created_at?: string
    -
  • -
  • -
    Optional customer?: CustomerRequest
    -
  • -
  • -
    Optional customer_id?: string
    -
  • discount_amount: number
  • -
  • -
    Optional id?: string
    -
  • Optional initial_amount?: number
  • @@ -240,21 +232,6 @@
    Optional items_discount_<
  • Optional metadata?: Record<string, any>
  • -
  • -
    object: "order"
    -
  • -
  • -
    Optional redemptions?: Record<string, { date?: string; related_object_id?: string; related_object_parent_id?: string; related_object_type?: "voucher" | "promotion_tier"; stacked?: string[] }>
    -
  • -
  • -
    referrer_id: null | string
    -
  • -
  • -
    Optional source_id?: string
    -
  • -
  • -
    Optional status?: "CREATED" | "PAID" | "CANCELED" | "FULFILLED" | "PROCESSING"
    -
  • total_amount: number
  • @@ -262,31 +239,7 @@
    total_amount: Optional total_applied_discount_amount?: number
  • -
    Optional total_discount_amount?: number
    -
  • -
  • -
    Optional updated_at?: string
    -
  • - -
    -
    -
    - -

    Optional reward

    -
    reward: { assignment_id: string; id: string; points: number }
    - -
    -

    Type declaration

    -
      -
    • -
      assignment_id: string
      -
    • -
    • -
      id: string
      -
    • -
    • -
      points: number
      +
      total_discount_amount: number
    @@ -314,8 +267,8 @@

    tracking_id

    -

    valid

    -
    valid: true
    +

    Optional valid

    +
    valid: boolean
    @@ -334,55 +287,55 @@

    valid

    -
    - -

    OrderObjectRedemptions

    -
    OrderObjectRedemptions: Record<string, { date?: string; related_object_id?: string; related_object_parent_id?: string; related_object_type?: "voucher" | "promotion_tier"; stacked?: string[] }>
    - -

    OrdersGetResponse

    @@ -1095,13 +1083,6 @@

    ValidationsValidateContext

    -
    - -

    ValidationsValidateVoucherResponse

    -
    ValidationsValidateVoucherResponse: ResponseValidateVoucherTrue | ResponseValidateVoucherFalse
    - -

    VoucherType

    @@ -1491,12 +1472,6 @@
    vouchers: DiscountUnit -
  • - DiscountUnitMultiple -
  • -
  • - DiscountUnitMultipleOneUnit -
  • DistributionsPublicationsCreateParams
  • @@ -1734,12 +1709,6 @@
    vouchers: RedemptionsRollbackStackableResponse -
  • - ResponseValidateVoucherFalse -
  • -
  • - ResponseValidateVoucherTrue -
  • RewardRedemptionParams
  • @@ -1857,6 +1826,9 @@
    vouchers: ValidationsValidateVoucherParams +
  • + ValidationsValidateVoucherResponse +
  • VoucherDiscount
  • @@ -2058,9 +2030,6 @@
    vouchers: LoyaltiesUpdateRewardAssignmentResponse -
  • - OrderObjectRedemptions -
  • OrdersGetResponse
  • @@ -2181,9 +2150,6 @@
    vouchers: ValidationsValidateContext -
  • - ValidationsValidateVoucherResponse -
  • VoucherType
  • From 9335b259a40f65617932329f218a214d38b687af Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 09:39:41 +0200 Subject: [PATCH 20/65] remove validations --- packages/sdk/src/Validations.ts | 9 ++- packages/sdk/src/types/ApplicableTo.ts | 4 - packages/sdk/src/types/Customers.ts | 1 - packages/sdk/src/types/DiscountVoucher.ts | 15 ---- packages/sdk/src/types/Promotions.ts | 2 +- packages/sdk/src/types/Validations.ts | 90 ++++++----------------- packages/sdk/test/utils/createVoucher.ts | 15 ---- packages/sdk/test/validations.spec.ts | 36 --------- 8 files changed, 30 insertions(+), 142 deletions(-) delete mode 100644 packages/sdk/test/utils/createVoucher.ts delete mode 100644 packages/sdk/test/validations.spec.ts diff --git a/packages/sdk/src/Validations.ts b/packages/sdk/src/Validations.ts index ddce285a0..3a2a9e7eb 100644 --- a/packages/sdk/src/Validations.ts +++ b/packages/sdk/src/Validations.ts @@ -1,6 +1,6 @@ import * as T from './types/Validations' -import { encode } from './helpers' +import { encode, isObject } from './helpers' import type { RequestController } from './RequestController' import type { Promotions } from './Promotions' @@ -15,10 +15,11 @@ export class Validations { } public validate(code: string | T.ValidationsValidateCode, context: T.ValidationsValidateContext = {}) { - if (typeof code === 'string') { - return this.validateVoucher(code, context) + if (isObject(code)) { + return this.promotions.validate(code) } - return this.promotions.validate(code) + + return this.validateVoucher(code, context) } /** diff --git a/packages/sdk/src/types/ApplicableTo.ts b/packages/sdk/src/types/ApplicableTo.ts index 8ad7ecaef..b845013c6 100644 --- a/packages/sdk/src/types/ApplicableTo.ts +++ b/packages/sdk/src/types/ApplicableTo.ts @@ -4,13 +4,9 @@ export interface ApplicableTo { object: 'product' | 'sku' | 'products_collection' id: string source_id?: string - product_id?: string - product_source_id?: string strict: boolean price?: number price_formula?: number - quantity_limit?: number - aggregated_quantity_limit?: number effect: ApplicableToEffect } diff --git a/packages/sdk/src/types/Customers.ts b/packages/sdk/src/types/Customers.ts index 5b2cb3f43..039833587 100644 --- a/packages/sdk/src/types/Customers.ts +++ b/packages/sdk/src/types/Customers.ts @@ -82,7 +82,6 @@ export interface CustomerRequest { postal_code?: string } phone?: string - birthdate?: string } export interface CustomersCommonListRequest { diff --git a/packages/sdk/src/types/DiscountVoucher.ts b/packages/sdk/src/types/DiscountVoucher.ts index 1d25c8227..2c4560ddb 100644 --- a/packages/sdk/src/types/DiscountVoucher.ts +++ b/packages/sdk/src/types/DiscountVoucher.ts @@ -40,21 +40,6 @@ interface SimpleProductDiscountUnit { name: string } -export interface DiscountUnitMultiple { - type: DiscountVouchersTypesEnum.UNIT - effect: 'ADD_MANY_ITEMS' - units: DiscountUnitMultipleOneUnit[] -} - -export interface DiscountUnitMultipleOneUnit { - type: DiscountVouchersTypesEnum.UNIT - effect: 'ADD_NEW_ITEMS' | 'ADD_MISSING_ITEMS' - unit_off: number - unit_type?: string - product?: SimpleProductDiscountUnit - sku?: SimpleSkuDiscountUnit -} - export interface DiscountUnit { type?: DiscountVouchersTypesEnum.UNIT unit_off?: number diff --git a/packages/sdk/src/types/Promotions.ts b/packages/sdk/src/types/Promotions.ts index 25ee8b380..675d0ade3 100644 --- a/packages/sdk/src/types/Promotions.ts +++ b/packages/sdk/src/types/Promotions.ts @@ -51,7 +51,7 @@ export interface PromotionsCreate { promotion?: { tiers: { name: string - banner?: string + banner: string action: { discount: DiscountUnit | DiscountAmount | DiscountPercent | DiscountFixed } diff --git a/packages/sdk/src/types/Validations.ts b/packages/sdk/src/types/Validations.ts index a5676f4a5..e9175a310 100644 --- a/packages/sdk/src/types/Validations.ts +++ b/packages/sdk/src/types/Validations.ts @@ -1,22 +1,27 @@ -import { DiscountAmount, DiscountPercent, DiscountUnit, DiscountFixed, DiscountUnitMultiple } from './DiscountVoucher' -import { CustomerRequest, CustomersCreateBody } from './Customers' +import { DiscountAmount, DiscountPercent, DiscountUnit, DiscountFixed } from './DiscountVoucher' +import { CustomersCreateBody } from './Customers' import { StackableOptions, StackableRedeemableParams, StackableRedeemableResponse } from './Stackable' import { ValidationSessionParams, ValidationSessionResponse } from './ValidateSession' import { ApplicableToResultList } from './ApplicableTo' +import { ValidationError } from './ValidationError' import { OrdersItem, OrdersCreate, OrdersCreateResponse } from './Orders' import { PromotionsValidateParams } from './Promotions' export interface ValidationsValidateVoucherParams { - customer?: CustomerRequest + customer?: { + id?: string + source_id?: string + name?: string + email?: string + description?: string + metadata?: Record + } order?: { id?: string source_id?: string - status?: 'CREATED' | 'PAID' | 'CANCELED' | 'FULFILLED' amount?: number items?: OrdersItem[] - customer?: CustomerRequest - referrer?: CustomerRequest metadata?: Record } gift?: { @@ -24,93 +29,46 @@ export interface ValidationsValidateVoucherParams { } reward?: { id: string - points?: number } session?: ValidationSessionParams } -export type ValidationsValidateVoucherResponse = ResponseValidateVoucherTrue | ResponseValidateVoucherFalse - -export interface ResponseValidateVoucherTrue { - valid: true - code: string - applicable_to: ApplicableToResultList - inapplicable_to: ApplicableToResultList +export interface ValidationsValidateVoucherResponse { + applicable_to?: ApplicableToResultList + inapplicable_to?: ApplicableToResultList campaign?: string campaign_id?: string - metadata: Record - discount?: DiscountAmount | DiscountUnit | DiscountUnitMultiple | DiscountPercent | DiscountFixed + metadata?: Record + code?: string + valid?: boolean + discount?: DiscountAmount | DiscountUnit | DiscountPercent | DiscountFixed gift?: { amount: number balance: number - effect?: 'APPLY_TO_ORDER' | 'APPLY_TO_ITEMS' } loyalty?: { points_cost: number } - reward?: { - id: string - assignment_id: string - points: number - } order?: { - id?: string - source_id?: string - created_at?: string - updated_at?: string - status?: 'CREATED' | 'PAID' | 'PROCESSING' | 'CANCELED' | 'FULFILLED' amount: number - initial_amount?: number discount_amount: number - applied_discount_amount?: number - items_discount_amount?: number - total_discount_amount?: number + total_discount_amount: number total_amount: number - items_applied_discount_amount?: number + applied_discount_amount?: number total_applied_discount_amount?: number items?: OrdersItem[] + initial_amount?: number + items_discount_amount?: number + items_applied_discount_amount?: number metadata?: Record - customer?: CustomerRequest - customer_id?: string - referrer_id: string | null - object: 'order' - redemptions?: OrderObjectRedemptions } session?: ValidationSessionParams start_date?: string expiration_date?: string tracking_id: string + error?: ValidationError } -export interface ResponseValidateVoucherFalse { - valid: false - code: string - error?: { - code: number - key: string - message: string - details: string - request_id?: string - resource_id?: string - resource_type?: string - } - tracking_id?: string - customer_id?: string - metadata?: Record - reason?: string -} - -export type OrderObjectRedemptions = Record< - string, - { - date?: string - related_object_type?: 'voucher' | 'promotion_tier' - related_object_id?: string - related_object_parent_id?: string - stacked?: string[] - } -> - export interface ValidationsValidateStackableParams { options?: StackableOptions redeemables: StackableRedeemableParams[] diff --git a/packages/sdk/test/utils/createVoucher.ts b/packages/sdk/test/utils/createVoucher.ts deleted file mode 100644 index 2c47100cf..000000000 --- a/packages/sdk/test/utils/createVoucher.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { voucherifyClient as client } from '../client' -import { DiscountVouchersTypesEnum } from '../../src' - -export const createVoucher = async () => - await client.vouchers.create({ - type: 'DISCOUNT_VOUCHER', - discount: { - amount_off: 2000, - type: DiscountVouchersTypesEnum.AMOUNT, - }, - redemption: { - quantity: 1, - }, - metadata: {}, - }) diff --git a/packages/sdk/test/validations.spec.ts b/packages/sdk/test/validations.spec.ts deleted file mode 100644 index b3322b5ac..000000000 --- a/packages/sdk/test/validations.spec.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { voucherifyClient as client } from './client' -import { createVoucher } from './utils/createVoucher' -import { generateRandomString } from './utils/generateRandomString' - -describe('Validations API', () => { - it('while validating not existing code, should get error message', async () => { - const response = await client.validations.validateVoucher(generateRandomString(66)) - expect(response.valid).toBe(false) - if (response.valid) { - // this `if` is only to narrow down type of response - return - } - // now as we narrowed down response type, we have access to attributes like `reason` or `error`, - // for more info check the interface `ResponseValidateVoucherFalse` itself - expect(typeof response.reason).toBe('string') - expect(typeof response.error?.message).toBe('string') - expect(typeof response.error?.key).toBe('string') - expect(typeof response.error?.code).toBe('number') - }) - - it('should validate voucher without campaign', async () => { - const code = (await createVoucher()).code - const response = await client.validations.validateVoucher(code) - expect(response.valid).toBe(true) - if (!response.valid) { - // this `if` is only to narrow down type of response - return - } - // now as we narrowed down response type, we have access to attributes like `discount.type` or `discount.amount_off`, - // for more info check the interface `ResponseValidateVoucherTrue` itself - expect(response.discount?.type).toEqual('AMOUNT') - if (response.discount?.type === 'AMOUNT') { - expect(typeof response.discount.amount_off).toEqual('number') - } - }) -}) From 46a40bdc3d46c9968b2e061c942750b55c003707 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 09:50:57 +0200 Subject: [PATCH 21/65] changeset --- .changeset/tidy-comics-hear.md | 66 +++++----------------------------- packages/sdk/README.md | 1 - 2 files changed, 8 insertions(+), 59 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index bec6b4148..5bb29abb0 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -1,68 +1,18 @@ --- -'@voucherify/sdk': major +'@voucherify/sdk': minor --- -**New exported types/interfaces** -- ResponseValidateVoucherTrue - - DiscountUnitMultiple - - DiscountUnitMultipleOneUnit - - OrderObjectRedemptions -- ResponseValidateVoucherFalse - -**Interfaces changes** -- `PromotionsCreate` - - property: `promotion` - - property: `tier` - - changed: - - value of `banner` is not required -- `ApplicableTo` - - added: - - product_id?: string - - product_source_id?: string - - quantity_limit?: number - - aggregated_quantity_limit?: number -- `CustomerRequest` - - added: - - birthdate?: string -- `ValidationsValidateVoucherParams` - - property: `customer` - - added: - - address - - phone - - birthdate - - property: `order` - - added: - - status?: 'CREATED' | 'PAID' | 'CANCELED' | 'FULFILLED' - - customer?: CustomerRequest - - referrer?: CustomerRequest - - property: `reward` - - added - - points?: number - -**Breaking changes:** -- Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` - -**Example of usage (related to breaking changes):** +**This minor update changes the way SDK tests are written.** +Please note **sdk** tests are located in `packages/sdk/tests` and uses **real** calls to voucherify API via `client.ts`. ```js -const validation = await client.validations.validateVoucher('test') - -// First we must to narrow down response type by checking the `valid` value -// As the response type may be either ResponseValidateVoucherTrue or ResponseValidateVoucherFalse -if (response.valid) { - // We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherTrue` so now we can access attributes specific for this type like `order` - // import { ResponseValidateVoucherTrue } from '@voucherify/sdk'; - return { success: true, order: validation.order } -} -// We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherFalse` so now we can access attributes specific for this type like `reason` or `error` -// import { ResponseValidateVoucherFalse } from '@voucherify/sdk'; -return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } +import { voucherifyClient as client } from './client' ``` -**FOR DEVELOPERS WORKING ON SDK IMPROVEMENTS:** +**.env file**: +In order to run **sdk tests** you need to copy `packages/sdk/.env.example` to `packages/sdk/.env` and fill the file with your credentials. -**IMPORTANT NOTE** -In order to run **sdk tests** you need to copy packages/sdk/.env.example to packages/sdk/.env and fill the file with your credentials. -Tests uses REAL calls to Voucherify. You may reach the limit of your account if you are using sandbox account. +**to run** sdk tests please go to `packages/sdk` folder and run `yarn test` **Workflow changes** - Required version of node in `package.json` (root folder) was changed from `14.15` to `^14.15 || ^16`. - This is not related to SDK usage, but rather to further contribution to the SDK. + diff --git a/packages/sdk/README.md b/packages/sdk/README.md index 3e6a4b002..39b6fe7a0 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -312,7 +312,6 @@ client.campaigns.list(params) client.campaigns.qualifications.examine(body) client.campaigns.qualifications.examine(body, params) ``` - --- ### Distributions From 98c3dcd59ecccf95a6e2faf4ed36bee803145a64 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 10:08:06 +0200 Subject: [PATCH 22/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index 5bb29abb0..b66d75473 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -2,17 +2,28 @@ '@voucherify/sdk': minor --- -**This minor update changes the way SDK tests are written.** +#### Dependencies: +`Axios` version was updated from `0.21.4` to `0.27.2`. +Added `"dotenv": "16.3.1"` to `devDependencies` + +---------- + +#### This minor update changes the way SDK tests are written. Please note **sdk** tests are located in `packages/sdk/tests` and uses **real** calls to voucherify API via `client.ts`. ```js import { voucherifyClient as client } from './client' ``` -**.env file**: +---------- + +#### .env file: In order to run **sdk tests** you need to copy `packages/sdk/.env.example` to `packages/sdk/.env` and fill the file with your credentials. -**to run** sdk tests please go to `packages/sdk` folder and run `yarn test` +In order **to run** sdk tests please go to `packages/sdk` folder and run `yarn test` -**Workflow changes** +---------- + +#### Workflow changes - Required version of node in `package.json` (root folder) was changed from `14.15` to `^14.15 || ^16`. - This is not related to SDK usage, but rather to further contribution to the SDK. + From 509c2b1fdaf259cbe22079835fc6dc939e2ab02e Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 11:39:49 +0200 Subject: [PATCH 23/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index b66d75473..d4c73955a 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -5,25 +5,3 @@ #### Dependencies: `Axios` version was updated from `0.21.4` to `0.27.2`. Added `"dotenv": "16.3.1"` to `devDependencies` - ----------- - -#### This minor update changes the way SDK tests are written. -Please note **sdk** tests are located in `packages/sdk/tests` and uses **real** calls to voucherify API via `client.ts`. -```js -import { voucherifyClient as client } from './client' -``` - ----------- - -#### .env file: -In order to run **sdk tests** you need to copy `packages/sdk/.env.example` to `packages/sdk/.env` and fill the file with your credentials. - -In order **to run** sdk tests please go to `packages/sdk` folder and run `yarn test` - ----------- - -#### Workflow changes -- Required version of node in `package.json` (root folder) was changed from `14.15` to `^14.15 || ^16`. - This is not related to SDK usage, but rather to further contribution to the SDK. - - From 88e887c489826aa5018da084b460a8e71cefca58 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 11:43:28 +0200 Subject: [PATCH 24/65] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 503ed90ae..10398b9ff 100644 --- a/README.md +++ b/README.md @@ -151,3 +151,14 @@ Read more about how to Contribute to Voucherify JS SDK by visiting [CONTRIBUTING Voucherify React Widget CHANGELOG can be found [here](/packages/react-widget/CHANGELOG.md). Voucherify JS SDK CHANGELOG can be found [here](/packages/sdk/CHANGELOG.md). + +# 🧪 SDK Tests + +**Sdk** tests are located in `packages/sdk/tests` and uses **real** calls to voucherify API via `client.ts`. +```js +// add this in your test +import { voucherifyClient as client } from './client' +``` +In order to run **sdk tests** you need to copy `packages/sdk/.env.example` to `packages/sdk/.env` and fill the file with your credentials. + +In order **to run** sdk tests please go to `packages/sdk` folder and run `yarn test` From 1768991fb03d4c9a1454abd11597f1410437d151 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 12:23:23 +0200 Subject: [PATCH 25/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index d4c73955a..bbf0a769e 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -4,4 +4,4 @@ #### Dependencies: `Axios` version was updated from `0.21.4` to `0.27.2`. -Added `"dotenv": "16.3.1"` to `devDependencies` +Added `"dotenv": "16.3.1"` to `devDependencies`. From f37df9e8487694ea76430ec7d6d238b115dfe0ff Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 12:51:22 +0200 Subject: [PATCH 26/65] Create CHANGESET-TAMPLATE.md --- CHANGESET-TAMPLATE.md | 48 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 CHANGESET-TAMPLATE.md diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TAMPLATE.md new file mode 100644 index 000000000..3d0a99caa --- /dev/null +++ b/CHANGESET-TAMPLATE.md @@ -0,0 +1,48 @@ +## This is an example of changeset + +**Interfaces changes** +- `PromotionsCreate` + - property: `promotion` + - property: `tier` + - value of `banner` is not required +- `ApplicableTo` + - added optional: `product_id`, `product_source_id`, `quantity_limit`, `aggregated_quantity_limit` +- `CustomerRequest` + - added required: `birthdate` +- `ValidationsValidateVoucherParams` + - property: `customer` + - added optional: `address`, `phone`, `birthdate` + - property: `order` + - values of `banner`, `work`, `home` are not required + - property: `reward` + - added optional: `number` + +#### Added support for following endpoints: +- products + - POST /skus/importCSV + - method: `client.products.importSkusUsingCSV(filePath)` + - POST /skus/importCSV + - method: `client.products.importSkusUsingCSV(filePath)` + +#### Example of usage: +```js +await client.customers.importCustomersUsingCSV(__dirname + '/csv/customers.csv') +``` +```js +const response = await client.validations.validateVoucher('test') + +// First we must to narrow down response type by checking the `valid` value +// As the response type may be either ResponseValidateVoucherTrue or ResponseValidateVoucherFalse +if (response.valid) { + // We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherTrue` so now we can access attributes specific for this type like `order` + // import { ResponseValidateVoucherTrue } from '@voucherify/sdk'; + return { success: true, order: validation.order } +} +// We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherFalse` so now we can access attributes specific for this type like `reason` or `error` +// import { ResponseValidateVoucherFalse } from '@voucherify/sdk'; +return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } +``` + +#### Dependencies: +`Axios` version was updated from `0.21.4` to `0.27.2`. +Added `"dotenv": "16.3.1"` to `devDependencies`. From 747d2ad89ed2806482f039738763ec5f073afd73 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 15:03:16 +0200 Subject: [PATCH 27/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index bbf0a769e..f65444da7 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -4,4 +4,3 @@ #### Dependencies: `Axios` version was updated from `0.21.4` to `0.27.2`. -Added `"dotenv": "16.3.1"` to `devDependencies`. From 9152eb17977990e96b8dd0ba8fdafb41b8ee37b4 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 15:30:49 +0200 Subject: [PATCH 28/65] Update CHANGESET-TAMPLATE.md --- CHANGESET-TAMPLATE.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TAMPLATE.md index 3d0a99caa..c9a9c73b8 100644 --- a/CHANGESET-TAMPLATE.md +++ b/CHANGESET-TAMPLATE.md @@ -21,8 +21,11 @@ - products - POST /skus/importCSV - method: `client.products.importSkusUsingCSV(filePath)` - - POST /skus/importCSV - - method: `client.products.importSkusUsingCSV(filePath)` +- categories + - GET, POST /categories + - methods: + - `client.categories.list()` + - `client.categories.create(createCategory)` #### Example of usage: ```js From 5ff567278126184748e534f835e71afde89e04b7 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 15:35:42 +0200 Subject: [PATCH 29/65] Update CHANGESET-TAMPLATE.md --- CHANGESET-TAMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TAMPLATE.md index c9a9c73b8..fc53a58cc 100644 --- a/CHANGESET-TAMPLATE.md +++ b/CHANGESET-TAMPLATE.md @@ -1,6 +1,6 @@ ## This is an example of changeset -**Interfaces changes** +#### Interfaces changes - `PromotionsCreate` - property: `promotion` - property: `tier` From b195dd3b22e51ee622803652444bb3f382e21780 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 7 Sep 2023 15:38:03 +0200 Subject: [PATCH 30/65] Update CHANGESET-TAMPLATE.md --- CHANGESET-TAMPLATE.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TAMPLATE.md index fc53a58cc..72fc0a072 100644 --- a/CHANGESET-TAMPLATE.md +++ b/CHANGESET-TAMPLATE.md @@ -17,6 +17,10 @@ - property: `reward` - added optional: `number` +#### New exported types/interfaces +- Loyalties.ts + - ListLoyaltyTierRewardResponse + #### Added support for following endpoints: - products - POST /skus/importCSV From 23a3f58ca41c56e03fadc91acbab200361ee1398 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 8 Sep 2023 18:44:44 +0200 Subject: [PATCH 31/65] Update Loyalties.ts --- packages/sdk/src/Loyalties.ts | 80 +++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index dd7a232af..bde7e2268 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -120,6 +120,12 @@ export class Loyalties { public getMember(campaignId: string, memberId: string) { return this.client.get(`/loyalties/${encode(campaignId)}/members/${memberId}`) } + /** + * @see https://docs.voucherify.io/reference/get-member + */ + public getMemberWithoutCampaignId(memberId: string) { + return this.client.get(`/loyalties/members/${memberId}`) + } /** * @see https://docs.voucherify.io/reference/get-member-activities */ @@ -128,6 +134,18 @@ export class Loyalties { `/loyalties/${encode(campaignId)}/members/${memberId}/activities`, ) } + /** + * @see https://docs.voucherify.io/reference/get-member-activities + */ + public getMemberActivitiesWithoutCampaignId(memberId: string) { + return this.client.get(`/loyalties/members/${memberId}/activities`) + } + /** + * @see https://docs.voucherify.io/reference/list-member-rewards + */ + public listMemberRewards(memberId: string, params?: T.ListMemberRewardsParams) { + return this.client.get(`/loyalties/members/${encode(memberId)}/rewards`, params) + } /** * @see https://docs.voucherify.io/reference/add-loyalty-card-balance */ @@ -137,6 +155,24 @@ export class Loyalties { balance, ) } + /** + * @see https://docs.voucherify.io/reference/transfer-points + */ + public transferPoints(campaignId: string, memberId: string, transferLoyaltyPoints: T.ReqTransferLoyaltyPoints) { + return this.client.post( + `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transfers`, + transferLoyaltyPoints, + ) + } + /** + * @see https://docs.voucherify.io/reference/get-points-expiration + */ + public getPointsExpiration(campaignId: string, memberId: string, params?: T.LoyaltiesGetPointsExpirationParams) { + return this.client.get( + `/loyalties/${encode(campaignId)}/members/${memberId}/points-expiration`, + params, + ) + } /** * @see https://docs.voucherify.io/reference/redeem-loyalty-card */ @@ -146,4 +182,48 @@ export class Loyalties { params, ) } + /** + * @see https://docs.voucherify.io/reference/list-loyalty-card-transactions + */ + public listLoyaltyCardTransactions(memberId: string, params?: T.ListLoyaltyCardTransactionsParams) { + return this.client.get(`/loyalties/members/${encode(memberId)}/transactions`, params) + } + /** + * @see https://docs.voucherify.io/reference/list-loyalty-card-transactions-1 + */ + public listLoyaltyCardTransactionsWithCampaignId( + campaignId: string, + memberId: string, + params?: T.ListLoyaltyCardTransactionsParams, + ) { + return this.client.get( + `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions`, + params, + ) + } + /** + * @see https://docs.voucherify.io/reference/export-loyalty-card-transactions + */ + public exportLoyaltyCardTransactions( + memberId: string, + createLoyaltyCardTransactions: T.CreateLoyaltyCardTransactions, + ) { + return this.client.post( + `/loyalties/members/${encode(memberId)}/transactions/export`, + createLoyaltyCardTransactions, + ) + } + /** + * @see https://docs.voucherify.io/reference/export-loyalty-card-transactions-1 + */ + public exportLoyaltyCardTransactionsWithCampaignId( + campaignId: string, + memberId: string, + createLoyaltyCardTransactions: T.CreateLoyaltyCardTransactions, + ) { + return this.client.post( + `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions/export`, + createLoyaltyCardTransactions, + ) + } } From 127fbfa64dda1ccf13347229cd52588f0e103e04 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 11 Sep 2023 13:29:12 +0200 Subject: [PATCH 32/65] in progress --- packages/sdk/src/Loyalties.ts | 14 ++++++++----- packages/sdk/src/types/Loyalties.ts | 31 +++++++++++++++++++++++++++-- packages/sdk/src/types/Rewards.ts | 3 +-- 3 files changed, 39 insertions(+), 9 deletions(-) diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index bde7e2268..aa8f2d970 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -3,6 +3,7 @@ import * as T from './types/Loyalties' import { encode, omit } from './helpers' import type { RequestController } from './RequestController' +import { GetPointsExpirationParams, LoyaltiesCreateMemberResponse } from './types/Loyalties' export class Loyalties { constructor(private client: RequestController) {} @@ -147,19 +148,22 @@ export class Loyalties { return this.client.get(`/loyalties/members/${encode(memberId)}/rewards`, params) } /** - * @see https://docs.voucherify.io/reference/add-loyalty-card-balance + * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1 */ - public addPoints(campaignId: string, memberId: string, balance: T.LoyaltiesAddPoints) { + public addOrRemoveLoyaltyCardBalance(campaignId: string, memberId: string, balance: T.LoyaltiesAddPoints) { return this.client.post( `/loyalties/${encode(campaignId)}/members/${memberId}/balance`, balance, ) } + public addPoints(campaignId: string, memberId: string, balance: T.LoyaltiesAddPoints) { + return this.addOrRemoveLoyaltyCardBalance(campaignId, memberId, balance) + } /** * @see https://docs.voucherify.io/reference/transfer-points */ - public transferPoints(campaignId: string, memberId: string, transferLoyaltyPoints: T.ReqTransferLoyaltyPoints) { - return this.client.post( + public transferPoints(campaignId: string, memberId: string, transferLoyaltyPoints: T.LoyaltiesTransferPoints[]) { + return this.client.post( `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transfers`, transferLoyaltyPoints, ) @@ -167,7 +171,7 @@ export class Loyalties { /** * @see https://docs.voucherify.io/reference/get-points-expiration */ - public getPointsExpiration(campaignId: string, memberId: string, params?: T.LoyaltiesGetPointsExpirationParams) { + public getPointsExpiration(campaignId: string, memberId: string, params?: T.GetPointsExpirationParams) { return this.client.get( `/loyalties/${encode(campaignId)}/members/${memberId}/points-expiration`, params, diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index 9c2bb0f0a..a5d5fbf62 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -4,6 +4,7 @@ import { ProductsCreateResponse, ProductsCreateSkuResponse } from './Products' import { SimpleCustomer } from './Customers' import { ValidationRulesCreateAssignmentResponse } from './ValidationRules' import { VouchersResponse } from './Vouchers' +import { RewardsAssignmentObject, RewardsGetResponse } from './Rewards' interface LoyaltiesVoucher { code_config?: { @@ -325,12 +326,13 @@ export interface LoyaltiesAddPointsResponse { points: number total: number balance: number - type: string + type: string // LOYALTY_CARD | GIFT_VOUCHER object: 'balance' related_object?: { - type?: string + type?: string // always "voucher" id?: string } + operation_type?: 'MANUAL' | 'AUTOMATIC' //always } export interface LoyaltiesRedeemRewardParams { @@ -497,3 +499,28 @@ export interface LoyaltyPointsTransfer { code: string points: number } + +export interface ListMemberRewardsParams { + affordable_only?: boolean + limit?: number + page?: number +} + +export interface ListMemberRewardsResponse { + object: 'list' + data_ref: 'data' + data: { reward: RewardsGetResponse; assignment: RewardsAssignmentObject; object: 'loyalty_reward' }[] + total: number +} + +export interface LoyaltiesTransferPoints { + code: string + points: number + reason?: string + source_id: string +} + +export interface GetPointsExpirationParams { + limit?: number + page?: number +} diff --git a/packages/sdk/src/types/Rewards.ts b/packages/sdk/src/types/Rewards.ts index eb1b03ae2..fbaa6d522 100644 --- a/packages/sdk/src/types/Rewards.ts +++ b/packages/sdk/src/types/Rewards.ts @@ -18,6 +18,7 @@ export interface RewardsResponse { } export type RewardsCreateResponse = RewardsResponse & RewardsTypeResponse +export type RewardsGetResponse = RewardsResponse & RewardsTypeResponse export interface RewardsListResponse { object: 'list' @@ -84,8 +85,6 @@ export type RewardsTypeResponse = export type RewardsCreate = Rewards & RewardsType -export type RewardsGetResponse = RewardsCreateResponse - export type RewardsUpdate = Omit & { id: string } export type RewardsUpdateResponse = RewardsCreateResponse From 8a11525fe2957742bc4e20f0b0c5c50a5181ab11 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 11 Sep 2023 16:00:47 +0200 Subject: [PATCH 33/65] Update CHANGESET-TAMPLATE.md --- CHANGESET-TAMPLATE.md | 51 ++++++++++--------------------------------- 1 file changed, 11 insertions(+), 40 deletions(-) diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TAMPLATE.md index 72fc0a072..a75b91091 100644 --- a/CHANGESET-TAMPLATE.md +++ b/CHANGESET-TAMPLATE.md @@ -1,55 +1,26 @@ -## This is an example of changeset +[//]: # (This is an example of changeset) -#### Interfaces changes -- `PromotionsCreate` - - property: `promotion` - - property: `tier` - - value of `banner` is not required -- `ApplicableTo` - - added optional: `product_id`, `product_source_id`, `quantity_limit`, `aggregated_quantity_limit` -- `CustomerRequest` - - added required: `birthdate` -- `ValidationsValidateVoucherParams` - - property: `customer` - - added optional: `address`, `phone`, `birthdate` - - property: `order` - - values of `banner`, `work`, `home` are not required - - property: `reward` - - added optional: `number` - -#### New exported types/interfaces -- Loyalties.ts - - ListLoyaltyTierRewardResponse - -#### Added support for following endpoints: -- products - - POST /skus/importCSV - - method: `client.products.importSkusUsingCSV(filePath)` -- categories - - GET, POST /categories - - methods: - - `client.categories.list()` - - `client.categories.create(createCategory)` - -#### Example of usage: +#### Add missing methods covering Qualification API. + - Added support for new endpoints: `/skus/importCSV` and `/categories` ```js await client.customers.importCustomersUsingCSV(__dirname + '/csv/customers.csv') +await client.categories.list() +await client.categories.create(createCategory) ``` + - Added missing types in `PromotionsCreate`, `ApplicableTo`, `CustomerRequest`, `ValidationsValidateVoucherParams` + - Update axios from `0.21.4` to `0.27.2` in SDK package + - **(BREAKING CHANGE)** Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` ```js const response = await client.validations.validateVoucher('test') // First we must to narrow down response type by checking the `valid` value // As the response type may be either ResponseValidateVoucherTrue or ResponseValidateVoucherFalse if (response.valid) { - // We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherTrue` so now we can access attributes specific for this type like `order` - // import { ResponseValidateVoucherTrue } from '@voucherify/sdk'; - return { success: true, order: validation.order } +// We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherTrue` so now we can access attributes specific for this type like `order` +// import { ResponseValidateVoucherTrue } from '@voucherify/sdk'; +return { success: true, order: validation.order } } // We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherFalse` so now we can access attributes specific for this type like `reason` or `error` // import { ResponseValidateVoucherFalse } from '@voucherify/sdk'; return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } ``` - -#### Dependencies: -`Axios` version was updated from `0.21.4` to `0.27.2`. -Added `"dotenv": "16.3.1"` to `devDependencies`. From d8355b049d9a74f3cd2100ff405bfc3ce6305154 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 11 Sep 2023 16:03:14 +0200 Subject: [PATCH 34/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index f65444da7..a7ac0233e 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -2,5 +2,4 @@ '@voucherify/sdk': minor --- -#### Dependencies: -`Axios` version was updated from `0.21.4` to `0.27.2`. +#### Update axios from `0.21.4` to `0.27.2` in SDK package From e07b6ee9eb64182de687f62d2cb2aaa59f95c6ee Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 11 Sep 2023 17:24:16 +0200 Subject: [PATCH 35/65] in progress --- packages/sdk/src/Loyalties.ts | 7 ++- packages/sdk/src/types/Loyalties.ts | 78 ++++++++++++++++++++++++++++- 2 files changed, 82 insertions(+), 3 deletions(-) diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index aa8f2d970..1f2b509c7 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -145,7 +145,10 @@ export class Loyalties { * @see https://docs.voucherify.io/reference/list-member-rewards */ public listMemberRewards(memberId: string, params?: T.ListMemberRewardsParams) { - return this.client.get(`/loyalties/members/${encode(memberId)}/rewards`, params) + return this.client.get( + `/loyalties/members/${encode(memberId)}/rewards`, + params, + ) } /** * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1 @@ -172,7 +175,7 @@ export class Loyalties { * @see https://docs.voucherify.io/reference/get-points-expiration */ public getPointsExpiration(campaignId: string, memberId: string, params?: T.GetPointsExpirationParams) { - return this.client.get( + return this.client.get( `/loyalties/${encode(campaignId)}/members/${memberId}/points-expiration`, params, ) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index a5d5fbf62..bfcedc6c4 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -506,7 +506,7 @@ export interface ListMemberRewardsParams { page?: number } -export interface ListMemberRewardsResponse { +export interface LoyaltiesListMemberRewardsResponse { object: 'list' data_ref: 'data' data: { reward: RewardsGetResponse; assignment: RewardsAssignmentObject; object: 'loyalty_reward' }[] @@ -524,3 +524,79 @@ export interface GetPointsExpirationParams { limit?: number page?: number } + +export interface LoyaltiesGetPointsExpirationResponse { + object: 'list' + data_ref: 'data' + data: { + id: string + voucher_id: string + campaign_id: string + bucket: { + total_points: number + } + created_at: string + status: string + expires_at: string + updated_at?: string + object: 'loyalty_points_bucket' + }[] + total: number +} + +export interface ListLoyaltyCardTransactionsParams { + limit?: number + page?: number +} + +export interface LoyaltiesListLoyaltyCardTransactions { + object: 'list' + data_ref: 'data' + data: LoyaltyCardTransactions[] //1_obj_loyalty_card_transaction_object + has_more: boolean +} + +export type LoyaltyCardTransactionsType = + | 'POINTS_ACCRUAL' + | 'POINTS_CANCELLATION' + | 'POINTS_REDEMPTION' + | 'POINTS_REFUND' + | 'POINTS_ADDITION' + | 'POINTS_REMOVAL' + | 'POINTS_EXPIRATION' + | 'POINTS_TRANSFER_IN' + | 'POINTS_TRANSFER_OUT' + +export interface LoyaltyCardTransactions { + id: string + source_id: string | null + voucher_id: string + campaign_id: string + source: string | null + reason: string | null + type: 'POINTS_REDEMPTION' + details: { + balance: { + type: 'loyalty_card' + total: number + object: 'balance' + points: number + balance: number + related_object: { + id: string + type: 'voucher' + } + } + order: { + id: string + source_id: string + } + redemption: { id: string } + reward: { + id: string + name: string + } + } + related_transaction_id: string + created_at: string +} From 99756bc5a798593d99e14ccf56b6063971f77af5 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 11 Sep 2023 17:57:19 +0200 Subject: [PATCH 36/65] Update CHANGESET-TAMPLATE.md --- CHANGESET-TAMPLATE.md | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TAMPLATE.md index a75b91091..4a21a2579 100644 --- a/CHANGESET-TAMPLATE.md +++ b/CHANGESET-TAMPLATE.md @@ -1,26 +1,8 @@ [//]: # (This is an example of changeset) -#### Add missing methods covering Qualification API. - - Added support for new endpoints: `/skus/importCSV` and `/categories` -```js -await client.customers.importCustomersUsingCSV(__dirname + '/csv/customers.csv') -await client.categories.list() -await client.categories.create(createCategory) -``` +Add missing methods covering Qualification API. + - Added support for new endpoints: `/skus/importCSV` and `/categories` [(example available in readme.md)](packages%2Fsdk%2FREADME.md) - Added missing types in `PromotionsCreate`, `ApplicableTo`, `CustomerRequest`, `ValidationsValidateVoucherParams` - Update axios from `0.21.4` to `0.27.2` in SDK package - **(BREAKING CHANGE)** Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` -```js -const response = await client.validations.validateVoucher('test') - -// First we must to narrow down response type by checking the `valid` value -// As the response type may be either ResponseValidateVoucherTrue or ResponseValidateVoucherFalse -if (response.valid) { -// We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherTrue` so now we can access attributes specific for this type like `order` -// import { ResponseValidateVoucherTrue } from '@voucherify/sdk'; -return { success: true, order: validation.order } -} -// We have narrowed down the `ValidationsValidateVoucherResponse` type to `ResponseValidateVoucherFalse` so now we can access attributes specific for this type like `reason` or `error` -// import { ResponseValidateVoucherFalse } from '@voucherify/sdk'; -return { success: false, reason: validation.reason || validation.error?.message || 'Unknown error' } -``` +[(example of usage)](examples%2Fsdk%2Fwith-nodejs-typescript%2Fserver-product.ts) From 075934f018f493f135e39572a8b9a80f24a0f810 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 12 Sep 2023 10:48:07 +0200 Subject: [PATCH 37/65] Update CHANGESET-TAMPLATE.md --- CHANGESET-TAMPLATE.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TAMPLATE.md index 4a21a2579..b33cff54b 100644 --- a/CHANGESET-TAMPLATE.md +++ b/CHANGESET-TAMPLATE.md @@ -1,8 +1,9 @@ [//]: # (This is an example of changeset) +[//]: # (Note `..%2F..%2F` in paths, this changelog will be in packages/sdk) Add missing methods covering Qualification API. - - Added support for new endpoints: `/skus/importCSV` and `/categories` [(example available in readme.md)](packages%2Fsdk%2FREADME.md) + - Added support for new endpoints: `/skus/importCSV` and `/categories` [(example available in readme.md)](..%2F..%2Fpackages%2Fsdk%2FREADME.md) - Added missing types in `PromotionsCreate`, `ApplicableTo`, `CustomerRequest`, `ValidationsValidateVoucherParams` - Update axios from `0.21.4` to `0.27.2` in SDK package - **(BREAKING CHANGE)** Interface `ValidationsValidateVoucherResponse` was replaced with type of Union of interfaces `ResponseValidateVoucherTrue | ResponseValidateVoucherFalse` -[(example of usage)](examples%2Fsdk%2Fwith-nodejs-typescript%2Fserver-product.ts) +[(example of usage)](..%2F..%2Fexamples%2Fsdk%2Fwith-nodejs-typescript%2Fserver-product.ts) From fa17169a880ea798a77e8f2504fb5a985f332747 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 12 Sep 2023 10:48:33 +0200 Subject: [PATCH 38/65] Update CHANGESET-TAMPLATE.md --- CHANGESET-TAMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TAMPLATE.md index b33cff54b..cd569ed00 100644 --- a/CHANGESET-TAMPLATE.md +++ b/CHANGESET-TAMPLATE.md @@ -1,5 +1,5 @@ [//]: # (This is an example of changeset) -[//]: # (Note `..%2F..%2F` in paths, this changelog will be in packages/sdk) +[//]: # (Note `..%2F..%2F` in paths, this changelog text will be in packages/sdk/CHANGELOG.md) Add missing methods covering Qualification API. - Added support for new endpoints: `/skus/importCSV` and `/categories` [(example available in readme.md)](..%2F..%2Fpackages%2Fsdk%2FREADME.md) From e7b848919986178672fb7e20245299a0a8edf6e3 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 12 Sep 2023 16:58:00 +0200 Subject: [PATCH 39/65] in progress --- .changeset/tidy-comics-five.md | 5 +++ packages/sdk/src/Loyalties.ts | 13 ++++-- packages/sdk/src/types/Loyalties.ts | 66 ++++++++++++++++++++++++++--- 3 files changed, 74 insertions(+), 10 deletions(-) create mode 100644 .changeset/tidy-comics-five.md diff --git a/.changeset/tidy-comics-five.md b/.changeset/tidy-comics-five.md new file mode 100644 index 000000000..fa7993c18 --- /dev/null +++ b/.changeset/tidy-comics-five.md @@ -0,0 +1,5 @@ +--- +'@voucherify/sdk': minor +--- + +write here diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index 1f2b509c7..06722f796 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -3,7 +3,11 @@ import * as T from './types/Loyalties' import { encode, omit } from './helpers' import type { RequestController } from './RequestController' -import { GetPointsExpirationParams, LoyaltiesCreateMemberResponse } from './types/Loyalties' +import { + GetPointsExpirationParams, + LoyaltiesCreateMemberResponse, + LoyaltiesListLoyaltyCardTransactionsResponse, +} from './types/Loyalties' export class Loyalties { constructor(private client: RequestController) {} @@ -193,7 +197,10 @@ export class Loyalties { * @see https://docs.voucherify.io/reference/list-loyalty-card-transactions */ public listLoyaltyCardTransactions(memberId: string, params?: T.ListLoyaltyCardTransactionsParams) { - return this.client.get(`/loyalties/members/${encode(memberId)}/transactions`, params) + return this.client.get( + `/loyalties/members/${encode(memberId)}/transactions`, + params, + ) } /** * @see https://docs.voucherify.io/reference/list-loyalty-card-transactions-1 @@ -203,7 +210,7 @@ export class Loyalties { memberId: string, params?: T.ListLoyaltyCardTransactionsParams, ) { - return this.client.get( + return this.client.get( `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions`, params, ) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index bfcedc6c4..bbb6d1101 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -549,10 +549,10 @@ export interface ListLoyaltyCardTransactionsParams { page?: number } -export interface LoyaltiesListLoyaltyCardTransactions { +export interface LoyaltiesListLoyaltyCardTransactionsResponse { object: 'list' data_ref: 'data' - data: LoyaltyCardTransactions[] //1_obj_loyalty_card_transaction_object + data: LoyaltyCardTransactionsResponse[] //1_obj_loyalty_card_transaction_object has_more: boolean } @@ -567,14 +567,33 @@ export type LoyaltyCardTransactionsType = | 'POINTS_TRANSFER_IN' | 'POINTS_TRANSFER_OUT' -export interface LoyaltyCardTransactions { +export interface SimpleLoyaltyVoucher { + id: string + code: string + loyalty_card: { + points: number + balance: number + next_expiration_date: string + next_expiration_points: string + } + type: 'LOYALTY_CARD' + campaign: string + campaign_id: string + is_referral_code?: boolean + holder_id?: string + referrer_id?: string + created_at?: string + object: 'voucher' +} + +export interface LoyaltyCardTransactionsResponse { id: string source_id: string | null voucher_id: string campaign_id: string source: string | null reason: string | null - type: 'POINTS_REDEMPTION' + type: LoyaltyCardTransactionsType details: { balance: { type: 'loyalty_card' @@ -587,15 +606,48 @@ export interface LoyaltyCardTransactions { type: 'voucher' } } - order: { + order?: { id: string source_id: string } - redemption: { id: string } - reward: { + event?: { + id: string + type: string + } + earning_rule?: { + id: string + source: { + banner: string + } + } + segment?: { + id: string + name: string + } + loyalty_tier?: { + id: string + name: string + } + redemption?: { + id: string + } + rollback?: { + id: string + } + reward?: { + id: string + name: string + } + custom_event: { + id: string + type: string + } + event_schema: { id: string name: string } + source_voucher?: SimpleLoyaltyVoucher + destination_voucher?: SimpleLoyaltyVoucher } related_transaction_id: string created_at: string From 32b04e8f0ff16c95be9c6084260c0a739e95777c Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 12 Sep 2023 18:00:35 +0200 Subject: [PATCH 40/65] readme, types --- packages/sdk/README.md | 93 +++++++++++++++++++++++++++-- packages/sdk/src/Loyalties.ts | 17 ++---- packages/sdk/src/types/Loyalties.ts | 41 +++++++++++++ 3 files changed, 136 insertions(+), 15 deletions(-) diff --git a/packages/sdk/README.md b/packages/sdk/README.md index 39b6fe7a0..cacbfb280 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -876,10 +876,17 @@ Methods are provided within `client.loyalties.*` namespace. - [List Loyalty Program Earning Rules](#list-loyalty-program-earning-rules) - [Create Loyalty Program Member](#create-loyalty-program-member) - [Get Loyalty Program Member](#get-loyalty-program-member) -- [List Loyalty Program Members](#list-loyalty-members) +- [List Loyalty Program Members](#list-loyalty-program-members) - [Get Loyalty Program Member Activities](#get-loyalty-program-member-activities) -- [Add Loyalty Card Balance](#add-loyalty-card-balance) +- [Get Loyalty Program Member Activities Without CampaignId](#get-loyalty-program-member-activities-without-campaignid) +- [Add Or Remove Loyalty Card Balance](#add-or-remove-loyalty-card-balance) +- [Transfer Loyalty Points](#transfer-loyalty-points) +- [Get Loyalty Points Expiration](#get-loyalty-points-expiration) - [Redeem Loyalty Card](#redeem-loyalty-card) +- [List Loyalty Card Transactions](#list-loyalty-card-transactions) +- [List Loyalty Card Transactions With CampaignId](#list-loyalty-card-transactions-with-campaignid) +- [[Export Loyalty Card Transactions](#export-loyalty-card-transactions) +- [Export Loyalty Card Transactions With CampaignId](#export-loyalty-card-transactions-with-campaignid) #### [Create Loyalty Program](https://docs.voucherify.io/reference/create-loyalty-program) @@ -989,14 +996,52 @@ client.loyalties.getMemberActivities(campaignId, memberId) `memberId` referrers to Loyalty Card code. -#### [Add Loyalty Card Balance](https://docs.voucherify.io/reference/add-loyalty-card-balance) +#### [Get Loyalty Program Member Activities Without CampaignId](https://docs.voucherify.io/reference#get-member-activities) ```javascript -client.loyalties.addPoints(campaignId, memberId, balance) +client.loyalties.getMemberActivitiesWithoutCampaignId(memberId) ``` `memberId` referrers to Loyalty Card code. +#### [List Member Rewards](https://docs.voucherify.io/reference/list-member-rewards) + +```javascript +client.loyalties.listMemberRewards(memberId, params) +``` + +`memberId` referrers to Loyalty Card code. + +--- + +#### [Add Or Remove Loyalty Card Balance](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1) + +```javascript +client.loyalties.addOrRemoveLoyaltyCardBalance(campaignId, memberId, balance) +``` + +`memberId` referrers to Loyalty Card code. + +#### [Transfer Loyalty Points](https://docs.voucherify.io/reference/transfer-points) + +```javascript +client.loyalties.transferPoints(campaignId, memberId, transferLoyaltyPoints) +``` + +`memberId` referrers to Loyalty Card code. + +--- + +#### [Get Loyalty Points Expiration](https://docs.voucherify.io/reference/get-points-expiration) + +```javascript +client.loyalties.getPointsExpiration(campaignId, memberId) +``` + +`memberId` referrers to Loyalty Card code. + +--- + #### [Redeem Loyalty Card] ```javascript @@ -1009,6 +1054,46 @@ When redeeming reward with type `COIN` you need to provide additional `order` ob --- +#### [List Loyalty Card Transactions](https://docs.voucherify.io/reference/list-loyalty-card-transactions) + +```javascript +client.loyalties.listLoyaltyCardTransactions(memberId) +``` + +`memberId` referrers to Loyalty Card code. + +--- + +#### [List Loyalty Card Transactions With CampaignId](https://docs.voucherify.io/reference/list-loyalty-card-transactions-1) + +```javascript +client.loyalties.listLoyaltyCardTransactionsWithCampaignId(campaignId, memberId) +``` + +`memberId` referrers to Loyalty Card code. + +--- + +#### [Export Loyalty Card Transactions](https://docs.voucherify.io/reference/export-loyalty-card-transactions) + +```javascript +client.loyalties.exportLoyaltyCardTransactions(memberId, exportLoyaltyCardTransactionsParams) +``` + +`memberId` referrers to Loyalty Card code. + +--- + +#### [Export Loyalty Card Transactions With CampaignId](https://docs.voucherify.io/reference/export-loyalty-card-transactions-1) + +```javascript +client.loyalties.exportLoyaltyCardTransactionsWithCampaignId(campaignId, memberId, exportLoyaltyCardTransactionsParams) +``` + +`memberId` referrers to Loyalty Card code. + +--- + ### Segments Methods are provided within `client.segments.*` namespace. diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index 06722f796..3b3da8aa7 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -3,11 +3,6 @@ import * as T from './types/Loyalties' import { encode, omit } from './helpers' import type { RequestController } from './RequestController' -import { - GetPointsExpirationParams, - LoyaltiesCreateMemberResponse, - LoyaltiesListLoyaltyCardTransactionsResponse, -} from './types/Loyalties' export class Loyalties { constructor(private client: RequestController) {} @@ -220,11 +215,11 @@ export class Loyalties { */ public exportLoyaltyCardTransactions( memberId: string, - createLoyaltyCardTransactions: T.CreateLoyaltyCardTransactions, + exportLoyaltyCardTransactionsParams: T.LoyaltiesExportLoyaltyCardTransactionsParams, ) { - return this.client.post( + return this.client.post( `/loyalties/members/${encode(memberId)}/transactions/export`, - createLoyaltyCardTransactions, + exportLoyaltyCardTransactionsParams, ) } /** @@ -233,11 +228,11 @@ export class Loyalties { public exportLoyaltyCardTransactionsWithCampaignId( campaignId: string, memberId: string, - createLoyaltyCardTransactions: T.CreateLoyaltyCardTransactions, + exportLoyaltyCardTransactionsParams: T.LoyaltiesExportLoyaltyCardTransactionsParams, ) { - return this.client.post( + return this.client.post( `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions/export`, - createLoyaltyCardTransactions, + exportLoyaltyCardTransactionsParams, ) } } diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index bbb6d1101..e687e3a9a 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -652,3 +652,44 @@ export interface LoyaltyCardTransactionsResponse { related_transaction_id: string created_at: string } + +export type LoyaltyCardTransactionsFields = + | 'id' + | 'campaign_id' + | 'voucher_id' + | 'type' + | 'source_id' + | 'reason' + | 'source' + | 'balance' + | 'amount' + | 'related_transaction_id' + | 'created_at' + | 'details' + +export interface LoyaltiesExportLoyaltyCardTransactionsParams { + order: 'created_at' | '-created_at' + fields: LoyaltyCardTransactionsFields[] +} + +export interface LoyaltiesExportLoyaltyCardTransactionsResponse { + id: string + object: 'export' + created_at: string + status: 'SCHEDULED' + channel: string + exported_object: 'voucher_transactions' + parameters: { + order?: string + fields?: LoyaltyCardTransactionsFields[] + filters: { + voucher_id: { + conditions: { + $in: [string] //memberId + } + } + } + } + result: null + user_id: null | string +} From c5f897a4943cde4a5549a5c6d8cb44e08e29c4c4 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 12 Sep 2023 18:50:06 +0200 Subject: [PATCH 41/65] Update tidy-comics-five.md --- .changeset/tidy-comics-five.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.changeset/tidy-comics-five.md b/.changeset/tidy-comics-five.md index fa7993c18..11d4cd50e 100644 --- a/.changeset/tidy-comics-five.md +++ b/.changeset/tidy-comics-five.md @@ -2,4 +2,6 @@ '@voucherify/sdk': minor --- -write here +Add support for few endpoints of Loyalties API. +- Added support for new endpoints: `/loyalties/members/{memberId}`, `/loyalties/members/{memberId}/activities`, `/loyalties/members/{memberId}/rewards`, `/loyalties/{campaignId}/members/{memberId}/transfers`, `/loyalties/{campaignId}/members/{memberId}/points-expiration`, `/loyalties/members/{memberId}/transactions`, `/loyalties/{campaignId}/members/{memberId}/transactions`, `/loyalties/members/{memberId}/transactions/export` and `/loyalties/{campaignId}/members/{memberId}/transactions/export` [(examples of usage available in readme.md)](..%2F..%2Fpackages%2Fsdk%2FREADME.md) +- New exported types/interfaces: `ListMemberRewardsParams`, `LoyaltiesListMemberRewardsResponse`, `LoyaltiesTransferPoints`, `GetPointsExpirationParams`, `LoyaltiesGetPointsExpirationResponse`, `ListLoyaltyCardTransactionsParams`, `LoyaltiesListLoyaltyCardTransactionsResponse`, `LoyaltyCardTransactionsType`, `SimpleLoyaltyVoucher`, `LoyaltyCardTransactionsResponse`, `LoyaltyCardTransactionsFields`, `LoyaltiesExportLoyaltyCardTransactionsParams` and `LoyaltiesExportLoyaltyCardTransactionsResponse` From 374f717e7a15f8898822f010654f276382e0b3a9 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 12 Sep 2023 19:10:16 +0200 Subject: [PATCH 42/65] Update Loyalties.ts --- packages/sdk/src/types/Loyalties.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index e687e3a9a..ccb209552 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -552,7 +552,7 @@ export interface ListLoyaltyCardTransactionsParams { export interface LoyaltiesListLoyaltyCardTransactionsResponse { object: 'list' data_ref: 'data' - data: LoyaltyCardTransactionsResponse[] //1_obj_loyalty_card_transaction_object + data: LoyaltyCardTransactionsResponse[] has_more: boolean } From e27016c11d2ced022241da7a2d237e3e12057de9 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Tue, 12 Sep 2023 20:43:23 +0200 Subject: [PATCH 43/65] fixes --- packages/sdk/src/types/Loyalties.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index ccb209552..2da9f00fa 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -573,8 +573,8 @@ export interface SimpleLoyaltyVoucher { loyalty_card: { points: number balance: number - next_expiration_date: string - next_expiration_points: string + next_expiration_date?: string + next_expiration_points?: string } type: 'LOYALTY_CARD' campaign: string @@ -638,11 +638,11 @@ export interface LoyaltyCardTransactionsResponse { id: string name: string } - custom_event: { + custom_event?: { id: string type: string } - event_schema: { + event_schema?: { id: string name: string } @@ -668,8 +668,8 @@ export type LoyaltyCardTransactionsFields = | 'details' export interface LoyaltiesExportLoyaltyCardTransactionsParams { - order: 'created_at' | '-created_at' - fields: LoyaltyCardTransactionsFields[] + order?: 'created_at' | '-created_at' + fields?: LoyaltyCardTransactionsFields[] } export interface LoyaltiesExportLoyaltyCardTransactionsResponse { From fc93ff689a41d47edd243f47f87b01efd97eeddf Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 13 Sep 2023 09:48:50 +0200 Subject: [PATCH 44/65] minor fixes --- packages/sdk/README.md | 9 ++++++++- packages/sdk/src/Loyalties.ts | 12 ++++++++---- packages/sdk/src/types/Loyalties.ts | 2 ++ 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/packages/sdk/README.md b/packages/sdk/README.md index cacbfb280..675f32aaf 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -876,6 +876,7 @@ Methods are provided within `client.loyalties.*` namespace. - [List Loyalty Program Earning Rules](#list-loyalty-program-earning-rules) - [Create Loyalty Program Member](#create-loyalty-program-member) - [Get Loyalty Program Member](#get-loyalty-program-member) +- [Get Loyalty Program Member Without CampaignId](#get-loyalty-program-member-without-campaignid) - [List Loyalty Program Members](#list-loyalty-program-members) - [Get Loyalty Program Member Activities](#get-loyalty-program-member-activities) - [Get Loyalty Program Member Activities Without CampaignId](#get-loyalty-program-member-activities-without-campaignid) @@ -981,6 +982,12 @@ client.loyalties.createMember(campaignId, member) client.loyalties.getMember(campaignId, memberId) ``` +#### [Get Loyalty Program Member Without CampaignId](https://docs.voucherify.io/reference/get-member-1) + +```javascript +client.loyalties.getMemberWithoutCampaignId(campaignId, memberId) +``` + #### [List Loyalty Program Members](https://docs.voucherify.io/reference/list-members) ```javascript @@ -1017,7 +1024,7 @@ client.loyalties.listMemberRewards(memberId, params) #### [Add Or Remove Loyalty Card Balance](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1) ```javascript -client.loyalties.addOrRemoveLoyaltyCardBalance(campaignId, memberId, balance) +client.loyalties.addOrRemoveLoyaltyCardBalance(memberId, balance, campaignId) ``` `memberId` referrers to Loyalty Card code. diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index 3b3da8aa7..6fa2bbdbe 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -152,20 +152,24 @@ export class Loyalties { /** * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1 */ - public addOrRemoveLoyaltyCardBalance(campaignId: string, memberId: string, balance: T.LoyaltiesAddPoints) { + public addOrRemoveLoyaltyCardBalance(memberId: string, balance: T.LoyaltiesAddPoints, campaignId?: string) { return this.client.post( - `/loyalties/${encode(campaignId)}/members/${memberId}/balance`, + campaignId + ? `/loyalties/${encode(campaignId)}/members/${memberId}/balance` + : `/loyalties/members/${memberId}/balance`, balance, ) } + + // Backward compatibility only. This method is not mentioned in readme anymore. public addPoints(campaignId: string, memberId: string, balance: T.LoyaltiesAddPoints) { - return this.addOrRemoveLoyaltyCardBalance(campaignId, memberId, balance) + return this.addOrRemoveLoyaltyCardBalance(memberId, balance, campaignId) } /** * @see https://docs.voucherify.io/reference/transfer-points */ public transferPoints(campaignId: string, memberId: string, transferLoyaltyPoints: T.LoyaltiesTransferPoints[]) { - return this.client.post( + return this.client.post( `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transfers`, transferLoyaltyPoints, ) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index 2da9f00fa..aaa899c46 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -305,6 +305,8 @@ export type LoyaltiesCreateMemberResponse = LoyaltiesVoucherResponse export type LoyaltiesGetMemberResponse = LoyaltiesCreateMemberResponse +export type LoyaltiesTransferPointsResponse = LoyaltiesVoucherResponse + export interface LoyaltiesGetMemberActivitiesResponse { object: 'list' data_ref: 'activities' From 90d938c585fb576c5f852d86fb4cb33ad88f34ce Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 13 Sep 2023 16:19:19 +0200 Subject: [PATCH 45/65] dotenv in packages/sdk package.json --- package.json | 1 - packages/sdk/package.json | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 354543d84..82569fdbf 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,6 @@ "pkg:release": "changeset publish" }, "devDependencies": { - "dotenv": "16.3.1", "@changesets/changelog-github": "0.2.7", "@changesets/cli": "2.16.0", "@rollup/plugin-replace": "2.3.4", diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 9378604e5..7ec8904d6 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -40,6 +40,7 @@ "qs": "6.9.7" }, "devDependencies": { + "dotenv": "16.3.1", "@types/qs": "6.9.7" }, "publishConfig": { From ad5e25ee4fa1f5a3ba4dc4424c6734d10b8f3887 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 13 Sep 2023 17:29:08 +0200 Subject: [PATCH 46/65] requested changes --- .changeset/tidy-comics-hear.md | 5 ++++- CHANGESET-TAMPLATE.md => CHANGESET-TEMPLATE.md | 0 CONTRIBUTING.md | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) rename CHANGESET-TAMPLATE.md => CHANGESET-TEMPLATE.md (100%) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index a7ac0233e..21972b506 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -2,4 +2,7 @@ '@voucherify/sdk': minor --- -#### Update axios from `0.21.4` to `0.27.2` in SDK package +Axios update, new devDependency, added frame for integration tests +- Update axios from `0.21.4` to `0.27.2` in SDK package +- Added dotenv `16.3.1` to SDK package dev dependencies. +- Added frame for integration tests [(more info available in README.md, section "🧪 SDK Tests")](..%2F..%2FREADME.md) diff --git a/CHANGESET-TAMPLATE.md b/CHANGESET-TEMPLATE.md similarity index 100% rename from CHANGESET-TAMPLATE.md rename to CHANGESET-TEMPLATE.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8d18b9226..9f95f2440 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,6 +30,8 @@ See [here](https://github.com/atlassian/changesets/blob/master/docs/adding-a-changeset.md#i-am-in-a-multi-package-repository-a-mono-repo) for more information about adding a changeset in a monorepo. +**[See changeset template in CHANGESET-TEMPLATE.md](CHANGESET-TEMPLATE.md)** + ## About changesets (for maintainers) 1. Review [pull request](https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork) From ce8761884a2f7ef77cff8581c78a6cbb573043fa Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 14 Sep 2023 12:01:49 +0200 Subject: [PATCH 47/65] Update tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md index 21972b506..d941bbf31 100644 --- a/.changeset/tidy-comics-hear.md +++ b/.changeset/tidy-comics-hear.md @@ -2,7 +2,7 @@ '@voucherify/sdk': minor --- -Axios update, new devDependency, added frame for integration tests +Implementing the following changes: - Update axios from `0.21.4` to `0.27.2` in SDK package - Added dotenv `16.3.1` to SDK package dev dependencies. - Added frame for integration tests [(more info available in README.md, section "🧪 SDK Tests")](..%2F..%2FREADME.md) From 5222dbb6750e32847182b2e8890028f9b562fef0 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 15 Sep 2023 17:33:39 +0200 Subject: [PATCH 48/65] Delete tidy-comics-hear.md --- .changeset/tidy-comics-hear.md | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .changeset/tidy-comics-hear.md diff --git a/.changeset/tidy-comics-hear.md b/.changeset/tidy-comics-hear.md deleted file mode 100644 index d941bbf31..000000000 --- a/.changeset/tidy-comics-hear.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@voucherify/sdk': minor ---- - -Implementing the following changes: -- Update axios from `0.21.4` to `0.27.2` in SDK package -- Added dotenv `16.3.1` to SDK package dev dependencies. -- Added frame for integration tests [(more info available in README.md, section "🧪 SDK Tests")](..%2F..%2FREADME.md) From d29192b9cb487e2a26b03f9bc78096079c2151cd Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Fri, 15 Sep 2023 20:42:46 +0200 Subject: [PATCH 49/65] tests --- packages/sdk/src/types/Loyalties.ts | 2 +- packages/sdk/test/loyalties.spec.ts | 133 ++++++++++++++++++++++++++++ 2 files changed, 134 insertions(+), 1 deletion(-) create mode 100644 packages/sdk/test/loyalties.spec.ts diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index aaa899c46..9b651e1e1 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -651,7 +651,7 @@ export interface LoyaltyCardTransactionsResponse { source_voucher?: SimpleLoyaltyVoucher destination_voucher?: SimpleLoyaltyVoucher } - related_transaction_id: string + related_transaction_id: string | null created_at: string } diff --git a/packages/sdk/test/loyalties.spec.ts b/packages/sdk/test/loyalties.spec.ts new file mode 100644 index 000000000..5d61102d6 --- /dev/null +++ b/packages/sdk/test/loyalties.spec.ts @@ -0,0 +1,133 @@ +import { voucherifyClient as client } from './client' +import { generateRandomString } from './utils/generateRandomString' +import { + LoyaltiesCreateCampaignResponse, + LoyaltiesCreateMemberResponse, + LoyaltiesAddPointsResponse, + LoyaltiesListLoyaltyCardTransactionsResponse, +} from '@voucherify/sdk' +import { isoRegex } from './utils/isoRegex' + +describe('Loyalties API', () => { + let loyaltyCampaign: LoyaltiesCreateCampaignResponse, + loyaltiesMember: LoyaltiesCreateMemberResponse, + startBalance = 100, + addPoints = 88 + it('Should create loyalties campaign and 1 member', async () => { + loyaltyCampaign = await client.loyalties.create({ + name: generateRandomString(), + voucher: { + type: 'LOYALTY_CARD', + loyalty_card: { + points: startBalance, + }, + }, + type: 'AUTO_UPDATE', + }) + loyaltiesMember = await client.loyalties.createMember(loyaltyCampaign.id, { + customer: { name: generateRandomString() }, + }) //member + }) + + it('Should add loyalties points to a member previously added', async () => { + const response = await client.loyalties.addOrRemoveLoyaltyCardBalance( + loyaltiesMember.code, + { points: addPoints }, + loyaltyCampaign.id, + ) + expect(response).toEqual({ + points: addPoints, + total: startBalance + addPoints, + balance: startBalance + addPoints, + type: 'loyalty_card', + object: 'balance', + related_object: { type: 'voucher', id: expect.stringMatching(/^v_.*/) }, + operation_type: 'MANUAL', + } as LoyaltiesAddPointsResponse) + }) + + it('Should list members activities', async () => { + const memberCardTransactions = await client.loyalties.listLoyaltyCardTransactions(loyaltiesMember.code) + expect(memberCardTransactions).toEqual({ + object: 'list', + data_ref: 'data', + data: [ + { + id: expect.stringMatching(/^vtx_.*/), + source_id: null, + voucher_id: expect.stringMatching(/^v_.*/), + campaign_id: expect.stringMatching(/^camp_.*/), + source: expect.stringMatching(/^Node.js.*/), + reason: null, + type: 'POINTS_ADDITION', + details: { + balance: { + type: 'loyalty_card', + total: startBalance + addPoints, + object: 'balance', + points: addPoints, + balance: startBalance + addPoints, + related_object: { id: expect.stringMatching(/^v_.*/), type: 'voucher' }, + }, + }, + related_transaction_id: null, + created_at: expect.stringMatching(isoRegex), + }, + ], + has_more: false, + } as LoyaltiesListLoyaltyCardTransactionsResponse) + }) + + // it('should get category', async () => { + // const category = await client.categories.get(categoryId) + // expect(category).toEqual({ + // id: expect.stringMatching(/^cat_.*/), + // ...newCategoryData, + // created_at: expect.stringMatching(isoRegex), + // object: 'category', + // }) + // }) + // + // it('should update category', async () => { + // const updatedCategoryData = { name: generateRandomString(50), hierarchy: 33 } + // const category = await client.categories.update(categoryId, updatedCategoryData) + // expect(category).toEqual({ + // id: expect.stringMatching(/^cat_.*/), + // ...updatedCategoryData, + // created_at: expect.stringMatching(isoRegex), + // object: 'category', + // updated_at: expect.stringMatching(isoRegex), + // }) + // }) + // + // it('should list categories', async () => { + // const categoriesList = await client.categories.list() + // expect(categoriesList).toMatchObject( + // expect.objectContaining({ + // object: 'list', + // data_ref: 'data', + // has_more: false, + // }), + // ) + // expect(typeof categoriesList.total).toBe('number') + // expect(Array.isArray(categoriesList.data)).toBeTruthy() + // categoriesList.data.forEach(category => { + // const expectObjectContaining = expect.objectContaining({ + // id: expect.stringMatching(/[\s\S]*/), + // created_at: expect.stringMatching(isoRegex), + // name: expect.stringMatching(/[\s\S]*/), + // object: 'category', + // }) + // expect(category).toEqual(expectObjectContaining) + // expect(typeof category.hierarchy).toBe('number') + // if (category.updated_at) { + // expect(category.updated_at).toEqual(expect.stringMatching(isoRegex)) + // } + // }) + // }) + // + // it('should delete category', async () => { + // await client.categories.delete(categoryId) + // await expect(client.categories.get(categoryId)).rejects.toThrow('Resource not found') + // }) +}) From 0b7ca13f5628cc3e3ba8fb96fb0e0d453da0bc57 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Sat, 16 Sep 2023 17:28:15 +0200 Subject: [PATCH 50/65] Update loyalties.spec.ts --- packages/sdk/test/loyalties.spec.ts | 55 ++--------------------------- 1 file changed, 2 insertions(+), 53 deletions(-) diff --git a/packages/sdk/test/loyalties.spec.ts b/packages/sdk/test/loyalties.spec.ts index 5d61102d6..33fba2518 100644 --- a/packages/sdk/test/loyalties.spec.ts +++ b/packages/sdk/test/loyalties.spec.ts @@ -43,6 +43,7 @@ describe('Loyalties API', () => { object: 'balance', related_object: { type: 'voucher', id: expect.stringMatching(/^v_.*/) }, operation_type: 'MANUAL', + // use as `type` for typescript check } as LoyaltiesAddPointsResponse) }) @@ -75,59 +76,7 @@ describe('Loyalties API', () => { }, ], has_more: false, + // use as `type` for typescript check } as LoyaltiesListLoyaltyCardTransactionsResponse) }) - - // it('should get category', async () => { - // const category = await client.categories.get(categoryId) - // expect(category).toEqual({ - // id: expect.stringMatching(/^cat_.*/), - // ...newCategoryData, - // created_at: expect.stringMatching(isoRegex), - // object: 'category', - // }) - // }) - // - // it('should update category', async () => { - // const updatedCategoryData = { name: generateRandomString(50), hierarchy: 33 } - // const category = await client.categories.update(categoryId, updatedCategoryData) - // expect(category).toEqual({ - // id: expect.stringMatching(/^cat_.*/), - // ...updatedCategoryData, - // created_at: expect.stringMatching(isoRegex), - // object: 'category', - // updated_at: expect.stringMatching(isoRegex), - // }) - // }) - // - // it('should list categories', async () => { - // const categoriesList = await client.categories.list() - // expect(categoriesList).toMatchObject( - // expect.objectContaining({ - // object: 'list', - // data_ref: 'data', - // has_more: false, - // }), - // ) - // expect(typeof categoriesList.total).toBe('number') - // expect(Array.isArray(categoriesList.data)).toBeTruthy() - // categoriesList.data.forEach(category => { - // const expectObjectContaining = expect.objectContaining({ - // id: expect.stringMatching(/[\s\S]*/), - // created_at: expect.stringMatching(isoRegex), - // name: expect.stringMatching(/[\s\S]*/), - // object: 'category', - // }) - // expect(category).toEqual(expectObjectContaining) - // expect(typeof category.hierarchy).toBe('number') - // if (category.updated_at) { - // expect(category.updated_at).toEqual(expect.stringMatching(isoRegex)) - // } - // }) - // }) - // - // it('should delete category', async () => { - // await client.categories.delete(categoryId) - // await expect(client.categories.get(categoryId)).rejects.toThrow('Resource not found') - // }) }) From 219f12c3cf8cb2e4dbaffbe9973fa932e3bd6527 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 4 Oct 2023 16:07:23 +0200 Subject: [PATCH 51/65] not finished, few changes --- packages/sdk/README.md | 21 ++++++--- packages/sdk/src/Loyalties.ts | 67 ++++++++++------------------- packages/sdk/test/loyalties.spec.ts | 2 +- 3 files changed, 38 insertions(+), 52 deletions(-) diff --git a/packages/sdk/README.md b/packages/sdk/README.md index c3ec78df8..563ed9c0c 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -966,18 +966,17 @@ Methods are provided within `client.loyalties.*` namespace. - [List Loyalty Program Earning Rules](#list-loyalty-program-earning-rules) - [Create Loyalty Program Member](#create-loyalty-program-member) - [Get Loyalty Program Member](#get-loyalty-program-member) -- [Get Loyalty Program Member Without CampaignId](#get-loyalty-program-member-without-campaignid) +- [Get Loyalty Program Member By Id](#get-loyalty-program-member-by-id) - [List Loyalty Program Members](#list-loyalty-program-members) - [Get Loyalty Program Member Activities](#get-loyalty-program-member-activities) - [Get Loyalty Program Member Activities Without CampaignId](#get-loyalty-program-member-activities-without-campaignid) - [Add Or Remove Loyalty Card Balance](#add-or-remove-loyalty-card-balance) +- [[Deprecated] Add Loyalty Card Balance](#add-loyalty-card-balance) - [Transfer Loyalty Points](#transfer-loyalty-points) - [Get Loyalty Points Expiration](#get-loyalty-points-expiration) - [Redeem Loyalty Card](#redeem-loyalty-card) - [List Loyalty Card Transactions](#list-loyalty-card-transactions) -- [List Loyalty Card Transactions With CampaignId](#list-loyalty-card-transactions-with-campaignid) - [[Export Loyalty Card Transactions](#export-loyalty-card-transactions) -- [Export Loyalty Card Transactions With CampaignId](#export-loyalty-card-transactions-with-campaignid) #### [Create Loyalty Program](https://docs.voucherify.io/reference/create-loyalty-program) @@ -1066,16 +1065,16 @@ client.loyalties.listEarningRules(campaignId, params) client.loyalties.createMember(campaignId, member) ``` -#### [Get Loyalty Program Member](https://docs.voucherify.io/reference/get-member) +#### [Get Loyalty Program Member](https://docs.voucherify.io/reference/get-member-1) ```javascript client.loyalties.getMember(campaignId, memberId) ``` -#### [Get Loyalty Program Member Without CampaignId](https://docs.voucherify.io/reference/get-member-1) +#### [Get Loyalty Program Member By Id](https://docs.voucherify.io/reference/get-member) ```javascript -client.loyalties.getMemberWithoutCampaignId(campaignId, memberId) +client.loyalties.getMemberById(campaignId, memberId) ``` #### [List Loyalty Program Members](https://docs.voucherify.io/reference/list-members) @@ -1114,7 +1113,15 @@ client.loyalties.listMemberRewards(memberId, params) #### [Add Or Remove Loyalty Card Balance](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1) ```javascript -client.loyalties.addOrRemoveLoyaltyCardBalance(memberId, balance, campaignId) +client.loyalties.addOrRemoveCardBalance(memberId, balance, campaignId) +``` + +`memberId` referrers to Loyalty Card code. + +#### [Add Loyalty Card Balance](https://docs.voucherify.io/reference/add-loyalty-card-balance) + +```javascript +client.loyalties.addPoints(campaignId, memberId, balance) ``` `memberId` referrers to Loyalty Card code. diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index 6fa2bbdbe..39a5fd247 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -116,30 +116,24 @@ export class Loyalties { } /** * @see https://docs.voucherify.io/reference/get-member + * @see https://docs.voucherify.io/reference/get-member-1 */ - public getMember(campaignId: string, memberId: string) { - return this.client.get(`/loyalties/${encode(campaignId)}/members/${memberId}`) - } - /** - * @see https://docs.voucherify.io/reference/get-member - */ - public getMemberWithoutCampaignId(memberId: string) { - return this.client.get(`/loyalties/members/${memberId}`) + public getMember(campaignId: string | null, memberId: string) { + return this.client.get( + campaignId ? `/loyalties/${encode(campaignId)}/members/${memberId}` : `/loyalties/members/${memberId}`, + ) } /** * @see https://docs.voucherify.io/reference/get-member-activities + * @see https://docs.voucherify.io/reference/get-member-activities-1 */ - public getMemberActivities(campaignId: string, memberId: string) { + public getMemberActivities(campaignId: string | null, memberId: string) { return this.client.get( - `/loyalties/${encode(campaignId)}/members/${memberId}/activities`, + campaignId + ? `/loyalties/${encode(campaignId)}/members/${memberId}/activities` + : `/loyalties/members/${memberId}/activities`, ) } - /** - * @see https://docs.voucherify.io/reference/get-member-activities - */ - public getMemberActivitiesWithoutCampaignId(memberId: string) { - return this.client.get(`/loyalties/members/${memberId}/activities`) - } /** * @see https://docs.voucherify.io/reference/list-member-rewards */ @@ -152,7 +146,7 @@ export class Loyalties { /** * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1 */ - public addOrRemoveLoyaltyCardBalance(memberId: string, balance: T.LoyaltiesAddPoints, campaignId?: string) { + public addOrRemoveCardBalance(memberId: string, balance: T.LoyaltiesAddPoints, campaignId?: string) { return this.client.post( campaignId ? `/loyalties/${encode(campaignId)}/members/${memberId}/balance` @@ -163,7 +157,7 @@ export class Loyalties { // Backward compatibility only. This method is not mentioned in readme anymore. public addPoints(campaignId: string, memberId: string, balance: T.LoyaltiesAddPoints) { - return this.addOrRemoveLoyaltyCardBalance(memberId, balance, campaignId) + return this.addOrRemoveCardBalance(memberId, balance, campaignId) } /** * @see https://docs.voucherify.io/reference/transfer-points @@ -194,48 +188,33 @@ export class Loyalties { } /** * @see https://docs.voucherify.io/reference/list-loyalty-card-transactions - */ - public listLoyaltyCardTransactions(memberId: string, params?: T.ListLoyaltyCardTransactionsParams) { - return this.client.get( - `/loyalties/members/${encode(memberId)}/transactions`, - params, - ) - } - /** * @see https://docs.voucherify.io/reference/list-loyalty-card-transactions-1 */ - public listLoyaltyCardTransactionsWithCampaignId( - campaignId: string, + public listCardTransactions( memberId: string, + campaignId: string | null, params?: T.ListLoyaltyCardTransactionsParams, ) { return this.client.get( - `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions`, + campaignId + ? `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions` + : `/loyalties/members/${encode(memberId)}/transactions`, params, ) } /** * @see https://docs.voucherify.io/reference/export-loyalty-card-transactions - */ - public exportLoyaltyCardTransactions( - memberId: string, - exportLoyaltyCardTransactionsParams: T.LoyaltiesExportLoyaltyCardTransactionsParams, - ) { - return this.client.post( - `/loyalties/members/${encode(memberId)}/transactions/export`, - exportLoyaltyCardTransactionsParams, - ) - } - /** * @see https://docs.voucherify.io/reference/export-loyalty-card-transactions-1 */ - public exportLoyaltyCardTransactionsWithCampaignId( - campaignId: string, + public exportCardTransactions( memberId: string, - exportLoyaltyCardTransactionsParams: T.LoyaltiesExportLoyaltyCardTransactionsParams, + campaignId: string | null, + exportLoyaltyCardTransactionsParams: T.LoyaltiesExportLoyaltyCardTransactionsParams = {}, ) { return this.client.post( - `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions/export`, + campaignId + ? `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions/export` + : `/loyalties/members/${encode(memberId)}/transactions/export`, exportLoyaltyCardTransactionsParams, ) } diff --git a/packages/sdk/test/loyalties.spec.ts b/packages/sdk/test/loyalties.spec.ts index 33fba2518..ee887d86e 100644 --- a/packages/sdk/test/loyalties.spec.ts +++ b/packages/sdk/test/loyalties.spec.ts @@ -30,7 +30,7 @@ describe('Loyalties API', () => { }) it('Should add loyalties points to a member previously added', async () => { - const response = await client.loyalties.addOrRemoveLoyaltyCardBalance( + const response = await client.loyalties.addOrRemoveCardBalance( loyaltiesMember.code, { points: addPoints }, loyaltyCampaign.id, From 57babff17d73d46d9ef0d4a1932aac9f8e314177 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 4 Oct 2023 16:14:42 +0200 Subject: [PATCH 52/65] methods, readme --- packages/sdk/README.md | 37 ++++++----------------------- packages/sdk/src/Loyalties.ts | 1 + packages/sdk/test/loyalties.spec.ts | 2 +- 3 files changed, 9 insertions(+), 31 deletions(-) diff --git a/packages/sdk/README.md b/packages/sdk/README.md index 563ed9c0c..3f43a64b0 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -1071,12 +1071,6 @@ client.loyalties.createMember(campaignId, member) client.loyalties.getMember(campaignId, memberId) ``` -#### [Get Loyalty Program Member By Id](https://docs.voucherify.io/reference/get-member) - -```javascript -client.loyalties.getMemberById(campaignId, memberId) -``` - #### [List Loyalty Program Members](https://docs.voucherify.io/reference/list-members) ```javascript @@ -1110,7 +1104,8 @@ client.loyalties.listMemberRewards(memberId, params) --- -#### [Add Or Remove Loyalty Card Balance](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1) +#### [Add Or Remove Loyalty Card Balance](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance) +#### [Add Or Remove Loyalty Card Balance 2](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1) ```javascript client.loyalties.addOrRemoveCardBalance(memberId, balance, campaignId) @@ -1118,7 +1113,7 @@ client.loyalties.addOrRemoveCardBalance(memberId, balance, campaignId) `memberId` referrers to Loyalty Card code. -#### [Add Loyalty Card Balance](https://docs.voucherify.io/reference/add-loyalty-card-balance) +#### [Add Loyalty Card Balance](https://docs.voucherify.io/reference/add-loyalty-card-balance-1) ```javascript client.loyalties.addPoints(campaignId, memberId, balance) @@ -1159,19 +1154,10 @@ When redeeming reward with type `COIN` you need to provide additional `order` ob --- #### [List Loyalty Card Transactions](https://docs.voucherify.io/reference/list-loyalty-card-transactions) +#### [List Loyalty Card Transactions 2](https://docs.voucherify.io/reference/list-loyalty-card-transactions-1) ```javascript -client.loyalties.listLoyaltyCardTransactions(memberId) -``` - -`memberId` referrers to Loyalty Card code. - ---- - -#### [List Loyalty Card Transactions With CampaignId](https://docs.voucherify.io/reference/list-loyalty-card-transactions-1) - -```javascript -client.loyalties.listLoyaltyCardTransactionsWithCampaignId(campaignId, memberId) +client.loyalties.listCardTransactions(memberId, campaignId, params) ``` `memberId` referrers to Loyalty Card code. @@ -1179,19 +1165,10 @@ client.loyalties.listLoyaltyCardTransactionsWithCampaignId(campaignId, memberId) --- #### [Export Loyalty Card Transactions](https://docs.voucherify.io/reference/export-loyalty-card-transactions) +#### [Export Loyalty Card Transactions 2](https://docs.voucherify.io/reference/export-loyalty-card-transactions-1) ```javascript -client.loyalties.exportLoyaltyCardTransactions(memberId, exportLoyaltyCardTransactionsParams) -``` - -`memberId` referrers to Loyalty Card code. - ---- - -#### [Export Loyalty Card Transactions With CampaignId](https://docs.voucherify.io/reference/export-loyalty-card-transactions-1) - -```javascript -client.loyalties.exportLoyaltyCardTransactionsWithCampaignId(campaignId, memberId, exportLoyaltyCardTransactionsParams) +client.loyalties.exportLoyaltyCardTransactions(memberId, campaignId, exportLoyaltyCardTransactionsParams) ``` `memberId` referrers to Loyalty Card code. diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index 39a5fd247..fd4f680aa 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -144,6 +144,7 @@ export class Loyalties { ) } /** + * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1 */ public addOrRemoveCardBalance(memberId: string, balance: T.LoyaltiesAddPoints, campaignId?: string) { diff --git a/packages/sdk/test/loyalties.spec.ts b/packages/sdk/test/loyalties.spec.ts index ee887d86e..1f715e594 100644 --- a/packages/sdk/test/loyalties.spec.ts +++ b/packages/sdk/test/loyalties.spec.ts @@ -48,7 +48,7 @@ describe('Loyalties API', () => { }) it('Should list members activities', async () => { - const memberCardTransactions = await client.loyalties.listLoyaltyCardTransactions(loyaltiesMember.code) + const memberCardTransactions = await client.loyalties.listCardTransactions(loyaltiesMember.code, null) expect(memberCardTransactions).toEqual({ object: 'list', data_ref: 'data', From 14a8c6b51faa8e2c070b7f005464a95bfb7a4b2f Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 4 Oct 2023 17:09:10 +0200 Subject: [PATCH 53/65] in progress --- packages/sdk/README.md | 12 +-- packages/sdk/src/Loyalties.ts | 54 +++++++--- packages/sdk/src/types/Loyalties.ts | 147 ++++++++++++++++------------ packages/sdk/test/loyalties.spec.ts | 4 +- 4 files changed, 128 insertions(+), 89 deletions(-) diff --git a/packages/sdk/README.md b/packages/sdk/README.md index 3f43a64b0..22d7aa97f 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -1065,7 +1065,8 @@ client.loyalties.listEarningRules(campaignId, params) client.loyalties.createMember(campaignId, member) ``` -#### [Get Loyalty Program Member](https://docs.voucherify.io/reference/get-member-1) +#### [Get Loyalty Program Member](https://docs.voucherify.io/reference/get-member) +#### [Get Loyalty Program Member 2](https://docs.voucherify.io/reference/get-member-1) ```javascript client.loyalties.getMember(campaignId, memberId) @@ -1086,13 +1087,6 @@ client.loyalties.getMemberActivities(campaignId, memberId) `memberId` referrers to Loyalty Card code. -#### [Get Loyalty Program Member Activities Without CampaignId](https://docs.voucherify.io/reference#get-member-activities) - -```javascript -client.loyalties.getMemberActivitiesWithoutCampaignId(memberId) -``` - -`memberId` referrers to Loyalty Card code. #### [List Member Rewards](https://docs.voucherify.io/reference/list-member-rewards) @@ -1168,7 +1162,7 @@ client.loyalties.listCardTransactions(memberId, campaignId, params) #### [Export Loyalty Card Transactions 2](https://docs.voucherify.io/reference/export-loyalty-card-transactions-1) ```javascript -client.loyalties.exportLoyaltyCardTransactions(memberId, campaignId, exportLoyaltyCardTransactionsParams) +client.loyalties.exportCardTransactions(memberId, campaignId, params) ``` `memberId` referrers to Loyalty Card code. diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index fd4f680aa..9c9e5f837 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -3,6 +3,12 @@ import * as T from './types/Loyalties' import { encode, omit } from './helpers' import type { RequestController } from './RequestController' +import { + LoyaltiesAddOrRemoveCardBalanceResponseBody, + LoyaltiesAddPoints, + LoyaltiesTransferPoints, + LoyaltiesTransferPointsRequestBody, +} from './types/Loyalties' export class Loyalties { constructor(private client: RequestController) {} @@ -137,8 +143,8 @@ export class Loyalties { /** * @see https://docs.voucherify.io/reference/list-member-rewards */ - public listMemberRewards(memberId: string, params?: T.ListMemberRewardsParams) { - return this.client.get( + public listMemberRewards(memberId: string, params?: T.LoyaltiesListMemberRewardsRequestQuery) { + return this.client.get( `/loyalties/members/${encode(memberId)}/rewards`, params, ) @@ -147,33 +153,49 @@ export class Loyalties { * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1 */ - public addOrRemoveCardBalance(memberId: string, balance: T.LoyaltiesAddPoints, campaignId?: string) { - return this.client.post( + public addOrRemoveCardBalance( + memberId: string, + balance: T.LoyaltiesAddOrRemoveCardBalanceRequestBody, + campaignId?: string, + ) { + return this.client.post( campaignId ? `/loyalties/${encode(campaignId)}/members/${memberId}/balance` : `/loyalties/members/${memberId}/balance`, balance, ) } - - // Backward compatibility only. This method is not mentioned in readme anymore. + /** + * @see https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1 + */ public addPoints(campaignId: string, memberId: string, balance: T.LoyaltiesAddPoints) { - return this.addOrRemoveCardBalance(memberId, balance, campaignId) + return this.client.post( + `/loyalties/${encode(campaignId)}/members/${memberId}/balance`, + balance, + ) } /** * @see https://docs.voucherify.io/reference/transfer-points */ - public transferPoints(campaignId: string, memberId: string, transferLoyaltyPoints: T.LoyaltiesTransferPoints[]) { + public transferPoints( + campaignId: string, + memberId: string, + loyaltiesTransferPoints: T.LoyaltiesTransferPointsRequestBody, + ) { return this.client.post( `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transfers`, - transferLoyaltyPoints, + loyaltiesTransferPoints, ) } /** * @see https://docs.voucherify.io/reference/get-points-expiration */ - public getPointsExpiration(campaignId: string, memberId: string, params?: T.GetPointsExpirationParams) { - return this.client.get( + public getPointsExpiration( + campaignId: string, + memberId: string, + params?: T.LoyaltiesGetPointsExpirationRequestQuery, + ) { + return this.client.get( `/loyalties/${encode(campaignId)}/members/${memberId}/points-expiration`, params, ) @@ -194,9 +216,9 @@ export class Loyalties { public listCardTransactions( memberId: string, campaignId: string | null, - params?: T.ListLoyaltyCardTransactionsParams, + params?: T.LoyaltiesListCardTransactionsRequestQuery, ) { - return this.client.get( + return this.client.get( campaignId ? `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions` : `/loyalties/members/${encode(memberId)}/transactions`, @@ -210,13 +232,13 @@ export class Loyalties { public exportCardTransactions( memberId: string, campaignId: string | null, - exportLoyaltyCardTransactionsParams: T.LoyaltiesExportLoyaltyCardTransactionsParams = {}, + params: T.LoyaltiesExportCardTransactionsRequestQuery = {}, ) { - return this.client.post( + return this.client.post( campaignId ? `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transactions/export` : `/loyalties/members/${encode(memberId)}/transactions/export`, - exportLoyaltyCardTransactionsParams, + params, ) } } diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index 9b651e1e1..913b790d1 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -6,6 +6,7 @@ import { ValidationRulesCreateAssignmentResponse } from './ValidationRules' import { VouchersResponse } from './Vouchers' import { RewardsAssignmentObject, RewardsGetResponse } from './Rewards' +// Legacy code interface LoyaltiesVoucher { code_config?: { length?: number @@ -328,13 +329,12 @@ export interface LoyaltiesAddPointsResponse { points: number total: number balance: number - type: string // LOYALTY_CARD | GIFT_VOUCHER + type: string object: 'balance' related_object?: { - type?: string // always "voucher" + type?: string id?: string } - operation_type?: 'MANUAL' | 'AUTOMATIC' //always } export interface LoyaltiesRedeemRewardParams { @@ -502,32 +502,29 @@ export interface LoyaltyPointsTransfer { points: number } -export interface ListMemberRewardsParams { +// 0-level types + +export type LoyaltiesTransferPointsRequestBody = LoyaltiesTransferPoints[] + +export interface LoyaltiesListMemberRewardsRequestQuery { affordable_only?: boolean limit?: number page?: number } -export interface LoyaltiesListMemberRewardsResponse { +export interface LoyaltiesListMemberRewardsResponseBody { object: 'list' data_ref: 'data' data: { reward: RewardsGetResponse; assignment: RewardsAssignmentObject; object: 'loyalty_reward' }[] total: number } -export interface LoyaltiesTransferPoints { - code: string - points: number - reason?: string - source_id: string -} - -export interface GetPointsExpirationParams { +export interface LoyaltiesGetPointsExpirationRequestQuery { limit?: number page?: number } -export interface LoyaltiesGetPointsExpirationResponse { +export interface LoyaltiesGetPointsExpirationResponseBody { object: 'list' data_ref: 'data' data: { @@ -546,48 +543,18 @@ export interface LoyaltiesGetPointsExpirationResponse { total: number } -export interface ListLoyaltyCardTransactionsParams { +export interface LoyaltiesListCardTransactionsRequestQuery { limit?: number page?: number } -export interface LoyaltiesListLoyaltyCardTransactionsResponse { +export interface LoyaltiesListCardTransactionsResponseBody { object: 'list' data_ref: 'data' data: LoyaltyCardTransactionsResponse[] has_more: boolean } -export type LoyaltyCardTransactionsType = - | 'POINTS_ACCRUAL' - | 'POINTS_CANCELLATION' - | 'POINTS_REDEMPTION' - | 'POINTS_REFUND' - | 'POINTS_ADDITION' - | 'POINTS_REMOVAL' - | 'POINTS_EXPIRATION' - | 'POINTS_TRANSFER_IN' - | 'POINTS_TRANSFER_OUT' - -export interface SimpleLoyaltyVoucher { - id: string - code: string - loyalty_card: { - points: number - balance: number - next_expiration_date?: string - next_expiration_points?: string - } - type: 'LOYALTY_CARD' - campaign: string - campaign_id: string - is_referral_code?: boolean - holder_id?: string - referrer_id?: string - created_at?: string - object: 'voucher' -} - export interface LoyaltyCardTransactionsResponse { id: string source_id: string | null @@ -655,26 +622,12 @@ export interface LoyaltyCardTransactionsResponse { created_at: string } -export type LoyaltyCardTransactionsFields = - | 'id' - | 'campaign_id' - | 'voucher_id' - | 'type' - | 'source_id' - | 'reason' - | 'source' - | 'balance' - | 'amount' - | 'related_transaction_id' - | 'created_at' - | 'details' - -export interface LoyaltiesExportLoyaltyCardTransactionsParams { +export interface LoyaltiesExportCardTransactionsRequestQuery { order?: 'created_at' | '-created_at' fields?: LoyaltyCardTransactionsFields[] } -export interface LoyaltiesExportLoyaltyCardTransactionsResponse { +export interface LoyaltiesExportCardTransactionsResponseBody { id: string object: 'export' created_at: string @@ -695,3 +648,73 @@ export interface LoyaltiesExportLoyaltyCardTransactionsResponse { result: null user_id: null | string } + +export interface LoyaltiesAddOrRemoveCardBalanceRequestBody { + points: number +} + +export interface LoyaltiesAddOrRemoveCardBalanceResponseBody { + points: number + total: number + balance: number + type: string // LOYALTY_CARD | GIFT_VOUCHER + object: 'balance' + related_object?: { + type?: string // always "voucher" + id?: string + } + operation_type?: 'MANUAL' | 'AUTOMATIC' //always +} + +// domain types + +export interface SimpleLoyaltyVoucher { + id: string + code: string + loyalty_card: { + points: number + balance: number + next_expiration_date?: string + next_expiration_points?: string + } + type: 'LOYALTY_CARD' + campaign: string + campaign_id: string + is_referral_code?: boolean + holder_id?: string + referrer_id?: string + created_at?: string + object: 'voucher' +} + +export interface LoyaltiesTransferPoints { + code: string + points: number + reason?: string + source_id: string +} + +export type LoyaltyCardTransactionsFields = + | 'id' + | 'campaign_id' + | 'voucher_id' + | 'type' + | 'source_id' + | 'reason' + | 'source' + | 'balance' + | 'amount' + | 'related_transaction_id' + | 'created_at' + | 'details' + +export type LoyaltyCardTransactionsType = + | 'POINTS_ACCRUAL' + | 'POINTS_CANCELLATION' + | 'POINTS_REDEMPTION' + | 'POINTS_REFUND' + | 'POINTS_ADDITION' + | 'POINTS_REMOVAL' + | 'POINTS_EXPIRATION' + | 'POINTS_TRANSFER_IN' + | 'POINTS_TRANSFER_OUT' diff --git a/packages/sdk/test/loyalties.spec.ts b/packages/sdk/test/loyalties.spec.ts index 1f715e594..6b3e342cb 100644 --- a/packages/sdk/test/loyalties.spec.ts +++ b/packages/sdk/test/loyalties.spec.ts @@ -4,7 +4,7 @@ import { LoyaltiesCreateCampaignResponse, LoyaltiesCreateMemberResponse, LoyaltiesAddPointsResponse, - LoyaltiesListLoyaltyCardTransactionsResponse, + LoyaltiesListCardTransactionsResponseBody, } from '@voucherify/sdk' import { isoRegex } from './utils/isoRegex' @@ -77,6 +77,6 @@ describe('Loyalties API', () => { ], has_more: false, // use as `type` for typescript check - } as LoyaltiesListLoyaltyCardTransactionsResponse) + } as LoyaltiesListCardTransactionsResponseBody) }) }) From 46b8f971f776ea10cd779ec23f64022f86450ab9 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 4 Oct 2023 17:20:22 +0200 Subject: [PATCH 54/65] naming --- packages/sdk/src/Loyalties.ts | 8 +-- packages/sdk/src/types/Loyalties.ts | 100 ++++++++++++++-------------- 2 files changed, 51 insertions(+), 57 deletions(-) diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index 9c9e5f837..0232bfad7 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -3,12 +3,6 @@ import * as T from './types/Loyalties' import { encode, omit } from './helpers' import type { RequestController } from './RequestController' -import { - LoyaltiesAddOrRemoveCardBalanceResponseBody, - LoyaltiesAddPoints, - LoyaltiesTransferPoints, - LoyaltiesTransferPointsRequestBody, -} from './types/Loyalties' export class Loyalties { constructor(private client: RequestController) {} @@ -182,7 +176,7 @@ export class Loyalties { memberId: string, loyaltiesTransferPoints: T.LoyaltiesTransferPointsRequestBody, ) { - return this.client.post( + return this.client.post( `/loyalties/${encode(campaignId)}/members/${encode(memberId)}/transfers`, loyaltiesTransferPoints, ) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index 913b790d1..b2bd6b83e 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -306,8 +306,6 @@ export type LoyaltiesCreateMemberResponse = LoyaltiesVoucherResponse export type LoyaltiesGetMemberResponse = LoyaltiesCreateMemberResponse -export type LoyaltiesTransferPointsResponse = LoyaltiesVoucherResponse - export interface LoyaltiesGetMemberActivitiesResponse { object: 'list' data_ref: 'activities' @@ -504,6 +502,8 @@ export interface LoyaltyPointsTransfer { // 0-level types +export type LoyaltiesTransferPointsResponseBody = LoyaltiesVoucherResponse + export type LoyaltiesTransferPointsRequestBody = LoyaltiesTransferPoints[] export interface LoyaltiesListMemberRewardsRequestQuery { @@ -551,11 +551,57 @@ export interface LoyaltiesListCardTransactionsRequestQuery { export interface LoyaltiesListCardTransactionsResponseBody { object: 'list' data_ref: 'data' - data: LoyaltyCardTransactionsResponse[] + data: LoyaltyCardTransaction[] has_more: boolean } -export interface LoyaltyCardTransactionsResponse { +export interface LoyaltiesExportCardTransactionsRequestQuery { + order?: 'created_at' | '-created_at' + fields?: LoyaltyCardTransactionsFields[] +} + +export interface LoyaltiesExportCardTransactionsResponseBody { + id: string + object: 'export' + created_at: string + status: 'SCHEDULED' + channel: string + exported_object: 'voucher_transactions' + parameters: { + order?: string + fields?: LoyaltyCardTransactionsFields[] + filters: { + voucher_id: { + conditions: { + $in: [string] //memberId + } + } + } + } + result: null + user_id: null | string +} + +export interface LoyaltiesAddOrRemoveCardBalanceRequestBody { + points: number +} + +export interface LoyaltiesAddOrRemoveCardBalanceResponseBody { + points: number + total: number + balance: number + type: string // LOYALTY_CARD | GIFT_VOUCHER + object: 'balance' + related_object?: { + type?: string // always "voucher" + id?: string + } + operation_type?: 'MANUAL' | 'AUTOMATIC' //always +} + +// domain types + +export interface LoyaltyCardTransaction { id: string source_id: string | null voucher_id: string @@ -622,52 +668,6 @@ export interface LoyaltyCardTransactionsResponse { created_at: string } -export interface LoyaltiesExportCardTransactionsRequestQuery { - order?: 'created_at' | '-created_at' - fields?: LoyaltyCardTransactionsFields[] -} - -export interface LoyaltiesExportCardTransactionsResponseBody { - id: string - object: 'export' - created_at: string - status: 'SCHEDULED' - channel: string - exported_object: 'voucher_transactions' - parameters: { - order?: string - fields?: LoyaltyCardTransactionsFields[] - filters: { - voucher_id: { - conditions: { - $in: [string] //memberId - } - } - } - } - result: null - user_id: null | string -} - -export interface LoyaltiesAddOrRemoveCardBalanceRequestBody { - points: number -} - -export interface LoyaltiesAddOrRemoveCardBalanceResponseBody { - points: number - total: number - balance: number - type: string // LOYALTY_CARD | GIFT_VOUCHER - object: 'balance' - related_object?: { - type?: string // always "voucher" - id?: string - } - operation_type?: 'MANUAL' | 'AUTOMATIC' //always -} - -// domain types - export interface SimpleLoyaltyVoucher { id: string code: string From 950b8714d05a3a26f7a4ad12d0b2c12a92632262 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 4 Oct 2023 17:26:42 +0200 Subject: [PATCH 55/65] Update tidy-comics-five.md --- .changeset/tidy-comics-five.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.changeset/tidy-comics-five.md b/.changeset/tidy-comics-five.md index 11d4cd50e..1a9bdcc84 100644 --- a/.changeset/tidy-comics-five.md +++ b/.changeset/tidy-comics-five.md @@ -3,5 +3,5 @@ --- Add support for few endpoints of Loyalties API. -- Added support for new endpoints: `/loyalties/members/{memberId}`, `/loyalties/members/{memberId}/activities`, `/loyalties/members/{memberId}/rewards`, `/loyalties/{campaignId}/members/{memberId}/transfers`, `/loyalties/{campaignId}/members/{memberId}/points-expiration`, `/loyalties/members/{memberId}/transactions`, `/loyalties/{campaignId}/members/{memberId}/transactions`, `/loyalties/members/{memberId}/transactions/export` and `/loyalties/{campaignId}/members/{memberId}/transactions/export` [(examples of usage available in readme.md)](..%2F..%2Fpackages%2Fsdk%2FREADME.md) -- New exported types/interfaces: `ListMemberRewardsParams`, `LoyaltiesListMemberRewardsResponse`, `LoyaltiesTransferPoints`, `GetPointsExpirationParams`, `LoyaltiesGetPointsExpirationResponse`, `ListLoyaltyCardTransactionsParams`, `LoyaltiesListLoyaltyCardTransactionsResponse`, `LoyaltyCardTransactionsType`, `SimpleLoyaltyVoucher`, `LoyaltyCardTransactionsResponse`, `LoyaltyCardTransactionsFields`, `LoyaltiesExportLoyaltyCardTransactionsParams` and `LoyaltiesExportLoyaltyCardTransactionsResponse` +- Added support for new endpoints: `GET /loyalties/members/{memberId}`, `GET /loyalties/members/{memberId}/activities`, `GET /loyalties/members/{memberId}/rewards`, `POST /loyalties/{campaignId}/members/{memberId}/transfers`, `GET /loyalties/{campaignId}/members/{memberId}/points-expiration`, `GET /loyalties/members/{memberId}/transactions`, `GET /loyalties/{campaignId}/members/{memberId}/transactions`, `POST /loyalties/members/{memberId}/transactions/export` and `POST /loyalties/{campaignId}/members/{memberId}/transactions/export` [(examples of usage available in readme.md)](..%2F..%2Fpackages%2Fsdk%2FREADME.md) +- New exported types/interfaces: `LoyaltiesTransferPointsResponseBody`, `LoyaltiesTransferPointsRequestBody`, `LoyaltiesListMemberRewardsRequestQuery`, `LoyaltiesListMemberRewardsResponseBody`, `LoyaltiesGetPointsExpirationRequestQuery`, `LoyaltiesGetPointsExpirationResponseBody`, `LoyaltiesListCardTransactionsRequestQuery`, `LoyaltiesListCardTransactionsResponseBody`, `LoyaltiesExportCardTransactionsRequestQuery`, `LoyaltiesExportCardTransactionsResponseBody`, `LoyaltiesAddOrRemoveCardBalanceRequestBody`, `LoyaltiesAddOrRemoveCardBalanceResponseBody`, `LoyaltyCardTransaction`, `SimpleLoyaltyVoucher`, `LoyaltiesTransferPoints`, `LoyaltyCardTransactionsFields`, `LoyaltyCardTransactionsType` From 74692ecd976366f1b7184affde2ce8e36dbd00ea Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 4 Oct 2023 17:29:25 +0200 Subject: [PATCH 56/65] Update README.md --- packages/sdk/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/sdk/README.md b/packages/sdk/README.md index 22d7aa97f..60efac231 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -966,10 +966,8 @@ Methods are provided within `client.loyalties.*` namespace. - [List Loyalty Program Earning Rules](#list-loyalty-program-earning-rules) - [Create Loyalty Program Member](#create-loyalty-program-member) - [Get Loyalty Program Member](#get-loyalty-program-member) -- [Get Loyalty Program Member By Id](#get-loyalty-program-member-by-id) - [List Loyalty Program Members](#list-loyalty-program-members) - [Get Loyalty Program Member Activities](#get-loyalty-program-member-activities) -- [Get Loyalty Program Member Activities Without CampaignId](#get-loyalty-program-member-activities-without-campaignid) - [Add Or Remove Loyalty Card Balance](#add-or-remove-loyalty-card-balance) - [[Deprecated] Add Loyalty Card Balance](#add-loyalty-card-balance) - [Transfer Loyalty Points](#transfer-loyalty-points) @@ -1080,6 +1078,7 @@ client.loyalties.listMembers(campaignId, params) ``` #### [Get Loyalty Program Member Activities](https://docs.voucherify.io/reference#get-member-activities) +#### [Get Loyalty Program Member Activities 2](https://docs.voucherify.io/reference#get-member-activities-1) ```javascript client.loyalties.getMemberActivities(campaignId, memberId) From 6504c8c0313877512b5b252312443f07209a98e4 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 5 Oct 2023 15:49:45 +0200 Subject: [PATCH 57/65] Update README.md --- packages/sdk/README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/packages/sdk/README.md b/packages/sdk/README.md index 60efac231..f86b5a5d2 100644 --- a/packages/sdk/README.md +++ b/packages/sdk/README.md @@ -1064,7 +1064,8 @@ client.loyalties.createMember(campaignId, member) ``` #### [Get Loyalty Program Member](https://docs.voucherify.io/reference/get-member) -#### [Get Loyalty Program Member 2](https://docs.voucherify.io/reference/get-member-1) + +Depending on the parameters, this method sends requests to [v1/loyalties/members/{memberId}](https://docs.voucherify.io/reference/get-member) or [v1/loyalties/{campaignId}/members/{memberId}](https://docs.voucherify.io/reference/get-member-1) API endpoint ```javascript client.loyalties.getMember(campaignId, memberId) @@ -1078,7 +1079,8 @@ client.loyalties.listMembers(campaignId, params) ``` #### [Get Loyalty Program Member Activities](https://docs.voucherify.io/reference#get-member-activities) -#### [Get Loyalty Program Member Activities 2](https://docs.voucherify.io/reference#get-member-activities-1) + +Depending on the parameters, this method sends requests to [v1/loyalties/members/{memberId}/activities](https://docs.voucherify.io/reference/get-member-activities) or [v1/loyalties/{campaignId}/members/{memberId}/activities](https://docs.voucherify.io/reference/get-member-activities-1) API endpoint ```javascript client.loyalties.getMemberActivities(campaignId, memberId) @@ -1098,7 +1100,8 @@ client.loyalties.listMemberRewards(memberId, params) --- #### [Add Or Remove Loyalty Card Balance](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance) -#### [Add Or Remove Loyalty Card Balance 2](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1) + +Depending on the parameters, this method sends requests to [v1/loyalties/members/{memberId}/balance](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance) or [v1/loyalties/{campaignId}/members/{memberId}/balance](https://docs.voucherify.io/reference/add-remove-loyalty-card-balance-1) API endpoint ```javascript client.loyalties.addOrRemoveCardBalance(memberId, balance, campaignId) @@ -1147,7 +1150,8 @@ When redeeming reward with type `COIN` you need to provide additional `order` ob --- #### [List Loyalty Card Transactions](https://docs.voucherify.io/reference/list-loyalty-card-transactions) -#### [List Loyalty Card Transactions 2](https://docs.voucherify.io/reference/list-loyalty-card-transactions-1) + +Depending on the parameters, this method sends requests to [v1/loyalties/members/{memberId}/transactions](https://docs.voucherify.io/reference/list-loyalty-card-transactions) or [v1/loyalties/{campaignId}/members/{memberId}/transactions](https://docs.voucherify.io/reference/list-loyalty-card-transactions-1) API endpoint ```javascript client.loyalties.listCardTransactions(memberId, campaignId, params) @@ -1158,7 +1162,8 @@ client.loyalties.listCardTransactions(memberId, campaignId, params) --- #### [Export Loyalty Card Transactions](https://docs.voucherify.io/reference/export-loyalty-card-transactions) -#### [Export Loyalty Card Transactions 2](https://docs.voucherify.io/reference/export-loyalty-card-transactions-1) + +Depending on the parameters, this method sends requests to [v1/loyalties/members/{memberId}/transactions/export](https://docs.voucherify.io/reference/export-loyalty-card-transactions) or [v1/loyalties/{campaignId}/members/{memberId}/transactions/export](https://docs.voucherify.io/reference/export-loyalty-card-transactions-1) API endpoint ```javascript client.loyalties.exportCardTransactions(memberId, campaignId, params) From ccd71345655dd73eb81edbc6f222fb7f11e17bdd Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 5 Oct 2023 16:14:30 +0200 Subject: [PATCH 58/65] new types --- packages/sdk/src/types/Loyalties.ts | 46 +++++++++++++++++++-- packages/sdk/src/types/Rewards.ts | 64 +++++++++++++++++++++++++++++ 2 files changed, 107 insertions(+), 3 deletions(-) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index b2bd6b83e..c9d8c9ffe 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -4,7 +4,7 @@ import { ProductsCreateResponse, ProductsCreateSkuResponse } from './Products' import { SimpleCustomer } from './Customers' import { ValidationRulesCreateAssignmentResponse } from './ValidationRules' import { VouchersResponse } from './Vouchers' -import { RewardsAssignmentObject, RewardsGetResponse } from './Rewards' +import { Reward, RewardAssignment } from './Rewards' // Legacy code interface LoyaltiesVoucher { @@ -502,7 +502,47 @@ export interface LoyaltyPointsTransfer { // 0-level types -export type LoyaltiesTransferPointsResponseBody = LoyaltiesVoucherResponse +export type LoyaltiesTransferPointsResponseBody = { + id: string + code: string + campaign: string + campaign_id: string + category: string | null + category_id: string | null + type: 'LOYALTY_CARD' + loyalty_card: { + points: number + balance: number + next_expiration_date?: string + next_expiration_points?: number + } + start_date: string | null + expiration_date: string | null + validity_timeframe: { + interval?: string + duration?: string + } | null + validity_day_of_week: number[] | null + publish?: { + object: 'list' + count?: number + entries?: string[] + } + redemption?: { + quantity: number | null + redeemed_points?: number + redeemed_quantity?: number + redemption_entries?: string[] + object?: 'list' + url?: string + } + active: boolean + additional_info: string | null + metadata: Record + is_referral_code: boolean + holder_id?: string + updated_at?: string +} export type LoyaltiesTransferPointsRequestBody = LoyaltiesTransferPoints[] @@ -515,7 +555,7 @@ export interface LoyaltiesListMemberRewardsRequestQuery { export interface LoyaltiesListMemberRewardsResponseBody { object: 'list' data_ref: 'data' - data: { reward: RewardsGetResponse; assignment: RewardsAssignmentObject; object: 'loyalty_reward' }[] + data: { reward: Reward; assignment: RewardAssignment; object: 'loyalty_reward' }[] total: number } diff --git a/packages/sdk/src/types/Rewards.ts b/packages/sdk/src/types/Rewards.ts index fbaa6d522..77f7e9e00 100644 --- a/packages/sdk/src/types/Rewards.ts +++ b/packages/sdk/src/types/Rewards.ts @@ -136,3 +136,67 @@ export interface RewardRedemptionParams { assignment_id?: string id?: string } + +// domain types + +export type Reward = { + id: string + name?: string + stock?: string + redeemed?: string + attributes?: { + image_url?: string + description?: string + } + created_at: string + updated_at?: string + object: 'reward' +} & RewardType + +interface RewardTypeCampaign { + type: 'CAMPAIGN' + parameters: { + campaign: { + id: string + balance?: number + type: 'DISCOUNT_COUPONS' | 'PROMOTION' | 'GIFT_VOUCHERS' | 'REFERRAL_PROGRAM' + } + } +} + +interface RewardTypeCoin { + type: 'COIN' + parameters: { + coin: { + exchange_ratio: number + points_ratio?: number + } + } +} + +interface RewardTypeMaterial { + type: 'MATERIAL' + parameters: { + product: { + id: string + sku: string | null + } + } +} + +export type RewardType = RewardTypeCampaign | RewardTypeCoin | RewardTypeMaterial + +export interface RewardAssignment { + id: string + reward_id: string + related_object_id?: string + related_object_type?: string + parameters?: { + loyalty?: { + points: number + } + } + created_at: string + updated_at?: string + object: 'reward_assignment' +} From 2e275991d64d5d81caab18debce86024243f9fb3 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Thu, 5 Oct 2023 16:23:30 +0200 Subject: [PATCH 59/65] export and changeset --- .changeset/tidy-comics-five.md | 2 +- packages/sdk/src/types/Rewards.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.changeset/tidy-comics-five.md b/.changeset/tidy-comics-five.md index 1a9bdcc84..f877da1e7 100644 --- a/.changeset/tidy-comics-five.md +++ b/.changeset/tidy-comics-five.md @@ -4,4 +4,4 @@ Add support for few endpoints of Loyalties API. - Added support for new endpoints: `GET /loyalties/members/{memberId}`, `GET /loyalties/members/{memberId}/activities`, `GET /loyalties/members/{memberId}/rewards`, `POST /loyalties/{campaignId}/members/{memberId}/transfers`, `GET /loyalties/{campaignId}/members/{memberId}/points-expiration`, `GET /loyalties/members/{memberId}/transactions`, `GET /loyalties/{campaignId}/members/{memberId}/transactions`, `POST /loyalties/members/{memberId}/transactions/export` and `POST /loyalties/{campaignId}/members/{memberId}/transactions/export` [(examples of usage available in readme.md)](..%2F..%2Fpackages%2Fsdk%2FREADME.md) -- New exported types/interfaces: `LoyaltiesTransferPointsResponseBody`, `LoyaltiesTransferPointsRequestBody`, `LoyaltiesListMemberRewardsRequestQuery`, `LoyaltiesListMemberRewardsResponseBody`, `LoyaltiesGetPointsExpirationRequestQuery`, `LoyaltiesGetPointsExpirationResponseBody`, `LoyaltiesListCardTransactionsRequestQuery`, `LoyaltiesListCardTransactionsResponseBody`, `LoyaltiesExportCardTransactionsRequestQuery`, `LoyaltiesExportCardTransactionsResponseBody`, `LoyaltiesAddOrRemoveCardBalanceRequestBody`, `LoyaltiesAddOrRemoveCardBalanceResponseBody`, `LoyaltyCardTransaction`, `SimpleLoyaltyVoucher`, `LoyaltiesTransferPoints`, `LoyaltyCardTransactionsFields`, `LoyaltyCardTransactionsType` +- New exported types/interfaces: `LoyaltiesTransferPointsResponseBody`, `LoyaltiesTransferPointsRequestBody`, `LoyaltiesListMemberRewardsRequestQuery`, `LoyaltiesListMemberRewardsResponseBody`, `LoyaltiesGetPointsExpirationRequestQuery`, `LoyaltiesGetPointsExpirationResponseBody`, `LoyaltiesListCardTransactionsRequestQuery`, `LoyaltiesListCardTransactionsResponseBody`, `LoyaltiesExportCardTransactionsRequestQuery`, `LoyaltiesExportCardTransactionsResponseBody`, `LoyaltiesAddOrRemoveCardBalanceRequestBody`, `LoyaltiesAddOrRemoveCardBalanceResponseBody`, `LoyaltyCardTransaction`, `SimpleLoyaltyVoucher`, `LoyaltiesTransferPoints`, `LoyaltyCardTransactionsFields`, `LoyaltyCardTransactionsType`, `Reward`, `RewardTypeCampaign`, `RewardTypeCoin`, `RewardTypeMaterial`, `RewardType`, `RewardAssignment` diff --git a/packages/sdk/src/types/Rewards.ts b/packages/sdk/src/types/Rewards.ts index 77f7e9e00..289421cd9 100644 --- a/packages/sdk/src/types/Rewards.ts +++ b/packages/sdk/src/types/Rewards.ts @@ -153,7 +153,7 @@ export type Reward = { object: 'reward' } & RewardType -interface RewardTypeCampaign { +export interface RewardTypeCampaign { type: 'CAMPAIGN' parameters: { campaign: { @@ -164,7 +164,7 @@ interface RewardTypeCampaign { } } -interface RewardTypeCoin { +export interface RewardTypeCoin { type: 'COIN' parameters: { coin: { @@ -174,7 +174,7 @@ interface RewardTypeCoin { } } -interface RewardTypeMaterial { +export interface RewardTypeMaterial { type: 'MATERIAL' parameters: { product: { From f5ced06f2eca4211876df2c15e9ce3e8047d99e6 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 9 Oct 2023 09:50:58 +0200 Subject: [PATCH 60/65] Update Loyalties.ts --- packages/sdk/src/types/Loyalties.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index c9d8c9ffe..6ee4f046f 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -538,7 +538,7 @@ export type LoyaltiesTransferPointsResponseBody = { } active: boolean additional_info: string | null - metadata: Record + metadata: Record is_referral_code: boolean holder_id?: string updated_at?: string From 7e0c796770e4040e788b88aceba120a9efa9bcac Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 9 Oct 2023 14:44:50 +0200 Subject: [PATCH 61/65] Update Loyalties.ts --- packages/sdk/src/types/Loyalties.ts | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index 6ee4f046f..5051f8878 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -624,23 +624,30 @@ export interface LoyaltiesExportCardTransactionsResponseBody { export interface LoyaltiesAddOrRemoveCardBalanceRequestBody { points: number + expiration_date?: string //ISO-8601 + expiration_type?: PointsExpirationTypes + reason?: string + source_id?: string } export interface LoyaltiesAddOrRemoveCardBalanceResponseBody { - points: number + points?: number + amount?: number total: number balance: number type: string // LOYALTY_CARD | GIFT_VOUCHER object: 'balance' - related_object?: { - type?: string // always "voucher" - id?: string + related_object: { + type: 'voucher' + id: string } operation_type?: 'MANUAL' | 'AUTOMATIC' //always } // domain types +export type PointsExpirationTypes = 'PROGRAM_RULES' | 'CUSTOM_DATE' | 'NON_EXPIRING' + export interface LoyaltyCardTransaction { id: string source_id: string | null From 23669b51f1f3cfcd7567e3a0fbd5cf251ae0b573 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:23:02 +0200 Subject: [PATCH 62/65] fix --- .changeset/tidy-comics-five.md | 2 +- packages/sdk/src/Loyalties.ts | 2 +- packages/sdk/src/types/Loyalties.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.changeset/tidy-comics-five.md b/.changeset/tidy-comics-five.md index f877da1e7..0ae5d1f59 100644 --- a/.changeset/tidy-comics-five.md +++ b/.changeset/tidy-comics-five.md @@ -4,4 +4,4 @@ Add support for few endpoints of Loyalties API. - Added support for new endpoints: `GET /loyalties/members/{memberId}`, `GET /loyalties/members/{memberId}/activities`, `GET /loyalties/members/{memberId}/rewards`, `POST /loyalties/{campaignId}/members/{memberId}/transfers`, `GET /loyalties/{campaignId}/members/{memberId}/points-expiration`, `GET /loyalties/members/{memberId}/transactions`, `GET /loyalties/{campaignId}/members/{memberId}/transactions`, `POST /loyalties/members/{memberId}/transactions/export` and `POST /loyalties/{campaignId}/members/{memberId}/transactions/export` [(examples of usage available in readme.md)](..%2F..%2Fpackages%2Fsdk%2FREADME.md) -- New exported types/interfaces: `LoyaltiesTransferPointsResponseBody`, `LoyaltiesTransferPointsRequestBody`, `LoyaltiesListMemberRewardsRequestQuery`, `LoyaltiesListMemberRewardsResponseBody`, `LoyaltiesGetPointsExpirationRequestQuery`, `LoyaltiesGetPointsExpirationResponseBody`, `LoyaltiesListCardTransactionsRequestQuery`, `LoyaltiesListCardTransactionsResponseBody`, `LoyaltiesExportCardTransactionsRequestQuery`, `LoyaltiesExportCardTransactionsResponseBody`, `LoyaltiesAddOrRemoveCardBalanceRequestBody`, `LoyaltiesAddOrRemoveCardBalanceResponseBody`, `LoyaltyCardTransaction`, `SimpleLoyaltyVoucher`, `LoyaltiesTransferPoints`, `LoyaltyCardTransactionsFields`, `LoyaltyCardTransactionsType`, `Reward`, `RewardTypeCampaign`, `RewardTypeCoin`, `RewardTypeMaterial`, `RewardType`, `RewardAssignment` +- New exported types/interfaces: `LoyaltiesTransferPointsResponseBody`, `LoyaltiesTransferPointsRequestBody`, `LoyaltiesListMemberRewardsRequestQuery`, `LoyaltiesListMemberRewardsResponseBody`, `LoyaltiesGetPointsExpirationRequestQuery`, `LoyaltiesGetPointsExpirationResponseBody`, `LoyaltiesListCardTransactionsRequestQuery`, `LoyaltiesListCardTransactionsResponseBody`, `LoyaltiesExportCardTransactionsRequestBody`, `LoyaltiesExportCardTransactionsResponseBody`, `LoyaltiesAddOrRemoveCardBalanceRequestBody`, `LoyaltiesAddOrRemoveCardBalanceResponseBody`, `LoyaltyCardTransaction`, `SimpleLoyaltyVoucher`, `LoyaltiesTransferPoints`, `LoyaltyCardTransactionsFields`, `LoyaltyCardTransactionsType`, `Reward`, `RewardTypeCampaign`, `RewardTypeCoin`, `RewardTypeMaterial`, `RewardType`, `RewardAssignment` diff --git a/packages/sdk/src/Loyalties.ts b/packages/sdk/src/Loyalties.ts index 0232bfad7..32cd8289c 100644 --- a/packages/sdk/src/Loyalties.ts +++ b/packages/sdk/src/Loyalties.ts @@ -226,7 +226,7 @@ export class Loyalties { public exportCardTransactions( memberId: string, campaignId: string | null, - params: T.LoyaltiesExportCardTransactionsRequestQuery = {}, + params: T.LoyaltiesExportCardTransactionsRequestBody = {}, ) { return this.client.post( campaignId diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index 5051f8878..3053179f8 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -595,7 +595,7 @@ export interface LoyaltiesListCardTransactionsResponseBody { has_more: boolean } -export interface LoyaltiesExportCardTransactionsRequestQuery { +export interface LoyaltiesExportCardTransactionsRequestBody { order?: 'created_at' | '-created_at' fields?: LoyaltyCardTransactionsFields[] } From a78d0ef7408de09e5c601fe32ad87718ec067af6 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:02:42 +0200 Subject: [PATCH 63/65] Update Loyalties.ts --- packages/sdk/src/types/Loyalties.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index 0d83bb564..e7143b538 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -644,13 +644,13 @@ export interface LoyaltiesAddOrRemoveCardBalanceResponseBody { amount?: number total: number balance: number - type: string // LOYALTY_CARD | GIFT_VOUCHER + type: 'LOYALTY_CARD' | 'GIFT_VOUCHER' object: 'balance' related_object: { type: 'voucher' id: string } - operation_type?: 'MANUAL' | 'AUTOMATIC' //always + operation_type?: 'MANUAL' | 'AUTOMATIC' } export type LoyaltiesGetEarningRuleResponseBody = EarningRuleBase & { From 88d8c9671f5c133c2ae7b10e1e0358d0a47e2e29 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:22:04 +0200 Subject: [PATCH 64/65] Update Loyalties.ts --- packages/sdk/src/types/Loyalties.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index e7143b538..cbff56103 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -536,6 +536,7 @@ export type LoyaltiesTransferPointsResponseBody = { object: 'list' count?: number entries?: string[] + url?: string } redemption?: { quantity: number | null From b10f51d918a63d9f8d544068f3ea3d077695f7f9 Mon Sep 17 00:00:00 2001 From: p-zielinski <82354717+p-zielinski@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:36:08 +0200 Subject: [PATCH 65/65] fix --- packages/sdk/src/types/Categories.ts | 11 +++++++++++ packages/sdk/src/types/Loyalties.ts | 3 +++ 2 files changed, 14 insertions(+) diff --git a/packages/sdk/src/types/Categories.ts b/packages/sdk/src/types/Categories.ts index 3681d3f7c..55feffef6 100644 --- a/packages/sdk/src/types/Categories.ts +++ b/packages/sdk/src/types/Categories.ts @@ -27,3 +27,14 @@ export type ResponseUpdateCategory = ResponseCreateCategory & { } export type UpdateCategoryRequest = CreateCategory + +// domain types + +export type Category = { + id: string + name: string + hierarchy: number + created_at: string + updated_at?: string + object: 'category' +} diff --git a/packages/sdk/src/types/Loyalties.ts b/packages/sdk/src/types/Loyalties.ts index cbff56103..2bc2198fc 100644 --- a/packages/sdk/src/types/Loyalties.ts +++ b/packages/sdk/src/types/Loyalties.ts @@ -5,6 +5,7 @@ import { SimpleCustomer } from './Customers' import { ValidationRulesCreateAssignmentResponse } from './ValidationRules' import { VouchersResponse } from './Vouchers' import { Reward, RewardAssignment } from './Rewards' +import { Category } from './Categories' // Legacy code interface LoyaltiesVoucher { @@ -518,6 +519,7 @@ export type LoyaltiesTransferPointsResponseBody = { campaign_id: string category: string | null category_id: string | null + categories: Category[] type: 'LOYALTY_CARD' loyalty_card: { points: number @@ -552,6 +554,7 @@ export type LoyaltiesTransferPointsResponseBody = { is_referral_code: boolean holder_id?: string updated_at?: string + created_at: string } export type LoyaltiesTransferPointsRequestBody = LoyaltiesTransferPoints[]